﻿/* =============================================================================
   LUMINA JEWELRY THEME — MASTER STYLESHEET
   -----------------------------------------------------------------------------
   Table of Contents:
   1.  CSS Custom Properties (Design Tokens)
   2.  Base & Body Reset
   3.  Utility Classes
   4.  Announcement Bar
   5.  Header (#lumina-header-v2)
        5a. Layout & Logo
        5b. Search Bar & Dropdown
        5c. Utility / Icon Buttons
        5d. Navigation Row & Mega Menu
        5e. Sticky Header State
        5f. Mobile Menu
   6.  Hero / Main Slider (#carouselMainSlider)
   7.  Category Slider (#lumina-category-slider-section)
   8.  Promo Grid (#lumina-promo-grid)
   9.  Product Cards (.gem-card / .gem-premium-vault)
        9a. Card Base
        9b. Image Wrapper & Overlay
        9c. Action Buttons
        9d. Card Info & Specs
        9e. Wishlist
   10. Carousels (Owl Carousel — #lumina-owl-carousel, #gemLinearSlider)
   11. Offer Banner (.gem-offer-banner)
   12. Handcrafted / Feature Section (#handcrafted-sourced)
   13. Quick View Modal (.gem-qv-scope)
   14. Auth Modal (.gem-auth-modal)
   15. Product Detail Page (.gem-pdp-wrapper)
   16. Reviews Page (.gem-reviews-vault)
   17. FAQ Page (.gem-faq-vault)
   18. About Us Page (.gem-about-vault)
   19. Contact Page (.gem-contact-vault)
   20. Category Discovery Page (.gem-cat-vault)
   21. Policy Pages (.gem-policy-vault / .gem-policy-pages)
   22. Footer
   23. Pagination (.gem-pagination-container)
   24. Toast Notifications (.gem-toast-container)
   25. Animations (@keyframes)
   26. Responsive Overrides
   ============================================================================= */


/* =============================================================================
   1. CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================================================= */

:root {
    /* Typography */
    --font-cormorant: "Cormorant Garamond", serif;
    --font-lato: "Lato", sans-serif;
    --font-serif: "Playfair Display", serif;
    --font-sans: "Inter", sans-serif;
    /* Brand Colors */
    --accent-color: #cb8161;
    --gem-green: #1a3a34;
    --gem-dark-green: #154340;
    --gem-gold: #d4af37;
    --gem-gold-soft: #e5c370;
    --gem-primary: #31837d;
    --gem-blue: #273691;
    --gem-black: #1a1a1a;
    /* UI Colors */
    --gem-white: #ffffff;
    --gem-bg-soft: #fcfdff;
    --gem-border: #e2e8f0;
    --gem-text-muted: #71717a;
    --gem-gray: #777777;
    /* Shared Transitions */
    --gem-transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --gem-radius: 20px;
    /* Shadows */
    --gem-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    --gem-shadow-hover: 0 12px 25px rgba(39, 54, 145, 0.15);
    /* Toast */
    --toast-text-color: #111111;
    --toast-accent-color: #c5a059;
    --toast-glass-bg: rgba(255, 255, 255, 0.95);
    --toast-easing: cubic-bezier(0.16, 1, 0.3, 1);
}


/* =============================================================================
   2. BASE & BODY RESET
   ============================================================================= */

body {
    background: #f8f8f8;
    font-family: var(--font-sans);
    margin: 0;
    padding: 0;
}

section {
    margin: auto;
}

a {
    text-decoration: none;
}

/* =============================================================================
   3. UTILITY CLASSES
   ============================================================================= */

.d-none {
    display: none;
}

.search-data {
    display: none;
}

.p-r-m117 {
    position: relative;
    top: -117px;
}

.clear-filter {
    font-weight: 500;
    color: #ef5a5a;
    text-transform: capitalize;
    display: inline-block;
    padding: 0 !important;
    text-align: center;
}


/* Error / Validation */
.alert-gem-error {
    background-color: #fff8f8;
    border: 1px solid #ffd6d6;
    color: #c53030;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 0.9rem;
}

.error-details-content {
    display: none;
    border-top: 1px solid rgba(197, 48, 48, 0.2);
    margin-top: 10px;
    padding-top: 10px;
    animation: slideUp 0.3s ease;
}

    .error-details-content ul {
        margin-bottom: 0;
        padding-left: 20px;
        list-style-type: square;
    }

.transition-icon {
    transition: transform 0.3s ease;
}

    .transition-icon.rotate {
        transform: rotate(180deg);
    }

.is-invalid {
    border-color: #fc8181 !important;
    background-color: #fffafa !important;
    box-shadow: 0 0 0 1px #fc8181 !important;
}


/* =============================================================================
   4. ANNOUNCEMENT BAR
   ============================================================================= */

#lumina-header-v2 .announcement-bar {
    background: linear-gradient(110deg, #e5c370 45%, #f7e3ad 50%, #e5c370 55%);
    background-size: 200% 100%;
    color: #000000;
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    text-align: center;
    padding: 8px 0;
    animation: luxuryShine 4s infinite linear;
    overflow: hidden;
}

    #lumina-header-v2 .announcement-bar span {
        display: inline-block;
        animation: letterWave 5s cubic-bezier(0.19, 0.89, 0.76, 1.16) infinite;
    }


/* =============================================================================
   5. HEADER (#lumina-header-v2)
   ============================================================================= */

#lumina-header-v2 {
    background: transparent;
    font-family: var(--font-lato);
    position: absolute;
    top: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 9999;
    transition: transform 0.4s ease-in-out, background 0.3s ease;
}

    #lumina-header-v2 * {
        box-sizing: border-box;
    }


    /* --- 5a. Layout & Logo --- */

    #lumina-header-v2 .main-header-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 0 auto;
        padding: 0 80px;
        gap: 20px;
        width: 100%;
        background: #b9b1b11a;
        backdrop-filter: blur(9px);
    }

    #lumina-header-v2:not(.sticky) {
        background: #0000001a;
    }

    #lumina-header-v2 .logo-section {
        flex: 1;
        display: flex;
        justify-content: flex-start;
        padding: 12px 0;
    }

    #lumina-header-v2 .logo-link {
        text-decoration: none;
        display: flex;
        flex-direction: column;
    }

    #lumina-header-v2 .logo-text {
        font-family: var(--font-serif);
        font-size: 28px;
        color: var(--gem-black);
        letter-spacing: -1px;
        line-height: 1;
    }

    #lumina-header-v2 .logo-subtext {
        font-size: 8px;
        letter-spacing: 4px;
        color: var(--gem-gray);
        text-transform: uppercase;
        margin-top: 2px;
    }

    /* Logo visibility toggling (white on transparent, black when sticky) */
    #lumina-header-v2 .logo-section .logo-black,
    #lumina-header-v2.sticky .logo-section .logo-white, #lumina-header-v2.dark-header .logo-section .logo-white {
        display: none !important;
    }

div#lumina-header-v2.dark-header {
    background: white;
}

#lumina-header-v2.sticky .logo-section .logo-black,
#lumina-header-v2.dark-header .logo-section .logo-black,
#lumina-header-v2 .logo-section .logo-white {
    display: block !important;
}

#lumina-header-v2.sticky .logo-section, #lumina-header-v2.dark-header .logo-section {
    padding: 0 !important;
}

#lumina-header-v2.sticky .mega-menu, #lumina-header-v2.dark-header .mega-menu {
    top: 80px;
}


/* ── MEGA MENU SHELL ── */
:root {
    --gold: #d4af37;
    --acc: #cb8161;
    --acc-light: #fdf5f0;
    --acc-hover: #fdf0e8;
    --border: #e8ddd2;
    --border-light: #f0e8de;
    --sidebar-bg: #f9f5f0;
    --text: #2a1f14;
    --text-mid: #5a4a3a;
    --muted: #9e8e7e;
    --pill-border: #ddd0c4;
    --card-hover: #fdf8ef;
}

#djmm-wrap {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    border-top: 2px solid var(--gold);
    z-index: 9998;
    animation: djmmIn .22s ease;
    min-height: calc(100vh - 81px);
    overflow: hidden;
    width: 100%;
    min-width: 100%;
}

#mainMenuCategory:hover #djmm-wrap {
    display: block;
}

@keyframes djmmIn {
    from {
        opacity: 0;
        transform: translateY(-6px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

#djmm-inner {
    display: flex;
    height: 100%;
    overflow: auto;
}
/* ── SIDEBAR ── */
#djmm-sidebar {
    width: 190px;
    flex-shrink: 0;
    background: var(--sidebar-bg);
    border-right: 1px solid var(--border);
    padding: 22px 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.djmm-sidebar-label {
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 12px;
    font-weight: 600;
    padding: 0 4px;
}

.djmm-g-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-mid);
    text-decoration: none;
    transition: all .18s;
    background: none;
    font-family: 'Lato',sans-serif;
    font-weight: 400;
}

    .djmm-g-btn svg {
        width: 17px;
        height: 17px;
        flex-shrink: 0;
        stroke-width: 1.5;
        opacity: .8
    }

    .djmm-g-btn:hover, .djmm-g-btn.active {
        background: #fff;
        border-color: var(--acc);
        color: var(--acc);
    }

        .djmm-g-btn.active svg, .djmm-g-btn:hover svg {
            opacity: 1
        }

/* sidebar bottom promo */
.djmm-sidebar-promo {
    margin-top: auto;
    padding: 14px 12px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #fff;
    text-align: center;
}

    .djmm-sidebar-promo p {
        font-size: 11px;
        color: var(--muted);
        line-height: 1.5;
        margin-bottom: 6px;
        white-space: pre-wrap;
    }

    .djmm-sidebar-promo a {
        font-size: 11px;
        color: var(--acc);
        text-decoration: none;
        font-weight: 600;
        letter-spacing: .3px
    }

        .djmm-sidebar-promo a:hover {
            text-decoration: underline
        }

/* ── MAIN PANEL ── */
#djmm-main {
    flex: 1;
    overflow-y: auto;
    padding: 22px 28px 28px;
    min-width: 0;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
}

    #djmm-main::-webkit-scrollbar {
        width: 4px
    }

    #djmm-main::-webkit-scrollbar-thumb {
        background: var(--border);
        border-radius: 2px
    }

.djmm-panel {
    display: none
}

    .djmm-panel.active {
        display: block;
        animation: panelIn .2s ease
    }

@keyframes panelIn {
    from {
        opacity: 0;
        transform: translateX(4px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

/* material toggle */
.mat-row {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap
}

.mat-btn {
    padding: 6px 20px;
    border: 1px solid var(--pill-border);
    border-radius: 20px;
    background: #fff;
    font-size: 13px;
    cursor: pointer;
    color: var(--text-mid);
    transition: all .18s;
    text-decoration: none;
    font-family: 'Lato',sans-serif;
    font-weight: 400;
    letter-spacing: .2px;
}

    .mat-btn:hover, .mat-btn.active {
        border-color: var(--acc);
        color: var(--acc);
        background: var(--acc-light)
    }

/* section label */
.sec-label {
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 12px;
    font-weight: 600;
}

/* category grid */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 8px;
    margin-bottom: 10px;
}

.cat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 6px;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    text-decoration: none;
    background: #fff;
    transition: all .2s;
    text-align: center;
}

    .cat-card img {
        width: 40px;
        height: 40px;
        object-fit: cover;
        border-radius: 6px;
        opacity: .75;
        transition: opacity .2s;
    }

    .cat-card:hover {
        border-color: var(--gold);
        background: var(--card-hover);
        transform: translateY(-2px)
    }

        .cat-card:hover img {
            opacity: 1
        }

.cat-name {
    font-size: 16px;
    color: var(--text);
    line-height: 1.3;
    font-weight: 400;
}

.view-all {
    font-size: 12px;
    color: var(--acc);
    text-decoration: none;
    letter-spacing: .4px;
    display: inline-block;
    margin-bottom: 18px;
    font-weight: 600;
}

    .view-all:hover {
        text-decoration: underline
    }

/* divider */
.mm-hr {
    border: none;
    border-top: 1px solid var(--border-light);
    margin: 16px 0
}

/* 2-col layout */
.mm-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px
}

/* price pills */
.price-block .sec-label {
    margin-bottom: 8px
}

.price-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px
}

.price-pill {
    padding: 5px 14px;
    border: 1px solid var(--pill-border);
    border-radius: 16px;
    font-size: 12px;
    color: var(--text-mid);
    text-decoration: none;
    background: #fff;
    transition: all .15s;
    white-space: nowrap;
    font-weight: 400;
}

    .price-pill:hover {
        border-color: var(--gold);
        color: #8a6a10;
        background: #fdf8ef
    }

/* mat sub-panels */
.mat-panel {
    display: none
}

    .mat-panel.active {
        display: block;
        animation: fadeup .2s ease
    }

@keyframes fadeup {
    from {
        opacity: 0;
        transform: translateY(-5px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

/* occasion / colour pills */
.occ-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 4px
}

.occ-pill {
    padding: 5px 13px;
    border: 1px solid var(--pill-border);
    border-radius: 16px;
    font-size: 12px;
    color: var(--text-mid);
    text-decoration: none;
    background: #fff;
    transition: all .15s;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 400;
}

    .occ-pill:hover {
        border-color: var(--acc);
        color: var(--acc);
        background: var(--acc-light)
    }

.occ-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0
}

/* gift row */
.gift-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

@media (min-width:900px) and (max-width:1290px) {
    .gift-row {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
.gift-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    text-decoration: none;
    background: #fff;
    transition: all .2s;
}

    .gift-card:hover {
        border-color: var(--gold);
        background: var(--card-hover)
    }

.gift-img {
    width: 200px;
    height: 200px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    opacity: .9;
    background: #e7dece;
    border-radius: 39px;
    overflow: visible;
    object-position: bottom;
}

.gift-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2px
}

.gift-sub {
    font-size: 11px;
    color: var(--muted);
    line-height: 1.3
}

/* ────────────────────────────────────────
           MOBILE  ≤ 900px
        ──────────────────────────────────────── */
@media(max-width:900px) {
    #mainMenuCategory:hover #djmm-wrap {
        display: none
    }

    #djmm-wrap.djmm-open {
        display: block;
    }

    #djmm-wrap {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        max-height: 100vh;
        flex-direction: column;
        z-index: 10000;
        background: #f9f5f07a;
    }

    #djmm-inner {
        flex-direction: column;
    }

    #djmm-sidebar {
        width: 100%;
        flex-direction: row;
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 10px 20px;
        overflow-x: auto;
        gap: 8px;
        scrollbar-width: none;
    }


        #djmm-sidebar::-webkit-scrollbar {
            display: none
        }

    .djmm-sidebar-label {
        display: none
    }

    .djmm-sidebar-promo {
        display: none
    }

    .djmm-g-btn {
        border-radius: 20px;
        padding: 7px 16px;
        white-space: nowrap;
        font-size: 13px
    }

    #djmm-main {
        padding: 20px 20px 24px;
    }

    .cat-grid {
        grid-template-columns: repeat(3,1fr) !important;
        gap: 7px
    }

    .mm-2col {
        grid-template-columns: 1fr
    }

    .gift-row {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:520px) {
    .cat-grid {
        grid-template-columns: repeat(2,1fr) !important;
        gap: 6px
    }

    .cat-name {
        font-size: 12px
    }

    .cat-card {
        padding: 12px 5px;
        gap: 6px
    }

        .cat-card img {
            width: 32px;
            height: 32px
        }

    #djmm-main {
        padding: 12px 10px 20px
    }

    .gift-row {
        grid-template-columns: 1fr
    }
}

.dark-header {
    box-shadow: none !important;
    border-bottom: 1px solid #f1f1f1;
}


/* SEARCH SECTION */
/* Search Input */
.search-section {
    width: 100% !important;
    display: block;
    /* max-width: 100% !important; */
    /* padding: 20px !important; */
    /* background: #1b4e4b; */
    /* border-top: 1px solid rgba(255, 255, 255, 0.12); */
    max-width: 600px;
}

#searchBox {
    top: calc(-100% - 155px);
    position: fixed;
    /* top: 0; */
    left: 0;
    background: #000000d9;
    width: 100%;
    height: calc(100% + 150px);
    z-index: 99999;
    padding: 100px 40px;
    backdrop-filter: blur(7px);
    transition: all cubic-bezier(0.1, 1.12, 0.58, 1) .3s;
}

    #searchBox.active {
        top: -50px !important;
    }

    #searchBox h2 {
        text-align: center;
        padding: 20px;
        color: white;
    }

.gem-search-box {
    position: relative;
}

    .gem-search-box input {
        padding: 10px 15px 10px 40px;
        border-radius: 10px;
        border: 1px solid var(--gem-border);
        font-size: 0.9rem;
        width: 100%;
        background: var(--gem-bg);
    }

    .gem-search-box i {
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--gem-text-muted);
    }

.search-right-icon {
    display: none;
    width: 70px;
    position: absolute;
    right: 0;
    top: 0;
    padding: 13px !important;
    z-index: 2;
}

.search-input:focus + .search-right-icon {
    display: flex;
}

#searchBox .search-icon-left {
    position: absolute;
    left: 15px;
    z-index: 3;
    width: 16px;
    height: 16px;
    color: #858585;
}

#searchBox .search-section {
    flex: 1;
    max-width: 500px;
    position: relative;
    margin: auto;
}

#searchBox .search-bar-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

#searchBox .search-input {
    width: 100%;
    padding: 10px 85px 10px 40px;
    border: 1px solid var(--gem-border);
    /* border-radius: 40px; */
    font-size: 14px;
    background: transparent;
    position: relative;
    z-index: 2;
    color: white;
    transition: all 0.3s ease;
}

    #searchBox .search-input:focus {
        outline: none;
        background: #fff;
        border-color: var(--gem-gold);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        color: black;
    }

#searchBox .tool-icon {
    width: 18px;
    height: 18px;
    cursor: pointer;
    transition: color 0.2s;
    stroke: white;
}

    #searchBox .tool-icon:hover {
        color: var(--gem-black);
    }

#lumina-header-v2 .search-tools-right {
    position: absolute;
    right: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    color: #888;
}

/* Animated placeholder */
#searchBox .search-placeholder-animator {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    height: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #bbb;
    z-index: 1;
    transition: opacity 0.2s;
}

#searchBox .placeholder-scroll-track {
    display: flex;
    flex-direction: column;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    align-self: flex-start;
}

#searchBox .placeholder-item {
    height: 20px;
    line-height: 20px;
    white-space: nowrap;
}

/* Search dropdown */
#searchBox .search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid var(--gem-border);
    margin-top: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: none;
    padding: 20px 5px 20px 20px;
    z-index: 100;
}

.search-dropdown.active {
    display: block !important;
}

#searchBox .dropdown-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gem-text-muted);
    margin-bottom: 12px;
    display: block;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 5px;
}

#searchBox .tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

#searchBox .tag-item {
    font-size: 12px;
    padding: 6px 14px;
    background: #f5f5f5;
    color: #444;
    border-radius: 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid transparent;
    transition: all 0.2s;
}

    #searchBox .tag-item:hover {
        background: #ebebeb;
        color: #000;
    }

.tag-item.active {
    background: #c4a677 !important;
    color: white !important;
    border: 1px solid #b08d57;
}

    .tag-item.active a {
        color: #ffffff !important;
    }

    .tag-item.active .type-badge {
        background: #c5ab83;
        color: #ffffff !important;
    }

.btn-del-recent {
    font-size: 10px;
    opacity: 0.6;
    margin-left: 5px;
    cursor: pointer;
}

    .btn-del-recent:hover {
        opacity: 1;
        color: #ef4444;
    }

/* Search results list */
#suggestionsSection {
    height: 400px;
    overflow: auto;
    max-height: calc(100vh - 155px);
    padding-right: 15px;
}

.result-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.result-row {
    padding: 5px 10px !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    border: 1px solid transparent;
    justify-content: space-between;
    transition: background 0.2s;
    font-size: 14px;
    text-decoration: none;
    color: #333;
    margin-bottom: 2px !important;
}

    .result-row:hover {
        background: #fcf9f5;
        border: 1px solid var(--gem-gold);
    }

        .result-row:hover .type-badge {
            background: var(--gem-gold);
            color: white;
        }

    .result-row.active {
        border: 1px solid var(--gem-gold);
    }

        .result-row.active span {
            color: var(--gem-gold) !important;
        }

        .result-row.active .type-badge {
            background: var(--gem-gold);
            color: #ffffff !important;
        }

.row-main {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .row-main i {
        color: var(--gem-gold);
        font-size: 14px;
        width: 18px;
        text-align: center;
    }

    .row-main span {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        padding-right: 10px !important;
        text-transform: capitalize;
    }

.type-badge {
    font-size: 9px;
    padding: 2px 5px !important;
    background: #f0f0f0;
    color: #888;
    font-weight: 600;
    text-transform: uppercase;
}

.colseSearchBox {
    position: absolute;
    right: 0;
    top: 0;
    margin: 70px 20px 0 0;
    padding: 4px !important;
    border: 1px solid white;
    width: 50px;
    height: 50px;
}

a.colseSearchBox:hover, a.colseSearchBox:hover svg {
    cursor: pointer;
    border-color: red;
    stroke: red;
}

/* --- 5c. Utility / Icon Buttons --- */

#lumina-header-v2 .utility-section {
    flex: 0 0 240px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    /* border: 1px solid #ffffff24; */
    /* background: #ffffff26; */
    /* backdrop-filter: blur(14px); */
    border-left: 1px solid #ffffff30;
    padding-left: 20px;
}

.utility-section > * {
    width: 55px;
    padding: 6px 0 !important;
    border-radius: 4px;
}

.utility-section > div:hover {
    background: #b6816c;
}

    .utility-section > div:hover span.utility-label, .utility-section > div:hover svg {
        color: #fbfbf9 !important;
    }

    .utility-section > div:hover .count-badge {
        outline: 1px solid white;
    }

#lumina-header-v2 .utility-btn {
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--gem-black);
    text-decoration: none;
}

#lumina-header-v2 .utility-icon {
    width: 22px;
    height: 22px;
    stroke-width: 1.2;
    stroke: white;
}

#lumina-header-v2 .utility-label {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    color: #ffffff;
}

#lumina-header-v2 .count-badge {
    position: absolute;
    top: -5px;
    right: 6px;
    background: var(--accent-color);
    color: white;
    font-size: 9px;
    padding: 2px 5px;
    border-radius: 10px;
    font-weight: bold;
}

/* Utility dropdown panels */
#lumina-header-v2 .click-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 260px;
    background: #fff;
    border: 1px solid var(--gem-border);
    margin-top: 15px;
    padding: 15px 0;
    display: none;
    z-index: 101;
    border-radius: 10px;
}

    #lumina-header-v2 .click-dropdown.active {
        display: block;
    }

#lumina-header-v2 .dropdown-link {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: var(--gem-black);
    font-size: 13px;
    transition: background 0.2s;
}

    #lumina-header-v2 .dropdown-link:hover {
        background: #f9f9f9;
        color: var(--accent-color);
    }


/* --- 5d. Navigation Row & Mega Menu --- */

#lumina-header-v2 .nav-row {
    display: flex;
    justify-content: center;
    padding: 0 40px;
}

#lumina-header-v2 .nav-list {
    list-style: none;
    flex: 2;
    display: flex;
    justify-content: center;
    gap: 28px;
    white-space: nowrap;
    margin: 0;
    padding: 0;
}

#lumina-header-v2 .nav-main-link {
    display: block;
    padding: 30px 0;
    text-decoration: none;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-family: var(--font-lato);
    font-weight: 400;
    position: relative;
    cursor: pointer;
}

    #lumina-header-v2 .nav-main-link svg {
        position: relative;
        top: -2px;
        right: -6px;
        stroke: #fff;
        height: 17px;
    }

    #lumina-header-v2 .nav-main-link::after {
        content: '';
        position: absolute;
        bottom: 12px;
        left: 0;
        width: 0;
        height: 1px;
        background: #ffffff;
        transition: width 0.3s;
    }

#lumina-header-v2.sticky .nav-main-link::after, #lumina-header-v2.dark-header .nav-main-link::after {
    background: #000;
}

#lumina-header-v2 .nav-main-link:hover::after {
    width: 100%;
}

/* Mega Menu */
#lumina-header-v2 .mega-menu {
    position: absolute;
    top: 100% !important;
    left: 0;
    top: 0;
    min-width: 200px;
    /* width: 100%; */
    background: #fff;
    border-top: 1px solid var(--gem-border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    padding: 25px;
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    z-index: 99;
}

#moreMenu:hover .more-dropdown {
    display: block;
}

#lumina-header-v2 .more-dropdown .mega-menu {
    position: absolute;
    top: 0 !important;
    left: 92%;
    top: 0;
}

#lumina-header-v2 #mainMenuCategory:hover .mega-menu {
    display: block;
    max-height: calc(100vh - 200px);
    overflow: auto;
}

#lumina-header-v2 .more-dropdown .mega-menu {
    position: absolute;
    top: 0 !important;
    left: unset;
    right: 100%;
}

ul.mega-list li {
    font-size: 15px;
    line-height: 36px;
}

    ul.mega-list li a {
        display: inline-block;
        width: 100%;
        transition: all ease-in-out .2s;
    }

        ul.mega-list li a:hover {
            letter-spacing: 1px;
            color: #e2c57b;
            font-weight: 400;
        }

/* --- 5e. Sticky Header State --- */

#lumina-header-v2.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.4s forwards;
    z-index: 10000;
}

    #lumina-header-v2.sticky .nav-list a, #lumina-header-v2.sticky .utility-label, #lumina-header-v2.sticky svg, #lumina-header-v2.dark-header .nav-list a {
        color: var(--gem-black) !important;
        stroke: var(--gem-black) !important;
    }


/* --- 5f. Mobile Menu --- */

.mobile-toggle {
    display: none;
}

.mm-menu {
    display: none;
}

#lumina-header-v2 .mobile-menu {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}


/* =============================================================================
   6. HERO / MAIN SLIDER (#carouselMainSlider)
   ============================================================================= */

#carouselMainSlider .slider-container {
    width: 100%;
    padding: 0;
    box-sizing: border-box;
}

#carouselMainSlider .item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

    #carouselMainSlider .item a {
        display: inline-block;
        text-decoration: none;
        cursor: pointer;
        height: 100%;
    }

    #carouselMainSlider .item img,
    #carouselMainSlider .owl-item img {
        display: block;
        width: 100%;
        height: auto;
        object-fit: cover;
        object-position: center;
    }

#carouselMainSlider .owl-nav {
    display: none !important;
}

#carouselMainSlider .owl-stage {
    margin-bottom: 0;
}

/* Dot styling for main slider */
#carouselMainSlider .owl-theme .owl-dots {
    margin-top: 20px !important;
}

    #carouselMainSlider .owl-theme .owl-dots .owl-dot.active span {
        background: #273794 !important;
        height: 8px;
    }

    #carouselMainSlider .owl-theme .owl-dots .owl-dot:not(.active):hover span {
        background: #fff !important;
        width: 40px;
        height: 8px;
        transform: scale(1.3);
    }

#carouselMainSlider button.owl-dot.active span {
    border-radius: 10px !important;
}

#carouselMainSlider button.owl-dot span {
    transition: all 0.5s cubic-bezier(0.58, 0.06, 0.25, 1) !important;
}

/* Shared dot base */
.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 6px;
    margin: 5px 7px;
    background: #D6D6D6;
    display: block;
    border-radius: 30px;
    transition: opacity .2s ease;
    -webkit-backface-visibility: visible;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #000 !important;
}


/* =============================================================================
   7. CATEGORY SLIDER (#lumina-category-slider-section)
   ============================================================================= */

#lumina-category-slider-section {
    padding: 40px 0;
    border-radius: 20px;
    margin-bottom: 60px;
}

    #lumina-category-slider-section .section-header {
        text-align: center;
        margin-bottom: 30px;
    }

        #lumina-category-slider-section .section-header h2 {
            font-family: var(--font-serif);
            font-size: 24px;
            font-weight: 500;
            color: var(--gem-black);
            letter-spacing: 0.5px;
        }

    #lumina-category-slider-section .category-card {
        display: block;
        text-decoration: none;
        text-align: center;
        padding: 15px;
        transition: transform 0.3s ease;
    }

        #lumina-category-slider-section .category-card:hover {
            transform: translateY(-5px);
        }

            #lumina-category-slider-section .category-card:hover .image-wrapper {
                background: #f0f0f0;
            }

            #lumina-category-slider-section .category-card:hover .category-name {
                color: #065f46;
            }

    /*   #lumina-category-slider-section .image-wrapper {
        width: 200px;
        height: 200px;
        margin: 0 auto 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f8f8f8;
        border-radius: 28px;
        overflow: hidden;
        transition: background 0.3s ease;
    }*/
    #lumina-category-slider-section .image-wrapper {
        width: 200px;
        height: 200px;
        margin: 0 auto 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f8f8f8;
        border-radius: 28px;
        overflow: hidden;
        transition: background 0.3s ease;
    }

    #lumina-category-slider-section .gem-icon {
        width: 200px;
        height: 200px;
        object-fit: contain;
        opacity: 0.8;
    }

    #lumina-category-slider-section .category-name {
        display: block;
        font-size: 12px;
        font-weight: 400;
        letter-spacing: 1px;
        color: #444;
        font-family: Poppins, sans-serif;
        transition: color 0.3s ease;
    }


/* =============================================================================
   8. PROMO GRID (#lumina-promo-grid)
   ============================================================================= */

#lumina-promo-grid {
    font-family: inherit;
    margin-top: 80px;
}

.promo-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
    width: 100%;
    align-items: stretch;
}

.promo-card {
    position: relative;
    flex: 1;
    overflow: hidden;
    cursor: pointer;
    height: 26rem;
    display: flex;
}

.promo-image-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

    .promo-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 1.2s cubic-bezier(0.15, 0.75, 0.5, 1);
    }

.promo-card:hover .promo-image-wrapper img {
    transform: scale(1.05);
}

.promo-content {
    position: absolute;
    bottom: 40px;
    left: 30px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 2;
    pointer-events: none;
}

.promo-title {
    margin: 0;
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gem-black);
    font-family: var(--font-cormorant);
    font-weight: 500;
}

.promo-link {
    font-size: 11px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--gem-black);
    letter-spacing: 2px;
    font-weight: 500;
    font-family: var(--font-lato);
    display: inline-block;
    width: fit-content;
    padding-bottom: 2px;
    position: relative;
    pointer-events: auto;
}

    .promo-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background: var(--gem-black);
        transition: width 0.3s ease;
    }

.promo-card:hover .promo-link::after {
    width: 0%;
}

/* Max-width breakpoints for promo grid */
@media (min-width: 1750px) {
    #lumina-promo-grid {
        max-width: 1750px;
    }
}

@media (max-width:767px) {
    #pageFooter .footerNav {
        text-align: left;
    }
}

@media (max-width:900px) {
    div#lumina-header-v2.dark-header:not(.sticky) .utility-label, div#lumina-header-v2.dark-header:not(.sticky) svg.utility-icon, .nav-main-link svg {
        color: white;
        stroke: white;
    }

    section.introBlock {
        margin-top: 90px;
    }
}

@media (min-width:900px) {
    div#lumina-header-v2.dark-header:not(.sticky) .utility-label, div#lumina-header-v2.dark-header:not(.sticky) svg.utility-icon, .dark-header:not(.sticky) .nav-main-link svg {
        color: black !important;
        stroke: black !important
    }
}


@media (min-width: 1440px) and (max-width: 1749px) {
    #lumina-promo-grid {
        max-width: 1400px;
    }
}

@media (min-width: 1025px) and (max-width: 1439px) {
    #lumina-promo-grid {
        max-width: 1140px;
    }
}

@media (max-width: 1024px) {
    #lumina-promo-grid {
        max-width: 95%;
    }

    .promo-container {
        gap: 15px;
        flex-wrap: wrap;
    }

    .promo-card {
        flex: 1 1 calc(50% - 15px);
    }

    .promo-title {
        font-size: 20px;
    }
}

@media (max-width: 640px) {
    #lumina-promo-grid {
        max-width: 90%;
    }

    .promo-card {
        flex: 1 1 100%;
        aspect-ratio: 410 / 450;
    }

    .promo-content {
        bottom: 30px;
        left: 20px;
    }
}


/* =============================================================================
   9. PRODUCT CARDS (.gem-premium-vault / .gem-card)
   ============================================================================= */

/*.gem-premium-vault {
    font-family: var(--font-sans);
    padding: 20px;
    background-color: transparent;
    margin: 0 auto;
}

.gem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    padding: 0;
}*/


/* --- 9a. Card Base --- */

/*.gem-card {
    background: var(--gem-white);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--gem-shadow);
    border: 1px solid rgba(0, 0, 0, 0.04);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    width: 100%;
    transition: var(--gem-transition);
}

    .gem-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--gem-shadow-hover);
        border-color: rgba(39, 54, 145, 0.1);
    }*/


/* --- 9b. Image Wrapper & Overlay --- */

/*.gem-image-wrapper {
    position: relative;
    padding-top: 110%;
    background-color: #fcfcfc;
    overflow: hidden;
    border-bottom: 1px solid #f5f5f5;
}

    .gem-image-wrapper img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

.gem-card:hover .gem-image-wrapper img {
    transform: scale(1.08);
}

.gem-overlay {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 5;
}

.gem-card:hover .gem-overlay {
    opacity: 1;
}

.product-link {
    position: absolute;
    height: 100%;
    width: 100%;
    display: block;
    z-index: 2;
}*/


/* --- 9c. Action Buttons --- */

/*.gem-btn-quickview,
.gem-btn-cart {
    padding: 8px 16px;
    border-radius: 6px;
    border: none;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    width: 100%;
    white-space: nowrap;
    margin-bottom: 0;
    background: linear-gradient(45deg, #d6b562, #fff1cd);
    color: var(--gem-dark-green);
    border: 1px solid #e9e9e9;
    transition: cubic-bezier(0.69, 0.66, 0.3, 1.08) .3s;
}

.gem-card:hover .gem-btn-quickview,
.gem-card:hover .gem-btn-cart {
    margin-bottom: 10px;
}

.gem-btn-quickview svg,
.gem-btn-cart svg {
    margin-right: 3px;
    width: 18px;
    height: 18px;
    position: relative;
    top: -1px;
}

.gem-btn-quickview:hover,
.gem-btn-cart:hover {
    transform: scale(1.03);
    opacity: 1;
    background: linear-gradient(45deg, #154340, #3f928d);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: white;
}*/


/* --- 9d. Card Info & Specs --- */

/*.gem-info {
    padding: 15px;
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.gem-category {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: var(--gem-dark-green);
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 4px;
    opacity: 0.8;
}

.gem-title {
    font-size: 0.95rem;
    color: var(--gem-black);
    margin: 0 0 4px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gem-price {
    font-size: 1.05rem;
    color: var(--gem-dark-green);
    font-weight: 700;
}

.gem-specs-hover {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    border-top: 1px solid #f0f0f0;
    padding-top: 0;
    transition: all ease-in-out .3s;
}

.gem-card:hover .gem-specs-hover {
    max-height: 45px;
    opacity: 1;
    padding-top: 12px;
    margin-top: 5px;
}

.spec-item {
    font-size: 0.7rem;
    color: var(--gem-text-muted);
}

.spec-label {
    display: block;
    font-weight: 700;
    color: var(--gem-black);
    margin-bottom: 1px;
    font-size: 0.65rem;
}*/


/* --- 9e. Wishlist --- */

/*.wishlist-trigger {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: var(--gem-transition);
}

    .wishlist-trigger:hover {
        transform: scale(1.1);
        color: #ef4444;
    }

    .wishlist-trigger.active {
        color: #ef4444;
        background: white;
    }*/

/* Cart bounce animation trigger */
/*.active-cart {
    animation: cartBounce 0.5s ease-in-out;
    color: #d4af37;
}

    .active-cart .count-badge {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
        animation: pulse 2s infinite;
    }*/

/* Notification bar */
/*.gem-notification {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gem-primary);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    display: none;
    z-index: 1000;
    font-size: 0.85rem;
    box-shadow: 0 5px 15px rgba(39, 54, 145, 0.3);
}*/

/* Responsive product grid */
/*@media (max-width: 480px) {
    .gem-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .gem-premium-vault {
        padding: 10px;
    }

    .gem-title {
        font-size: 0.85rem;
    }

    .gem-price {
        font-size: 0.95rem;
    }
}*/
/***********************************************************************/
/*.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    width: 100%;
}*/
.product-grid {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); */
    gap: 30px;
    /* max-width: max-content; */
    width: calc(100% - 400px);
}

/* --- THE CARD --- */
.product-card {
    position: relative;
    background: #fff;
    text-align: center;
    overflow: hidden;
    width: 100%;
}

/* --- IMAGE WRAPPER --- */
.image-container {
    position: relative;
    background-color: var(--bg-light);
    aspect-ratio: 1 / 1;
    overflow: hidden;
    margin-bottom: 20px;
}

    .image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

/* Hovering image slightly zooms or changes (optional based on luxury feel) */
.product-card:hover .image-container img {
    transform: scale(1.05);
}

/* --- BADGES (Hot / Discount) --- */
.badge {
    top: 15px;
    right: 15px;
    background: #b5332e; /* The red from the "Hot" badge */
    color: white;
    padding: 4px 12px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 2px;
    z-index: 3;
}

.discount-badge {
    left: 15px;
    right: auto;
    background: #c5a059;
    opacity: 0.8;
}

/* --- OVERLAY ACTIONS (The white box row) --- */
.action-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1); /* Subtle light wash */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 4;
}

.product-card:hover .action-overlay {
    opacity: 1;
}

.action-list {
    display: flex;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    padding: 5px;
}

.action-item {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
    border-right: 1px solid #f0f0f0;
}

    .action-item:last-child {
        border-right: none;
    }

    .action-item:hover {
        color: var(--primary-gold);
        background: #fafafa;
    }

    .action-item i {
        font-size: 16px;
    }

/* --- PRODUCT INFO --- */
.product-info {
    padding: 0 10px 10px;
}

.stars {
    color: #ddd;
    font-size: 12px;
    margin-bottom: 10px;
}

    /* Gold stars for those with reviews */
    .stars.rated {
        color: #f1c40f;
    }

.review-count {
    color: var(--text-light);
    font-size: 12px;
    margin-left: 5px;
}

.product-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    margin: 0 0 10px;
    color: var(--text-main);
}

.product-price {
    font-size: 16px;
    color: var(--price-color);
    font-weight: 500;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-light);
    margin-right: 8px;
    font-size: 14px;
}
/*********************************************************/
/* =============================================================================
   GEM PRODUCT CARD — Redesigned to match reference UI
   -----------------------------------------------------------------------------
   Layout:  Full-bleed image → badges → hover icon row → ratings → title → price
   Theme:   Clean white cards, coral accent price, uppercase titles, gold stars
   ============================================================================= */


/* =============================================================================
   GRID WRAPPER
   ============================================================================= */

.gem-premium-vault {
    font-family: var(--font-sans);
    padding: 20px;
    background-color: transparent;
    margin: 0 auto;
}

.gem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 24px;
    padding: 0;
}

/* =============================================================================
   CARD BASE
   ============================================================================= */

/*.gem-card {
    background: #ffffff;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    box-shadow: none;
    border: 1px solid #f1f1f1;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    width: 100%;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

    .gem-card:hover {*/
/*box-shadow: 0 8px 30px rgba(0, 0, 0, 0.10);*/
/*}*/


/* =============================================================================
   FULL-BLEED PRODUCT IMAGE
   ============================================================================= */

/*.gem-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 110%;*/ /* tall portrait ratio */
/*background: #f9f7f4;
    overflow: hidden;
}

    .gem-image-wrapper img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

.gem-card:hover .gem-image-wrapper img {
    transform: scale(1.06);
}*/


/* =============================================================================
   INVISIBLE FULL-CARD LINK (sits behind everything, z-index: 1)
   ============================================================================= */
/*
.product-link {
    position: absolute;
    inset: 0;
    display: block;
    z-index: 1;
}*/


/* =============================================================================
   CORNER BADGES  — "Hot" (top-right) & discount (top-left)
   These are rendered via ::before / ::after or badge elements in the wrapper.
   If your ASP.NET markup adds .badge-hot / .badge-discount divs, style them here.
   ============================================================================= */

/* Generic badge base */
/*.gem-badge {
    position: absolute;
    top: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    line-height: 1;
    z-index: 3;
    pointer-events: none;
}*/

/* "Hot" — top right, red background */
/*.gem-badge-hot {
    right: 12px;
    background: #e53e3e;
    color: #ffffff;
}*/

/* Discount / sale — top left, dark background */
/*.gem-badge-discount {
    left: 12px;
    background: #2d2d2d;
    color: #ffffff;
}*/


/* =============================================================================
   HOVER ICON ACTION ROW
   — Appears centred on the image on hover
   — 4 icons: cart, wishlist, compare, quickview
   — Each is a circle button with a thin border
   ============================================================================= */

/*.gem-overlay {
    position: absolute;
    bottom: 105px;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    display: flex;
    flex-direction: row;*/ /* horizontal icon row */
/*align-items: center;
    gap: 6px;
    opacity: 0;
    transition: opacity 0.28s ease, transform 0.28s ease;
    z-index: 5;
    white-space: nowrap;
}

.gem-card:hover .gem-overlay {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}*/

/* Individual icon circle button */
/*.gem-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    border: 1.5px solid #e0dbd4;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #333333;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
    text-decoration: none;
    position: relative;
    z-index: 6;*/ /* above product-link */
/*}

    .gem-icon-btn:hover {
        background: #222222;
        border-color: #222222;
        color: #ffffff;
        transform: scale(1.1);
    }

    .gem-icon-btn svg {
        width: 17px;
        height: 17px;
        stroke: currentColor;
        fill: none;
        display: block;
    }*/

/* Wishlist active state */
/*.gem-icon-btn.wishlist-trigger.active {
        background: #fee2e2;
        border-color: #ef4444;
        color: #ef4444;
    }

        .gem-icon-btn.wishlist-trigger.active:hover {
            background: #ef4444;
            border-color: #ef4444;
            color: #ffffff;
        }*/

/* Re-style existing classes to use icon-btn appearance */
/*.wishlist-trigger, .gem-btn-quickview, .gem-btn-cart {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #222222;
    border: 1.5px solid #afafaf;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ffffff;
    padding: 0;
    font-size: 0;
    text-transform: none;
    letter-spacing: normal;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
    position: relative;
    z-index: 6;
    white-space: nowrap;
}

    .wishlist-trigger:hover,
    .gem-btn-quickview:hover,
    .gem-btn-cart:hover {
        background: var(--accent-color);
        border-color: #222222;
        color: #ffffff;
        transform: scale(1);*/
/* cancel old hover overrides */
/*opacity: 1;
        box-shadow: none;
    }

    .wishlist-trigger svg,
    .gem-btn-quickview svg,
    .gem-btn-cart svg {
        width: 17px;
        height: 17px;
        stroke: currentColor;
        fill: none;
        display: block;
        margin: 0;*/ /* cancel old margin */
/*position: static;*/ /* cancel old top: -1px */
/*}*/

/* Wishlist heart — keep filled-heart feel on active */
/*.wishlist-trigger.active {
        background: #fee2e2;
        border-color: #ef4444;
        color: #ef4444;
    }*/

/* Cancel old margin-bottom animation on hover */
/*.gem-card:hover .gem-btn-quickview,
.gem-card:hover .gem-btn-cart {
    margin-bottom: 0;
}*/


/* =============================================================================
   STAR RATING ROW
   — Shows below the image, above the title
   — Stars use ★ characters coloured gold / empty grey
   ============================================================================= */

.gem-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 14px 14px 0;
}

.gem-stars {
    color: #d6b562;
    font-size: 12px;
    letter-spacing: 3px;
    margin: auto;
    width: 91px;
}

    .gem-stars .star-empty {
        color: #d9d2c9;
    }

.gem-review-count {
    font-size: 11px;
    color: #9e9589;
    font-weight: 500;
}


/* =============================================================================
   CARD TEXT INFO  — title, price
   ============================================================================= */

.gem-info {
    padding: 10px 14px 16px;
    text-align: center; /* centred like reference */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.gem-category {
    display: none; /* hidden in reference image layout */
}

.gem-title {
    font-size: 12px;
    color: #1a1a1a;
    margin: 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.4;
    white-space: normal; /* allow wrap for long titles */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-align: center;
}

/* Price row — supports original + sale layout */
.gem-price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.gem-price {
    font-size: 15px;
    color: #c0392b; /* coral/red like reference "$180.00" */
    font-weight: 700;
    letter-spacing: 0.3px;
}

.gem-price-original {
    font-size: 13px;
    color: #b0a89e;
    font-weight: 400;
    text-decoration: line-through;
}


/* =============================================================================
   HOVER SPECS ROW  — hides on this design (reference doesn't show it)
   Keep the element but keep it collapsed; remove display:flex so it doesn't
   break layout. Still functions if you decide to re-enable.
   ============================================================================= */

.gem-specs-hover {
    display: none; /* hidden — not in reference design */
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}

.gem-card:hover .gem-specs-hover {
    /* display: none;*/ /* stay hidden even on hover */
}


/* =============================================================================
   NOTIFICATION BAR  (unchanged from master CSS, kept here for completeness)
   ============================================================================= */

.gem-notification {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gem-primary, #31837d);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    display: none;
    z-index: 1000;
    font-size: 0.85rem;
    box-shadow: 0 5px 15px rgba(49, 131, 125, 0.3);
}


/* =============================================================================
   CART / WISHLIST ANIMATIONS  (preserved from master CSS)
   ============================================================================= */

.active-cart {
    animation: cartBounce 0.5s ease-in-out;
    color: #d4af37;
}

    .active-cart .count-badge {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
        animation: pulse 2s infinite;
    }


/* =============================================================================
   RESPONSIVE
   ============================================================================= */

@media (max-width: 768px) {
    .gem-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .gem-title {
        font-size: 11px;
    }

    .gem-price {
        font-size: 14px;
    }

    .gem-icon-btn,
    .wishlist-trigger,
    .gem-btn-quickview,
    .gem-btn-cart {
        width: 34px;
        height: 34px;
    }

        .gem-icon-btn svg,
        .wishlist-trigger svg,
        .gem-btn-quickview svg,
        .gem-btn-cart svg {
            width: 14px;
            height: 14px;
        }
}

@media (max-width: 480px) {
    .gem-premium-vault {
        padding: 10px;
    }

    .gem-grid {
        gap: 10px;
    }

    .gem-title {
        font-size: 10px;
        letter-spacing: 1px;
    }
}

/* =============================================================================
   10. CAROUSELS (Owl Carousel)
   ============================================================================= */

/* Main product carousel wrapper */
#lumina-owl-carousel {
    position: relative;
    padding: 0 50px;
}

    #lumina-owl-carousel .owl-nav {
        position: absolute;
        top: 50%;
        width: 100%;
        left: 0;
        transform: translateY(-50%);
        pointer-events: none;
        display: flex;
        justify-content: space-between;
        z-index: 10;
    }

        #lumina-owl-carousel .owl-nav button.owl-prev,
        #lumina-owl-carousel .owl-nav button.owl-next {
            pointer-events: auto;
            width: 40px;
            height: 40px;
            line-height: 40px;
            border-radius: 50% !important;
            background: #ffffff !important;
            color: var(--gem-black) !important;
            font-size: 18px !important;
            margin: 0;
            padding: 0 !important;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 1px solid #eee !important;
        }

        #lumina-owl-carousel .owl-nav button.owl-prev {
            margin-left: -20px;
        }

        #lumina-owl-carousel .owl-nav button.owl-next {
            margin-right: -20px;
        }

            #lumina-owl-carousel .owl-nav button.owl-prev:hover,
            #lumina-owl-carousel .owl-nav button.owl-next:hover {
                background: #000000 !important;
                color: #ffffff !important;
                transform: scale(1.1);
                box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
            }

/*TRENDING PRODUCT CAROUSEL*/
#carouselTrending .owl-stage-outer {
    padding: 20px 0 40px;
}

/* New arrival carousel */
#carouselNewArrival .owl-stage-outer {
    padding: 40px 0 !important;
}

/* Linear gem slider */
#gemLinearSlider {
    margin-bottom: 30px;
}

div#gemLinearSlider .owl-stage {
    margin: 10px 0 20px;
}

/* Shared: dots offset for overlapping carousels */
.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 0 !important;
    position: absolute;
    top: calc(100% - 100px);
    width: 100%;
}


/* =============================================================================
   11. OFFER BANNER (.gem-offer-banner)
   ============================================================================= */

.gem-offer-banner {
    background-color: #1a3a34;
    border-radius: 20px;
    margin: 40px 0 60px;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    position: relative;
}

.gem-offer-content {
    flex: 1;
    padding: 50px;
    z-index: 2;
}

.gem-offer-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.gem-offer-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
    color: white;
}

.gem-offer-desc {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 30px;
    max-width: 450px;
}

.gem-coupon-box {
    display: inline-flex;
    align-items: center;
    background: white;
    color: black;
    padding: 5px 7px 5px 20px;
    border-radius: 12px;
    gap: 15px;
}

.gem-coupon-code {
    font-family: 'Monaco', 'Consolas', monospace;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 1.1rem;
    border: 2px dashed #ddd;
    padding: 8px 15px;
    border-radius: 8px;
}

.gem-btn-copy {
    background: #af9659;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--gem-transition);
}

    .gem-btn-copy:hover {
        background: #9d7e40;
        transform: scale(1.05);
    }

.gem-offer-image {
    flex: 0 0 40%;
    height: 400px;
    position: relative;
}

    .gem-offer-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        -webkit-mask-image: linear-gradient(to left, #1a3a34 26%, #49f7d600);
        mask-image: linear-gradient(to left, black 80%, transparent);
    }


/* =============================================================================
   12. HANDCRAFTED / FEATURE SECTION (#handcrafted-sourced)
   ============================================================================= */

#handcrafted-sourced {
    background: url('https://caketheme.com/html/mojuri/media/banner/bg-img-1.jpg');
    width: 100%;
    margin: auto;
    overflow: hidden;
}

.handcrafted-container {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    gap: 60px;
}

@media (min-width: 1750px) {
    .handcrafted-container {
        max-width: 1750px;
    }
}

.content-column {
    flex: 1;
    padding: 40px;
}

.intro-wrap {
    max-width: 540px;
}

.intro-heading {
    font-family: var(--font-serif);
    font-size: 48px;
    line-height: 1.2;
    color: var(--gem-black);
    margin-bottom: 50px;
    font-weight: 500;
}

.intro-item {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.icon-box {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #ffb48a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    transition: transform 0.3s ease;
}

.icon-wrap svg {
    fill: #fff;
    width: 100%;
    height: 100%;
}

.intro-item:hover .icon-box {
    transform: scale(1.1);
}

.feature-title {
    font-family: var(--font-serif);
    font-size: 16px;
    letter-spacing: 2px;
    color: var(--gem-black);
    margin: 0 0 10px;
    font-weight: 700;
}

.feature-text {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.btn-learn-more {
    display: inline-flex;
    align-items: center;
    background: #000;
    color: #fff;
    padding: 16px 35px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

    .btn-learn-more .arrow {
        margin-left: 10px;
        transition: transform 0.3s ease;
    }

    .btn-learn-more:hover {
        background: #ffb48a;
        color: #000;
    }

        .btn-learn-more:hover .arrow {
            transform: translateX(5px);
        }

.image-column {
    flex: 1.2;
    display: flex;
    justify-content: flex-end;
}

.image-hover-wrapper {
    width: 100%;
    overflow: hidden;
    cursor: pointer;
}

.intro-img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.5s ease, transform 1s ease;
}

.image-hover-wrapper:hover .intro-img {
    opacity: 0.85;
    transform: scale(1.03);
}


/* =============================================================================
   13. QUICK VIEW MODAL (.gem-qv-scope)
   ============================================================================= */
/*
.modal {
    z-index: 9999;
    backdrop-filter: blur(7px);
}

    .modal.show {
        display: block;
    }

.gem-qv-scope .modal-content {
    border-radius: overflow;
    border: none;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
}

.gem-qv-scope .modal-header {
    border-bottom: 1px solid #f1f5f9;
    padding: 20px 30px;
}

.gem-qv-scope .modal-body {
    padding: 0;
    max-height: calc(100vh - 200px);
    overflow: auto;
}

.gem-qv-image-side {
    background: #f8faff;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gem-qv-slider .item img {
    border-radius: 22px;
    max-height: 400px;
    width: auto;
    margin: auto auto 20px;
}

.gem-qv-details-side {
    padding: 40px;
}

.gem-qv-category {
    color: #273691;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.gem-qv-title,
.gem-qv-desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    max-height: calc(1.4em * 3);
}

.gem-qv-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gem-black);
    margin-bottom: 15px;
}

.gem-qv-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #273691;
    margin-bottom: 25px;
}

.gem-qv-desc {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.gem-qv-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
}

.gem-qv-spec-item {
    font-size: 0.85rem;
}

.gem-qv-spec-label {
    display: block;
    color: #94a3b8;
    font-weight: 600;
    font-size: 0.7rem;
    text-transform: uppercase;
}

.gem-qv-spec-val {
    color: #1e293b;
    font-weight: 700;
}

.gem-qv-action-btn {
    background: #273691;
    color: white;
    border: none;
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    transition: 0.3s;
    text-align: center;
}

    .gem-qv-action-btn:hover {
        background: #1a2a75;
        transform: translateY(-2px);
        box-shadow: 0 10px 15px -3px rgba(39, 54, 145, 0.3);
    }

.gem-qv-wish-btn {
    background: #f1f5f9;
    color: #64748b;
    border: none;
    padding: 15px;
    width: 55px;
    border-radius: 12px;
    transition: 0.3s;
}

    .gem-qv-wish-btn:hover {
        background: #fee2e2;
        color: #ef4444;
    }

    .gem-qv-wish-btn.active {
        color: #ef4444;
    }

@media (max-width: 991px) {
    .gem-qv-details-side {
        padding: 30px;
    }
}*/

/* ══════════════════════════════════════════════════
   QUICK VIEW MODAL — PREMIUM REDESIGN
   Same classnames, no HTML changes
══════════════════════════════════════════════════ */

.modal {
    z-index: 9999;
    backdrop-filter: blur(8px);
}

    .modal.show {
        display: block;
    }

/* ── MODAL SHELL ── */
.modal-content {
    border: none;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(42,31,20,0.22);
}

.modal-header {
    background: #fff;
    border-bottom: 1px solid #f0e8de;
    padding: 18px 28px;
    display: flex;
    align-items: center;
}

    .modal-header .modal-title {
        font-family: 'Cormorant Garamond', serif !important;
        font-size: 18px !important;
        font-weight: 600 !important;
        color: #2a1f14 !important;
        letter-spacing: 0.3px;
    }

    .modal-header .btn-close {
        opacity: 0.4;
        transition: opacity 0.2s;
    }

        .modal-header .btn-close:hover {
            opacity: 0.9;
        }

.modal-body {
    padding: 0;
    max-height: calc(100vh - 160px);
    overflow: auto;
}

/* ── IMAGE SIDE ── */
.gem-qv-image-side {
    background: #f7f3ef;
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 440px;
}

.gem-qv-slider .item img {
    border-radius: 12px;
    max-height: 380px;
    width: auto;
    margin: 0 auto 16px;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(42,31,20,0.10);
}

/* ── DETAILS SIDE ── */
.gem-qv-details-side {
    padding: 36px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}

/* category */
.gem-qv-category {
    font-family: 'Lato', sans-serif;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #cb8161;
    margin-bottom: 10px;
}

/* title */
.gem-qv-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #2a1f14;
    line-height: 1.2;
    margin-bottom: 10px;
    -webkit-line-clamp: unset;
    max-height: none;
    overflow: visible;
    display: block;
}

/* price */
.gem-qv-price {
    font-family: 'Lato', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #cb8161;
    margin-bottom: 18px;
}

/* desc */
.gem-qv-desc {
    font-size: 13px;
    font-weight: 400;
    color: #9e8e7e;
    line-height: 1.75;
    margin-bottom: 24px;
    -webkit-line-clamp: unset;
    max-height: none;
    overflow: visible;
    display: block;
}

/* ── SPECS GRID ── */
.gem-qv-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 28px;
    border: 1px solid #f0e8de;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.gem-qv-spec-item {
    padding: 14px 16px;
    border-right: 1px solid #f0e8de;
    border-bottom: 1px solid #f0e8de;
}

    .gem-qv-spec-item:nth-child(even) {
        border-right: none;
    }

    .gem-qv-spec-item:nth-last-child(-n+2) {
        border-bottom: none;
    }

.gem-qv-spec-label {
    display: block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #9e8e7e;
    margin-bottom: 4px;
}

.gem-qv-spec-val {
    font-size: 13px;
    font-weight: 700;
    color: #2a1f14;
    display: block;
}

/* ── ACTION BUTTONS ── */
.d-flex.gap-2.mt-4 {
    display: flex !important;
    gap: 10px !important;
    margin-top: 0 !important;
    align-items: stretch;
}

/* add to bag */
.gem-qv-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #2a1f14;
    color: #d4af37 !important;
    border: none;
    padding: 13px 20px;
    border-radius: 9px;
    font-family: 'Lato', sans-serif;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease;
    box-shadow: none !important;
}

    .gem-qv-action-btn:hover {
        background: #1a1209;
        color: #d4af37 !important;
        transform: translateY(-1px);
        box-shadow: none !important;
    }

    /* wishlist pill */
    .gem-qv-action-btn.text-red {
        background: #fdf5f0;
        color: #c0a090 !important;
        border: 1px solid #e8ddd2;
        flex: 0 0 46px;
        padding: 13px;
        font-size: 14px !important;
        letter-spacing: 0;
    }

        .gem-qv-action-btn.text-red:hover {
            background: #fee2e2;
            color: #e53e3e !important;
            border-color: #fecaca;
            transform: none;
        }

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
    .gem-qv-details-side {
        padding: 28px 24px;
    }

    .gem-qv-image-side {
        min-height: 300px;
        padding: 24px;
    }

    .gem-qv-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 767px) {
    .gem-qv-image-side {
        min-height: 240px;
        padding: 20px;
    }

    .gem-qv-details-side {
        padding: 24px 20px;
    }

    .gem-qv-title {
        font-size: 1.4rem;
    }

    .gem-qv-price {
        font-size: 1.2rem;
    }
}


/* =============================================================================
   14. AUTH MODAL (.gem-auth-modal)
   ============================================================================= */

.gem-auth-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    display: none;
    z-index: 99999;
    justify-content: center;
    align-items: center;
    padding: 20px;
    animation: fadeIn 0.4s ease;
}

.gem-auth-box {
    background: var(--gem-white);
    width: 100%;
    max-width: 440px;
    border-radius: var(--gem-radius);
    position: relative;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    border: 1px solid var(--gem-border);
    transition: var(--gem-transition);
}

.auth-close-trigger {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f4f5;
    color: var(--gem-black);
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-size: 1rem;
    border: none;
    transition: 0.3s;
}

    .auth-close-trigger:hover {
        background: var(--gem-gold);
        color: var(--gem-white);
        transform: rotate(90deg);
    }

.auth-form-padding {
    padding: 50px 40px 40px;
}

.auth-brand-logo {
    text-align: center;
    margin-bottom: 35px;
}

    .auth-brand-logo h2 {
        color: var(--gem-green);
        text-transform: uppercase;
        font-weight: 800;
        font-size: 1.4rem;
        margin: 0;
        display: inline-block;
        border-bottom: 2px solid var(--gem-gold);
        padding-bottom: 5px;
    }

.auth-form-padding h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gem-black);
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.asp-input {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid var(--gem-border);
    background: var(--gem-bg-soft);
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: block;
    outline: none;
    transition: var(--gem-transition);
}

    .asp-input:focus {
        border-color: var(--gem-gold);
        background: white;
        box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.05);
    }

.password-container {
    position: relative;
}

.toggle-eye-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--gem-text-muted);
    font-size: 0.85rem;
}

.forgot-pass {
    display: block;
    text-align: right;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gem-text-muted);
    text-decoration: none;
    margin-bottom: 25px;
    margin-top: -5px;
}

    .forgot-pass:hover {
        color: var(--gem-gold);
    }

.btn-gem-submit {
    display: block;
    width: 100%;
    background: var(--gem-black);
    color: white !important;
    padding: 15px;
    border-radius: 12px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-decoration: none;
    text-align: center;
    border: none;
    transition: var(--gem-transition);
}

    .btn-gem-submit:hover {
        background: var(--gem-green);
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(26, 58, 52, 0.2);
    }

.auth-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 25px 0;
    color: var(--gem-text-muted);
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

    .auth-divider::before,
    .auth-divider::after {
        content: '';
        flex: 1;
        border-bottom: 1px solid var(--gem-border);
    }

    .auth-divider:not(:empty)::before {
        margin-right: 15px;
    }

    .auth-divider:not(:empty)::after {
        margin-left: 15px;
    }

.social-row {
    display: flex;
    gap: 10px;
}

.btn-social-auth {
    flex: 1;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid var(--gem-border);
    background: white;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: 0.3s;
}

    .btn-social-auth:hover {
        background: var(--gem-bg-soft);
        border-color: var(--gem-text-muted);
    }

.auth-switch-text {
    margin-top: 30px;
    text-align: center;
    font-size: 0.8rem;
    color: var(--gem-text-muted);
    font-weight: 600;
}

    .auth-switch-text a {
        color: var(--gem-green);
        font-weight: 800;
        text-decoration: none;
        cursor: pointer;
        margin-left: 5px;
    }

        .auth-switch-text a:hover {
            color: var(--gem-gold);
        }

.auth-row-flex {
    display: flex;
    gap: 10px;
    width: 100%;
}

    .auth-row-flex .asp-input {
        flex: 1;
    }


/* =============================================================================
   15. PRODUCT DETAIL PAGE (.gem-pdp-wrapper)
   ============================================================================= */

.gem-pdp-wrapper {
    padding: 40px 0 100px;
}

/* Breadcrumbs */
.breadcrumb {
    margin-bottom: 30px;
}

nav[aria-label="breadcrumb"] {
    text-align: center;
    margin: auto;
    width: max-content;
}

.breadcrumb-item,
.breadcrumb-item a {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gem-gray);
    text-decoration: none;
}

    .breadcrumb-item.active {
        color: var(--gem-green);
        font-weight: 700;
        display: inline-block;
        max-width: 20ch;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

/* Gallery */
.gallery-sticky {
    position: sticky;
    top: 95px;
}

.main-img-box {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gem-border);
    cursor: crosshair !important;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    background-color: #f8faff;
}

    .main-img-box::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: inherit;
        background-size: cover;
        background-position: center;
        filter: blur(7px) brightness(0.9);
        z-index: 0;
    }

    .main-img-box #imgMain {
        position: relative;
        z-index: 1;
        width: 100%;
        height: auto;
        display: block;
        margin: auto;
        object-fit: contain;
        transition: transform 0.6s ease;
    }

.zoom-lens {
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 5;
}

.main-img-box:hover .zoom-lens {
    opacity: 1;
}

.thumb-nav {
    margin-top: 15px;
    display: flex;
    gap: 12px;
}

.thumb-box {
    width: 75px;
    height: 75px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--gem-transition);
}

    .thumb-box.active {
        border-color: var(--gem-gold);
    }

    .thumb-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.vid-thumb {
    position: relative;
}

    .vid-thumb::after {
        content: '\f144';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        font-size: 1.2rem;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

/* Product info */
.pdp-cat-tag {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--gem-gold);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 8px;
}

.pdp-main-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.pdp-price-tag {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gem-green);
    margin-bottom: 25px;
}

.pdp-rating-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    font-size: 0.85rem;
    font-weight: 600;
}

.stars-box {
    color: #ffb703;
}

.pdp-specs-strip {
    display: flex;
    gap: 30px;
    padding: 15px 0;
    border-top: 1px solid var(--gem-border);
    border-bottom: 1px solid var(--gem-border);
    margin-bottom: 30px;
}

.strip-label {
    font-weight: 700;
    color: var(--gem-black);
    font-size: 0.85rem;
}

.strip-val {
    color: var(--gem-gray);
    margin-left: 5px;
    font-size: 0.85rem;
}

/* Variant cards */
.variant-sec {
    margin-bottom: 35px;
}

.var-heading {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--gem-gray);
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.var-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
}

.var-item-card {
    background: white;
    border: 1px solid var(--gem-border);
    border-radius: 12px;
    padding: 12px 15px;
    cursor: pointer;
    transition: var(--gem-transition);
}

    .var-item-card.active {
        border-color: var(--gem-black);
        border-width: 2px;
        background: #fafafa;
    }

    .var-item-card:hover:not(.active) {
        border-color: var(--gem-gold);
    }

.var-name {
    font-weight: 700;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 4px;
    border-bottom: 1px solid #ededed;
    padding-bottom: 5px;
}

.var-price {
    font-size: 0.9rem;
    color: #333;
}

/* Delivery / pincode */
.delivery-box {
    background: var(--gem-bg-soft);
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 30px;
    border: 1px solid var(--gem-border);
}

.pin-flex {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

    .pin-flex input {
        border-radius: 10px;
        border: 1px solid var(--gem-border);
        padding: 10px 15px;
        flex: 1;
        outline: none;
        font-size: 0.9rem;
    }

.btn-check {
    background: var(--gem-black);
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.8rem;
}

/* Trust grid */
.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 35px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #444;
}

    .trust-item i {
        color: var(--gem-gold);
        font-size: 1rem;
    }

/* Action buttons */
.action-flex {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-action {
    height: 52px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    border: none;
    transition: var(--gem-transition);
    flex: 1;
    padding: 16px;
    text-align: center;
}

.btn-black {
    background: var(--gem-black);
    color: white;
}

.btn-gold {
    background: var(--gem-gold);
    color: white;
}

.btn-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-wish-pdp {
    width: 52px;
    height: 52px;
    background: #f4f4f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gem-black);
    border: none;
    transition: 0.3s;
}

    .btn-wish-pdp:hover {
        background: #fee2e2;
        color: #ef4444;
    }

/* Tabs */
.tabs-container {
    margin-top: 80px;
}

.nav-pdp {
    border: none;
    gap: 40px;
    margin-left: 10px;
}

    .nav-pdp .nav-link {
        border: none !important;
        color: var(--gem-gray) !important;
        font-weight: 800;
        padding: 15px 0 !important;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        background: transparent !important;
        position: relative;
    }

        .nav-pdp .nav-link.active {
            color: var(--gem-green) !important;
        }

            .nav-pdp .nav-link.active::after {
                content: '';
                position: absolute;
                bottom: -1px;
                left: 0;
                width: 100%;
                height: 3px;
                background: var(--gem-gold);
            }

.tab-pane {
    padding: 40px 0;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.8;
}

/* Reviews */
.sec-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gem-green);
    margin-bottom: 35px;
}

.review-card {
    background: white;
    border: 1px solid var(--gem-border);
    padding: 25px;
    border-radius: 16px;
    height: 100%;
    transition: 0.3s;
}

    .review-card:hover {
        border-color: var(--gem-gold);
    }

.review-meta {
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
}

/* Related products */
.gem-card-related {
    background: white;
    border: 1px solid var(--gem-border);
    border-radius: 14px;
    overflow: hidden;
    transition: var(--gem-transition);
    cursor: pointer;
}

    .gem-card-related:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    }

.card-img-wrap {
    position: relative;
    padding-top: 100%;
    background: #f8f9ff;
}

    .card-img-wrap img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.card-info {
    padding: 18px;
}

.card-price {
    font-weight: 800;
    color: var(--gem-green);
    font-size: 1rem;
}

/* PDP notification */
.notif-pdp {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gem-black);
    color: white;
    padding: 12px 25px;
    border-radius: 10px;
    display: none;
    z-index: 9999;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
    .pdp-main-title {
        font-size: 1.6rem;
    }

    .action-flex {
        flex-direction: column;
    }

    .btn-action {
        width: 100%;
    }
}


/* =============================================================================
   16. REVIEWS PAGE (.gem-reviews-vault)
   ============================================================================= */

.gem-reviews-vault {
    font-family: var(--font-sans);
    background-color: var(--gem-white);
    color: var(--gem-black);
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

    .gem-reviews-vault a {
        text-decoration: none;
        color: inherit;
        transition: var(--gem-transition);
    }

    .gem-reviews-vault .reviews-hero {
        background: linear-gradient(135deg, #ffdfb8 0%, #d7d7d7 100%);
        padding: 80px 40px;
        margin: 40px 0 60px;
        text-align: center;
        border: 1px solid rgba(26, 58, 52, 0.03);
        position: relative;
        overflow: hidden;
        border-radius: 10px;
    }

        .gem-reviews-vault .reviews-hero h1 {
            font-size: 3rem;
            font-weight: 800;
            color: var(--gem-green);
            letter-spacing: -1.5px;
            margin-bottom: 15px;
        }

    .gem-reviews-vault .rating-summary-box {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        margin-top: 25px;
    }

    .gem-reviews-vault .big-rating {
        font-size: 3.5rem;
        font-weight: 800;
        color: var(--gem-green);
        line-height: 1;
    }

    .gem-reviews-vault .summary-stars {
        color: var(--gem-gold);
        font-size: 1.2rem;
    }

    .gem-reviews-vault .summary-text {
        color: var(--gem-text-muted);
        font-weight: 600;
        font-size: 0.9rem;
    }

    .gem-reviews-vault .featured-reviews-wrap {
        background: var(--gem-bg-soft);
        border-radius: 40px;
    }

    .gem-reviews-vault .carousel-title {
        text-align: center;
        font-size: 0.75rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 4px;
        color: var(--gem-gold);
        margin-bottom: 40px;
    }

#featuredReviewCarousel .owl-stage-outer {
    padding-bottom: 6.25rem !important;
    padding-top: 0 !important;
}

#featuredReviewCarousel .owl-item img {
    display: block;
    width: auto;
}

.gem-reviews-vault .featured-review-card {
    padding: 40px;
    margin: 20px;
    /* border: 1px solid var(--gem-border);*/
    text-align: center;
    transition: var(--gem-transition);
}

.gem-reviews-vault .owl-item.center .featured-review-card {
    transform: scale(1.05);
    border-color: var(--gem-gold);
}

.gem-reviews-vault .quote-icon {
    font-size: 2rem;
    color: var(--gem-gold);
    opacity: 0.3;
    margin-bottom: 20px;
}

.gem-reviews-vault .featured-text {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--gem-green);
    margin-bottom: 25px;
    font-style: italic;
}

.gem-reviews-vault .client-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.gem-reviews-vault .client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--gem-gold);
    padding: 2px;
}

.gem-reviews-vault .client-name {
    font-weight: 800;
    font-size: 1rem;
    color: var(--gem-black);
}

.gem-reviews-vault .client-meta {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gem-gold);
    text-transform: uppercase;
}

.gem-reviews-vault .filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--gem-border);
    margin-bottom: 40px;
}

.gem-reviews-vault .btn-filter {
    background: transparent;
    border: 1px solid var(--gem-border);
    padding: 8px 18px;
    font-size: 0.85rem;
    font-weight: 700;
    transition: 0.3s;
}

    .gem-reviews-vault .btn-filter.active,
    .gem-reviews-vault .btn-filter:hover {
        border-color: var(--gem-green);
        background: var(--gem-green);
        color: white;
    }

.gem-reviews-vault .standard-review-card {
    padding: 30px;
    border: 1px solid var(--gem-border);
    height: 100%;
    background: white;
    transition: var(--gem-transition);
}

    .gem-reviews-vault .standard-review-card:hover {
        border-color: var(--gem-gold);
        transform: translateY(-5px);
    }

.gem-reviews-vault .verified-buyer {
    color: #10b981;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.gem-reviews-vault .review-stars {
    color: var(--gem-gold);
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.gem-reviews-vault .review-title {
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 8px;
}

.gem-reviews-vault .review-body {
    font-size: 0.9rem;
    color: var(--gem-text-muted);
    line-height: 1.6;
}

.gem-reviews-vault .btn-write {
    background: var(--gem-black);
    color: white;
    padding: 12px 25px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transition: 0.3s;
}

    .gem-reviews-vault .btn-write:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        background: var(--gem-green);
    }

.gem-reviews-vault .pagination-wrap {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.gem-reviews-vault .page-num {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--gem-border);
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    background: white;
}

    .gem-reviews-vault .page-num.active {
        background: var(--gem-green);
        color: white;
        border-color: var(--gem-green);
    }

    .gem-reviews-vault .page-num:hover:not(.active) {
        border-color: var(--gem-gold);
        color: var(--gem-gold);
    }

@media (max-width: 768px) {
    .gem-reviews-vault .reviews-hero h1 {
        font-size: 2.2rem;
    }

    .gem-reviews-vault .rating-summary-box {
        flex-direction: column;
        gap: 10px;
    }

    .gem-reviews-vault .featured-review-card {
        padding: 25px;
    }

    .gem-reviews-vault .filter-bar {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}


/* =============================================================================
   17. FAQ PAGE (.gem-faq-vault)
   ============================================================================= */

.gem-faq-vault {
    font-family: var(--font-sans);
    background-color: var(--gem-bg-soft);
    color: var(--gem-black);
    min-height: 100vh;
    padding-bottom: 100px;
}

    .gem-faq-vault a {
        text-decoration: none;
        color: inherit;
    }

.faq-hero {
    background: linear-gradient(135deg, var(--gem-green) 0%, #0d1f1b 100%);
    border-radius: var(--gem-radius);
    padding: 80px 40px;
    margin: 40px 0 60px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

    .faq-hero h1 {
        font-size: 2.8rem;
        font-weight: 800;
        letter-spacing: -1px;
        margin-bottom: 20px;
        color: white;
    }

.faq-search-wrap {
    max-width: 600px;
    margin: 30px auto 0;
    position: relative;
}

    .faq-search-wrap input {
        width: 100%;
        padding: 18px 25px 18px 55px;
        border-radius: 15px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        color: white;
        font-size: 1.1rem;
        transition: var(--gem-transition);
    }

        .faq-search-wrap input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .faq-search-wrap input:focus {
            background: rgba(255, 255, 255, 0.2);
            border-color: var(--gem-gold);
            outline: none;
        }

    .faq-search-wrap i {
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--gem-gold);
        font-size: 1.2rem;
    }

.trust-stripe {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.trust-box {
    text-align: center;
    padding: 30px;
    background: var(--gem-bg-soft);
    border-radius: 16px;
    border: 1px solid var(--gem-border);
    transition: var(--gem-transition);
}

    .trust-box:hover {
        transform: translateY(-5px);
        border-color: var(--gem-gold);
        background: white;
        box-shadow: 0 15px 30px rgba(26, 58, 52, 0.05);
    }

    .trust-box i {
        font-size: 2rem;
        color: var(--gem-gold);
        margin-bottom: 15px;
    }

    .trust-box h4 {
        font-size: 1rem;
        font-weight: 800;
        margin-bottom: 8px;
    }

    .trust-box p {
        font-size: 0.8rem;
        color: var(--gem-text-muted);
        margin: 0;
        font-weight: 500;
    }

.faq-category-title {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--gem-gold);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .faq-category-title::after {
        content: '';
        height: 1px;
        flex-grow: 1;
        background: var(--gem-border);
    }

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 12px !important;
    overflow: hidden;
    border: 1px solid var(--gem-border);
    transition: var(--gem-transition);
}

.accordion-button {
    padding: 22px 30px;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--gem-black);
    background: white;
    box-shadow: none !important;
}

    .accordion-button:not(.collapsed) {
        color: var(--gem-green);
        background: var(--gem-bg-soft);
    }

    .accordion-button::after {
        filter: grayscale(1);
        transform: scale(0.8);
    }

.accordion-body {
    padding: 0 30px 30px;
    color: var(--gem-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    background: var(--gem-bg-soft);
}

.faq-footer-cta {
    background: var(--gem-bg-soft);
    padding: 60px;
    border-radius: 30px;
    text-align: center;
    margin-top: 80px;
    border: 1px solid var(--gem-border);
}

.btn-expert {
    background: var(--gem-black);
    color: white;
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    margin-top: 20px;
    transition: 0.3s;
}

    .btn-expert:hover {
        background: var(--gem-green);
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

@media (max-width: 768px) {
    .faq-hero h1 {
        font-size: 2rem;
    }

    .faq-footer-cta {
        padding: 40px 20px;
    }
}


/* ══════════════════════════════════════════════════
   ABOUT PAGE — DESIGN TOKENS
══════════════════════════════════════════════════ */
.gem-about-vault {
    --ab-gold: #d4af37;
    --ab-gold-soft: #f5e9b8;
    --ab-acc: #cb8161;
    --ab-deep: #2a1f14;
    --ab-text: #3d2e1e;
    --ab-muted: #9e8e7e;
    --ab-border: #e8ddd2;
    --ab-bg: #fdf8f2;
    --ab-bg-card: #ffffff;
    --ab-black: #121008;
    --ab-radius: 16px;
    --ab-transition: all 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-family: 'Lato', sans-serif;
    background: var(--ab-bg);
    color: var(--ab-text);
    overflow-x: hidden;
    line-height: 1.7;
}

/* ══════════════════════════════════════════════════
   1. BRAND HEADER — HERO BANNER
══════════════════════════════════════════════════ */
.about-brand-header {
    position: relative;
    padding: 110px 24px 100px;
    text-align: center;
    border-radius: 20px;
    margin: 32px 0 72px;
    overflow: hidden;
    background: var(--ab-black);
}

.about-brand-header__bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(212,175,55,0.12) 0%, transparent 55%), radial-gradient(ellipse at 80% 30%, rgba(203,129,97,0.1) 0%, transparent 45%), radial-gradient(ellipse at 50% 100%, rgba(212,175,55,0.06) 0%, transparent 50%);
    pointer-events: none;
}

.about-brand-header__dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.about-brand-header__ornament {
    position: absolute;
    width: 180px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.4), transparent);
    left: 50%;
    transform: translateX(-50%);
}

.about-brand-header__ornament--top {
    top: 36px;
}

.about-brand-header__ornament--bottom {
    bottom: 36px;
}

.about-brand-header .subtitle {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--ab-acc);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.about-brand-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 16px;
    line-height: 1.1;
    position: relative;
    z-index: 2;
}

    .about-brand-header h1 span {
        color: var(--ab-gold);
        font-style: italic;
        font-weight: 400;
    }

.about-brand-header__tagline {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,0.45);
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

/* ══════════════════════════════════════════════════
   2. VALUE STRIPE
══════════════════════════════════════════════════ */
.value-stripe {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 80px;
}

.value-box {
    text-align: center;
    padding: 36px 24px;
    background: var(--ab-bg-card);
    border: 1px solid var(--ab-border);
    border-radius: var(--ab-radius);
    transition: var(--ab-transition);
    position: relative;
    overflow: hidden;
}

    .value-box::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--ab-gold);
        transition: width 0.4s ease;
    }

    .value-box:hover::after {
        width: 100%;
    }

    .value-box:hover {
        transform: translateY(-4px);
        border-color: rgba(212,175,55,0.3);
        box-shadow: 0 12px 32px rgba(42,31,20,0.08);
    }

    .value-box i {
        font-size: 1.6rem;
        color: var(--ab-acc);
        margin-bottom: 16px;
        display: block;
    }

    .value-box h4 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--ab-deep);
        margin-bottom: 8px;
        letter-spacing: 0.3px;
    }

    .value-box p {
        font-size: 12.5px;
        color: var(--ab-muted);
        margin: 0;
        line-height: 1.65;
    }

/* ══════════════════════════════════════════════════
   3. SECTION TAGS & TITLES
══════════════════════════════════════════════════ */
.about-section-tag {
    display: block;
    text-align: center;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--ab-acc);
    margin-bottom: 14px;
}

.about-main-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--ab-deep);
    margin-bottom: 48px;
    text-align: center;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

    .about-main-title em {
        font-style: italic;
        color: var(--ab-acc);
    }

.about-section-divider {
    width: 44px;
    height: 1px;
    background: var(--ab-gold);
    margin: 0 auto 52px;
}

/* ══════════════════════════════════════════════════
   4. STORY BLOCK
══════════════════════════════════════════════════ */
.story-block {
    background: var(--ab-bg-card);
    border: 1px solid var(--ab-border);
    border-radius: 20px;
    padding: 64px 72px;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
}

    .story-block::before {
        content: '\201C';
        position: absolute;
        top: -10px;
        left: 40px;
        font-family: 'Cormorant Garamond', serif;
        font-size: 160px;
        color: var(--ab-gold);
        opacity: 0.07;
        line-height: 1;
        pointer-events: none;
        font-style: italic;
    }

.story-text {
    font-size: 1.05rem;
    color: var(--ab-text);
    line-height: 2;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

    .story-text b {
        color: var(--ab-deep);
        font-weight: 600;
    }

.btn-gem-outline {
    display: inline-block;
    background: transparent;
    border: 1px solid var(--ab-border);
    color: var(--ab-deep);
    padding: 13px 36px;
    font-family: 'Lato', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--ab-transition);
    margin-top: 36px;
    text-decoration: none;
}

    .btn-gem-outline:hover {
        background: var(--ab-deep);
        border-color: var(--ab-deep);
        color: #fff;
        transform: translateY(-2px);
    }

/* ══════════════════════════════════════════════════
   5. VIDEO SECTION
══════════════════════════════════════════════════ */
.video-story-section {
    position: relative;
    overflow: hidden;
    margin-bottom: 80px;
    height: 480px;
    border-radius: 20px;
    background: var(--ab-black);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    filter: grayscale(40%);
    transition: opacity 0.6s ease;
}

.video-story-section:hover .video-placeholder-bg {
    opacity: 0.28;
}

.video-story-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(42,31,20,0.5) 0%, rgba(18,10,8,0.6) 100%);
    pointer-events: none;
}

.video-overlay-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 24px;
}

.play-btn-circle {
    width: 84px;
    height: 84px;
    border: 1px solid rgba(212,175,55,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    color: var(--ab-gold);
    font-size: 1.6rem;
    cursor: pointer;
    background: rgba(212,175,55,0.08);
    transition: var(--ab-transition);
    backdrop-filter: blur(4px);
}

    .play-btn-circle:hover {
        background: var(--ab-gold);
        color: var(--ab-black);
        border-color: var(--ab-gold);
        transform: scale(1.08);
        box-shadow: 0 0 40px rgba(212,175,55,0.3);
    }

.video-overlay-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 300;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.video-overlay-content p {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}

/* ══════════════════════════════════════════════════
   6. GALLERY
══════════════════════════════════════════════════ */
.gallery-wrap {
    margin-bottom: 80px;
}

.gem-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    height: 280px;
    border-radius: 12px;
    cursor: pointer;
    background: var(--ab-border);
}

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.55s cubic-bezier(0.25,0.46,0.45,0.94), opacity 0.4s ease;
        opacity: 0.9;
    }

    .gallery-item::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(42,31,20,0.5) 0%, transparent 50%);
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.07);
        opacity: 1;
    }

    .gallery-item:hover::after {
        opacity: 1;
    }

.gallery-item__zoom {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    opacity: 0;
    z-index: 2;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ab-deep);
    font-size: 14px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item:hover .gallery-item__zoom {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.gallery-item:nth-child(2) {
    grid-column: span 2;
}

.gallery-item:nth-child(5) {
    grid-column: span 2;
}

/* ══════════════════════════════════════════════════
   7. FOUNDER SECTION
══════════════════════════════════════════════════ */
.founder-summary-box {
    background: var(--ab-bg-card);
    border: 1px solid var(--ab-border);
    border-radius: 20px;
    padding: 72px 48px;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

    .founder-summary-box::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at 50% 0%, rgba(212,175,55,0.06) 0%, transparent 60%);
        pointer-events: none;
    }

    .founder-summary-box::after {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--ab-gold), transparent);
    }

.founder-img {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    border: 1px solid rgba(212,175,55,0.4);
    padding: 3px;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
    object-fit: cover;
}

.founder-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.3rem, 2.5vw, 1.9rem);
    font-weight: 300;
    font-style: italic;
    color: var(--ab-deep);
    max-width: 700px;
    margin: 0 auto 28px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

    .founder-quote::before,
    .founder-quote::after {
        content: '"';
        color: var(--ab-gold);
        font-size: 1.4em;
        line-height: 0;
        vertical-align: -0.3em;
        opacity: 0.6;
    }

    .founder-quote::after {
        content: '"';
    }

.founder-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--ab-deep);
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
}

.founder-title {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--ab-acc);
    position: relative;
    z-index: 1;
}

/* ══════════════════════════════════════════════════
   8. IMMERSIVE MODAL
══════════════════════════════════════════════════ */
#immersiveModal {
    z-index: 99999 !important;
}

.modal-immersive .modal-content {
    background: rgba(8,5,2,0.97);
    border: none;
    border-radius: 0;
    height: 100vh;
}

.modal-immersive .modal-body {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.immersive-media-container {
    max-width: 90%;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .immersive-media-container img,
    .immersive-media-container video {
        max-width: 100%;
        max-height: 100%;
        border-radius: 6px;
        box-shadow: 0 0 80px rgba(0,0,0,0.6);
    }

.immersive-close-btn {
    position: absolute;
    top: 20px;
    right: 28px;
    color: rgba(255,255,255,0.6);
    font-size: 2.2rem;
    cursor: pointer;
    z-index: 3000;
    background: transparent;
    border: none;
    transition: color 0.2s, transform 0.3s;
    line-height: 1;
}

    .immersive-close-btn:hover {
        color: var(--ab-gold);
        transform: rotate(90deg);
    }

/* ══════════════════════════════════════════════════
   9. RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 991px) {
    .gem-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item:nth-child(n) {
        grid-column: span 1;
    }

    .story-block {
        padding: 40px 36px;
    }
}

@media (max-width: 768px) {
    .about-brand-header {
        padding: 72px 24px;
    }

    .story-block {
        padding: 32px 24px;
    }

        .story-block::before {
            font-size: 100px;
        }

    .about-main-title {
        margin-bottom: 32px;
    }

    .founder-summary-box {
        padding: 48px 24px;
    }

    .founder-quote {
        font-size: 1.2rem;
    }

    .video-story-section {
        height: 360px;
        border-radius: 14px;
    }

    .gem-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .value-stripe {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .gem-gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .gallery-item {
        height: 180px;
    }

    .about-brand-header h1 {
        letter-spacing: 3px;
    }
}


/* =============================================================================
   19. CONTACT PAGE (.gem-contact-vault)
   ============================================================================= */

.gem-contact-vault {
    font-family: var(--font-sans);
    background: var(--gem-white);
    color: var(--gem-black);
    overflow-x: hidden;
    line-height: 1.6;
}

.contact-content-sec {
    padding: 80px 0;
    background: var(--gem-bg-soft);
}

.office-card {
    background: #000000;
    border-radius: 0;
    border-color: #ffffff;
    padding: 40px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: var(--gem-transition);
}

    .office-card:hover {
        transform: translateY(-10px);
        border-color: var(--gem-gold);
        box-shadow: 0 25px 50px -12px rgba(26, 58, 52, 0.1);
    }

    .office-card h3 {
        font-size: 1.4rem;
        font-weight: 800;
        color: #ffffff;
        margin-bottom: 20px;
    }

.loc-tag {
    font-size: 0.7rem;
    font-weight: 800;
    color: #b6816c;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    display: block;
}

.office-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .office-info li {
        display: flex;
        gap: 15px;
        margin-bottom: 18px;
        font-size: 0.9rem;
        color: #ffffff;
        line-height: 1.6;
    }

    .office-info i {
        font-size: 1.1rem;
        margin-top: 3px;
        width: 20px;
        text-align: center;
    }

    .office-info a {
        color: inherit;
        text-decoration: none;
        transition: 0.3s;
    }

        .office-info a:hover {
            color: var(--gem-gold);
        }

.contact-form-box {
    background: white;
    border: 1px solid var(--gem-border);
    padding: 60px;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.05);
}

.form-label {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gem-text-muted);
    margin-bottom: 10px;
}

.form-control {
    border: 1px solid var(--gem-border);
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 0.95rem;
    background: var(--gem-bg-soft);
    transition: 0.3s;
}

    .form-control:focus {
        border-color: var(--gem-green);
        background: white;
        box-shadow: 0 0 0 4px rgba(26, 58, 52, 0.05);
    }

.form-select {
    border: 1px solid var(--gem-border);
    border-radius: 12px;
    padding: 15px 20px;
    background: var(--gem-bg-soft);
}

.connect-stripe {
    padding: 60px 0;
    border-top: 1px solid var(--gem-border);
}

.connect-item {
    text-align: center;
}

    .connect-item h5 {
        font-size: 0.75rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--gem-gold);
        margin-bottom: 15px;
    }

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gem-bg-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gem-green);
    border: 1px solid var(--gem-border);
    transition: 0.3s;
}

    .social-link:hover {
        background: var(--gem-green);
        color: white;
        transform: scale(1.1);
    }

@media (max-width: 991px) {
    .contact-form-box {
        padding: 30px;
    }
}


/* =============================================================================
   20. CATEGORY DISCOVERY PAGE (.gem-cat-vault)
   ============================================================================= */

.gem-cat-vault {
    font-family: var(--font-sans);
    background: var(--gem-white);
    color: var(--gem-black);
    min-height: 100vh;
    padding-bottom: 100px;
}

    .gem-cat-vault a {
        text-decoration: none;
        color: inherit;
    }

.discovery-hero {
    padding: 80px 0 60px;
    text-align: center;
}

    .discovery-hero h1 {
        font-size: 2.8rem;
        font-weight: 800;
        color: var(--gem-green);
        margin-bottom: 20px;
        letter-spacing: -1px;
    }

.cat-search-wrap {
    max-width: 600px;
    margin: 30px auto 0;
    position: relative;
}

.cat-item {
    padding-bottom: 20px;
}

.cat-search-wrap input {
    width: 100%;
    padding: 18px 25px 18px 55px;
    border-radius: 15px;
    border: 1px solid var(--gem-border);
    background: white;
    font-size: 1.1rem;
    transition: var(--gem-transition);
    box-shadow: 0 10px 30px rgba(26, 58, 52, 0.05);
}

    .cat-search-wrap input:focus {
        border-color: var(--gem-gold);
        box-shadow: 0 15px 40px rgba(26, 58, 52, 0.1);
        outline: none;
    }

.cat-search-wrap i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gem-gold);
    font-size: 1.2rem;
}

.featured-cat-link {
    display: block;
    width: 100%;
    height: 500px;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    background: var(--gem-green);
    transition: var(--gem-transition);
}

    .featured-cat-link img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.75;
        transition: transform 1.5s ease;
    }

    .featured-cat-link:hover img {
        transform: scale(1.05);
    }

    .featured-cat-link h2 {
        font-size: 3.5rem;
        font-weight: 800;
        margin-bottom: 15px;
        letter-spacing: -1.5px;
    }

    .featured-cat-link p {
        font-size: 1.1rem;
        opacity: 0.9;
        margin-bottom: 30px;
        line-height: 1.6;
    }

.featured-cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(26, 58, 52, 0.9) 0%, transparent 70%);
    display: flex;
    align-items: center;
    padding: 0 80px;
    color: white;
}

.featured-cat-content {
    max-width: 500px;
}

.featured-tag {
    color: var(--gem-gold);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.8rem;
    margin-bottom: 20px;
    display: block;
}

.featured-cat-block {
    margin-bottom: 60px;
}

.btn-discover {
    display: inline-block;
    padding: 12px 30px;
    background: var(--gem-gold);
    color: var(--gem-green);
    border-radius: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.cat-grid-card {
    background: white;
    border: 1px solid var(--gem-border);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--gem-transition);
}

.cat-img-box {
    height: 250px;
    overflow: hidden;
    position: relative;
}

    .cat-img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--gem-transition);
    }

.cat-info-box {
    padding: 30px;
    text-align: center;
    flex-grow: 1;
}

    .cat-info-box h4 {
        font-size: 1.4rem;
        font-weight: 800;
        color: var(--gem-green);
        margin-bottom: 10px;
    }

    .cat-info-box p {
        font-size: 0.9rem;
        color: var(--gem-text-muted);
        margin: 0;
        line-height: 1.5;
    }

.cat-link-wrapper:hover .cat-grid-card {
    transform: translateY(-10px);
    border-color: var(--gem-gold);
    box-shadow: 0 25px 50px -12px rgba(26, 58, 52, 0.12);
}

.cat-link-wrapper:hover .cat-img-box img {
    transform: scale(1.1);
}

.cat-link-wrapper:hover .cat-info-box h4 {
    color: var(--gem-gold);
}

@media (max-width: 991px) {
    .featured-cat-link {
        height: 400px;
    }

    .featured-cat-overlay {
        padding: 0 40px;
    }

    .featured-cat-link h2 {
        font-size: 2.5rem;
    }

    .discovery-hero h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .featured-cat-link {
        border-radius: 20px;
    }

    .featured-cat-overlay {
        text-align: center;
        justify-content: center;
        padding: 20px;
        background: rgba(26, 58, 52, 0.85);
    }
}


/* =============================================================================
   21. POLICY PAGES (.gem-policy-vault / .gem-policy-pages)
   ============================================================================= */

.gem-policy-vault {
    font-family: var(--font-sans);
    background-color: var(--gem-bg-soft);
    color: var(--gem-black);
    line-height: 1.8;
}

.gem-policy-pages .policy-header {
    background: #ffffff;
    padding: 50px 0;
    text-align: center;
}

    .gem-policy-pages .policy-header h1 {
        text-transform: uppercase;
        letter-spacing: 6px;
        font-weight: 800;
        font-size: clamp(1.5rem, 4vw, 2.5rem);
        margin: 0;
        color: var(--gem-gold);
    }

.gem-policy-pages .faq-header {
    padding: 60px 0;
    text-align: center;
    color: gray;
}

    .gem-policy-pages .faq-header h1 {
        text-transform: uppercase;
        letter-spacing: 6px;
        font-weight: 800;
        font-size: clamp(1.5rem, 4vw, 2.2rem);
        margin: 0;
        color: var(--gem-gold);
    }

.gem-policy-pages .content-card {
    max-width: 1000px;
    margin: 40px auto 80px;
    background: white;
    padding: 60px;
    border-radius: 24px;
    border: 1px solid var(--gem-border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
}

.gem-policy-pages .gold-line {
    width: 80px;
    height: 4px;
    background: var(--gem-gold);
    margin-bottom: 40px;
}

.gem-policy-pages h2 {
    color: var(--gem-green);
    font-weight: 800;
    font-size: 1.6rem;
    margin-top: 50px;
    margin-bottom: 25px;
    border-left: 5px solid var(--gem-gold);
    padding-left: 20px;
}

.gem-policy-pages h3 {
    color: var(--gem-green);
    font-weight: 800;
    font-size: 1.2rem;
    margin-top: 35px;
    margin-bottom: 15px;
    padding-bottom: 10px;
}

.gem-policy-pages h4 {
    color: #333;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 25px;
    margin-bottom: 10px;
}

.gem-policy-pages p,
.gem-policy-pages li {
    color: #4b5563;
    font-size: 1rem;
}



.gem-policy-pages .promo-box {
    background: linear-gradient(135deg, var(--gem-green) 0%, #0d1f1b 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid var(--gem-gold);
    margin: 30px 0;
}

    .gem-policy-pages .promo-box h4 {
        color: var(--gem-gold);
        font-weight: 800;
        margin-bottom: 10px;
        font-size: 1.1rem;
    }

.gem-policy-pages .logistics-grid {
    display: flex;
    gap: 30px;
    margin: 20px 0;
    opacity: 0.6;
}

    .gem-policy-pages .logistics-grid i {
        font-size: 2rem;
    }

.gem-policy-pages .faq-content {
    max-width: 850px;
    margin: 60px auto;
}

.gem-policy-pages .accordion-item {
    border: 1px solid var(--gem-border);
    border-radius: 16px !important;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.gem-policy-pages .accordion-button {
    font-weight: 700;
    color: var(--gem-green);
    padding: 22px 30px;
    font-size: 1.05rem;
}

    .gem-policy-pages .accordion-button:not(.collapsed) {
        background: #f8fafc;
        color: var(--gem-blue);
        box-shadow: none;
    }

.gem-policy-pages .accordion-body {
    padding: 30px;
    color: #555;
    line-height: 1.7;
    background: white;
}

.gem-policy-pages .badge-comp {
    background: var(--gem-gold);
    color: var(--gem-green);
    font-size: 0.65rem;
    text-transform: uppercase;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 5px;
    margin-left: 10px;
    vertical-align: middle;
}

.highlight-text {
    color: var(--gem-blue);
    font-weight: 700;
}

@media (max-width: 768px) {
    .gem-policy-pages .content-card {
        padding: 30px 20px;
        margin: 20px 15px;
    }

    .gem-policy-pages .faq-content {
        padding: 0 15px;
    }
}


/* =============================================================================
   22. FOOTER
   ============================================================================= */

.footerAside {
    color: #dbdbdb;
    font-size: 1rem;
    line-height: 1.375rem;
    background: #f6f6f6;
}

    .footerAside .ftColsWrap .ftHeading {
        font-size: 1.25rem;
        line-height: 1.625rem;
        color: #000000;
    }

    .footerAside .ftColsWrap .ftLinksList a:hover {
        color: var(--accent-color);
        cursor: pointer;
    }

address.ftLocation .d-block strong {
    color: #cd8667;
}

address.ftLocation .d-block {
    color: #868686;
}

#pageFooter {
    font-size: 1rem;
    line-height: 1.625rem;
    background: #f6f6f6;
    border-top: 1px solid #d2a85552 !important;
    position: relative;
}

    #pageFooter .footerNav a:hover {
        color: #d4a956;
    }

    #pageFooter ul li::before,
    .footerAreaWrap .list-unstyled li::before {
        color: var(--gem-gold);
        font-weight: bold;
        font-size: 10px;
        position: relative;
        top: -2px;
        margin-right: 4px;
    }

.footer-social-flex {
    display: flex;
    gap: 15px;
    top: -6px;
    position: relative;
}

.social-circle {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    transition: 0.3s;
    font-size: 0.9rem;
    border: 1px solid #d3d3d3;
}

    .social-circle:hover {
        background: var(--gem-gold);
        color: #ffffff;
        background: var(--accent-color);
        border-color: var(--accent-color);
    }

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.payment-badges img {
    height: 20px;
    opacity: 0.5;
    margin-left: 15px;
    filter: grayscale(1);
}

/* Signup / Newsletter aside */
.signupAsideBlock .newsCol {
    min-height: calc(58vh - 200px);
    padding-top: 6%;
    padding-bottom: 4%;
}

    .signupAsideBlock .newsCol .btn {
        font-size: 15px;
        line-height: 17px;
        border-radius: 10px;
        background: #ae9558;
        border: none;
    }

/* Badger aside */
.badgerIIAsideBlock .babWrapper {
    font-size: 1rem;
    background: var(--gem-dark-green);
    color: #555;
    border-radius: 15px;
}


/* =============================================================================
   23. PAGINATION (.gem-pagination-container)
   ============================================================================= */

.gem-pagination-container {
    font-family: var(--font-sans);
    margin: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid #f3f3f3;
    padding-top: 50px;
}

.gem-pagination {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
    gap: 8px;
}

.gem-page-item {
    display: inline-block;
}

.gem-page-link {
    text-decoration: none;
    color: var(--gem-black);
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid transparent;
    background: transparent;
    transition: var(--gem-transition);
    position: relative;
}

.gem-page-item:not(.disabled):not(.active) .gem-page-link:hover {
    background: #f9f9f9;
    color: #c5a059;
    border-color: #eee;
    transform: translateY(-2px);
}

.gem-page-item.active .gem-page-link {
    background: var(--gem-black);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

li.gem-page-item.active a {
    border: 2px solid #d59a80;
    color: #d59a80 !important;
}

.gem-nav-link {
    font-size: 12px;
    border: 1px solid #e0e0e0;
    margin: 0 10px;
}

.gem-page-item.disabled .gem-page-link {
    color: #ccc;
    cursor: not-allowed;
    border-color: #f0f0f0;
}

@media (max-width: 480px) {
    .gem-page-link {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .gem-nav-link {
        margin: 0 5px;
    }
}


/* =============================================================================
   24. TOAST NOTIFICATIONS (.gem-toast-container)
   ============================================================================= */

.gem-toast-container {
    position: fixed;
    top: 145px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gem-mini-toast {
    background: var(--toast-glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 6px 8px 6px 16px;
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 12px;
    pointer-events: auto;
    opacity: 0;
    transform: translateY(-15px) scale(0.98);
    transition: all 0.4s var(--toast-easing);
    margin-bottom: 10px;
}

    .gem-mini-toast.show {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

.gem-mini-icon {
    color: var(--toast-accent-color);
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gem-mini-content {
    white-space: nowrap;
}

.gem-mini-text {
    font-size: 13px;
    font-weight: 500;
    color: var(--toast-text-color);
}

.gem-mini-close {
    background: rgba(0, 0, 0, 0.03);
    border: none;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    cursor: pointer;
    font-size: 9px;
    transition: all 0.2s;
}

    .gem-mini-close:hover {
        background: var(--toast-text-color);
        color: #fff;
    }

/* Shared generic notification bar (used on non-PDP pages) */
.notif-gem {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--gem-green);
    color: white;
    padding: 15px 25px;
    border-radius: 12px;
    display: none;
    z-index: 9999;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}


/* =============================================================================
   25. ANIMATIONS (@keyframes)
   ============================================================================= */

@keyframes luxuryShine {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

@keyframes letterWave {
    0%, 20%, 100% {
        opacity: 1;
        letter-spacing: 4px;
    }

    10% {
        opacity: 0.7;
        letter-spacing: 5px;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes cartBounce {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

@keyframes pulse {
    70% {
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}


/* =============================================================================
   26. RESPONSIVE OVERRIDES
   ============================================================================= */

/* Handcrafted section — medium screens */
@media (max-width: 1200px) {
    .handcrafted-container {
        max-width: 90%;
        gap: 40px;
    }

    .intro-heading {
        font-size: 38px;
    }
}

/* Handcrafted section — tablet */
@media (max-width: 991px) {
    .handcrafted-container {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .intro-wrap {
        margin: 0 auto;
        max-width: 100%;
    }

    .intro-item {
        flex-direction: column;
        align-items: center;
    }

    .intro-cta {
        text-align: center;
    }

    .image-column {
        justify-content: center;
    }
}

/* Mobile — general */
@media (max-width: 768px) {
    .footer-social-flex {
        justify-content: left;
    }

    .footer-bottom {
        justify-content: center;
    }

    #lumina-owl-carousel {
        padding: 0 30px;
    }

        #lumina-owl-carousel .owl-nav button.owl-prev,
        #lumina-owl-carousel .owl-nav button.owl-next {
            width: 32px;
            height: 32px;
            font-size: 14px !important;
        }
}

/* Mobile — header & layout */
@media (max-width: 900px) {
    #lumina-header-v2 .nav-row {
        display: none !important;
    }

    #lumina-header-v2 .mobile-menu {
        display: block;
        background: #000 !important;
    }

    .mm-menu {
        display: block;
    }

    .mobile-toggle {
        display: block;
        position: absolute;
        right: 10px;
        top: 10px;
        padding: 10px !important;
        width: 70px;
        text-align: center;
        cursor: pointer;
        transition: cubic-bezier(0, 0.91, 0.87, 0.98) .3s;
    }

        .mobile-toggle a {
            font-size: 30px;
            padding: 10px;
            color: #3b3b3b;
            border: 1px solid silver;
            width: 50px;
            border: 1px solid silver;
            border-radius: 5px;
        }

        .mobile-toggle:hover a {
            transform: scale(1.1);
            text-shadow: 2px 2px rgba(0,0,0,0.32);
        }

    #lumina-header-v2 .mobile-menu {
        position: absolute;
        width: 100%;
        background: white;
        z-index: 9999;
        height: calc(100vh - 30px);
        top: 73px;
        left: 0;
        display: none;
        transition: all ease-in-out .3s;
    }

        #lumina-header-v2 .mobile-menu.active {
            display: block;
            top: 72px;
        }

    #lumina-header-v2 .main-header-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 0 auto;
        padding: 0 80px;
        gap: 20px;
        width: 100%;
        background: #ffffff;
        backdrop-filter: blur(9px);
    }

    .sticky #lumina-header-v2 .main-header-row {
        background: white !important;
    }

    #lumina-header-v2 .logo-section {
        flex: 1;
        display: flex;
        justify-content: flex-start;
        padding: 8px 0;
    }

        #lumina-header-v2 .logo-section .logo-white {
            display: none !important;
        }

        #lumina-header-v2 .logo-section .logo-black {
            display: block !important;
        }

    #lumina-header-v2 .nav-list {
        display: none;
    }

    #lumina-header-v2 .logo-section .logo-black {
        margin: 8px;
    }

    .mobile-toggle {
    }

    #lumina-header-v2.sticky {
        height: 72px;
    }

    div#lumina-header-v2.sticky .mobile-menu.active .utility-btn span, div#lumina-header-v2.sticky .mobile-menu.active svg.utility-icon {
        color: white !important;
        stroke: white !important;
    }

    #lumina-header-v2.sticky .utility-section {
        border-left: 1px solid #c0c0c063;
        backdrop-filter: none;
        border-radius: 0;
        padding-left: 20px;
    }


    .utility-section {
        display: block;
        width: max-content !important;
        margin: auto !important;
        padding: 15px 0 15px !important;
        border: none !important;
    }

    /* Mobile mega menu — always open (visible as stacked list) */
    ul.mm-nav-list {
        height: calc(100vh - 156px);
        overflow: auto;
    }

    .mm-menu.mm-nav-row {
        width: 100%;
        max-width: 100%;
        background: #ffffff;
        border: 1px solid #e0e0e0;
        overflow: hidden;
    }

    .mm-menu .mm-nav-list {
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .mm-menu .mm-nav-item {
        display: block !important;
        border-bottom: 1px solid #f0f0f0;
    }

        .mm-menu .mm-nav-item:last-child {
            border-bottom: none;
        }

    .mm-menu .mm-nav-main-link {
        display: flex !important;
        align-items: center;
        padding: 16px 20px !important;
        text-decoration: none;
        color: #333333;
        font-weight: 400;
        font-size: 16px;
        background: #ffffff;
        transition: background 0.2s;
    }

    .mm-menu .mm-mega-menu {
        display: block !important;
        padding-bottom: 15px !important;
        background: #fafafa;
    }

    .mm-menu .mm-mega-col-title {
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: #999;
        padding: 20px !important;
        font-weight: 700;
        background: #ffffff;
    }

    .mm-menu .mm-mega-list {
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }

        .mm-menu .mm-mega-list li {
            display: block !important;
        }

            .mm-menu .mm-mega-list li a {
                display: flex !important;
                align-items: center;
                padding: 10px 20px !important;
                text-decoration: none;
                color: #444;
                font-size: 14px;
                transition: color 0.2s;
            }

                .mm-menu .mm-mega-list li a span {
                    margin-left: 10px !important;
                }

    .mm-menu .mm-gift-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 15px;
        padding: 10px 20px !important;
    }

    .mm-menu .mm-gift-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: #333;
    }

    .mm-menu .mm-gift-image-wrapper {
        width: 100%;
        aspect-ratio: 1/1;
        background: #eee;
        border-radius: 12px;
        overflow: hidden;
        margin-bottom: 8px !important;
    }

        .mm-menu .mm-gift-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .mm-menu .mm-gift-card span {
        font-size: 11px;
        font-weight: 500;
        text-align: center;
    }

    .mm-menu .mm-banner-container {
        padding: 10px 20px !important;
    }

    .mm-menu .mm-promo-banner {
        background: #333;
        padding: 20px !important;
        border: 1px solid #f0f0f0;
        background-size: cover;
        background-position: center;
        min-height: 160px;
        border-radius: 15px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    .mm-menu svg {
        flex-shrink: 0;
    }
}

/* Small mobile */
@media (max-width: 575px) {
    #handcrafted-sourced {
        padding: 50px 0;
    }

    .intro-heading {
        font-size: 30px;
    }

    .feature-text {
        font-size: 13px;
    }
}

/* ==========================================================================
           PRODUCT LISTING STYLES (Scoped to .gem-listing-vault)
           ========================================================================== */
.gem-listing-vault {
    --gem-primary: #1a1a1a;
    --gem-primary-light: #eef2ff;
    --gem-dark: #1a1a1a;
    --gem-text-muted: #64748b;
    --gem-border: #f1f5f9;
    --gem-white: #ffffff;
    --gem-bg: #fcfdff;
    --gem-radius: 16px;
    --gem-transition: all 0.3s cubic-bezier(0.65, 0.61, 0.54, 2.16);
    font-family: 'Inter', -apple-system, sans-serif;
    background-color: var(--gem-bg);
    color: var(--gem-dark);
    min-height: 100vh;
}

.gem-listing-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 40px 0;
}

/* --- SIDEBAR FILTERS --- */
.gem-filter-sidebar {
    background: var(--gem-white);
    padding: 25px;
    border: 1px solid var(--gem-border);
    /*position: sticky;
            top: 150px;*/
    height: fit-content;
}

.product-filter {
    padding-right: 20px;
    width: 400px;
}

.product-gallery-right {
    padding-left: 20px;
}

.filter-group {
    margin-bottom: 30px;
    border-bottom: 1px solid var(--gem-border);
    padding-bottom: 20px;
}

    .filter-group:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }

.filter-title {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gem-dark);
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* ── Filter Group ── */
.gem-filter-sidebar .gem-filter-group {
    border-bottom: 1px solid #ede5da;
    padding: 14px 0;
}

.gem-filter-sidebar .gem-filter-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
}

    .gem-filter-sidebar .gem-filter-heading span {
        font-size: 13px;
        font-family: var(--font-lato, "Lato", sans-serif);
        font-weight: 600;
        color: #333;
        letter-spacing: .3px;
        text-transform: uppercase;
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .gem-filter-sidebar .gem-filter-heading svg {
        width: 14px; /* was inheriting huge size */
        height: 14px;
        stroke: #999;
        flex-shrink: 0;
        transition: transform .2s;
    }

    .gem-filter-sidebar .gem-filter-heading.open svg {
        transform: rotate(180deg);
    }

/* ── Filter Body ── */
.gem-filter-sidebar .gem-filter-body {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gem-filter-sidebar .gem-filter-check {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    font-family: var(--font-lato, "Lato", sans-serif);
    color: #555;
    cursor: pointer;
}

    .gem-filter-sidebar .gem-filter-check input[type="checkbox"] {
        width: 15px;
        height: 15px;
        accent-color: var(--accent, #cb8161);
        cursor: pointer;
        flex-shrink: 0;
    }

    .gem-filter-sidebar .gem-filter-check:hover {
        color: var(--accent, #cb8161);
    }

.gem-filter-sidebar .gem-toggle-group {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.gem-filter-sidebar .gem-toggle-btn {
    padding: 5px 14px;
    border: 1px solid #e0d5c8;
    border-radius: 20px;
    font-size: 12px;
    font-family: var(--font-lato, "Lato", sans-serif);
    color: #666;
    cursor: pointer;
    transition: all .2s;
    text-decoration: none;
    background: #fff;
    user-select: none;
}

    .gem-filter-sidebar .gem-toggle-btn:hover {
        border-color: var(--accent, #cb8161);
        color: var(--accent, #cb8161);
    }

    .gem-filter-sidebar .gem-toggle-btn.active {
        border-color: var(--accent, #cb8161);
        background: #fdf5f0;
        color: var(--accent, #cb8161);
    }

/* Category Checkboxes */
.gem-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gem-check-item {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--gem-text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
}

    .gem-check-item input {
        margin-right: 10px;
        accent-color: var(--gem-primary);
    }

    .gem-check-item:hover {
        color: var(--gem-primary);
    }

/* --- ENHANCED COLOR PALETTE --- */
.color-dot-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    position: relative;
}

/* The Gem Touch Effect */
.color-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    border: none;
    transition: var(--gem-transition);
    /* Base Gem Refraction Effect */
    box-shadow: inset -3px -3px 6px rgba(0,0,0,0.2), inset 3px 3px 6px rgba(255,255,255,0.4), 0 4px 10px rgba(0,0,0,0.1);
}

    /* Sparkle Refraction */
    .color-dot::after {
        content: '';
        position: absolute;
        top: 4px;
        left: 5px;
        width: 6px;
        height: 4px;
        background: rgba(255, 255, 255, 0.6);
        border-radius: 50%;
        transform: rotate(-30deg);
    }

    .color-dot:hover {
        transform: translateY(-3px) scale(1.15);
        box-shadow: inset -2px -2px 4px rgba(0,0,0,0.2), 0 8px 15px rgba(0,0,0,0.15);
    }

    .color-dot.active {
        outline: 2px solid var(--gem-primary);
        outline-offset: 3px;
    }

/* More Colors Dropdown */
.gem-more-colors {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gem-bg);
    border: 1px dashed var(--gem-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--gem-text-muted);
    cursor: pointer;
    transition: var(--gem-transition);
}

    .gem-more-colors:hover {
        background: var(--gem-primary-light);
        color: var(--gem-primary);
        border-color: var(--gem-primary);
    }

.gem-palette-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    padding: 15px;
    display: none;
    z-index: 1000;
    margin-top: 10px;
    border: 1px solid var(--gem-border);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-title {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--gem-text-muted);
    margin-bottom: 10px;
    display: block;
}

/* Price Range */
.price-inputs {
    display: flex;
    gap: 10px;
    align-items: center;
}

    .price-inputs input {
        width: 100%;
        padding: 8px;
        border-radius: 8px;
        border: 1px solid var(--gem-border);
        font-size: 0.8rem;
    }

/* --- MAIN LISTING AREA --- */
.gem-listing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    background: white;
    padding: 15px 25px;
    border: 1px solid var(--gem-border);
    height: 55px;
}

.listing-count {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--gem-text-muted);
}

.gem-sort-select {
    border: none;
    background: transparent;
    font-weight: 700;
    color: var(--gem-primary);
    font-size: 0.85rem;
    cursor: pointer;
    outline: none;
}

/* Notification */
.gem-notif {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--gem-primary);
    color: white;
    padding: 12px 25px;
    border-radius: 12px;
    display: none;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(39, 54, 145, 0.3);
}

@media (max-width: 991px) {
    .gem-filter-sidebar {
        margin-bottom: 30px;
        position: static;
    }
}

@media (max-width: 991px) {
    .product-page .product-grid {
        width: 100%;
    }

    .gem-filter-sidebar {
        display: none;
        width: 100%;
        position: fixed;
        left: 0;
        top: 55px;
        z-index: 1001;
        background: #fff;
        border-radius: 0 0 15px 15px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
        border: 1px solid #f1f1f1;
        border-top: none;
        top: 0;
        padding-top: 80px;
    }

    .mobile-filter-toolbar {
        display: flex;
        align-items: self-start;
        background: #ffffff;
        padding: 8px 15px;
        border: 1px solid #eee;
        position: sticky;
        top: 0;
        z-index: 1000;
        height: auto;
        margin-bottom: 5px;
        border-radius: 0;
        border: 1px solid #cbcbcb;
        align-items: flex-start;
    }

    .filter-summary-scroll {
        display: inline-block;
        gap: 6px;
        overflow-x: auto;
        /* white-space: nowrap; */
        flex: 1;
        padding-right: 10px;
        max-width: calc(100% - 79px);
    }

    /* Minimalist Tags */
    .filter-tag {
        display: inline-block;
        align-items: center;
        background: #f8f9fa;
        color: #444;
        padding: 4px 12px;
        border-radius: 4px;
        font-size: 11px;
        font-weight: 500;
        border: 1px solid #e9ecef;
        text-transform: capitalize;
    }

        .filter-tag span {
            margin-left: 8px;
            font-size: 10px;
            color: #999;
            cursor: pointer;
        }

            .filter-tag span:hover {
                color: red;
            }

    /* Minimalist Toggle Button */
    .filter-toggle-btn {
        display: inline-block;
        align-items: center;
        gap: 6px;
        background: transparent;
        color: var(--gem-dark);
        padding: 6px 10px;
        border-radius: 4px;
        border: 1px solid #eee;
        cursor: pointer;
        font-size: 12px;
        font-weight: 600;
        float: right;
    }

        .filter-toggle-btn svg {
            width: 16px;
            height: 16px;
            opacity: 0.7;
        }

    .btn-close-filters {
        display: flex !important;
    }

    .product-filter {
        padding-right: 0px;
        width: 0;
    }
}

@media (max-width: 480px) {
    .product-grid .gem-grid {
        grid-template-columns: repeat(1, 1fr); /* 2 columns on very small screens */
        gap: 12px;
    }
}

.btn-close-filters {
    display: none;
    align-items: center;
    gap: 6px;
    background: transparent;
    color: var(--gem-dark);
    padding: 6px 10px;
    border-radius: 4px;
    border: 1px solid #fde3e3;
    cursor: pointer;
    font-size: 12px;
    color: #ef5a5a;
    text-transform: capitalize;
    letter-spacing: 0;
    font-weight: 500;
}

/*CATEGORY PAGE*/
aside.badgerIIAsideBlock .container {
    padding: 0;
}

.gem-offer-banner {
    margin: 20px 0px 30px 0;
}

/*FAQ PAGE*/
/* ==========================================================================
           GEM POLICY PAGES: SCOPED CSS REWRITE
           ========================================================================== */

/* Base resets within scope */
.gem-policy-pages2 {
    --gem-green: #1a3a34;
    --gem-gold: #d59a80;
    --gem-blue: #273691;
    --gem-border: #e2e8f0;
    --gem-bg-soft: #fcfdff;
    --gem-text-muted: #71717a;
    --gem-black: #1a1a1a;
    font-family: 'Inter', sans-serif;
    background-color: var(--gem-bg-soft);
    color: var(--gem-black);
    overflow-x: hidden;
}

    /* Scoped Header Styles */
    .gem-policy-pages2 .faq-header {
        padding: 70px 0;
        text-align: center;
        color: white;
        position: relative;
    }

        .gem-policy-pages2 .faq-header h1 {
            text-transform: uppercase;
            letter-spacing: 6px;
            font-weight: 800;
            font-size: clamp(1.5rem, 4vw, 2.2rem);
            margin: 0 0 20px 0;
            color: var(--gem-gold);
        }

    .gem-policy-pages2 .header-social-wrap {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 10px;
    }

    .gem-policy-pages2 .header-social-icon {
        color: white;
        font-size: 1rem;
        transition: all 0.3s ease;
        opacity: 0.8;
        text-decoration: none;
        width: 30px;
        background: #154340;
        height: 30px;
        text-align: center;
        border-radius: 40px;
        padding: 3px;
    }

        .gem-policy-pages2 .header-social-icon:hover {
            color: var(--gem-gold);
            transform: translateY(-3px);
            opacity: 1;
            filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
        }

    /* Scoped Content Styles */
    .gem-policy-pages2 .faq-content {
        max-width: 850px;
        margin: 60px auto;
    }

    .gem-policy-pages2 .accordion-item {
        border: 1px solid var(--gem-border);
        border-radius: 16px !important;
        margin-bottom: 15px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0,0,0,0.02);
    }

    .gem-policy-pages2 .accordion-button {
        font-weight: 700;
        color: var(--gem-green);
        padding: 22px 30px;
        font-size: 1.05rem;
    }

        .gem-policy-pages2 .accordion-button:not(.collapsed) {
            background-color: #f8fafc;
            color: var(--gem-blue);
            box-shadow: none;
        }

    .gem-policy-pages2 .accordion-body {
        padding: 30px;
        color: #555;
        line-height: 1.7;
        background-color: white;
    }

    .gem-policy-pages2 .badge-comp {
        background: var(--gem-gold);
        color: var(--gem-green);
        font-size: 0.65rem;
        text-transform: uppercase;
        font-weight: 800;
        padding: 3px 8px;
        border-radius: 5px;
        margin-left: 10px;
        vertical-align: middle;
    }

    /* Scoped Quick Support Cards */
    .gem-policy-pages2 .support-shortcuts {
        padding: 60px 0;
        background-color: white;
        border-top: 1px solid var(--gem-border);
    }

    .gem-policy-pages2 .support-card {
        background: var(--gem-bg-soft);
        border: 1px solid var(--gem-border);
        border-radius: 16px;
        padding: 25px;
        text-align: center;
        height: 100%;
        text-decoration: none;
        color: inherit;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
        align-items: center;
    }

        .gem-policy-pages2 .support-card:hover {
            border-color: var(--gem-gold);
            transform: translateY(-8px);
            background: white;
            box-shadow: 0 15px 35px rgba(26, 58, 52, 0.08);
        }

    .gem-policy-pages2 .support-icon {
        width: 50px;
        height: 50px;
        background: white;
        color: var(--gem-green);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
        margin-bottom: 15px;
        transition: 0.3s;
        box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    }

    .gem-policy-pages2 .support-card:hover .support-icon {
        background: var(--gem-green);
        color: var(--gem-gold);
    }

    .gem-policy-pages2 .support-card h5 {
        font-size: 0.95rem;
        font-weight: 800;
        margin-bottom: 8px;
        color: var(--gem-black);
    }

    .gem-policy-pages2 .support-card p {
        font-size: 0.75rem;
        color: var(--gem-text-muted);
        margin: 0;
    }

    /* Scoped Footer Styles */
    .gem-policy-pages2 .gem-footer {
        background-color: var(--gem-green);
        color: white;
        padding: 80px 0 30px;
        border-top: 5px solid var(--gem-gold);
        margin-top: 0;
    }

    .gem-policy-pages2 .footer-logo h2 {
        color: var(--gem-gold);
        text-transform: uppercase;
        letter-spacing: 4px;
        font-weight: 800;
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .gem-policy-pages2 .footer-desc {
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.8;
        margin-bottom: 25px;
    }

    .gem-policy-pages2 .footer-title {
        color: white;
        font-size: 0.75rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 2.5px;
        margin-bottom: 25px;
        display: block;
    }

    .gem-policy-pages2 .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .gem-policy-pages2 .footer-links li {
            margin-bottom: 12px;
        }

        .gem-policy-pages2 .footer-links a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }

            .gem-policy-pages2 .footer-links a:hover {
                color: var(--gem-gold);
                transform: translateX(5px);
            }

    .gem-policy-pages2 .footer-social-flex {
        display: flex;
        gap: 15px;
        margin-top: 10px;
    }

    .gem-policy-pages2 .social-circle {
        width: 36px;
        height: 36px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        transition: 0.3s;
        font-size: 0.9rem;
    }

        .gem-policy-pages2 .social-circle:hover {
            background: var(--gem-gold);
            color: var(--gem-green);
        }

    .gem-policy-pages2 .footer-bottom {
        margin-top: 60px;
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.4);
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
    }

@media (max-width: 768px) {
    .gem-policy-pages2 .faq-content {
        padding: 0 15px;
    }

    .gem-policy-pages2 .gem-footer {
        text-align: center;
    }

    .gem-policy-pages2 .footer-links a {
        justify-content: center;
    }

    .gem-policy-pages2 .footer-social-flex {
        justify-content: center;
    }

    .gem-policy-pages2 .footer-bottom {
        justify-content: center;
    }
}

/**MY PROFILE PAGE**/
.gem-profile-vault {
    --gem-primary: #1a1a1a;
    --gem-primary-light: #eef2ff;
    --gem-bg: #f8fafc;
    --gem-border: #e2e8f0;
    --gem-text: #1e293b;
    --gem-text-muted: #64748b;
    font-family: 'Inter', sans-serif;
    background: var(--gem-bg);
    min-height: 100vh;
    color: var(--gem-text);
}

/* Sidebar */
.sidebar {
    background: white;
    min-height: 100vh;
    border-right: 1px solid var(--gem-border);
    padding: 30px;
    position: sticky;
    top: 0;
    margin-top: 80px;
}

.gem-profile-vault .content-section {
    margin-top: 100px;
}

.nav-link {
    color: var(--gem-text-muted);
    font-weight: 600;
    padding: 12px 15px;
    border-radius: 10px;
    margin-bottom: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
}

    .nav-link i {
        width: 20px;
        margin-right: 10px;
        text-align: center;
    }

    .nav-link.active {
        background: var(--gem-primary-light);
        color: var(--gem-primary);
    }

    .nav-link:hover:not(.active) {
        background: #f1f5f9;
        color: var(--gem-text);
    }

/* Content Sections */
.content-section {
    display: none;
    animation: fadeIn 0.4s ease;
}

    .content-section.active {
        display: block;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Cards */
.dash-card {
    background: white;
    border-radius: 16px;
    border: 1px solid var(--gem-border);
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

/* Tracking Bar */
.tracking-bar {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 40px 0;
    width: calc(100% - 50px);
    margin: 17px auto 45px;
}

    .tracking-bar::before {
        content: '';
        position: absolute;
        top: 15px;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--gem-border);
        z-index: 1;
    }

.track-step {
    position: relative;
    z-index: 2;
    /* background: white; */
    width: 34px;
    height: 34px;
    border-radius: 3px;
    /* border: 2px solid var(--gem-border); */
}

    .track-step.done {
        border-color: var(--gem-primary);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.7rem;
    }

.track-label {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    white-space: nowrap;
    font-weight: 700;
    color: var(--gem-text-muted);
}

.track-step.active-pulse {
    border-color: var(--gem-primary);
}

/* Forms */
.form-label {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--gem-text-muted);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.form-control {
    border-radius: 10px;
    border: 1px solid var(--gem-border);
    padding: 12px;
    font-size: 0.95rem;
}

    .form-control:focus {
        box-shadow: 0 0 0 4px rgba(39, 54, 145, 0.1);
        border-color: var(--gem-primary);
    }

.btn-gem {
    background: var(--gem-primary);
    color: white;
    border-radius: 10px;
    border: none;
    padding: 12px 25px;
    font-weight: 700;
    transition: 0.3s;
}

    .btn-gem:hover {
        background: #1a2a75;
        transform: translateY(-2px);
        box-shadow: 0 10px 15px -3px rgba(39, 54, 145, 0.3);
    }

/* Tables */
.order-table th {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--gem-text-muted);
    letter-spacing: 1px;
    border-top: none;
}

.badge-pill {
    border-radius: 50px;
    padding: 5px 12px;
    font-size: 0.75rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .sidebar {
        min-height: auto;
        border-right: none;
        border-bottom: 1px solid var(--gem-border);
        padding: 20px;
        position: relative;
    }

    .content-area {
        padding: 20px !important;
    }

    nav#dashboardNav {
        position: fixed;
        bottom: 0;
        height: 65px;
        background: white;
        left: 0;
        width: 100%;
        max-width: 100%;
        display: table;
        padding: 10px;
        border-top: 1px solid #e6e6e6;
        box-shadow: 0 -4px 6px -1px rgba(0,0,0,0.05);
    }

        nav#dashboardNav a.nav-link {
            font-size: 11px;
            display: table-cell;
            text-align: center;
            padding: 3px;
            border-radius: 7px;
            max-width: 85px;
            /* Prevents text from wrapping to a second line */
            overflow: hidden; /* Hides the text that overflows the container */
            text-overflow: ellipsis;
        }

            nav#dashboardNav a.nav-link i {
                margin: 0;
                text-align: center;
                display: inline-block;
                width: 100%;
            }
}

/* ==========================================================================
           NEW CSS SPECIFICALLY FOR ORDER DETAILS SECTION
           ========================================================================== */
.order-detail-view .detail-header {
    border-bottom: 2px solid var(--gem-border);
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.order-detail-view .status-badge {
    background: var(--gem-primary-light);
    color: var(--gem-primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.order-item-row {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--gem-border);
}

    .order-item-row:last-child {
        border-bottom: none;
    }

.order-item-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 12px;
    margin-right: 20px;
    border: 1px solid var(--gem-border);
}

.address-box {
    background: #fcfdff;
    border: 1px solid var(--gem-border);
    padding: 20px;
    border-radius: 14px;
    height: 100%;
}

.financial-summary {
    background: #f8fafc;
    padding: 20px;
    border-radius: 14px;
}

.financial-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

    .financial-row.grand-total {
        border-top: 1px dashed var(--gem-border);
        padding-top: 15px;
        margin-top: 15px;
        font-weight: 800;
        font-size: 1.2rem;
        color: var(--gem-green);
    }

.btn-back-orders {
    cursor: pointer;
    color: var(--gem-primary);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    transition: 0.3s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 768px) {
    .sidebar {
        min-height: auto;
        border-right: none;
        border-bottom: 1px solid var(--gem-border);
        padding: 20px;
    }

    .content-area {
        padding: 20px !important;
    }
}

.dash-card .btn {
    border-radius: 7px;
}

.badge-top-right-primary {
    position: absolute;
    right: 0;
    top: 0;
    margin: 10px;
    padding: 5px 10px;
    font-size: 13px;
    color: #ffffff;
    background: #d2b872;
    border-radius: 7px;
    font-weight: 500;
}

/*ORDER_SUCCESS PAGE*/
.gem-success-vault {
    --gem-primary: #273691;
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #ecfdf5;
    color: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 30px;
}

.order-id {
    font-family: monospace;
    background: #f1f5f9;
    padding: 5px 15px;
    border-radius: 5px;
    color: var(--gem-primary);
}

.btn-home {
    background: var(--gem-primary);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 700;
    margin-top: 30px;
}

/*PAYMENT OPTION PAGE*/
.gem-payment-vault {
    --gem-primary: #273691;
    --gem-border: #e2e8f0;
    font-family: 'Inter', sans-serif;
    background: #f8fafc;
    min-height: 100vh;
    padding: 40px 0;
}

.payment-option {
    border: 2px solid var(--gem-border);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: 0.3s;
    background: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .payment-option.active {
        border-color: var(--gem-primary);
        background: #f0f4ff;
    }

.payment-icon {
    width: 100px;
    height: auto;
    object-fit: contain;
}

.btn-pay {
    background: var(--gem-primary);
    color: white;
    padding: 16px;
    border-radius: 12px;
    width: 100%;
    font-weight: 700;
    border: none;
    font-size: 1.1rem;
}

.security-badge {
    font-size: 0.8rem;
    color: #64748b;
    text-align: center;
    margin-top: 15px;
}

/*PRODUCT DETAILS PAGE*/
:root {
    --gem-green: #000;
    --gem-gold: #d59a80;
    --gem-black: #1a1a1a;
    --gem-gray: #71717a;
    --gem-border: #e2e8f0;
    --gem-bg: #ffffff;
    --gem-soft-bg: #fcfdff;
    --gem-radius: 12px;
    --gem-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, system-ui, sans-serif;
    background-color: var(--gem-bg);
    color: var(--gem-black);
    line-height: 1.5;
}

.var-item-card.selected {
    border: 2px solid #D4AF37 !important; /* Gold border to match your brand */
    background-color: #fffaf0 !important; /* Very light gold tint */
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

/*SHIPPING DETAILS PAGE*/
.gem-checkout-vault {
    --gem-primary: #273691;
    --gem-border: #e2e8f0;
    --gem-bg: #f8fafc;
    font-family: 'Inter', sans-serif;
    background: var(--gem-bg);
    min-height: 100vh;
    padding: 40px 0;
}

.checkout-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid var(--gem-border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.step-indicator {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    gap: 20px;
}

.step {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #94a3b8;
    font-weight: 600;
    font-size: 0.9rem;
}

    .step.active {
        color: var(--gem-primary);
    }

        .step.active .circle {
            background: var(--gem-primary);
            color: white;
            border-color: var(--gem-primary);
        }

    .step .circle {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        border: 2px solid #cbd5e1;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.8rem;
    }

.form-label {
    font-weight: 600;
    font-size: 0.85rem;
    color: #475569;
}

.form-control, .form-select {
    padding: 12px;
    border-radius: 10px;
    border: 1px solid var(--gem-border);
}

    .form-control:focus {
        border-color: var(--gem-primary);
        box-shadow: none;
    }

.btn-next {
    background: var(--gem-primary);
    color: white;
    padding: 14px;
    border-radius: 10px;
    border: none;
    font-weight: 700;
    width: 100%;
    transition: 0.3s;
}

    .btn-next:hover {
        background: #1a2a75;
        transform: translateY(-2px);
    }

.summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
}

/* Redesigned Minimalistic Item Class */
.gem-summary-card {
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9; /* Ultra-light border for clean look */
    transition: all 0.2s ease;
}

    .gem-summary-card .product-name {
        font-size: 0.95rem;
        font-weight: 600;
        color: #1e293b; /* Dark slate for better readability */
        line-height: 1.4;
        margin-bottom: 2px;
    }

    .gem-summary-card .product-meta {
        font-size: 0.8rem;
        letter-spacing: 0.2px;
    }

    .gem-summary-card .product-qty {
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        color: #64748b;
        background: #f8fafc; /* Light gray pill background */
        padding: 2px 8px;
        border-radius: 4px;
        display: inline-block;
        width: fit-content;
        margin-top: 6px;
    }

    .gem-summary-card .product-price {
        font-size: 1rem;
        font-weight: 700;
        color: #154340; /* Matching your theme's dark green color */
        white-space: nowrap;
        padding-left: 15px;
    }

    /* Optional: remove border from last item */
    .gem-summary-card:last-of-type {
        border-bottom: none;
    }

a.edit-cart {
    font-size: 13px;
    float: right;
    position: relative;
    top: 5px;
    color: #007eff;
}

    a.edit-cart:hover {
        color: #005cba;
    }
/* Red border for invalid inputs */
.is-invalid {
    border: 1.5px solid #dc3545 !important;
    background-color: #fff8f8 !important;
}

/* Error Notification Styling */
.error-summary ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0;
    text-align: left;
}

.underline {
    text-decoration: underline;
    font-weight: bold;
}

    .underline:hover {
        color: #ffdada;
    }


/*WISHLIST PAGE*/
/* ==========================================================================
           WISHLIST STYLES (Scoped to .gem-wishlist-vault)
           ========================================================================== */
.gem-wishlist-vault {
    --gem-primary: #000;
    --gem-primary-soft: #f0f4ff;
    --gem-accent: #c9886d; /* Gold accent for "Added Date" */
    --gem-warning: #c2410c; /* Sophisticated burnt orange for stock warning */
    --gem-dark: #111827;
    --gem-text-muted: #6b7280;
    --gem-white: #ffffff;
    --gem-bg: #fcfdff;
    --gem-radius: 0; /* Slightly tighter radius for smaller cards */
    --gem-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    font-family: 'Inter', -apple-system, sans-serif;
    background-color: var(--gem-bg);
    color: var(--gem-dark);
    min-height: 100vh;
    padding-bottom: 80px;
}

.gem-container {
    max-width: 1300px; /* Slightly wider to accommodate 4 columns */
    margin: 0 auto;
    padding: 40px 20px;
}

/* --- WISHLIST HEADER --- */
.wishlist-header {
    text-align: center;
    margin-bottom: 50px;
}

    .wishlist-header h1 {
        font-size: 2.2rem;
        font-weight: 800;
        color: var(--gem-primary);
        margin-bottom: 10px;
        letter-spacing: -1px;
    }

    .wishlist-header p {
        color: var(--gem-text-muted);
        font-size: 0.95rem;
    }

.wishlist-actions-top {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.btn-wishlist-tool {
    background: white;
    border: 1px solid #e5e7eb;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gem-text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--gem-transition);
}

    .btn-wishlist-tool:hover {
        border-color: var(--gem-primary);
        color: var(--gem-primary);
        transform: translateY(-2px);
    }

/* --- SMALLER WISHLIST CARD --- */
.wish-item-card {
    background: var(--gem-white);
    border-radius: var(--gem-radius);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.03);
    transition: var(--gem-transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

    .wish-item-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(39, 54, 145, 0.1);
    }

/* Date Stamp & Stock Warning */
.wish-date-stamp {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--gem-accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.stock-warning {
    position: absolute;
    top: 48px; /* Offset below date stamp */
    left: 15px;
    z-index: 10;
    background: #fff;
    color: var(--gem-warning);
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    border: 1px solid rgba(194, 65, 12, 0.15);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }

    100% {
        opacity: 1;
    }
}

.wish-img-wrap {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    background: #f8faff;
}

    .wish-img-wrap img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 1s ease;
    }

.wish-item-card:hover .wish-img-wrap img {
    transform: scale(1.1);
}

.wish-remove-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ef4444;
    transition: var(--gem-transition);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    font-size: 0.8rem;
}

    .wish-remove-btn:hover {
        background: #ef4444;
        color: white;
        transform: rotate(90deg);
    }

.wish-body {
    padding: 18px; /* Tighter padding for smaller cards */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.wish-cat {
    font-size: 0.6rem;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--gem-text-muted);
    letter-spacing: 0.8px;
    margin-bottom: 4px;
}

.wish-title {
    font-size: 0.95rem; /* Smaller font for high-density cards */
    font-weight: 700;
    color: var(--gem-dark);
    margin-bottom: 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.wish-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--gem-primary);
    margin-bottom: 15px;
}

.wish-footer-actions {
    margin-top: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.btn-wish {
    padding: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: var(--gem-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: none;
}

.btn-wish-cart {
    background: var(--gem-primary);
    color: white;
}

.btn-wish-view {
    background: var(--gem-primary-soft);
    color: var(--gem-primary);
}

.btn-wish:hover {
    transform: scale(1.03);
    filter: brightness(1.1);
}

/* --- EMPTY STATE --- */
.wishlist-empty {
    text-align: center;
    padding: 100px 20px;
}

.empty-icon {
    font-size: 4rem;
    color: #e5e7eb;
    margin-bottom: 25px;
}

/* --- NOTIFICATION --- */
.gem-notif {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--gem-primary);
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    display: none;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(39, 54, 145, 0.3);
    font-weight: 600;
    font-size: 0.85rem;
}

@media (max-width: 991px) {
    .wishlist-header h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .gem-container {
        padding: 20px 10px;
    }

    .wish-footer-actions {
        grid-template-columns: 1fr;
    }
}

/*HOME PAGE COLLECTION SECTION*/
/* Unique ID Prefix to prevent CSS interference */
#gem-promo-banners {
    padding: 60px 0;
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

#gem-feature-banners {
    padding: 60px 0;
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.gem-banner-container {
    /* max-width: 1400px; */
    margin: 0 auto;
    padding: 0 80px;
}

.gem-banner-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.gem-banner-col {
    flex: 1;
    min-width: 300px;
}

.gem-banner-item {
    position: relative;
    overflow: hidden;
    width: 100%;
    background: #f8f8f8;
}

.gem-banner-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 1.5s cubic-bezier(0, 0, 0.2, 1);
}

.gem-banner-item:hover .gem-banner-img img {
    transform: scale(1.08);
}

.gem-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(0, 0, 0, 0.05); /* Slight wash to help white text pop */
    color: #ffffff;
    z-index: 2;
}

.gem-banner-content {
    padding: 20px;
    max-width: 80%;
}

.gem-banner-title {
    font-family: 'Playfair Display', serif; /* Or your site's heading font */
    font-size: 32px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin: 0 0 12px;
    color: #fff;
}

.gem-banner-desc {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 30px;
    color: #fff;
    opacity: 0.9;
}

.gem-banner-btn {
    display: inline-block;
    padding: 12px 40px;
    border: 1px solid #ffffff;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    background: transparent;
}

    .gem-banner-btn:hover {
        background: #ffffff;
        color: #000000;
    }

/* Responsive adjustments */
@media (max-width: 768px) {
    .gem-banner-row {
        flex-direction: column;
    }

    .gem-banner-title {
        font-size: 24px;
    }
}


/*HOME PAGE REVIEW SECTION*/
#gem-customer-reviews {
    position: relative;
    padding: 100px 0 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    width: 100%;
    top: -100px;
    z-index: 1;
}

.gem-review-card * {
    text-align: center !important;
}
/* Subtle topographic-style overlay to match the reference images */
#gem-customer-reviews::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.gem-reviews-container {
    position: relative;
    z-index: 2;
    max-width: 1425px;
    margin: 0 auto;
    padding: 0 15px;
}

.gem-reviews-header {
    text-align: center;
    margin-bottom: 50px;
}

.gem-reviews-heading {
    font-family: var(--font-cormorant);
    font-size: 36px;
    color: #1a1a1a;
    font-weight: 500;
    margin-top: 50px;
}

/* The Card Styling - Narrow and Vertical as per image_0343e3.jpg */
.gem-review-card {
    padding: 10px;
    height: 100%;
}

.gem-review-inner {
    padding: 00px 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

    .gem-review-inner:hover {
        /* transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);*/
    }

.gem-review-rating {
    margin-bottom: 15px;
}

.gem-stars {
    color: #d6b562;
    font-size: 12px;
    letter-spacing: 3px;
    min-width: 108px;
    display: inline-block;
}

.gem-review-body {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.gem-review-text {
    font-size: 14px;
    line-height: 1.8;
    color: #444;
    font-weight: 400;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* number of lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gem-client-profile {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gem-client-thumb {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 15px;
    background: #1a3a34; /* Fallback for avatar */
}

.gem-client-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gem-client-name {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    color: #1a1a1a;
    margin: 0 0 5px;
    font-weight: 700;
}

.gem-client-meta {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    display: block;
}

/* Adjustments for Owl Carousel dots/nav if needed */
.owl-theme .owl-dots .owl-dot span {
    background: #ccc;
}

.owl-theme .owl-dots .owl-dot.active span {
    background: #1a3a34;
}

@media (max-width: 768px) {
    .gem-review-inner {
        min-height: auto;
        padding: 30px 20px;
    }
}
/*REVIEW NAVS*/
/* --- Custom Navigation Arrows Styling --- */
.owl-theme .owl-nav {
    position: absolute;
    top: calc(50% - 20px);
    left: 0;
    right: 0;
    transform: translateY(-50%);
    margin-top: 0 !important;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

    .owl-theme .owl-nav [class*='owl-'] {
        pointer-events: auto;
        background: transparent !important;
        color: #1a1a1a !important;
        font-size: 36px !important;
        transition: all 0.3s ease;
        padding: 0 !important;
        margin: 0 !important;
        opacity: 0.6;
    }

        .owl-theme .owl-nav [class*='owl-']:hover {
            color: #d6b562 !important;
            opacity: 1;
            transform: scale(1.1);
        }



/*HOME PAGE NEWSLETTER*/
/*.newsletter-section {
    padding: 80px 20px 80px;
    text-align: center;
    background-color: #ffffff;
    font-family: 'Playfair Display', serif, "Times New Roman";
}
.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
}*/

/* Typography */
/*.newsletter-title {
    font-size: 28px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 400;
    color: #000;
    text-transform: uppercase;
}

.newsletter-subtitle {
    font-family: Arial, sans-serif;*/ /* Subtitle uses a clean sans-serif */
/*font-size: 14px;
    color: #666;
    margin-bottom: 40px;
}*/

/* Form Layout */
/*.newsletter-form {
    display: flex;
    justify-content: center;
    align-items: flex-end;*/ /* Aligns input and button to the bottom line */
/*gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}*/

/* The Input Field */
/*.newsletter-input {
    flex: 1;
    border: none;
    border-bottom: 2px solid #000;*/ /* Only bottom border */
/*padding: 10px 0;
    font-size: 16px;
    outline: none;
    background: transparent;
    transition: border-color 0.3s ease;
}

    .newsletter-input::placeholder {
        color: #999;
        font-style: italic;
    }*/

/* The Button */
/*.newsletter-button {
    background: none;
    border: none;
    border-bottom: 2px solid #000;*/ /* Matches input line */
/*padding: 10px 0;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

    .newsletter-button:hover {
        opacity: 0.6;
    }*/

/* Responsive adjustment for mobile */
/*@media (max-width: 500px) {
    .newsletter-form {
        flex-direction: column;
        align-items: stretch;
    }

    .newsletter-button {
        text-align: center;
        margin-top: 10px;
    }
}*/


/* ── Scoped reset ─────────────────────────────────────────── */
.djr-nl-section *,
.djr-nl-section *::before,
.djr-nl-section *::after {
    box-sizing: border-box;
}

/* ── Section wrapper ──────────────────────────────────────── */
.newsletter-section.djr-nl-section {
    background: #fef9f4; /* very light warm cream */
    padding: 80px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    /* override original white */
    background-color: #fef9f4;
}

/* top + bottom hairline border in brand gold */
.djr-nl-section::before,
.djr-nl-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #cb8161 30%, #cb8161 70%, transparent 100%);
}

.djr-nl-section::before {
    top: 0;
}

.djr-nl-section::after {
    bottom: 0;
}

/* subtle radial warm glow in centre */
.djr-nl-section .djr-nl-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse at center, rgba(203,129,97,0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* ── Container ────────────────────────────────────────────── */
.newsletter-section.djr-nl-section .newsletter-container {
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ── Eyebrow line ─────────────────────────────────────────── */
.djr-nl-eyebrow {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #cb8161;
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

    .djr-nl-eyebrow::before,
    .djr-nl-eyebrow::after {
        content: '';
        display: block;
        width: 32px;
        height: 1px;
        background: #cb8161;
    }

/* ── Title ────────────────────────────────────────────────── */
.newsletter-section.djr-nl-section .newsletter-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 30px;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: #2c1810;
    text-transform: none; /* softer than all-caps */
    margin: 0 0 6px;
    line-height: 1.25;
}

/* ── Decorative rule under title ──────────────────────────── */
.djr-nl-rule {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 14px 0 20px;
}

.djr-nl-rule-line {
    display: block;
    width: 40px;
    height: 1px;
    background: #e0ccc0;
}

.djr-nl-rule-diamond {
    display: block;
    width: 6px;
    height: 6px;
    background: #cb8161;
    transform: rotate(45deg);
    flex-shrink: 0;
}

/* ── Subtitle ─────────────────────────────────────────────── */
.newsletter-section.djr-nl-section .newsletter-subtitle {
    font-family: 'Georgia', serif;
    font-size: 14px;
    font-style: italic;
    color: #9a7060;
    margin: 0 0 40px;
    line-height: 1.7;
}

/* ── Form ─────────────────────────────────────────────────── */
.newsletter-section.djr-nl-section .newsletter-form {
    display: flex;
    align-items: stretch;
    gap: 0;
    max-width: 520px;
    margin: 0 auto;
    border: 1px solid #e0ccc0;
    border-radius: 1px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 24px rgba(203,129,97,0.08);
    transition: box-shadow 0.25s, border-color 0.25s;
}

    .newsletter-section.djr-nl-section .newsletter-form:focus-within {
        border-color: #cb8161;
        box-shadow: 0 4px 32px rgba(203,129,97,0.14);
    }

/* ── Input ────────────────────────────────────────────────── */
.newsletter-section.djr-nl-section .newsletter-input {
    flex: 1;
    border: none;
    border-bottom: none; /* override original bottom-only border */
    padding: 16px 20px;
    font-family: 'Georgia', serif;
    font-size: 14px;
    font-style: italic;
    color: #2c1810;
    background: transparent;
    outline: none;
    min-width: 0;
}

    .newsletter-section.djr-nl-section .newsletter-input::placeholder {
        color: #c4a898;
        font-style: italic;
    }

/* divider between input and button */
.djr-nl-divider {
    display: block;
    width: 1px;
    background: #e0ccc0;
    flex-shrink: 0;
    align-self: stretch;
    transition: background 0.25s;
}

.newsletter-section.djr-nl-section .newsletter-form:focus-within .djr-nl-divider {
    background: #cb8161;
}

/* ── Button ───────────────────────────────────────────────── */
.newsletter-section.djr-nl-section .newsletter-button {
    border: none;
    border-bottom: none; /* override original bottom-only border */
    background: #fff;
    padding: 16px 28px;
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #7b1d2e;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    transition: color 0.25s, background 0.25s;
    flex-shrink: 0;
}

    .newsletter-section.djr-nl-section .newsletter-button::before {
        content: '';
        position: absolute;
        inset: 0;
        background: #7b1d2e;
        transform: translateY(100%);
        transition: transform 0.28s ease;
        z-index: 0;
    }

    .newsletter-section.djr-nl-section .newsletter-button:hover::before {
        transform: translateY(0);
    }

    .newsletter-section.djr-nl-section .newsletter-button:hover {
        color: #fff;
        opacity: 1; /* override original hover opacity */
    }

    .newsletter-section.djr-nl-section .newsletter-button span {
        position: relative;
        z-index: 1;
    }

/* ── Trust micro-line below form ──────────────────────────── */
.djr-nl-trust {
    margin-top: 18px;
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 10.5px;
    letter-spacing: 1.5px;
    color: #b8997e;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.djr-nl-trust-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.djr-nl-trust-dot {
    display: inline-block;
    width: 3px;
    height: 3px;
    background: #cb8161;
    border-radius: 50%;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 560px) {
    .newsletter-section.djr-nl-section {
        padding: 56px 16px;
    }

        .newsletter-section.djr-nl-section .newsletter-title {
            font-size: 22px;
        }

        .newsletter-section.djr-nl-section .newsletter-form {
            flex-direction: column;
            border-radius: 2px;
        }

    .djr-nl-divider {
        width: auto;
        height: 1px;
        align-self: auto;
    }

    .newsletter-section.djr-nl-section .newsletter-button {
        padding: 15px 20px;
        text-align: center;
    }

    .djr-nl-trust {
        flex-direction: column;
        gap: 8px;
    }
}

/*NEWSLETETR END*/

div#title {
    position: relative;
    margin-top: 80px;
    height: 285px;
    padding: 100px;
    background: url(../images/page-banner.webp);
    background-position: center;
    border-bottom: 1px solid #f1f1f1;
    /* margin-bottom: 40px; */
    background-size: cover;
}

.content-title-heading {
    text-align: center;
}

.main-container {
    max-width: 1425px;
    margin: auto;
    padding-top: 40px;
    padding-bottom: 40px;
}

.main-row {
    display: flex;
    width: 100%;
}

/*MORE-MENU-REPOSNSIVE*/
/* ══════════════════════════════════════════════════════════════
   Responsive Priority Navigation — CSS
   ══════════════════════════════════════════════════════════════ */

/* ── Header row (flex container) ─────────────────────────── */
.main-header-row {
    display: flex;
    align-items: center;
    width: 100%;
    min-width: 0; /* critical: allows flex children to shrink */
}

.logo-section {
    flex: 0 0 auto; /* fixed size, never shrinks */
}

.utility-section {
    flex: 0 0 auto; /* fixed size, never shrinks */
    margin-left: auto; /* push to the right if needed */
}

/* ── Nav list ─────────────────────────────────────────────── */
#mainNav {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    overflow: visible;
    flex: 1 1 0;
    min-width: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}
/* ── Individual nav items ─────────────────────────────────── */
.nav-item {
    white-space: nowrap; /* keep icon + text on one line */
    flex-shrink: 0; /* items must NOT shrink — overflow detection depends on this */
    position: relative;
    overflow: visible;
}

/* ── More menu trigger ────────────────────────────────────── */
#moreMenu {
    position: relative;
}

/* Hide by default; JS reveals it when items overflow */
#moreMenu {
    /* display: none; */
}

/* ── More dropdown ────────────────────────────────────────── */
.more-dropdown {
    display: none;
    position: absolute !important;
    top: 100% !important;
    right: 0;
    background: #fff;
    border: 1px solid #e8e8e8;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
    list-style: none;
    margin: 0 !important;
    padding: 6px 0;
    min-width: 230px;
    z-index: 999 !important;
    width: max-content;
    padding: 25px 0 !important;
    left: 0;
}

/* Show dropdown on hover / focus-within */
#moreMenu:hover .more-dropdown,
#moreMenu:focus-within .more-dropdown {
    display: block;
}

/* Items inside the dropdown inherit base link styles */
.more-dropdown > .nav-item {
    white-space: nowrap;
    display: block;
}

    .more-dropdown > .nav-item > a {
        display: flex;
        align-items: center;
        padding: 10px 20px !important;
        color: inherit;
        text-decoration: none;
        transition: background 0.15s;
    }

        .more-dropdown > .nav-item > a:hover {
            background: #f6f6f6;
        }

/* ══════════════════════════════════════════════════════════════
   Optional: smooth dropdown animation
   ══════════════════════════════════════════════════════════════ */
#moreMenu:hover .more-dropdown,
#moreMenu:focus-within .more-dropdown {
    animation: dropFadeIn 0.18s ease forwards;
}

@keyframes dropFadeIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

ul.more-dropdown.active {
    display: block !important;
    z-index: 9999 !important;
    position: absolute !important;
}

.more-dropdown .nav-main-link {
    padding: 10px !important;
    color: black !important;
}

    .more-dropdown .nav-main-link svg {
        stroke: black !important;
    }

    .more-dropdown .nav-main-link:hover {
        background: #f1e0d8 !important;
    }

        .more-dropdown .nav-main-link:hover::after {
            display: none;
        }



span.errorMsg:before {
    content: "⚠️ ";
    font-size: 12px;
    position: relative;
    top: -1px;
}

span.errorMsg {
    font-size: 12px;
    color: red;
    background: #ffe6e6;
    width: 100%;
    display: block;
    margin-bottom: 10px;
    padding: 5px 10px;
    border-radius: 10px;
}




/*OFFER SECTION*/
/* ── OFFER SECTION ── */

/* ── VARIABLES ── */
:root {
    --gold: #d4af37;
    --acc: #cb8161;
    --acc-light: #fdf5f0;
    --dark: #1a1209;
    --deep: #2a1f14;
    --crimson: #7a1a2e;
    --crimson-deep: #5a1020;
    --crimson-mid: #9b2335;
    --text: #2a1f14;
    --text-mid: #5a4a3a;
    --muted: #9e8e7e;
    --border: #e8ddd2;
    --white: #ffffff;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

.dj-offer-section {
    padding: 48px 24px;
    max-width: 1280px;
    margin: 0 auto;
}

/* ── SECTION HEADER ── */
.dj-section-header {
    text-align: center;
    margin-bottom: 36px;
}

.dj-section-eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--acc);
    font-weight: 600;
    margin-bottom: 8px;
}

.dj-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--deep);
    line-height: 1.2;
}

    .dj-section-title em {
        font-style: italic;
        color: var(--crimson-mid);
    }

.dj-section-divider {
    width: 48px;
    height: 2px;
    background: var(--gold);
    margin: 14px auto 0;
    border-radius: 2px;
}

/* ── HERO BANNER ── */
.dj-hero-banner {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--crimson-deep);
    min-height: 340px;
    display: flex;
    align-items: stretch;
}

.dj-hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(212,175,55,0.08) 0%, transparent 50%), radial-gradient(circle at 80% 30%, rgba(203,129,97,0.1) 0%, transparent 40%);
    pointer-events: none;
}

.dj-hero-bg-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.dj-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
    padding: 40px 48px;
    gap: 32px;
}

/* LEFT — jewellery icons */
.dj-hero-jewels {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.dj-jewel-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: var(--radius-md);
    padding: 10px 16px;
    backdrop-filter: blur(4px);
    transition: background 0.2s, border-color 0.2s;
}

    .dj-jewel-item:hover {
        background: rgba(255,255,255,0.1);
        border-color: rgba(212,175,55,0.4);
    }

.dj-jewel-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.dj-jewel-label {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    font-weight: 400;
    letter-spacing: 0.3px;
}

    .dj-jewel-label strong {
        display: block;
        font-size: 14px;
        color: var(--gold);
        font-weight: 600;
        margin-bottom: 1px;
    }

/* CENTER — text content */
.dj-hero-content {
    text-align: center;
    flex-shrink: 0;
}

.dj-hero-tag {
    display: inline-block;
    background: rgba(212,175,55,0.15);
    border: 1px solid rgba(212,175,55,0.35);
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
    font-weight: 600;
}

.dj-hero-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.05;
    letter-spacing: -0.5px;
    margin-bottom: 6px;
}

    .dj-hero-heading span {
        color: var(--gold);
    }

.dj-hero-subheading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-style: italic;
    color: var(--acc);
    margin-bottom: 16px;
    font-weight: 400;
}

.dj-hero-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

.dj-hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.dj-btn-primary {
    display: inline-block;
    background: var(--gold);
    color: var(--dark);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

    .dj-btn-primary:hover {
        background: #c9a430;
        transform: translateY(-1px);
    }

.dj-btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 11px 24px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s, transform 0.15s;
}

    .dj-btn-outline:hover {
        border-color: rgba(255,255,255,0.6);
        background: rgba(255,255,255,0.06);
        transform: translateY(-1px);
    }

/* RIGHT — offer badges */
.dj-hero-offers {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.dj-offer-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(203,129,97,0.25);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    min-width: 200px;
    transition: background 0.2s, border-color 0.2s;
}

    .dj-offer-badge:hover {
        background: rgba(255,255,255,0.1);
        border-color: rgba(203,129,97,0.5);
    }

.dj-offer-badge-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(203,129,97,0.15);
    border: 1px solid rgba(203,129,97,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dj-offer-badge-text {
    flex: 1;
}

.dj-offer-badge-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

    .dj-offer-badge-value em {
        color: var(--acc);
        font-style: normal;
    }

.dj-offer-badge-sub {
    font-size: 11.5px;
    color: rgba(255,255,255,0.5);
    margin-top: 2px;
}

/* gold corner accent */
.dj-hero-corner {
    position: absolute;
    width: 120px;
    height: 120px;
    opacity: 0.12;
    pointer-events: none;
}

.dj-hero-corner--tl {
    top: 0;
    left: 0;
}

.dj-hero-corner--br {
    bottom: 0;
    right: 0;
    transform: rotate(180deg);
}

/* ── MINI CARDS ROW ── */
.dj-mini-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
    margin-top: 20px;
}

.dj-mini-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

    .dj-mini-card:hover {
        border-color: var(--gold);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(42,31,20,0.08);
    }

.dj-mini-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--acc-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dj-mini-card-body {
}

.dj-mini-card-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--deep);
    margin-bottom: 3px;
}

    .dj-mini-card-title span {
        color: var(--crimson-mid);
    }

.dj-mini-card-sub {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.5;
}

.dj-mini-card-arrow {
    margin-left: auto;
    color: var(--border);
    font-size: 18px;
    transition: color 0.2s, transform 0.2s;
}

.dj-mini-card:hover .dj-mini-card-arrow {
    color: var(--gold);
    transform: translateX(3px);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .dj-hero-inner {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        padding: 36px 28px;
        gap: 24px;
    }

    .dj-hero-jewels {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        order: 2;
    }

    .dj-hero-content {
        order: 1;
    }

    .dj-hero-offers {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        order: 3;
    }

    .dj-offer-badge {
        min-width: 160px;
        flex: 1;
    }

    .dj-hero-heading {
        font-size: 40px;
    }
}

@media (max-width: 600px) {
    .dj-offer-section {
        padding: 32px 16px;
    }

    .dj-hero-inner {
        padding: 28px 20px;
    }

    .dj-hero-heading {
        font-size: 32px;
    }

    .dj-hero-subheading {
        font-size: 18px;
    }

    .dj-hero-jewels {
        display: none;
    }

    .dj-offer-badge {
        min-width: 140px;
    }

    .dj-section-title {
        font-size: 28px;
    }

    .dj-mini-card-arrow {
        display: none;
    }
}


/*PRODUCT CARD*/
:root {
    --gem-gold: #d4af37;
    --gem-gold-soft: #f5e9b8;
    --acc: #cb8161;
    --acc-light: #fdf5f0;
    --acc-hover: #fdf0e8;
    --deep: #2a1f14;
    --text-mid: #5a4a3a;
    --muted: #9e8e7e;
    --border: #e8ddd2;
    --border-light: #f0e8de;
    --card-bg: #ffffff;
    --image-bg: #f7f3ef;
    --gem-transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --gem-radius: 14px;
}
/* ═══════════════════════════════════════════
   GEM CARD — REDESIGNED
═══════════════════════════════════════════ */

/*.gem-card {
    position: relative;
    background: var(--card-bg);
    border-radius: var(--gem-radius);
    overflow: hidden;
    border: 1px solid var(--border-light);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    transition: var(--gem-transition);
    box-shadow: 0 2px 12px rgba(42, 31, 20, 0.06);
}

    .gem-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 40px rgba(42, 31, 20, 0.13);
        border-color: var(--border);
    }*/

/* ── FULL-CARD LINK ── */
/*.product-link {
    position: absolute;
    inset: 0;
    display: block;
    z-index: 1;
}*/

/* ── IMAGE WRAPPER ── */
/*.gem-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 115%;
    background: var(--image-bg);
    overflow: hidden;
}

    .gem-image-wrapper img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

.gem-card:hover .gem-image-wrapper img {
    transform: scale(1.07);
}*/

/* image shimmer overlay on hover */
/*.gem-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient( 160deg, transparent 40%, rgba(212, 175, 55, 0.06) 100% );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 2;
}

.gem-card:hover .gem-image-wrapper::after {
    opacity: 1;
}*/

/* ── BADGES ── */
/*.gem-badge {
    position: absolute;
    top: 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 4;
    pointer-events: none;
    font-family: 'Lato', sans-serif;
}

.gem-badge-new {
    left: 12px;
    background: var(--gem-gold);
    color: var(--deep);
}

.gem-badge-hot {
    left: 12px;
    background: #c0392b;
    color: #fff;
}

.gem-badge-sale {
    left: 12px;
    background: var(--deep);
    color: #fff;
}*/

/* ── WISHLIST BUTTON ── */
/*.wishlist-trigger {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 6;
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    border: 1px solid var(--border-light);
    transition: var(--gem-transition);
    backdrop-filter: blur(4px);
}

    .wishlist-trigger:hover,
    .wishlist-trigger.active {
        color: #e53e3e;
        border-color: #fecaca;
        background: #fff;
        transform: scale(1.1);
    }

    .wishlist-trigger svg {
        width: 16px;
        height: 16px;
    }*/

/* ── HOVER ACTION ROW ── */
/*.gem-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    gap: 0;
    z-index: 5;
    transform: translateY(100%);
    transition: transform 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gem-card:hover .gem-overlay {
    transform: translateY(0);
}

.gem-btn-quickview,
.gem-btn-cart {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 13px 10px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-family: 'Lato', sans-serif;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.gem-btn-quickview {
    background: rgb(245 245 245 / 96%);
    color: var(--text-mid);
    border-right: 1px solid var(--border-light);
    backdrop-filter: blur(6px);
}

    .gem-btn-quickview:hover {
        background: #efefef;
        color: var(--deep);
    }

.gem-btn-cart {
    background: var(--acc);
    color: #fff;
}

    .gem-btn-cart:hover {
        background: #b8714f;
    }

    .gem-btn-quickview svg,
    .gem-btn-cart svg {
        width: 15px;
        height: 15px;
        flex-shrink: 0;
    }*/

/* ── CARD INFO ── */
/*.gem-info {
    padding: 16px 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    border-top: 1px solid var(--border-light);
    flex: 1;
}

.gem-category {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--acc);
    font-weight: 600;
}

.gem-title {
    font-family: "Lato", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--deep);
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
    max-width: 100%;
}*/

/* ── PRICE ROW ── */
/*.gem-price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 2px;
}

.gem-price {
    font-size: 17px;
    font-weight: 700;
    color: var(--acc);
    font-family: "Lato", sans-serif;
}

.gem-price-original {
    font-size: 13px;
    color: var(--muted);
    text-decoration: line-through;
    font-weight: 400;
}

.gem-price-save {
    font-size: 10px;
    font-weight: 700;
    background: var(--acc-light);
    color: var(--acc);
    padding: 2px 7px;
    border-radius: 10px;
    letter-spacing: 0.3px;
    margin-left: auto;
}*/

/* ── SPECS (hover reveal) ── */
/*.gem-specs-hover {
    display: flex;
    gap: 14px;
    border-top: 1px solid var(--border-light);
    padding-top: 0;
    margin-top: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding-top 0.3s ease, margin-top 0.3s ease;
}

.gem-card:hover .gem-specs-hover {
    max-height: 50px;
    opacity: 1;
    padding-top: 10px;
    margin-top: 6px;
}

.spec-item {
    font-size: 11px;
    color: var(--muted);
    line-height: 1.4;
}

.spec-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: var(--text-mid);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1px;
}*/

/* ── GOLD ACCENT LINE AT BOTTOM ── */
/*.gem-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gem-gold);
    transition: width 0.4s ease;
    pointer-events: none;
}

.gem-card:hover::after {
    width: 100%;
}*/

/* ══ RESPONSIVE ══ */
/*@media (max-width: 480px) {
    .demo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .gem-title {
        font-size: 14px;
    }

    .gem-price {
        font-size: 14px;
    }

    .gem-btn-quickview span,
    .gem-btn-cart span {
        display: none;
    }

    .gem-btn-quickview,
    .gem-btn-cart {
        padding: 11px;
    }
}*/


/* ══════════════════════════════════════════════════
   GEM CARD — ALWAYS VISIBLE, NO HOVER EFFECTS
══════════════════════════════════════════════════ */

.gem-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #f0e8de;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 10px rgba(42,31,20,0.05);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

    .gem-card:hover {
        box-shadow: 0 8px 24px rgba(42,31,20,0.10);
        border-color: #e0d0c0;
    }

.product-link {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* ── IMAGE — no zoom, fixed ratio ── */
.gem-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%;
    background: #f7f3ef;
    overflow: hidden;
}

    .gem-image-wrapper img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* no transition, no zoom */
    }

/* ── WISHLIST — always visible top right ── */
.wishlist-trigger {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 6;
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.92);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c0a090;
    border: 1px solid #e8ddd2;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.2s, border-color 0.2s;
}

    .wishlist-trigger:hover,
    .wishlist-trigger.active {
        color: #e53e3e;
        border-color: #fecaca;
        background: #fff;
    }

    .wishlist-trigger svg {
        width: 14px;
        height: 14px;
    }

/* ── OVERLAY — always visible, no slide ── */
.gem-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    z-index: 5;
    transform: none;
    transition: none;
}

.gem-btn-quickview,
.gem-btn-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 11px 8px;
    font-family: 'Lato', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.gem-btn-quickview {
    background: rgba(255,255,255,0.96);
    color: #3d2e1e;
    border-right: 1px solid #e8ddd2;
    border-top: 1px solid #e8ddd2;
}

    .gem-btn-quickview:hover {
        background: #fff;
        color: #2a1f14;
    }

.gem-btn-cart {
    background: #2a1f14;
    color: #d4af37;
    border-top: 1px solid #1a1209;
}

    .gem-btn-cart:hover {
        background: #1a1209;
    }

    .gem-btn-quickview svg,
    .gem-btn-cart svg {
        width: 14px;
        height: 14px;
    }

/* ── INFO ── */
.gem-info {
    padding: 14px 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
    border-top: 1px solid #f0e8de;
}

.gem-category {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #cb8161;
}

.gem-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-weight: 600;
    color: #2a1f14;
    line-height: 1.25;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: calc(100% - 30px);
}

.gem-price {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #cb8161;
}

/* ── SPECS — always visible ── */
.gem-specs-hover {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    border-top: 1px solid #f0e8de;
    padding-top: 9px;
    margin-top: 6px;
    max-height: none;
    opacity: 1;
    overflow: visible;
}

.spec-item {
    font-size: 10.5px;
    color: #9e8e7e;
    line-height: 1.4;
}

.spec-label {
    font-size: 10px;
    font-weight: 700;
    color: #5a4a3a;
    margin-right: 2px;
}

/* no gold sweep — removed */
.gem-card::after {
    display: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 480px) {
    .gem-image-wrapper {
        padding-top: 90%;
    }

    .gem-title {
        font-size: 14px;
    }

    .gem-price {
        font-size: 13px;
    }

    .gem-btn-quickview,
    .gem-btn-cart {
        padding: 10px 4px;
        font-size: 9px;
    }
}

/* ══════════════════════════════════════
   SECTION SHOP BY MOOD
══════════════════════════════════════ */

/* ── TOKENS ── */
:root {
    --gold: #d4af37;
    --acc: #cb8161;
    --acc-light: #fdf5f0;
    --deep: #2a1f14;
    --text-mid: #5a4a3a;
    --muted: #9e8e7e;
    --border: #e8ddd2;
    --section-bg: #fdf6f0;
    --card-bg: #ffffff;
    --pin: #2a1f14;
}

.dj-polaroid-section {
    background: var(--section-bg);
    padding: 56px 0 64px;
    overflow: hidden;
}

/* ── SECTION HEADER ── */
.dj-polaroid-header {
    text-align: center;
    padding: 0 24px;
    margin-bottom: 48px;
}

.dj-polaroid-eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--acc);
    font-weight: 600;
    margin-bottom: 10px;
}

.dj-polaroid-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 600;
    color: var(--deep);
    line-height: 1.2;
}

    .dj-polaroid-title em {
        font-style: italic;
        color: var(--acc);
    }

.dj-polaroid-divider {
    width: 44px;
    height: 2px;
    background: var(--gold);
    margin: 14px auto 0;
    border-radius: 2px;
}

/* ══════════════════════════════════════
   SLIDER TRACK
══════════════════════════════════════ */
.dj-polaroid-outer {
    position: relative;
    max-width: 1400px;
    margin: auto;
}

.dj-polaroid-track-wrap {
    overflow: hidden;
    padding: 20px 60px 40px;
}

.dj-polaroid-track {
    display: flex;
    gap: 28px;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    align-items: flex-start;
}

/* ══════════════════════════════════════
   POLAROID CARD
══════════════════════════════════════ */
.dj-polaroid-card {
    flex: 0 0 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    /* staggered vertical offset like reference */
    position: relative;
}

    /* alternate cards drop lower */
    .dj-polaroid-card:nth-child(even) {
        margin-top: 40px;
    }

/* ── PIN ── */
.dj-polaroid-pin {
    width: 10px;
    height: 10px;
    background: var(--pin);
    border-radius: 50%;
    margin-bottom: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

    .dj-polaroid-pin::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: rgba(255,255,255,0.35);
    }

/* ── PHOTO FRAME ── */
.dj-polaroid-frame {
    background: var(--card-bg);
    padding: 10px 10px 36px;
    box-shadow: 0 4px 16px rgba(42,31,20,0.10), 0 1px 3px rgba(42,31,20,0.06);
    width: 100%;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s ease;
    transform: rotate(-1.5deg);
}

.dj-polaroid-card:nth-child(even) .dj-polaroid-frame {
    transform: rotate(1.2deg);
}

.dj-polaroid-card:hover .dj-polaroid-frame {
    transform: rotate(0deg) scale(1.03);
    box-shadow: 0 12px 36px rgba(42,31,20,0.16), 0 2px 8px rgba(42,31,20,0.08);
}

/* ── IMAGE ── */
.dj-polaroid-img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
    background: #e8ddd2;
}

/* placeholder when no image */
.dj-polaroid-img-placeholder {
    width: 100%;
    aspect-ratio: 3 / 4;
    background: linear-gradient(145deg, #e8ddd2 0%, #d4c4b4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .dj-polaroid-img-placeholder svg {
        opacity: 0.3;
    }

/* ── TEXT BELOW FRAME ── */
.dj-polaroid-text {
    margin-top: 16px;
    text-align: center;
    padding: 0 4px;
}

.dj-polaroid-name {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--deep);
    margin-bottom: 7px;
    transition: color 0.2s;
}

.dj-polaroid-card:hover .dj-polaroid-name {
    color: var(--acc);
}

.dj-polaroid-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    font-style: italic;
    color: var(--acc);
    line-height: 1.5;
}

/* ══════════════════════════════════════
   NAV ARROWS
══════════════════════════════════════ */
.dj-polaroid-arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    box-shadow: 0 2px 12px rgba(42,31,20,0.10);
    color: var(--text-mid);
}

    .dj-polaroid-arrow:hover {
        background: var(--deep);
        border-color: var(--deep);
        color: #fff;
        transform: translateY(-50%) scale(1.05);
    }

    .dj-polaroid-arrow svg {
        width: 16px;
        height: 16px;
        stroke-width: 2;
    }

.dj-polaroid-arrow--prev {
    left: 12px;
}

.dj-polaroid-arrow--next {
    right: 12px;
}

/* ── DOTS ── */
.dj-polaroid-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.dj-polaroid-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    border: none;
    padding: 0;
}

    .dj-polaroid-dot.active {
        background: var(--acc);
        transform: scale(1.25);
    }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 900px) {
    .dj-polaroid-track-wrap {
        padding: 20px 48px 40px;
    }

    .dj-polaroid-card {
        flex: 0 0 180px;
    }

    .dj-polaroid-title {
        font-size: 28px;
    }
}

@media (max-width: 600px) {
    .dj-polaroid-section {
        padding: 40px 0 48px;
    }

    .dj-polaroid-track-wrap {
        padding: 20px 40px 32px;
    }

    .dj-polaroid-card {
        flex: 0 0 150px;
    }

        .dj-polaroid-card:nth-child(even) {
            margin-top: 28px;
        }

    .dj-polaroid-title {
        font-size: 24px;
    }

    .dj-polaroid-desc {
        font-size: 13px;
    }

    .dj-polaroid-arrow {
        width: 32px;
        height: 32px;
    }
}



/*GIFT FOR SECTION*/
:root {
    --gold: #937a2b;
    --acc: #cb8161;
    --deep: #1a1209;
    --white: #ffffff;
}

/* ── SECTION ── */
.dj-gift {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 365px;
}

/* ── CARD ── */
.dj-gift-card {
    position: relative;
    overflow: visible;
    display: block;
    text-decoration: none;
    cursor: pointer;
}

/* placeholder bg — remove when using real image */
/*.dj-gift-card--him {
    background: #1c1710;
}

.dj-gift-card--her {
    background: #1f0d14;
}*/

/* image */
.dj-gift-card__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: opacity 0.6s ease, transform 0.7s ease;
}

.dj-gift-card:hover .dj-gift-card__img {
    opacity: 0.55;
    transform: scale(1.04);
}

/* gradient */
.dj-gift-card__overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.dj-gift-card--him .dj-gift-card__overlay {
    background: linear-gradient(160deg, #d9b873 0%, #d9b873 100%);
}

.dj-gift-card--her .dj-gift-card__overlay {
    background: linear-gradient(160deg, rgb(175 81 81 / 30%) 0%, rgb(193 126 126 / 75%) 100%);
}

/* content */
.dj-gift-card__body {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 48px 44px;
    z-index: 2;
}

/* thin top line */
.dj-gift-card__line {
    width: 32px;
    height: 1px;
    margin-bottom: 18px;
    transition: width 0.4s ease;
}

.dj-gift-card--him .dj-gift-card__line {
    background: var(--gold);
}

.dj-gift-card--her .dj-gift-card__line {
    background: #e8a0ad;
}

.dj-gift-card:hover .dj-gift-card__line {
    width: 56px;
}

.dj-gift-card__label {
    font-family: 'Lato', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.dj-gift-card--him .dj-gift-card__label {
    color: var(--gold);
}

.dj-gift-card--her .dj-gift-card__label {
    color: #812d39;
}

.dj-gift-card__heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 300;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

    .dj-gift-card__heading em {
        font-style: italic;
        font-weight: 400;
    }

.dj-gift-card--him .dj-gift-card__heading em {
    color: var(--gold);
}

.dj-gift-card--her .dj-gift-card__heading em {
    color: #812d39;
}

.dj-gift-card__desc {
    font-size: 13px;
    font-weight: 300;
    color: rgb(0 0 0 / 55%);
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 260px;
    letter-spacing: 0.2px;
}

/* cta — text link style */
.dj-gift-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    padding-bottom: 4px;
    position: relative;
    transition: gap 0.3s ease;
}

.dj-gift-card--him .dj-gift-card__cta {
    color: var(--gold);
}

.dj-gift-card--her .dj-gift-card__cta {
    color: #812d4a;
}

.dj-gift-card__cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    transition: width 0.4s ease;
}

.dj-gift-card--him .dj-gift-card__cta::after {
    background: var(--gold);
}

.dj-gift-card--her .dj-gift-card__cta::after {
    background: #812d39;
}

.dj-gift-card:hover .dj-gift-card__cta::after {
    width: 100%;
}

.dj-gift-card:hover .dj-gift-card__cta {
    gap: 14px;
}

.dj-gift-card__cta svg {
    width: 14px;
    height: 14px;
}

/* centre divider line */
.dj-gift-card--him {
    border-right: 1px solid rgba(255,255,255,0.06);
}

/* ── PLACEHOLDER SVG ── */
.dj-gift-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.06;
    pointer-events: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
    .dj-gift {
        grid-template-columns: 1fr;
        min-height: unset;
    }

    .dj-gift-card {
        min-height: 420px;
    }

    .dj-gift-card--him {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .dj-gift-card__body {
        padding: 36px 28px;
    }

    .dj-gift-card__heading {
        font-size: 38px;
    }
}

.dj-gift-card--him img {
    position: absolute;
    height: 497px;
    right: 0;
    z-index: 1;
    bottom: 0;
    opacity: .9;
    border-radius: 30%;
}

.dj-gift-card--her img {
    position: absolute;
    height: 497px;
    right: 0;
    z-index: 1;
    bottom: 0;
    opacity: .9;
    border-radius: 30%;
}

.dj-gift-card--him img,
.dj-gift-card--her img {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 45%;
    object-fit: cover;
    object-position: top center;
    border-radius: 0;
    z-index: 1;
    opacity: 0.92;
}

@media (max-width: 900px) {
    .dj-gift-card--him img,
    .dj-gift-card--her img {
        width: 40%;
        opacity: 0.7;
    }
}

@media (max-width: 700px) {
    .dj-gift-card--him img,
    .dj-gift-card--her img {
        width: 220px;
        height: 220px;
        object-fit: cover;
        object-position: top center;
        border-radius: 50%;
        top: 16px;
        right: 16px;
        bottom: unset;
    }
}




/*COLLECTION section - HOME*/
/* ══════════════════════════════════════════════════
   PROMO BANNER — all classes prefixed dj-promo
   Zero conflict with existing gem-banner-* rules
══════════════════════════════════════════════════ */

.dj-promo {
    padding: 48px 0;
}

.dj-promo__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── EACH PANEL ── */
.dj-promo__panel {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 16 / 10;
    display: block;
    text-decoration: none;
}

/* image */
.dj-promo__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.6s ease;
    filter: brightness(0.88);
}

.dj-promo__panel:hover .dj-promo__img {
    transform: scale(1.05);
    filter: brightness(0.72);
}

/* gradient overlay — subtle bottom-to-center */
.dj-promo__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to bottom, rgba(18, 10, 5, 0.08) 0%, rgba(18, 10, 5, 0.42) 60%, rgba(18, 10, 5, 0.68) 100% );
    pointer-events: none;
    z-index: 1;
}

/* content — centred vertically lower half */
.dj-promo__body {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 32px 40px;
}

/* eyebrow line */
.dj-promo__line {
    width: 30px;
    height: 1px;
    background: rgba(255,255,255,0.5);
    margin-bottom: 16px;
    transition: width 0.4s ease;
}

.dj-promo__panel:hover .dj-promo__line {
    width: 52px;
    background: #d4af37;
}

/* title */
.dj-promo__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 2.8vw, 2.4rem);
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1.15;
    margin: 0 0 10px;
    transition: letter-spacing 0.4s ease;
}

.dj-promo__panel:hover .dj-promo__title {
    letter-spacing: 5px;
}

/* desc */
.dj-promo__desc {
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    margin: 0 0 28px;
    transition: color 0.3s ease;
}

.dj-promo__panel:hover .dj-promo__desc {
    color: rgba(255,255,255,0.85);
}

/* CTA button — outline box style (matches reference) */
.dj-promo__btn {
    display: inline-block;
    font-family: 'Lato', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.55);
    padding: 11px 32px;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    pointer-events: none; /* panel is the link */
}

.dj-promo__panel:hover .dj-promo__btn {
    background: #d4af37;
    border-color: #d4af37;
    color: #1a1209;
    transform: translateY(-2px);
}

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
    .dj-promo__grid {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0 16px;
    }

    .dj-promo__panel {
        aspect-ratio: 4 / 3;
    }

    .dj-promo__title {
        letter-spacing: 3px;
    }

    .dj-promo__body {
        padding: 24px 20px;
    }
}


/*CUSTOMER REVIEWS*/

<!-- ═══════════════════════════════════════════════
SECTION STYLES (move to site CSS if preferred)
═══════════════════════════════════════════════ -->
<style >
/* ── Reset helpers scoped to this section ─────────────────── */
.djr-section *,
.djr-section *::before,
.djr-section *::after {
    box-sizing: border-box;
}

/* ── Section wrapper ──────────────────────────────────────── */
.djr-section {
    background: #fdf6ef;
    padding: 80px 20px;
    overflow: hidden;
    position: relative;
}

    /* Subtle grain texture via SVG data-URI — no external request */
    .djr-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
        pointer-events: none;
        z-index: 0;
    }

/* ── Container ────────────────────────────────────────────── */
.djr-container {
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ── Section header ───────────────────────────────────────── */
.djr-eyebrow {
    text-align: center;
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 10.5px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #cb8161;
    margin: 0 0 12px;
}

.djr-heading {
    text-align: center;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 34px;
    font-weight: 400;
    color: #2c1810;
    margin: 0 0 18px;
    letter-spacing: 0.4px;
    line-height: 1.2;
}

/* decorative rule with diamond */
.djr-rule {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 52px;
}

.djr-rule-line {
    display: block;
    width: 56px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #cb8161);
}

    .djr-rule-line:last-child {
        background: linear-gradient(90deg, #cb8161, transparent);
    }

.djr-rule-diamond {
    display: block;
    width: 8px;
    height: 8px;
    background: #cb8161;
    transform: rotate(45deg);
    flex-shrink: 0;
}

/* ── Owl Carousel wrapper ─────────────────────────────────── */
/* These overrides target Owl's generated classes;
   prefix them so they only apply inside this section */
.djr-section .owl-stage-outer {
    padding-bottom: 8px;
}

.djr-section .owl-dots {
    margin-top: 32px;
    text-align: center;
}

.djr-section .owl-dot span {
    width: 7px;
    height: 7px;
    background: #e0ccc0 !important;
    border-radius: 50%;
    display: inline-block;
    margin: 0 4px;
    transition: background 0.25s, transform 0.25s;
}

.djr-section .owl-dot.active span {
    background: #cb8161 !important;
    transform: scale(1.35);
}

/* Owl nav arrows */
.djr-section .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #fff !important;
    border: 0.5px solid #e8d9cc !important;
    border-radius: 50% !important;
    color: #7b1d2e !important;
    font-size: 18px !important;
    line-height: 1 !important;
    transition: background 0.2s, border-color 0.2s;
    z-index: 10;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

    .djr-section .owl-nav button:hover {
        background: #7b1d2e !important;
        border-color: #7b1d2e !important;
        color: #fff !important;
    }

.djr-section .owl-prev {
    left: -52px;
}

.djr-section .owl-next {
    right: -52px;
}

/* ── Review card ──────────────────────────────────────────── */
.djr-review-card {
    padding: 6px 4px; /* breathing room inside owl item */
}

.djr-review-inner {
    background: #ffffff;
    border: 0.5px solid #ead9cc;
    border-radius: 2px;
    padding: 36px 30px 28px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: 260px;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
    border-radius: 5px;
}

    .djr-review-inner:hover {
        border-color: #cb8161;
        box-shadow: 0 6px 32px rgba(123, 29, 46, 0.07);
    }

    /* large decorative quote mark */
    .djr-review-inner::before {
        content: '\201C';
        font-family: 'Georgia', serif;
        font-size: 72px;
        line-height: 1;
        color: #f0e4da;
        position: absolute;
        top: 14px;
        left: 26px;
        pointer-events: none;
        user-select: none;
    }

/* ── Star rating ──────────────────────────────────────────── */
.djr-review-rating {
    margin-bottom: 14px;
    padding-top: 28px; /* clears the quote mark */
}

.djr-stars {
    display: flex;
    gap: 3px;
}

    .djr-stars i,
    .djr-stars .djr-star-icon {
        color: #cb8161;
        font-size: 14px;
    }

/* fallback stars if fa-solid isn't loaded (Unicode ★) */
.djr-star-fb {
    color: #cb8161;
    font-size: 14px;
    letter-spacing: 1px;
}

/* ── Review text ──────────────────────────────────────────── */
.djr-review-body {
    flex: 1;
    margin-bottom: 22px;
}

.djr-review-text {
    font-family: 'Georgia', serif;
    font-size: 14px;
    line-height: 1.8;
    color: #5a3826;
    font-style: italic;
    margin: 0;
}

/* ── Profile ──────────────────────────────────────────────── */
.djr-client-profile {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 0.5px solid #ead9cc;
}

.djr-client-thumb {
    flex-shrink: 0;
}

.djr-client-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ead9cc;
    display: block;
}

.djr-client-info {
    flex: 1;
    min-width: 0;
}

.djr-client-name {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #2c1810;
    margin: 0 0 4px;
    letter-spacing: 0.2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.djr-client-meta {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #cb8161;
    display: flex;
    align-items: center;
    gap: 5px;
}

    .djr-client-meta::before {
        content: '';
        display: inline-block;
        width: 6px;
        height: 6px;
        background: #cb8161;
        border-radius: 50%;
        flex-shrink: 0;
    }

/* ── Featured (dark) card variant ────────────────────────── */
/* Apply class  djr-review-card--featured  on any item via
   code-behind if you want to highlight a specific review    */
.djr-review-card--featured .djr-review-inner {
    background: #7b1d2e;
    border-color: #7b1d2e;
}

    .djr-review-card--featured .djr-review-inner::before {
        color: rgba(255,255,255,0.12);
    }

.djr-review-card--featured .djr-stars i,
.djr-review-card--featured .djr-star-fb {
    color: #f4c9a8;
}

.djr-review-card--featured .djr-review-text {
    color: rgba(255,255,255,0.86);
}

.djr-review-card--featured .djr-client-profile {
    border-color: rgba(255,255,255,0.18);
}

.djr-review-card--featured .djr-client-name {
    color: #fff;
}

.djr-review-card--featured .djr-client-meta {
    color: #f4c9a8;
}

    .djr-review-card--featured .djr-client-meta::before {
        background: #f4c9a8;
    }

.djr-review-card--featured .djr-client-avatar {
    border-color: rgba(255,255,255,0.22);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1200px) {
    .djr-section .owl-prev {
        left: -20px;
    }

    .djr-section .owl-next {
        right: -20px;
    }
}

@media (max-width: 992px) {
    .djr-section .owl-nav button {
        display: none !important;
    }

    .djr-heading {
        font-size: 28px;
    }
}

@media (max-width: 640px) {
    .djr-section {
        padding: 56px 16px;
    }

    .djr-heading {
        font-size: 24px;
    }

    .djr-rule-line {
        width: 36px;
    }

    .djr-review-inner {
        padding: 28px 20px 22px;
        min-height: auto;
    }

        .djr-review-inner::before {
            font-size: 56px;
            top: 10px;
            left: 18px;
        }

    .djr-review-rating {
        padding-top: 22px;
    }
}

.gem-client-thumb.djr-client-thumb {
    background: #ececec;
}

img.gem-client-avatar.djr-client-avatar {
    margin: 8px;
}


/* =============================================
       DIVIS JEWELS – TRUST SECTION
       Prefix: djt__ — zero conflict with existing styles
    ============================================= */
:root {
    --djt-maroon: #6B1C2C;
    --djt-maroon-deep: #4A1020;
    --djt-gold: #C9A84C;
    --djt-gold-light: #E8D5A3;
    --djt-cream: #FDF6F0;
    --djt-blush: #F5EAE4;
    --djt-text-dark: #2A1A1A;
    --djt-text-mid: #6B4C4C;
    --djt-text-light: #9E7E7E;
    --djt-border: rgba(201,168,76,0.28);
    --djt-shadow: rgba(107,28,44,0.10);
}

/* ── Section ── */
#djt-section {
    background: var(--djt-cream);
    overflow: hidden;
    position: relative;
}

/* ── 2-col grid ── */
.djt-grid {
    display: grid;
    grid-template-columns: 52% 48%;
    min-height: 660px;
}

/* =============================================
       LEFT: IMAGE
    ============================================= */
.djt-img-col {
    position: relative;
    overflow: hidden;
}

    .djt-img-col img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        display: block;
        transition: transform 1s cubic-bezier(0.25,0.46,0.45,0.94);
    }

    .djt-img-col:hover img {
        transform: scale(1.05);
    }

    .djt-img-col::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient( 160deg, rgba(74,16,32,0.22) 0%, rgba(201,168,76,0.06) 60%, transparent 100% );
        pointer-events: none;
    }

/* Floating hallmark badge */
.djt-badge {
    position: absolute;
    bottom: 32px;
    left: 28px;
    z-index: 3;
    background: rgba(253,246,240,0.95);
    backdrop-filter: blur(10px);
    border-left: 3px solid var(--djt-gold);
    padding: 13px 18px;
    display: flex;
    align-items: center;
    gap: 11px;
    box-shadow: 0 6px 28px var(--djt-shadow);
}

    .djt-badge svg {
        color: var(--djt-gold);
        flex-shrink: 0;
    }

.djt-badge-label {
    display: flex;
    flex-direction: column;
}

    .djt-badge-label strong {
        font-family: 'Jost', sans-serif;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--djt-maroon);
        line-height: 1;
    }

    .djt-badge-label span {
        font-size: 10.5px;
        color: var(--djt-text-light);
        letter-spacing: 0.05em;
        margin-top: 3px;
    }

/* =============================================
       RIGHT: CONTENT
    ============================================= */
.djt-content-col {
    background: var(--djt-blush);
    padding: 68px 52px 60px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

    /* Corner ornaments */
    .djt-content-col::before {
        content: '';
        position: absolute;
        top: 28px;
        right: 28px;
        width: 50px;
        height: 50px;
        border-top: 1px solid var(--djt-gold);
        border-right: 1px solid var(--djt-gold);
        opacity: 0.4;
    }

    .djt-content-col::after {
        content: '';
        position: absolute;
        bottom: 28px;
        left: 28px;
        width: 50px;
        height: 50px;
        border-bottom: 1px solid var(--djt-gold);
        border-left: 1px solid var(--djt-gold);
        opacity: 0.4;
    }

/* Eyebrow */
.djt-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

    .djt-eyebrow::before {
        content: '';
        display: block;
        width: 26px;
        height: 1px;
        background: var(--djt-gold);
    }

.djt-eyebrow-text {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--djt-gold);
}

/* Heading */
.djt-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(30px, 3vw, 44px);
    font-weight: 300;
    line-height: 1.2;
    color: var(--djt-text-dark);
    margin-bottom: 10px;
}

    .djt-heading em {
        font-style: italic;
        color: var(--djt-maroon);
    }

/* Gold divider */
.djt-rule {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 34px;
}

.djt-rule-bar {
    width: 44px;
    height: 1.5px;
    background: linear-gradient(90deg, var(--djt-gold), transparent);
}

.djt-rule-diamond {
    width: 5px;
    height: 5px;
    background: var(--djt-gold);
    transform: rotate(45deg);
    opacity: 0.75;
}

/* ── Feature items ── */
.djt-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 30px;
}

.djt-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 18px;
    background: rgba(253,246,240,0.65);
    border: 1px solid var(--djt-border);
    border-left: 3px solid transparent;
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
    cursor: default;
}

    .djt-feature:hover {
        border-left-color: var(--djt-gold);
        background: rgba(253,246,240,1);
        transform: translateX(5px);
    }

.djt-feature-icon {
    width: 38px;
    height: 38px;
    background: var(--djt-maroon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s;
}

.djt-feature:hover .djt-feature-icon {
    background: var(--djt-maroon-deep);
}

.djt-feature-icon svg {
    color: var(--djt-gold);
}

.djt-feature-title {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--djt-maroon);
    margin-bottom: 4px;
}

.djt-feature-desc {
    font-size: 13px;
    font-weight: 300;
    color: var(--djt-text-mid);
    line-height: 1.65;
}

/* ── Trust strip ── */
.djt-trust-strip {
    display: flex;
    align-items: center;
    border-top: 1px solid var(--djt-border);
    padding-top: 24px;
    margin-bottom: 30px;
}

.djt-trust-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 0 8px;
    text-align: center;
    position: relative;
}

    .djt-trust-item + .djt-trust-item::before {
        content: '';
        position: absolute;
        left: 0;
        top: 6px;
        bottom: 6px;
        width: 1px;
        background: var(--djt-border);
    }

    .djt-trust-item svg {
        color: var(--djt-gold);
        margin-bottom: 2px;
    }

    .djt-trust-item strong {
        font-size: 10.5px;
        font-weight: 600;
        letter-spacing: 0.09em;
        text-transform: uppercase;
        color: var(--djt-maroon);
        line-height: 1.3;
    }

    .djt-trust-item small {
        font-size: 10px;
        color: var(--djt-text-light);
    }

/* ── CTA Button ── */
.djt-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--djt-maroon);
    color: var(--djt-gold-light);
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 28px;
    border: 1px solid var(--djt-maroon);
    transition: background 0.3s, color 0.3s, gap 0.3s;
    align-self: flex-start;
}

    .djt-cta:hover {
        background: transparent;
        color: var(--djt-maroon);
        gap: 16px;
    }

.djt-cta-arrow {
    transition: transform 0.3s;
}

.djt-cta:hover .djt-cta-arrow {
    transform: translateX(4px);
}

/* =============================================
       RESPONSIVE
    ============================================= */
@media (max-width: 1024px) {
    .djt-grid {
        grid-template-columns: 1fr 1fr;
        min-height: 560px;
    }

    .djt-content-col {
        padding: 52px 32px 48px 36px;
    }
}

@media (max-width: 767px) {
    body {
        padding: 0;
    }

    .djt-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .djt-img-col {
        height: 320px;
    }

    .djt-badge {
        bottom: 16px;
        left: 16px;
        padding: 10px 14px;
        gap: 9px;
    }

    .djt-content-col {
        padding: 40px 24px 36px;
    }

        .djt-content-col::before,
        .djt-content-col::after {
            display: none;
        }

    .djt-features {
        gap: 12px;
        margin-bottom: 24px;
    }

    .djt-trust-strip {
        flex-wrap: wrap;
        gap: 14px;
        padding-top: 18px;
        margin-bottom: 24px;
    }

    .djt-trust-item {
        flex: 0 0 calc(50% - 7px);
    }

        .djt-trust-item + .djt-trust-item::before {
            display: none;
        }

    .djt-cta {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 400px) {
    .djt-img-col {
        height: 260px;
    }

    .djt-heading {
        font-size: 28px;
    }

    .djt-trust-item {
        flex: 0 0 100%;
    }
}


/* ══════════════════════════════════════════════════
   3-COL CATEGORY BANNERS
══════════════════════════════════════════════════ */

.dj-cat {
    padding: 52px 24px;
    background: #fdf6f0;
}

.dj-cat__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1280px;
    margin: 0 auto;
}

/* ── CARD ── */
.dj-cat__card {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    display: block;
    text-decoration: none;
    aspect-ratio: 3 / 4;
    background: #1a1209;
}

/* image */
.dj-cat__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.5s ease;
    filter: brightness(0.92);
}

.dj-cat__card:hover .dj-cat__img {
    transform: scale(1.06);
    filter: brightness(0.72);
}

/* gradient — sits at bottom left where text lives */
.dj-cat__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(26, 14, 6, 0.78) 0%, rgba(26, 14, 6, 0.28) 38%, transparent 65% );
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.4s ease;
}

.dj-cat__card:hover .dj-cat__overlay {
    opacity: 1.2;
}

/* content — bottom left like reference */
.dj-cat__body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: clamp(20px, 4%, 32px) clamp(18px, 4%, 32px) clamp(22px, 4%, 36px);
}

/* title */
.dj-cat__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 10px;
    line-height: 1.1;
    transition: letter-spacing 0.4s ease;
}

.dj-cat__card:hover .dj-cat__title {
    letter-spacing: 4.5px;
}

/* shop now link */
.dj-cat__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Lato', sans-serif;
    font-size: clamp(9px, 1vw, 11px);
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    padding-bottom: 3px;
    position: relative;
    transition: color 0.3s ease, gap 0.3s ease;
}

    .dj-cat__link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 1px;
        background: #d4af37;
        transition: width 0.4s ease;
    }

.dj-cat__card:hover .dj-cat__link {
    color: #d4af37;
    gap: 12px;
}

    .dj-cat__card:hover .dj-cat__link::after {
        width: 100%;
    }

.dj-cat__link svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.dj-cat__card:hover .dj-cat__link svg {
    transform: translateX(3px);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .dj-cat__grid {
        gap: 12px;
    }

    .dj-cat__title {
        letter-spacing: 2px;
    }
}

@media (max-width: 640px) {
    .dj-cat {
        padding: 36px 14px;
    }

    .dj-cat__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .dj-cat__card {
        aspect-ratio: 4 / 3;
    }

    .dj-cat__title {
        font-size: clamp(1.6rem, 7vw, 2rem);
        letter-spacing: 3px;
    }

    .dj-cat__link {
        font-size: 10px;
    }
}




<!-- ═══════════════════════════════════════════════
FOOTER STYLES (move to site CSS if preferred)
═══════════════════════════════════════════════ -->
/* ── Scoped reset ─────────────────────────────────────────── */
.djr-ft-wrap *,
.djr-ft-wrap *::before,
.djr-ft-wrap *::after {
    box-sizing: border-box;
}

/* ══════════════════════════════════════════════════
   ASIDE — dark jewellery tone
   ══════════════════════════════════════════════════ */
.djr-ft-aside {
    background: #1e0a10 !important; /* very deep burgundy-black */
    color: #b89e92 !important;
    position: relative;
    overflow: hidden;
}

    /* top gold hairline */
    .djr-ft-aside::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, #cb8161 30%, #cb8161 70%, transparent);
    }

    /* subtle grain overlay */
    .djr-ft-aside::after {
        content: '';
        position: absolute;
        inset: 0;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
        pointer-events: none;
        z-index: 0;
    }

    .djr-ft-aside .container {
        position: relative;
        z-index: 1;
    }

    /* ── Column headings ──────────────────────────────────────── */
    .djr-ft-aside .ftHeading {
        color: #ffffff !important;
        font-family: 'Georgia', serif !important;
        font-size: 16px !important;
        font-weight: 400 !important;
        letter-spacing: 0.5px;
        margin-bottom: 20px !important;
        padding-bottom: 12px;
        position: relative;
    }

        .djr-ft-aside .ftHeading::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 28px;
            height: 1px;
            background: #cb8161;
        }

    /* ── Address block ────────────────────────────────────────── */
    .djr-ft-aside address.ftLocation .d-block {
        color: #9a8078 !important;
        font-size: 13.5px;
        line-height: 1.8;
        font-style: normal;
    }

        .djr-ft-aside address.ftLocation .d-block strong {
            color: #cb8161 !important;
        }

    .djr-ft-aside address.ftLocation a {
        color: #9a8078 !important;
        transition: color 0.2s;
    }

        .djr-ft-aside address.ftLocation a:hover {
            color: #cb8161 !important;
        }

    /* ── Links list ───────────────────────────────────────────── */
    .djr-ft-aside .ftLinksList {
        margin: 0;
        padding: 0;
    }

        .djr-ft-aside .ftLinksList li {
            margin-bottom: 10px;
            list-style: none;
            display: flex;
            align-items: center;
            gap: 8px;
        }

            .djr-ft-aside .ftLinksList li::before {
                content: '';
                display: inline-block;
                width: 4px;
                height: 4px;
                background: #cb8161;
                border-radius: 50%;
                flex-shrink: 0;
                transition: transform 0.2s;
            }

            .djr-ft-aside .ftLinksList li:hover::before {
                transform: scale(1.5);
            }

        .djr-ft-aside .ftLinksList a {
            font-family: 'Trebuchet MS', sans-serif;
            font-size: 13px;
            color: #9a8078 !important;
            text-decoration: none;
            letter-spacing: 0.2px;
            transition: color 0.2s, padding-left 0.2s;
        }

            .djr-ft-aside .ftLinksList a:hover {
                color: #cb8161 !important;
                padding-left: 3px;
            }

    /* ── Social circles ───────────────────────────────────────── */
    .djr-ft-aside .social-circle {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 1px solid rgba(203,129,97,0.35) !important;
        background: transparent !important;
        color: #9a8078 !important;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.2s;
    }

        .djr-ft-aside .social-circle:hover {
            background: #cb8161 !important;
            border-color: #cb8161 !important;
            color: #fff !important;
            transform: translateY(-2px);
        }

/* ── Column dividers (desktop) ────────────────────────────── */
@media (min-width: 992px) {
    .djr-ft-col-divider {
        border-left: 1px solid rgba(203,129,97,0.12);
        padding-left: 32px !important;
    }
}

/* ══════════════════════════════════════════════════
   BOTTOM BAR — slightly lighter dark for contrast
   ══════════════════════════════════════════════════ */
.djr-ft-bar {
    background: #12060a !important;
    border-top: 1px solid rgba(203,129,97,0.2) !important;
    padding: 22px 0 !important;
}

    /* copyright text */
    .djr-ft-bar .payment-gateway span {
        font-family: 'Trebuchet MS', sans-serif;
        font-size: 12px;
        letter-spacing: 0.5px;
        color: #5e4840;
    }

    /* policy links */
    .djr-ft-bar .footerNav {
        flex-wrap: wrap;
        gap: 4px 0;
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .djr-ft-bar .footerNav li {
            list-style: none;
        }

        .djr-ft-bar .footerNav a {
            font-family: 'Trebuchet MS', sans-serif;
            font-size: 11.5px;
            letter-spacing: 0.3px;
            color: #5e4840 !important;
            text-decoration: none;
            transition: color 0.2s;
            white-space: nowrap;
        }

            .djr-ft-bar .footerNav a:hover {
                color: #cb8161 !important;
            }

        /* separator dots between policy links */
        .djr-ft-bar .footerNav li + li::before {
            content: '·';
            color: #3a2020;
            margin-right: 6px;
            font-size: 14px;
            line-height: 1;
        }

/* ── Brand logo area in footer ────────────────────────────── */
.djr-ft-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.djr-ft-logo-text {
    font-family: 'Georgia', serif;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1.1;
}

.djr-ft-logo-sub {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 8px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #cb8161;
    display: block;
    margin-top: 2px;
}

.djr-ft-tagline {
    font-family: 'Georgia', serif;
    font-size: 12px;
    font-style: italic;
    color: #5e4840;
    margin: 0 0 20px;
    line-height: 1.7;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 767px) {
    .djr-ft-col-divider {
        border-left: none !important;
        padding-left: 12px !important;
    }

    .djr-ft-bar .footerNav {
        justify-content: flex-start !important;
    }

        .djr-ft-bar .footerNav li + li::before {
            margin: 0 4px;
        }
}

@media (max-width: 480px) {
    .djr-ft-bar .footerNav a {
        font-size: 11px;
    }
}


/*TOP CATEGORY COLLECTION*/

.dj-lux {
    padding: 72px 48px;
    background: #ffffff;
}

/* ── DEFAULT (mobile-first) — single column stack ── */
.dj-lux__grid {
    display: grid;
    max-width: 1160px;
    margin: 0 auto;
    gap: 20px;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
}

/* ── TABLET 640px+ — 2 equal columns ── */
@media (min-width: 640px) {
    .dj-lux__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }

    .dj-lux__card:nth-child(1) {
        grid-column: 1 / -1; /* hero spans full width */
        height: 360px;
    }

    .dj-lux__card:nth-child(2),
    .dj-lux__card:nth-child(3) {
        height: 300px;
    }
}

/* ── DESKTOP 1300px+ — full asymmetric inline 3 columns ── */
@media (min-width: 1300px) {
    .dj-lux__grid {
        max-width: 100%; /* let it fill the section width */
        grid-template-columns: 1.3fr 1.3fr 1.3fr;
        grid-template-rows: 1fr; /* ALL three cards in ONE row */
        gap: 16px;
        align-items: stretch;
    }

    /* Hero: reset span, back to single column */
    .dj-lux__card:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
        height: 480px;
    }

    .dj-lux__card:nth-child(2),
    .dj-lux__card:nth-child(3) {
        grid-column: auto;
        grid-row: 1; /* same row as hero */
        height: 480px; /* match hero height */
    }
}

/* ── LARGE MONITOR 1600px+ — scale heights up ── */
@media (min-width: 1600px) {
    .dj-lux__grid {
        max-width: 1560px;
        gap: 20px;
    }

    .dj-lux__card:nth-child(1),
    .dj-lux__card:nth-child(2),
    .dj-lux__card:nth-child(3) {
        height: 540px;
    }
}

/* ══════════════════════════════════════════════════
   CARD BASE — unchanged from original
══════════════════════════════════════════════════ */
.dj-lux__card {
    position: relative;
    display: block;
    text-decoration: none;
    overflow: hidden;
    background: #0d0a06;
    cursor: pointer;
    border-radius: 10px;
    /* default height for mobile */
    height: 280px;
}

    /* thin gold frame on hover */
    .dj-lux__card::before {
        content: '';
        position: absolute;
        inset: 10px;
        border: 1px solid rgba(212,175,55,0);
        z-index: 4;
        pointer-events: none;
        transition: border-color 0.5s ease;
    }

    .dj-lux__card:hover::before {
        border-color: rgba(212,175,55,0.35);
    }

    /* gold corner accents */
    .dj-lux__card::after {
        content: '';
        position: absolute;
        top: 6px;
        left: 6px;
        width: 28px;
        height: 28px;
        border-top: 1.5px solid rgba(212,175,55,0.6);
        border-left: 1.5px solid rgba(212,175,55,0.6);
        z-index: 5;
        pointer-events: none;
        transition: width 0.4s ease, height 0.4s ease, opacity 0.3s ease;
        opacity: 0;
    }

    .dj-lux__card:hover::after {
        opacity: 1;
        width: 40px;
        height: 40px;
    }

/* ══════════════════════════════════════════════════
   IMAGE
══════════════════════════════════════════════════ */
.dj-lux__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom right;
    transition: transform 0.9s cubic-bezier(0.23, 1, 0.32, 1), filter 0.6s ease;
}

.dj-lux__card:hover .dj-lux__img {
    transform: scale(1.05);
    filter: brightness(0.6) saturate(0.85);
}

/* ══════════════════════════════════════════════════
   OVERLAY
══════════════════════════════════════════════════ */
.dj-lux__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

/* hero card — side vignette, text left */
.dj-lux__card:nth-child(1) .dj-lux__overlay {
    background: linear-gradient(105deg, rgba(8,5,2,0.54) 0%, rgba(8,5,2,0.45) 32%, rgba(8,5,2,0.10) 58%, transparent 75% ), linear-gradient(to top, rgba(8,5,2,0.27) 0%, transparent 50%);
}

/* side cards — bottom vignette */
.dj-lux__card:nth-child(2) .dj-lux__overlay,
.dj-lux__card:nth-child(3) .dj-lux__overlay {
    /*background: linear-gradient( to top, rgba(8,5,2,0.92) 0%, rgba(8,5,2,0.50) 40%, rgba(8,5,2,0.08) 70%, transparent 100% );*/
}

/* ══════════════════════════════════════════════════
   BODY PLACEMENT
══════════════════════════════════════════════════ */
.dj-lux__body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 32px 36px 36px;
}

/* hero: vertically centred in left third (desktop only) */
@media (min-width: 1300px) {
    .dj-lux__card:nth-child(1) .dj-lux__body {
        top: 0;
        right: 45%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 40px 48px;
    }
}

/* ══════════════════════════════════════════════════
   TYPOGRAPHY — unchanged from original
══════════════════════════════════════════════════ */
.dj-lux__eyebrow {
    display: block;
    font-family: 'Lato', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #fbcc32;
    margin-bottom: 14px;
    opacity: 0.8;
}

.dj-lux__title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 20px;
    line-height: 1;
    letter-spacing: 6px;
    transition: letter-spacing 0.5s ease;
    text-shadow: 0 2px 2px rgba(0,0,0,0.49);
}

.dj-lux__card:nth-child(1) .dj-lux__title {
    font-size: 2rem;
    letter-spacing: 8px;
}

.dj-lux__card:nth-child(2) .dj-lux__title,
.dj-lux__card:nth-child(3) .dj-lux__title {
    font-size: 2rem;
}

.dj-lux__card:hover .dj-lux__title {
    letter-spacing: 10px;
}

.dj-lux__rule {
    width: 32px;
    height: 1px;
    background: rgba(212,175,55,0.6);
    margin-bottom: 16px;
    transition: width 0.5s ease;
    display: block;
}

.dj-lux__card:hover .dj-lux__rule {
    width: 56px;
    background: #d4af37;
}

.dj-lux__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Lato', sans-serif;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.3s ease, gap 0.3s ease;
    position: relative;
    padding-bottom: 6px;
}

    .dj-lux__link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 1px;
        background: #d4af37;
        transition: width 0.45s ease;
    }

.dj-lux__card:hover .dj-lux__link {
    color: #d4af37;
    gap: 16px;
}

    .dj-lux__card:hover .dj-lux__link::after {
        width: 100%;
    }

.dj-lux__link svg {
    width: 12px;
    height: 12px;
    transition: transform 0.35s ease;
    flex-shrink: 0;
}

.dj-lux__card:hover .dj-lux__link svg {
    transform: translateX(5px);
}

.dj-lux__number {
    display:none;
    position: absolute;
    top: 24px;
    right: 28px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: rgba(212,175,55,0.08);
    line-height: 1;
    z-index: 2;
    pointer-events: none;
    letter-spacing: -2px;
    transition: color 0.4s ease;
    user-select: none;
}

.dj-lux__card:hover .dj-lux__number {
    color: rgba(212,175,55,0.13);
}

/* ══════════════════════════════════════════════════
   MOBILE heights (below 640px)
══════════════════════════════════════════════════ */
@media (max-width: 639px) {
    .dj-lux {
        padding: 40px 16px;
    }

    .dj-lux__card {
        height: 240px;
    }

        .dj-lux__card:nth-child(1) {
            height: 300px;
        }

            .dj-lux__card:nth-child(1) .dj-lux__title {
                font-size: 1.6rem;
                letter-spacing: 5px;
            }

        .dj-lux__card:nth-child(2) .dj-lux__title,
        .dj-lux__card:nth-child(3) .dj-lux__title {
            font-size: 1.6rem;
        }

    .dj-lux__body {
        padding: 20px 22px 24px;
    }
}

/* ════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════ */

/* Medium — all 3 linear, equal height */
@media (max-width: 1024px) and (min-width: 641px) {
    .dj-lux {
        padding: 48px 24px;
    }

    .dj-lux__grid {
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: auto;
        gap: 14px;
    }

    .dj-lux__card:nth-child(1) {
        grid-column: auto;
        height: 340px;
    }

        .dj-lux__card:nth-child(1) .dj-lux__body {
            top: unset;
            right: 0;
            justify-content: flex-end;
            padding: 28px 28px 32px;
        }

        .dj-lux__card:nth-child(1) .dj-lux__overlay {
            /*background: linear-gradient( to top, rgba(8,5,2,0.92) 0%, rgba(8,5,2,0.45) 40%, transparent 70% );*/
        }

        .dj-lux__card:nth-child(1) .dj-lux__title {
           /* font-size: 1.9rem;
            letter-spacing: 5px;*/
        }

    .dj-lux__card:nth-child(2),
    .dj-lux__card:nth-child(3) {
        height: 340px;
    }
}

/* Small — all stacked */
@media (max-width: 640px) {
    .dj-lux {
        padding: 36px 16px;
    }

    .dj-lux__grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 12px;
    }

    .dj-lux__card:nth-child(1),
    .dj-lux__card:nth-child(2),
    .dj-lux__card:nth-child(3) {
        grid-column: auto;
        height: 260px;
    }

        .dj-lux__card:nth-child(1) .dj-lux__body {
            top: unset;
            right: 0;
            justify-content: flex-end;
            padding: 22px 24px 26px;
        }

        .dj-lux__card:nth-child(1) .dj-lux__overlay {
            background: linear-gradient( to top, rgba(8,5,2,0.92) 0%, rgba(8,5,2,0.4) 45%, transparent 70% );
        }

        .dj-lux__card:nth-child(1) .dj-lux__title {
            /*font-size: 1.7rem;
            letter-spacing: 4px;*/
        }

        .dj-lux__card:nth-child(2) .dj-lux__title,
        .dj-lux__card:nth-child(3) .dj-lux__title {
            font-size: 1.6rem;
        }

    .dj-lux__number {
        font-size: 2.5rem;
    }

    .dj-lux__body {
        padding: 22px 24px 26px;
    }
}
