.collection-page {

    padding: 80px 0;

}

.collection-layout {

    display: grid;

    grid-template-columns: 1fr 320px;

    gap: 50px;

    align-items: start;

}

.collection-products {

    min-width: 0;

}

.collection-sidebar {

    position: sticky;

    top: 120px;

}

@media(max-width:991px) {

    .collection-layout {

        grid-template-columns: 1fr;

    }

    .collection-sidebar {

        display: none;

    }

}
/*==========================================
COLLECTION HERO
==========================================*/

.collection-hero {

    position: relative;

    height: 650px;

    overflow: hidden;

}

.collection-hero-image {

    position: absolute;

    inset: 0;

}

.collection-hero-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}

.collection-overlay {

    position: absolute;

    inset: 0;

    background: linear-gradient(to right,
            rgba(0, 0, 0, .65),
            rgba(0, 0, 0, .25),
            rgba(0, 0, 0, .10));

}

.collection-hero .container {

    position: relative;

    z-index: 5;

    height: 100%;

    display: flex;

    align-items: center;

}

.collection-hero-content {

    max-width: 700px;

    color: #fff;

}

.breadcrumb {

    margin-bottom: 25px;

    font-size: 15px;

}

.breadcrumb a {

    color: #fff;

    opacity: .85;

    text-decoration: none;

}

.breadcrumb span {

    margin: 0 10px;

}

.collection-hero h1 {

    font-size: 68px;

    font-weight: 700;

    margin-bottom: 25px;

}

.collection-hero p {

    font-size: 19px;

    line-height: 1.9;

    opacity: .95;

    max-width: 600px;

}

.collection-meta {

    margin-top: 40px;

}

.collection-meta span {

    display: inline-block;

    padding: 12px 24px;

    border: 1px solid rgba(255, 255, 255, .3);

    border-radius: 40px;

    backdrop-filter: blur(10px);

}

@media(max-width:991px) {

    .collection-hero {

        height: 520px;

    }

    .collection-hero h1 {

        font-size: 48px;

    }

}

@media(max-width:767px) {

    .collection-hero {

        height: 420px;

    }

    .collection-hero h1 {

        font-size: 34px;

    }

    .collection-hero p {

        font-size: 16px;

    }

}
/*======================================
CHILD COLLECTIONS
======================================*/

.collection-children {

    margin-bottom: 70px;

}

.collection-children .section-header {

    margin-bottom: 35px;

}

.collection-children .section-header h2 {

    font-size: 38px;

    margin-bottom: 10px;

}

.collection-children .section-header p {

    color: #777;

    font-size: 17px;

}

.children-grid {

    display: grid;

    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));

    gap: 25px;

}

.child-card {

    display: block;

    border-radius: 22px;

    overflow: hidden;

    background: #fff;

    text-decoration: none;

    box-shadow: 0 10px 35px rgba(0, 0, 0, .08);

    transition: .35s;

}

.child-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 20px 50px rgba(0, 0, 0, .14);

}

.child-image {

    height: 260px;

    overflow: hidden;

}

.child-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .8s;

}

.child-card:hover img {

    transform: scale(1.08);

}

.child-content {

    padding: 22px;

}

.child-content h3 {

    margin: 0;

    font-size: 22px;

    color: #111;

}

.child-content span {

    display: inline-block;

    margin-top: 12px;

    color: #C9A96E;

    font-size: 14px;

    font-weight: 600;

    letter-spacing: 1px;

    text-transform: uppercase;

}

@media(max-width:991px) {

    .children-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:576px) {

    .children-grid {

        grid-template-columns: 1fr;

    }

}
/*=========================================
TOOLBAR
=========================================*/

.collection-toolbar {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 25px 0;

    border-bottom: 1px solid #ececec;

    margin-bottom: 40px;

}

.result-count {

    font-size: 16px;

    color: #555;

    font-weight: 600;

}

.toolbar-right {

    display: flex;

    align-items: center;

    gap: 25px;

}

.toolbar-sort {

    display: flex;

    align-items: center;

    gap: 10px;

}

.toolbar-sort label {

    font-size: 15px;

    color: #666;

}

.toolbar-sort select {

    height: 46px;

    padding: 0 18px;

    border: 1px solid #ddd;

    border-radius: 30px;

    background: #fff;

    outline: none;

}

.toolbar-view {

    display: flex;

    gap: 12px;

}

.view-btn {

    width: 46px;

    height: 46px;

    border-radius: 50%;

    border: 1px solid #ddd;

    background: #fff;

    cursor: pointer;

    transition: .3s;

}

.view-btn:hover,
.view-btn.active {

    background: #111;

    color: #fff;

    border-color: #111;

}

.mobile-filter-btn {

    display: none;

    height: 46px;

    padding: 0 22px;

    border: none;

    border-radius: 30px;

    background: #111;

    color: #fff;

    cursor: pointer;

}

@media(max-width:991px) {

    .collection-toolbar {

        flex-wrap: wrap;

        gap: 20px;

    }

    .toolbar-right {

        width: 100%;

        justify-content: space-between;

    }

    .mobile-filter-btn {

        display: block;

    }

}
/*==================================
PRODUCT GRID
==================================*/

.products-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;

}

.product-item {

    display: flex;

}

.product-card {

    width: 100%;

    background: #fff;

    border-radius: 22px;

    overflow: hidden;

    box-shadow: 0 10px 35px rgba(0, 0, 0, .08);

    transition: .35s;

}

.product-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 20px 55px rgba(0, 0, 0, .15);

}

/*=======================*/

.product-image {

    position: relative;

    aspect-ratio: 1/1;

    overflow: hidden;

    background: #f7f7f7;

}

.product-image img {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .5s;

}

.hover-image {

    opacity: 0;

}

.product-card:hover .main-image {

    opacity: 0;

    transform: scale(1.08);

}

.product-card:hover .hover-image {

    opacity: 1;

    transform: scale(1.08);

}

/*=======================*/

.badge {

    position: absolute;

    top: 18px;

    left: 18px;

    padding: 8px 16px;

    background: #111;

    color: #fff;

    border-radius: 30px;

    font-size: 12px;

    letter-spacing: 1px;

    z-index: 5;

}

.badge.sale {

    background: #c62828;

}

/*=======================*/

.product-icons {

    position: absolute;

    top: 20px;

    right: 20px;

    display: flex;

    flex-direction: column;

    gap: 12px;

    opacity: 0;

    transform: translateX(20px);

    transition: .35s;

}

.product-card:hover .product-icons {

    opacity: 1;

    transform: none;

}

.product-icons a {

    width: 42px;

    height: 42px;

    border-radius: 50%;

    background: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    text-decoration: none;

    color: #111;

    box-shadow: 0 5px 15px rgba(0, 0, 0, .12);

}

.product-icons a:hover {

    background: #C9A96E;

    color: #fff;

}

/*=======================*/

.product-info {

    padding: 25px;

}

.product-info h3 {

    font-size: 20px;

    margin-bottom: 12px;

}

.product-info h3 a {

    color: #111;

    text-decoration: none;

}

.product-rating {

    color: #d4af37;

    letter-spacing: 2px;

    margin-bottom: 12px;

}

.product-price {

    margin-bottom: 22px;

}

.product-price del {

    color: #999;

    margin-right: 12px;

}

.product-price span {

    font-size: 24px;

    font-weight: 700;

}

.product-btn {

    display: block;

    padding: 14px;

    text-align: center;

    background: #111;

    color: #fff;

    text-decoration: none;

    border-radius: 35px;

    transition: .3s;

}

.product-btn:hover {

    background: #C9A96E;

}

/*=======================*/

.load-more-wrap {

    margin-top: 70px;

    text-align: center;

}

.load-more-btn {

    padding: 18px 45px;

    border: none;

    background: #111;

    color: #fff;

    border-radius: 40px;

    cursor: pointer;

    font-size: 16px;

    transition: .35s;

}

.load-more-btn:hover {

    background: #C9A96E;

}

/*=======================*/

@media(max-width:1400px) {

    .products-grid {

        grid-template-columns: repeat(3, 1fr);

    }

}

@media(max-width:991px) {

    .products-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:576px) {

    .products-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 15px;

    }

    .product-info {

        padding: 16px;

    }

    .product-info h3 {

        font-size: 16px;

    }

    .product-price span {

        font-size: 18px;

    }

    .product-btn {

        padding: 10px;

        font-size: 14px;

    }

}
/*==================================
SIDEBAR
==================================*/

.filter-wrapper {

    background: #fff;

    border-radius: 20px;

    padding: 30px;

    box-shadow: 0 10px 35px rgba(0, 0, 0, .06);

}

.filter-header {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 25px;

}

.filter-header h3 {

    font-size: 24px;

    margin: 0;

}

.filter-header a {

    font-size: 14px;

    color: #C9A96E;

    text-decoration: none;

}

.filter-group {

    border-top: 1px solid #eee;

    padding: 22px 0;

}

.filter-group:first-child {

    border: none;

    padding-top: 0;

}

.filter-title {

    font-weight: 700;

    margin-bottom: 15px;

    cursor: pointer;

}

.filter-body {

    display: flex;

    flex-direction: column;

    gap: 12px;

}

.filter-body label {

    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 15px;

    cursor: pointer;

    color: #555;

}

.filter-body input {

    accent-color: #C9A96E;

}
/*========================*/

.color-filter {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

}

.color-circle {

    width: 28px;

    height: 28px;

    border-radius: 50%;

    border: 2px solid #ddd;

    display: block;

    cursor: pointer;

    transition: .3s;

}

.color-item input {

    display: none;

}

.color-item input:checked+.color-circle {

    transform: scale(1.15);

    border-color: #111;

}

/*========================*/

.room-item {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 10px;

}

.room-item img {

    width: 60px;

    height: 60px;

    object-fit: cover;

    border-radius: 12px;

}

/*========================*/

.icon-filter-item {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 10px;

}

.icon-filter-item img {

    width: 22px;

}
.related-collections {

    margin-top: 100px;

}

.related-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;

}

.related-card {

    position: relative;

    display: block;

    border-radius: 20px;

    overflow: hidden;

    text-decoration: none;

    aspect-ratio: 4/5;

}

.related-card img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .6s;

}

.related-card:hover img {

    transform: scale(1.08);

}

.related-overlay {

    position: absolute;

    left: 0;

    right: 0;

    bottom: 0;

    padding: 30px;

    color: #fff;

    background: linear-gradient(to top,
            rgba(0, 0, 0, .75),
            rgba(0, 0, 0, 0));

}

.related-overlay h3 {

    margin: 0;

    color: #fff;

    font-size: 24px;

}

.related-overlay span {

    display: inline-block;

    margin-top: 10px;

    color: #C9A96E;

}

@media(max-width:991px) {

    .related-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:576px) {

    .related-grid {

        grid-template-columns: 1fr;

    }

}
.empty-products {

    padding: 100px 20px;

}

.empty-box {

    max-width: 500px;

    margin: auto;

    text-align: center;

}

.empty-icon {

    font-size: 70px;

    margin-bottom: 25px;

}

.empty-box h2 {

    font-size: 34px;

    margin-bottom: 15px;

}

.empty-box p {

    color: #777;

    line-height: 1.8;

    margin-bottom: 35px;

}

.reset-filter-btn {

    display: inline-block;

    padding: 14px 35px;

    border-radius: 40px;

    background: #111;

    color: #fff;

    text-decoration: none;

}

.reset-filter-btn:hover {

    background: #C9A96E;

}
.price-values {

    display: flex;

    justify-content: space-between;

    margin-top: 18px;

    font-weight: 600;

}

#price-slider {

    margin: 15px 5px;

}

.filter-item,

.color-filter-item {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    padding: 8px 0;

    cursor: pointer;

}

.filter-item input,

.color-filter-item input {

    margin-right: 10px;

}

.filter-count {

    color: #888;

    font-size: 13px;

}

.color-circle {

    width: 22px;

    height: 22px;

    border-radius: 50%;

    border: 2px solid #ddd;

    display: inline-block;

    margin-right: 8px;

}

.disabled-filter {

    opacity: .35;

    pointer-events: none;

}