
/* =====================================================
   PAGE HERO
===================================================== */
.featured-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 5;

    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 8px 15px;

    background: linear-gradient(
        135deg,
        #b88a3b 0%,
        #d6b56a 50%,
        #a8792f 100%
    );

    color: #fff;

    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    line-height: 1;

    text-transform: uppercase;

    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50px;

    box-shadow:
        0 6px 18px rgba(90, 60, 20, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);

    backdrop-filter: blur(6px);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.featured-badge::before {
    content: "✦";
    font-size: 12px;
    line-height: 1;
    color: #fff8df;
}

.product-card:hover .featured-badge {
    transform: translateY(-2px);
    box-shadow:
        0 9px 24px rgba(90, 60, 20, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.products-hero {

    position: relative;

    min-height: 390px;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    color: white;

    background:

        linear-gradient(
            rgba(20,17,14,.72),
            rgba(20,17,14,.72)
        ),

        url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=2200&q=90");

    background-size: cover;

    background-position: center;

}

.products-hero-content {

    max-width: 800px;

    padding: 30px;

}

.hero-small-title {

    color: var(--gold-light);

    font-size: 11px;

    letter-spacing: 4px;

    text-transform: uppercase;

    margin-bottom: 15px;

}

.products-hero h1 {

    font-size: clamp(55px, 7vw, 82px);

    font-weight: 500;

    line-height: .9;

    margin-bottom: 22px;

}

.products-hero p {

    max-width: 650px;

    margin: auto;

    color: #e5e1dc;

    font-size: 15px;

    line-height: 1.8;

    font-weight: 300;

}


/* =====================================================
   CATEGORY FILTER
===================================================== */

.products-section {

    padding: 90px 0;

}

.category-filter {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 55px;

}

.category-btn {

    background: transparent;

    border: 1px solid #d7cfbf;

    color: #514b43;

    padding: 10px 20px;

    font-size: 11px;

    letter-spacing: .7px;

    text-transform: uppercase;

    transition: .3s;

}

.category-btn:hover,
.category-btn.active {

    background: var(--gold);

    border-color: var(--gold);

    color: white;

}


/* =====================================================
   PRODUCT CARD
===================================================== */

.product-card {

    position: relative;

    background: white;

    border: 1px solid var(--border);

    height: 100%;

    overflow: hidden;

    transition:

        transform .4s ease,

        box-shadow .4s ease;

}

.product-card:hover {

    transform: translateY(-8px);

    box-shadow:

        0 25px 60px rgba(38,32,25,.12);

}


/* PRODUCT IMAGE */

.product-image {

    position: relative;

    height: 370px;

    overflow: hidden;

    background: #eeeae3;

}

.product-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform .7s ease;

}

.product-card:hover .product-image img {

    transform: scale(1.06);

}


/* IMAGE OVERLAY */

.product-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            180deg,
            transparent 65%,
            rgba(0,0,0,.25)
        );

    pointer-events: none;

}


/* PRODUCT NUMBER */

.product-number {

    position: absolute;

    top: 18px;

    left: 18px;

    z-index: 2;

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: rgba(255,255,255,.92);

    color: var(--gold-dark);

    font-family: 'Cormorant Garamond';

    font-size: 18px;

}


/* =====================================================
   PRODUCT CONTENT
===================================================== */

.product-content {

    padding: 25px 25px 27px;

}

.product-category {

    color: var(--gold);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 7px;

}

.product-name {

    font-size: 29px;

    font-weight: 600;

    line-height: 1;

    margin: 0 0 10px;

}

.product-description {

    color: var(--text);

    font-size: 12px;

    line-height: 1.7;

    margin-bottom: 22px;

}


/* =====================================================
   PRODUCT BUTTONS
===================================================== */

.product-actions {

    display: flex;

    gap: 10px;

}

.btn-view {

    flex: 1;

    background: transparent;

    border: 1px solid #cfc6b7;

    color: var(--black);

    padding: 12px 10px;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

    transition: .3s;

}

.btn-view:hover {

    border-color: var(--gold);

    color: var(--gold-dark);

}


.btn-enquire {

    flex: 1;

    background: var(--black);

    border: 1px solid var(--black);

    color: white;

    padding: 12px 10px;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

    transition: .3s;

}

.btn-enquire:hover {

    background: var(--gold);

    border-color: var(--gold);

    color: white;

}

/* =====================================================
   ENQUIRY OFFCANVAS
===================================================== */

.enquiry-panel {

    width: min(540px, 100vw) !important;

    background: #faf8f3;

    border: none;

    height: 100vh !important;

    max-height: 100vh !important;

}


/* HEADER */

.enquiry-header {

    flex-shrink: 0;

    padding: 28px 32px;

    background: #181613;

    color: white;

}


.enquiry-header h2 {

    font-size: 38px;

    line-height: 1;

    margin: 5px 0 10px;

}


.enquiry-header p {

    margin: 0;

    color: #c9c4bc;

    font-size: 12px;

}


/* BODY */

.enquiry-body {

    height: calc(100vh - 165px);

    overflow-y: auto;

    overflow-x: hidden;

    padding: 30px;

    -webkit-overflow-scrolling: touch;

}


/* CUSTOM SCROLLBAR */

.enquiry-body::-webkit-scrollbar {

    width: 6px;

}


.enquiry-body::-webkit-scrollbar-track {

    background: #eee9df;

}


.enquiry-body::-webkit-scrollbar-thumb {

    background: #b49352;

}


.enquiry-body::-webkit-scrollbar-thumb:hover {

    background: #80652d;

}


/* SELECTED PRODUCT */

.selected-product {

    display: flex;

    align-items: center;

    gap: 16px;

    padding: 14px;

    background: white;

    border: 1px solid #ded6c8;

    margin-bottom: 28px;

}


.selected-product-image {

    flex: 0 0 75px;

    width: 75px;

    height: 75px;

    object-fit: cover;

    background: #eee;

}


.selected-product strong {

    display: block;

    font-family: 'Cormorant Garamond', serif;

    font-size: 24px;

    line-height: 1.05;

    color: #24211e;

}


/* FORM */

.enquiry-form label {

    display: block;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.2px;

    text-transform: uppercase;

    margin-bottom: 8px;

}


.enquiry-form .form-control {

    width: 100%;

    min-height: 50px;

    border-radius: 0;

    border: 1px solid #d7d0c4;

    background: white;

    padding: 13px 14px;

}


.enquiry-form textarea.form-control {

    min-height: 140px;

    resize: vertical;

}


.enquiry-form .form-control:focus {

    border-color: #b49352;

    box-shadow:

        0 0 0 3px rgba(180,147,82,.10);

}


/* SUBMIT */

.submit-enquiry {

    width: 100%;

    min-height: 54px;

    border: none;

    background: #181613;

    color: white;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    transition: .3s;

}


.submit-enquiry:hover {

    background: #b49352;

}


/* MOBILE */

@media(max-width: 575px) {

    .enquiry-panel {

        width: 100% !important;

    }

    .enquiry-body {

        padding: 22px 18px;

    }

}

/* =====================================================
   PRODUCT QUICK VIEW MODAL
===================================================== */

.quick-view-modal .modal-content {

    border: none;

    border-radius: 0;

    overflow: hidden;

}

.quick-view-image {

    width: 100%;

    height: 100%;

    min-height: 450px;

    object-fit: cover;

}

.quick-view-content {

    padding: 45px;

}

.quick-view-category {

    color: var(--gold);

    font-size: 10px;

    letter-spacing: 3px;

    text-transform: uppercase;

}

.quick-view-content h2 {

    font-size: 48px;

    line-height: 1;

    margin: 10px 0 20px;

}

.quick-view-content p {

    color: var(--text);

    line-height: 1.8;

    font-size: 14px;

}


/* =====================================================
   PRODUCT GALLERY
===================================================== */

.quick-view-modal .modal-dialog {

    max-width: 1250px;

}


.quick-view-modal .modal-content {

    border: none;

    border-radius: 0;

    overflow: hidden;

    background: #fff;

}


.product-gallery {

    height: 100%;

    background: #f3f0ea;

    padding: 25px;

}


/* =========================
   MAIN IMAGE
========================= */

.gallery-main {

    position: relative;

    height: 560px;

    background: #eeeae3;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: center;

}


.gallery-main-image {

    width: 100%;

    height: 100%;

    object-fit: contain;

    display: block;

    transition: opacity .25s ease;

}


/* =========================
   IMAGE ARROWS
========================= */

.gallery-arrow {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    z-index: 5;

    width: 44px;

    height: 44px;

    border-radius: 50%;

    border: 1px solid #d5c9b5;

    background: rgba(255,255,255,.92);

    color: #29251f;

    display: flex;

    align-items: center;

    justify-content: center;

    transition: .3s;

}


.gallery-arrow:hover {

    background: #b49352;

    border-color: #b49352;

    color: white;

}


.gallery-prev {

    left: 18px;

}


.gallery-next {

    right: 18px;

}


/* =========================
   THUMBNAILS
========================= */

.gallery-thumbnails {

    display: flex;

    gap: 10px;

    margin-top: 14px;

    overflow-x: auto;

    padding-bottom: 5px;

}


.gallery-thumbnail {

    flex: 0 0 82px;

    height: 70px;

    border: 1px solid #d8d0c2;

    background: white;

    padding: 3px;

    cursor: pointer;

    transition: .25s;

}


.gallery-thumbnail img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


.gallery-thumbnail:hover {

    border-color: #b49352;

}


.gallery-thumbnail.active {

    border: 2px solid #b49352;

}


/* =========================
   QUICK VIEW CONTENT
========================= */

.quick-view-content {

    padding: 55px 45px;

}


.quick-view-category {

    color: #b49352;

    font-size: 10px;

    letter-spacing: 3px;

    text-transform: uppercase;

    font-weight: 600;

}


.quick-view-content h2 {

    font-size: 55px;

    line-height: .95;

    margin: 12px 0 22px;

    font-weight: 500;

}


.gold-line {

    width: 55px;

    height: 2px;

    background: #b49352;

    margin-bottom: 25px;

}


.quick-view-content p {

    color: #686159;

    font-size: 14px;

    line-height: 1.9;

}


.product-detail-points {

    margin: 30px 0;

    border-top: 1px solid #e4ded3;

}


.product-detail-points div {

    padding: 13px 0;

    border-bottom: 1px solid #e4ded3;

    font-size: 12px;

    color: #4d4841;

}


.product-detail-points i {

    color: #b49352;

    width: 25px;

}


.quick-enquire-btn {

    width: 100%;

    padding: 16px;

}


/* MOBILE */

@media(max-width: 991px) {

    .gallery-main {

        height: 420px;

    }

    .quick-view-content {

        padding: 35px 30px;

    }

    .quick-view-content h2 {

        font-size: 44px;

    }

}


@media(max-width: 575px) {

    .product-gallery {

        padding: 12px;

    }

    .gallery-main {

        height: 350px;

    }

    .gallery-thumbnail {

        flex-basis: 65px;

        height: 58px;

    }

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width: 991px) {

    .products-hero {

        min-height: 330px;

    }

    .product-image {

        height: 330px;

    }

}

@media(max-width: 575px) {

    .products-section {

        padding: 60px 0;

    }

    .category-filter {

        justify-content: flex-start;

        overflow-x: auto;

        flex-wrap: nowrap;

        padding-bottom: 8px;

    }

    .category-btn {

        white-space: nowrap;

    }

    .product-image {

        height: 360px;

    }

    .enquiry-body {

        padding: 25px 20px;

    }

    .quick-view-content {

        padding: 30px 25px;

    }


}
