﻿/* =============================================================================
   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;
}


/* =============================================================================
   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;
        margin: 0;
        padding: 0;
    }


    /* --- 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%;
    }

    #lumina-header-v2 .logo-section {
        flex: 1;
        display: flex;
        justify-content: flex-start;
        padding: 30px 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;
    }

    #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;
    }
    .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 #ffffff29;
    /* background: #ffffff26; */
    backdrop-filter: blur(14px);
    border-radius: 5px;
}

.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;
}

#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: 50%;
        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;
}

.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;
    }
}
@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 {
    position: absolute;
    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);
            }

/* 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;
    }
}


/* =============================================================================
   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;
        letter-spacing: 6px;
        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;
}

.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: 150px;
}

.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: 500px;
    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, #f8f9ff 0%, #eef2ff 100%);
        padding: 80px 40px;
        margin: 40px 0 60px;
        text-align: center;
        border: 1px solid rgba(26, 58, 52, 0.03);
        position: relative;
        overflow: hidden;
    }

        .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;
    }
}


/* =============================================================================
   18. ABOUT US PAGE (.gem-about-vault)
   ============================================================================= */

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

.about-brand-header {
    background: linear-gradient(135deg, var(--gem-green) 0%, var(--gem-dark-green) 100%);
    padding: 127px 0;
    text-align: center;
    border-radius: var(--gem-radius);
    margin: 40px 0 60px;
    color: white;
    position: relative;
}

    .about-brand-header h1 {
        color: var(--gem-gold);
        text-transform: uppercase;
        letter-spacing: 8px;
        font-weight: 800;
        margin: 0;
        font-size: clamp(1.8rem, 5vw, 3.2rem);
    }

    .about-brand-header .subtitle {
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 5px;
        opacity: 0.8;
        margin-top: 15px;
        display: block;
        color: var(--gem-white);
    }

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

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

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

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

    .value-box h4 {
        font-size: 1rem;
        font-weight: 800;
        margin-bottom: 8px;
        color: var(--gem-green);
    }

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

.about-section-tag {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gem-gold);
    margin-bottom: 20px;
    display: block;
    text-align: center;
}

.about-main-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gem-green);
    margin-bottom: 40px;
    letter-spacing: -1px;
    text-align: center;
}

.story-block {
    background: var(--gem-bg-soft);
    padding: 60px;
    margin-bottom: 80px;
    border: 1px solid var(--gem-border);
}

.story-text {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 2;
    font-weight: 300;
}

    .story-text b {
        color: var(--gem-green);
        font-weight: 700;
    }

.craft-wrap {
    padding: 80px 0;
    background: var(--gem-black);
    color: white;
    margin-bottom: 80px;
}

    .craft-wrap .row {
        display: flex;
        flex-wrap: nowrap;
        max-width: 100%;
        justify-content: center;
    }

.craft-card {
    background: rgba(255, 255, 255, 0.04);
    padding: 40px;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--gem-transition);
}

    .craft-card:hover {
        border-color: var(--gem-gold);
        background: rgba(255, 255, 255, 0.07);
        transform: translateY(-8px);
    }

    .craft-card h5 {
        font-weight: 800;
        color: var(--gem-gold);
        margin-bottom: 15px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .craft-card p {
        font-size: 0.95rem;
        opacity: 0.8;
        line-height: 1.7;
        font-weight: 300;
    }

.founder-summary-box {
    background: linear-gradient(135deg, #f8f9ff 0%, #eef2ff 100%);
    padding: 60px;
    text-align: center;
    border: 1px solid rgba(26, 58, 52, 0.03);
    margin-bottom: 60px;
}

.founder-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--gem-gold);
    padding: 2px;
    margin-bottom: 20px;
}

.founder-quote {
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--gem-green);
    font-style: italic;
    max-width: 800px;
    margin: 0 auto 25px;
}

.founder-name {
    font-weight: 800;
    color: var(--gem-black);
    font-size: 1.1rem;
}

.founder-title {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--gem-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-gem-outline {
    background: transparent;
    border: 1px solid var(--gem-border);
    padding: 12px 30px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    margin-top: 30px;
}

    .btn-gem-outline:hover {
        border-color: var(--gem-green);
        background: var(--gem-green);
        color: white;
    }

.video-story-section {
    position: relative;
    overflow: hidden;
    margin-bottom: 80px;
    height: 500px;
    background: var(--gem-black);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder-bg {
    position: absolute;
    inset: 0;
    object-fit: cover;
    opacity: 0.4;
    filter: grayscale(100%);
    width: 100%;
    height: 100%;
}

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

.play-btn-circle {
    width: 90px;
    height: 90px;
    border: 2px solid var(--gem-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: var(--gem-gold);
    font-size: 1.8rem;
    cursor: pointer;
    background: rgba(212, 175, 55, 0.1);
    transition: var(--gem-transition);
}

    .play-btn-circle:hover {
        background: var(--gem-gold);
        color: var(--gem-green);
        transform: scale(1.1);
    }

.gallery-wrap {
    margin-bottom: 100px;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
}

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

    .gallery-item:hover img {
        transform: scale(1.1);
    }

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

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

#immersiveModal {
    z-index: 99999 !important;
}

.modal-immersive .modal-content {
    background: rgba(0, 0, 0, 0.98);
    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: 4px;
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    }

.immersive-close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 3000;
    background: transparent;
    border: none;
    transition: 0.3s;
}

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

@media (max-width: 991px) {
    .craft-wrap .row {
        flex-wrap: wrap;
    }

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

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

@media (max-width: 768px) {
    .story-block {
        padding: 30px;
    }

    .about-main-title {
        font-size: 1.8rem;
    }

    .founder-summary-box {
        padding: 40px 20px;
    }

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


/* =============================================================================
   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;
    border-bottom: 1px solid #eee;
    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 .legal-notice {
    background: #f8fafc;
    padding: 25px;
    border-radius: 12px;
    font-style: italic;
    border-left: 4px solid var(--gem-blue);
    margin-bottom: 30px;
}

.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;
    }

#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: 20px;
        top: 10px;
        padding: 10px !important;
        width: 55px;
        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: black;
        }

        .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 34px;
        gap: 20px;
        width: 100%;
        background: white;
    }
    #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;
    }


       

    .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: #f3f3f3;
    }

    .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;
}



/* 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: absolute;
        left: 0;
        top: 55px; /* Slightly tighter top */
        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;
    }

    .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: 12px;
        border: 1px solid var(--gem-border);
        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;
    }
}

@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;
}

.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: 50%;
    border: 4px solid var(--gem-border);
}

    .track-step.done {
        border-color: var(--gem-primary);
        background: 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);
    box-shadow: 0 0 0 4px #e0e7ff;
}

/* 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-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-image: url(https://caketheme.com/html/mojuri/media/banner/bg-img-2.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    width: 100%;
    top: -130px;
    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: 0 20px 80px;
    text-align: center;
    background-color: #ffffff;
    font-family: 'Playfair Display', serif, "Times New Roman"; /* Serif font is key */
}

.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;
    }
}


div#title {
    position: relative;
    margin-top: 80px;
    height: 285px;
    padding: 100px;
    background: url(https://caketheme.com/html/mojuri/media/site-header.jpg);
    background-position: center;
    border-bottom: 1px solid #f1f1f1;
    /* margin-bottom: 40px; */
}

.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;
        }