       /* --- Animation Keyframes --- */
        @keyframes spin {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        /* --- 1. Global & Root Styles --- */
        :root {
            --primary-color: #8a0f0f;
            --dark-blue: #282c4f;
            --best-seller-bg: #3e5e6b;
            --text-color: #333;
            --light-grey: #f5f5f5;
            --border-color: #e0e0e0;
            --price-color: #212121;
            --tag-expert: #6a1b9a;
            /* Purple for expert */
            --tag-bestseller: #b71c1c;
            /* Red for bestseller */
            --form-button-color: #a1635f;
            /* Color from your image */
            --border-gold: #b08d57;
            --primary-gold: #d4af37;
            --dark-bg: #1a1a1a;
            --medium-bg: #2a2a2a;
            --light-text: #f5f5f5;
            --medium-text: #cccccc;
            --dark-text: #888888;
      --primary-gold: #d4af37;
      --secondary-gold: #ffd700;
      --deep-gold: #b8941f;
      --light-gold: #f0d97e;
       --medium-bg: #2a2a2a;
       --light-text: #f5f5f5;
            --medium-text: #cccccc;
            --dark-text: #888888;

                  --shadow-light: rgba(79, 8, 95, 0.837);
      --shadow-medium: rgba(90, 67, 21, 0.12);
      --shadow-heavy: rgba(90, 67, 21, 0.18);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
              font-family: 'Inter', sans-serif;
      background-color: var(--light-cream);
      color: var(--medium-brown);
      overflow-x: hidden;
      scroll-behavior: smooth;
      padding-top: 160px;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .container {
            width: 90%;
            max-width: 1300px;
            margin: 0 auto;
        }

        /* --- 2. Site Header (Fixed) --- */
         .container {
            width: 90%;
            max-width: 1300px;
            font-family: 'Cinzel', serif;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* --- 2. Site Header (Fixed) --- */
        .site-header {
            width: 100%;
            background-color:var(--shadow-light);
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
        }

        .header-main {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 0;
            height: 90px; /* Defined height for calculation */
        }

        .header-logo {
            display: block;
            text-decoration: none;
            flex-shrink: 0;
        }

        /* Logo Image Sizing */
        .header-logo img {
            height: 100px; /* Adjust based on your actual logo file */
            width: auto;
            object-fit: contain;
        }

        .mobile-nav-toggle {
            display: none;
            font-size: 24px;
            background: none;
            border: none;
            color: #333;
            cursor: pointer;
        }

        .header-search {
            flex-grow: 1;
            margin: 0 30px;
            position: relative;
        }

        .header-search input {
            width: 100%;
            padding: 12px 20px 12px 45px;
            font-size: 14px;
            border: 1px solid #ddd;
            border-radius: 8px;
            background-color: #f9f9f9;
            outline: none;
        }

        .header-search .search-icon {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #d4af37;
        }

        .header-actions {
            display: flex;
            align-items: center;
            flex-shrink: 0;
            font-size:700 ;
        }

        .header-actions a {
            margin-left: 20px;
            font-size: 17px;
            color: #d4af37;
            text-decoration: none;
            display: flex;
            align-items: center;
            font-weight: 700;
        }

        .header-actions a i {
            margin-right: 5px;
            font-size: 18px;
            color: #d4af37;
        }

        /* --- 3. Main Navigation Bar --- */
        .main-nav {
            width: 100%;
            background-color:var(--shadow-light);
            border-top: 1px solid #eee;
            position: relative; 
            height: 52px; /* Defined height for calculation */
            display: flex;
            align-items: center;
        }

        .nav-list {
            display: flex;
            justify-content: center;
            list-style: none;
            width: 100%;
            color: var(--deep-gold);
            font-weight: 700;
            font-size: 17px;
            gap: 30px;
        }

        .nav-item {
            position: static; 
        }

        .nav-item > a {
            display: block;
            padding: 10px 12px;
            text-decoration: none;
            color:var(--primary-gold);
            font-weight:700;
            font-size: 17px;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: color 0.3s;
        }

        .nav-item:hover > a {
            color:var(--primary-gold);
            box-shadow: inset 0 -2px 0 #832729;
        }

        /* --- 4. Mega Menu General Structure --- */
        .mega-menu-container {
            display: none; 
            position: absolute;
            left: 0;
            width: 100%; 
            background-color: #ffffff;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            border-top: 1px solid #eee;
            z-index: 999;
             /* NEW: Add max-height and overflow for scrolling */
            max-height: 70vh;
            overflow-y: auto;
            /* Smooth scrolling for better UX */
            scroll-behavior: smooth;
        }

        /* Show on Hover (Desktop) */
        @media (min-width: 1025px) {
            .nav-item:hover > .mega-menu-container {
                display: block;
            }
        }

        .mega-menu-wrapper {
            display: flex;
            padding: 30px 0;
            gap: 30px;
            min-height: 400px;
        }  .mega-menu-container::-webkit-scrollbar {
            width: 8px;
        }

        .mega-menu-container::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        .mega-menu-container::-webkit-scrollbar-thumb {
            background: #c1c1c1;
            border-radius: 4px;
        }

        .mega-menu-container::-webkit-scrollbar-thumb:hover {
            background: #a8a8a8;
        }

        /* TYPE A: Sidebar + Content */
        .sidebar-layout-container {
            display: flex;
            width: 100%;
            gap: 20px;
        }

        .mm-sidebar {
            width: 200px;
            flex-shrink: 0;
            border-right: 1px solid #eee;
            padding-right: 20px;
        }

        .mm-sidebar ul {
            list-style: none;
        }

        .mm-sidebar a {
            display: block;
            padding: 10px 15px;
            text-decoration: none;
            color: #555;
            font-weight: 500;
            border-radius: 5px;
            margin-bottom: 5px;
            transition: 0.2s;
        }

        .mm-sidebar a:hover, .mm-sidebar a.active {
            background-color: #fef7f0;
            color: #832729;
        }

        .mm-content {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .tab-content {
            display: none;
            animation: fadeIn 0.3s;
        }
        .tab-content.active {
            display: block;
        }
        @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

        /* TYPE B: Direct Grid */
        .direct-grid-layout {
            display: flex;
            width: 100%;
            gap: 30px;
        }

        .grid-area {
            flex-grow: 1;
        }
        
        .promo-area {
            width: 300px;
            flex-shrink: 0;
        }

        /* --- 6. Grids & Items --- */
        .grid-container {
            display: grid;
            gap: 20px;
        }

        .cols-6 { grid-template-columns: repeat(6, 1fr); }
        .cols-5 { grid-template-columns: repeat(5, 1fr); }
        .cols-4 { grid-template-columns: repeat(4, 1fr); }
        .cols-3 { grid-template-columns: repeat(3, 1fr); }

        .menu-item {
            text-decoration: none;
            color: #333;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: transform 0.2s;
        }
        
        .menu-item:hover {
            transform: translateY(-3px);
            color: #832729;
        }

        .img-wrap {
            background: #f5f5f5;
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .img-wrap.circle {
            border-radius: 50%;
            width: 80px;
            height: 80px;
        }
        
        .img-wrap.square {
            width: 100%;
            aspect-ratio: 1/1;
        }

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

        .menu-item span {
            font-size: 13px;
            font-weight: 500;
            line-height: 1.4;
        }

        /* --- 7. Banners & Promos --- */
        .bottom-banner {
            margin-top: auto; 
            background: #fffbf5;
            border: 1px solid #f2e6d8;
            padding: 15px 20px;
            border-radius: 8px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 20px;
        }

        .bottom-banner h4 { font-size: 16px; color: #832729; }
        .bottom-banner p { font-size: 12px; color: #666; }
        .btn-view-all {
            background: #832729;
            color: white;
            padding: 8px 15px;
            text-decoration: none;
            border-radius: 4px;
            font-size: 12px;
        }

        .promo-card {
            width: 100%;
            height: 100%;
            position: relative;
            border-radius: 8px;
            overflow: hidden;
        }
        .promo-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* --- 8. Responsive Styling --- */

        @media (max-width: 1024px) {
            /* Tablet adjustments */
            .container { width: 95%; }
            .header-search { display: none; }
            .cols-6, .cols-5, .cols-4 { grid-template-columns: repeat(3, 1fr); }
            .promo-area { display: none; }
            .mm-sidebar { width: 160px; }
        }

        @media (max-width: 768px) {
            /* Mobile Body Padding Adjustment (Header is smaller on mobile) */
            body {
                padding-top: 70px;
            }

            .header-main {
                height: 70px; /* Smaller header height for mobile */
                padding: 10px 0;
            }

            .header-logo img {
                height: 50px; /* Smaller logo */
            }

            /* --- Mobile Navigation --- */
            .mobile-nav-toggle { display: block; color: #d4af37; }
            .header-actions span { display: none; } 
            
            .main-nav {
                display: none; 
                position: fixed; /* Fixed for full screen scroll */
                top: 70px; /* Starts directly below header-main */
                left: 0;
                width: 100%;
                /* Calculate height: 100vh minus the header height */
                height: calc(100vh - 70px); 
                overflow-y: auto;
                background: white;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
                border-top: none;
                align-items: flex-start; /* Align items to top */
            }

            .main-nav.is-open { display: block; }

            .nav-list { flex-direction: column; align-items: flex-start; }
            .nav-item { width: 100%; border-bottom: 1px solid #eee; }
            .nav-item > a { justify-content: space-between; font-size: 16px; padding: 15px; }

            /* Mobile Mega Menu logic */
            .mega-menu-container {
                position: static;
                box-shadow: none;
                border: none;
                display: none; 
                background: #f9f9f9;
            }

            .nav-item.menu-open > .mega-menu-container { display: block; }
            .nav-item.menu-open > a { background: #f0f0f0; color: #832729; }

            .mega-menu-wrapper {
                flex-direction: column;
                padding: 10px;
                min-height: auto;
            }

            /* Sidebar to Top Tabs on Mobile */
            .sidebar-layout-container { flex-direction: column; }
            .mm-sidebar {
                width: 100%;
                border-right: none;
                border-bottom: 1px solid #ddd;
                margin-bottom: 15px;
                overflow-x: auto;
            }
            .mm-sidebar ul {
                display: flex;
                padding-bottom: 10px;
            }
            .mm-sidebar a { white-space: nowrap; margin-right: 10px; }

            .direct-grid-layout { flex-direction: column; }

            /* Grid Columns Mobile */
            .cols-6, .cols-5, .cols-4, .cols-3 { grid-template-columns: repeat(2, 1fr); gap: 15px; }
            
            .img-wrap.circle { width: 60px; height: 60px; }
        }

        /* --- 3. Category Bubbles --- */
        .category-bubbles {
            display: flex;
            justify-content: center;
            gap: 70px;
            padding: 25px 0;
            border-bottom: 1px solid var(--border-color);
        }

        .category-bubbles p {
            display: flex;
            justify-content: center;
            border-bottom: 1px solid transparent;
        }

        .bubble {
            text-align: center;
            text-decoration: none;
            color: var(--text-color);
            font-size: 14px;
            font-weight: 500;
        }

        .bubble-image {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 10px;
            overflow: hidden;
            position: relative;
        }

        .bubble-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border: 2px solid #2c189f;
            border-radius: 50%;
            transition: border-style 0.1s ease;
        }

        .bubble:hover .bubble-image::before {
            border-style: dashed;
            animation: spin 3s linear infinite;
        }

        .bubble-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* --- 4. Product Page Content --- */
        .product-page {
            padding-top: 20px;
            margin-bottom: 40px;
        }

        .breadcrumbs {
            font-size: 13px;
            color: #777;
            margin-bottom: 20px;
        }

        .breadcrumbs a {
            color: #777;
            text-decoration: none;
        }

        .breadcrumbs span {
            color: var(--text-color);
            font-weight: 600;
        }

        .page-title {
            font-family: var(--font-heading);
            font-size: 28px;
            margin-bottom: 20px;
        }

        .page-title span {
            font-family: var(--font-body);
            font-size: 16px;
            color: #555;
            font-weight: 400;
            margin-left: 10px;
        }

        .filter-bar {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 12px;
            margin-bottom: 25px;
            padding-bottom: 25px;
            border-bottom: 1px solid var(--border-color);
        }

        .filter-btn,
        .filter-pill,
        .sort-by {
            padding: 8px 15px;
            border: 1px solid var(--border-color);
            border-radius: 30px;
            font-size: 13px;
            font-weight: 500;
            background-color: #fff;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .filter-pill {
            background-color: var(--light-grey);
            border-color: transparent;
        }

        .filter-pill i,
        .filter-btn i {
            color: #888;
        }

        .filter-pill.highlight {
            color: var(--primary-color);
        }

        .sort-by {
            margin-left: auto;
        }

        /* --- 5. Product Grid --- */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            align-items: start;
        }

        /* 5a. Product Card */
        .product-card {
            border: 1px solid transparent;
            border-radius: 8px;
            overflow: hidden;
            background-color: #fff;
            transition: all 0.3s ease;
            position: relative;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            border-color: var(--border-color);
        }

        .product-card:hover {
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
        }

        /* --- MODIFIED: Image Container for Slide Animation --- */
        .product-image-container {
            position: relative;
            background-color: var(--light-grey);
            border-radius: 8px;
            overflow: hidden;
            aspect-ratio: 1 / 1;
        }

        /* --- MODIFIED: Default Image Styling --- */
        .product-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            position: relative;
            /* Changed from static */
            z-index: 2;
            transition: transform 0.4s ease-in-out;
            transform: translateX(0);
        }

        /* --- NEW: Hover Image Styling --- */
        .product-image-hover {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 1;
            transform: translateX(100%);
            /* Start off-screen to the right */
            transition: transform 0.4s ease-in-out;
        }

        /* --- NEW: Hover Slide Animation --- */
        .product-card:hover .product-image {
            transform: translateX(-100%);
            /* Slide default image left */
        }

        .product-card:hover .product-image-hover {
            transform: translateX(0);
            /* Slide hover image in */
            z-index: 3;
            /* Ensure it's on top */
        }

        /* --- NEW: Product Tag Styling --- */
        .product-tag {
            position: absolute;
            top: 0;
            left: 0;
            background-color: var(--tag-bestseller);
            color: #fff;
            padding: 5px 10px;
            font-size: 10px;
            font-weight: 600;
            border-radius: 8px 0 8px 0;
            z-index: 4;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .product-tag.expert {
            background-color: var(--tag-expert);
        }

        .wishlist-icon {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 20px;
            color: #999;
            cursor: pointer;
            transition: color 0.2s ease;
            z-index: 4;
            /* On top of images */
        }

        .wishlist-icon:hover {
            color: var(--primary-color);
        }

        /* 5b. Card Hover Animation */
        .hover-buttons {
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease-out;
            width: 90%;
            z-index: 4;
            /* On top of images */
        }

        .product-card:hover .hover-buttons {
            opacity: 1;
            visibility: visible;
            bottom: 15px;
        }

        .hover-btn {
            flex: 1;
            padding: 10px;
            border: 1px solid #555;
            border-radius: 6px;
            background-color: #fff;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            text-align: center;
        }

        .hover-btn.try-it {
            background-color: var(--primary-color);
            color: #fff;
            border-color: var(--primary-color);
        }

        /* 5c. Card Info */
        .product-info {
            padding: 15px 10px;
            text-align: left;
        }

        .product-title {
            font-size: 15px;
            font-weight: 500;
            color: var(--text-color);
            margin-bottom: 8px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

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

        /* --- NEW: Stock Label --- */
        .product-stock {
            font-size: 13px;
            color: var(--primary-color);
            font-weight: 500;
            margin-left: 8px;
        }


        /* --- 6a. Best Selling Section (as Grid Item) --- */
        .best-selling-promo-card {
            grid-column: span 2;
            background-color: var(--dark-blue);
            border-radius: 12px;
            padding: 25px;
            position: relative;
        }

        .best-selling-promo-card h2 {
            font-family: var(--font-heading);
            color: #fff;
            text-align: center;
            font-size: 28px;
            font-weight: 500;
            margin-bottom: 30px;
        }

        .best-selling-promo-card .best-selling-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            position: relative;
        }

        .best-selling-promo-card .best-selling-card {
            text-decoration: none;
            text-align: center;
        }

        .best-selling-promo-card .best-selling-image-wrapper {
            background-color: var(--best-seller-bg);
            border-radius: 12px;
            margin-bottom: 15px;
            overflow: hidden;
            aspect-ratio: 1 / 1;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .best-selling-promo-card .best-selling-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .best-selling-promo-card .best-selling-card p {
            color: #fff;
            font-weight: 600;
            font-size: 16px;
        }

        .best-selling-promo-card .scroll-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            width: 40px;
            height: 40px;
            font-size: 16px;
            color: #fff;
            cursor: pointer;
            z-index: 10;
        }

        .best-selling-promo-card .scroll-arrow.left {
            left: 15px;
        }

        .best-selling-promo-card .scroll-arrow.right {
            right: 15px;
        }

        /* Updated Video Card Container */
        .video-promo-card {
            grid-column: span 2;
            position: relative;
            /* Essential for absolute positioning children */
            border-radius: 12px;
            overflow: hidden;
            /* Clips the video corners */
            aspect-ratio: 1.5 / 1;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 20px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            border: 1px solid var(--border-color);
            /* Removed background-image property */
        }

        /* The Background Video styling */
        .card-video-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            /* Ensures video covers area without stretching */
            z-index: 0;
            /* Sits at the back */
        }

        /* Optional: Darken video slightly so white text/buttons pop */
        .video-overlay-darken {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            /* 30% black overlay */
            z-index: 1;
            pointer-events: none;
            /* Let clicks pass through */
        }

        /* Update Icons & Buttons to sit ON TOP of video */
        .video-overlay-icons,
        .video-overlay-buttons {
            position: relative;
            z-index: 2;
            /* Sits on top of video and overlay */
        }

        .video-overlay-icons {
            position: absolute;
            top: 20px;
            left: 20px;
            right: 20px;
            display: flex;
            justify-content: space-between;
            font-size: 18px;
            color: #fff;
            opacity: 0.9;
        }

        .video-overlay-buttons {
            display: flex;
            gap: 15px;
            z-index: 2;
        }

        .video-btn {
            background-color: rgba(255, 255, 255, 0.9);
            color: var(--text-color);
            border: none;
            border-radius: 30px;
            padding: 10px 20px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: background-color 0.3s ease;
        }

        .video-btn:hover {
            background-color: #fff;
        }

        .video-btn .fa-chevron-right {
            font-size: 12px;
        }

        /* --- 6c. NEW: Form Promo Card --- */
        .form-promo-card {
            border: 1px solid var(--border-color);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            border-radius: 8px;
            padding: 25px 20px;
            text-align: center;
            background-color: #fff;
            padding-bottom: 100px;
        }

        .form-promo-card img {
            max-width: 50px;
            /* Small ring image */
            margin-bottom: 15px;
        }

        .form-promo-card h3 {
            font-family: var(--font-heading);
            font-size: 20px;
            color: var(--text-color);
            margin-bottom: 10px;
        }

        .form-promo-card p {
            font-size: 13px;
            color: #555;
            margin-bottom: 20px;
        }

        .form-promo-card input {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            margin-bottom: 12px;
            font-size: 14px;
            font-family: var(--font-body);
        }

        .form-promo-card input::placeholder {
            color: #999;
        }

        .form-promo-card .form-btn {
            background-color: var(--form-button-color);
            color: #fff;
            border: none;
            border-radius: 8px;
            padding: 12px 20px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            width: 100%;
            transition: background-color 0.3s ease;
        }

        .form-promo-card .form-btn:hover {
            background-color: #8a4a44;
        }

        .load-more-container {
            text-align: center;
            margin: 40px 0;
        }

        .load-more-btn {
            background-color: var(--primary-color);
            color: #fff;
            border: none;
            border-radius: 8px;
            padding: 12px 30px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s ease;
            font-family: var(--font-body);
        }

        .load-more-btn:hover {
            background-color: #6a0b0b;
        }

        /* =================================
        === ASSURANCE SECTION STYLING ===
        =================================
        */

        .assurance-section-wrapper {
            position: relative;
            width: 80%;
            margin: 0 auto;
            /* Add padding to give the SVG border space */
            padding: 30px;
        }

        /* * This is the SVG border.
         * It sits absolutely behind the content.
         * preserveAspectRatio="none" makes it stretch to fill the wrapper.
        */
        .assurance-section-wrapper svg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            overflow: visible;
            /* Allows border to draw outside bounds */
        }

        /* * This is the white content box.
         * position: relative + z-index: 2 puts it ON TOP of the SVG.
        */
        .assurance-content {
            position: relative;
            z-index: 2;
            background-color: #fff;
            padding: 50px 40px;
            text-align: center;
        }

        .assurance-content h2 {
            font-family: var(--font-heading);
            font-size: 32px;
            font-weight: 500;
            color: var(--text-color);
            margin-bottom: 10px;
        }

        .assurance-content>p {
            font-size: 16px;
            color: #555;
            margin-bottom: 40px;
        }

        .assurance-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .assurance-item {
            text-align: center;
            display: grid;
            justify-self: center;
        }

        .assurance-item img {
            height: 60px;
            margin-bottom: 15px;
        }

        .assurance-item h3 {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-color);
        }

        /* --- Responsive --- */

        @media (max-width: 768px) {
            .assurance-grid {
                grid-template-columns: repeat(2, 1fr);
                /* 2x2 grid */
                gap: 40px;
            }

            .assurance-content {
                padding: 40px 20px;
            }

            /* On mobile, we hide the complex SVG border and use a simple one */
            .assurance-section-wrapper svg {
                display: none;
            }

            .assurance-section-wrapper {
                border: 1px solid var(--border-gold);
                border-radius: 8px;
                padding: 10px;
                /* Adjust padding since SVG is gone */
            }
        }

        @media (max-width: 480px) {
            .assurance-content h2 {
                font-size: 24px;
            }

            .assurance-item h3 {
                font-size: 14px;
            }
        }

        /* =================================
        === PREMIUM JEWELRY FOOTER       ===
        ================================= */

        .premium-footer {
            background: linear-gradient(to bottom, var(--dark-bg), #0f0f0f);
            color: var(--light-text);
            position: relative;
            overflow: hidden;
        }

        .footer-top {
            padding: 60px 0 40px;
            position: relative;
        }

        /* Decorative elements */
        .footer-top::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(to right, transparent, var(--primary-gold), transparent);
        }

        .footer-top::after {
            content: "";
            position: absolute;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 2px;
            background-color: var(--primary-gold);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 40px;
        }

        .footer-col h3 {
            font-family: var(--font-heading);
            font-size: 22px;
            font-weight: 600;
            color: var(--primary-gold);
            margin-bottom: 25px;
            position: relative;
            display: inline-block;
        }

        .footer-col h3::after {
            content: "";
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 1px;
            background-color: var(--primary-gold);
        }

        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-col ul li {
            margin-bottom: 12px;
            transition: transform 0.3s ease;
        }

        .footer-col ul li:hover {
            transform: translateX(5px);
        }

        .footer-col ul li a {
            color: var(--medium-text);
            text-decoration: none;
            font-size: 15px;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
        }

        .footer-col ul li a i {
            margin-right: 10px;
            font-size: 12px;
            color: var(--primary-gold);
        }

        .footer-col ul li a:hover {
            color: var(--primary-gold);
        }

        .footer-col p {
            color: var(--medium-text);
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        /* --- Logo and Description --- */
        .footer-brand {
            margin-bottom: 25px;
        }

        .footer-logo {
            font-family: var(--font-heading);
            font-size: 42px;
            font-weight: 700;
            color: var(--primary-gold);
            margin-bottom: 15px;
            letter-spacing: 2px;
        }

        .footer-tagline {
            font-style: italic;
            color: var(--medium-text);
            font-size: 16px;
            margin-bottom: 25px;
        }

        /* --- Newsletter Subscription --- */
        .newsletter-form {
            display: flex;
            margin-top: 20px;
        }

        .newsletter-input {
            flex: 1;
            padding: 12px 15px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: var(--light-text);
            font-family: var(--font-body);
            border-radius: 4px 0 0 4px;
            outline: none;
            transition: all 0.3s ease;
        }

        .newsletter-input:focus {
            background: rgba(255, 255, 255, 0.15);
            border-color: var(--primary-gold);
        }

        .newsletter-btn {
            padding: 0 20px;
            background: var(--primary-gold);
            color: var(--dark-bg);
            border: none;
            border-radius: 0 4px 4px 0;
            font-family: var(--font-body);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-btn:hover {
            background: #e6c158;
        }

        /* --- Contact Info --- */
        .contact-info {
            margin-top: 20px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }

        .contact-icon {
            color: var(--primary-gold);
            margin-right: 12px;
            font-size: 16px;
            margin-top: 2px;
        }

        .contact-details {
            color: var(--medium-text);
            font-size: 15px;
        }

        /* --- Social Media --- */
        .social-media {
            margin-top: 25px;
        }

        .social-title {
            font-size: 16px;
            color: var(--medium-text);
            margin-bottom: 15px;
        }

        .social-icons {
            display: flex;
            gap: 15px;
        }

        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            color: var(--light-text);
            border-radius: 50%;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            background: var(--primary-gold);
            color: var(--dark-bg);
            transform: translateY(-3px);
        }

        /* --- Footer Middle --- */
        .footer-middle {
            padding: 30px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .payment-methods {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .payment-title {
            font-size: 15px;
            color: var(--medium-text);
            margin-right: 10px;
        }

        .payment-icons {
            display: flex;
            gap: 10px;
        }

        .payment-icons i {
            font-size: 28px;
            color: var(--medium-text);
            transition: color 0.3s ease;
        }

        .payment-icons i:hover {
            color: var(--primary-gold);
        }

        .security-badges {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .security-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--medium-text);
            font-size: 14px;
        }

        .security-icon {
            color: var(--primary-gold);
            font-size: 18px;
        }

        /* --- Footer Bottom --- */
        .footer-bottom {
            padding: 25px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .copyright {
            font-size: 14px;
            color: var(--dark-text);
        }

        .footer-links {
            display: flex;
            gap: 25px;
        }

        .footer-links a {
            color: var(--dark-text);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary-gold);
        }

        .back-to-top {
            background: var(--primary-gold);
            color: var(--dark-bg);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .back-to-top:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
        }

        .explore-section {
            padding: 60px 20px;
            text-align: center;
            margin-bottom: 3rem;
        }

        .explore-section p {
            font-size: 1.1rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto 1.5rem auto;
            background: #fff;
        }

        .explore-section a {
            text-decoration: none;
        }

        .explore-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn-gold {
            background-color: var(--primary-gold, #DAA520);
            color: #fff;
            font-weight: 700;
            font-size: 1rem;
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .btn-gold:hover {
            background-color: #b8860b;
            color: #fff;
            box-shadow: 0 4px 10px rgba(218, 165, 32, 0.3);
            transform: translateY(-2px);
        }

        .btn-outline-gold {
            background-color: #fff;
            color: var(--primary-gold, #DAA520);
            font-weight: 700;
            font-size: 1rem;
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            border: 2px solid var(--primary-gold, #DAA520);
            transition: all 0.3s ease;
        }

        .btn-outline-gold:hover {
            background-color: var(--primary-gold, #DAA520);
            color: #fff;
            transform: translateY(-2px);
        }

        /* --- Responsive Design --- */
        @media (max-width: 1100px) {
            .footer-grid {
                grid-template-columns: 1.2fr 1fr 1fr;
                gap: 30px;
            }

            .footer-col:nth-child(4) {
                grid-column: 1 / -1;
                margin-top: 20px;
            }

            .footer-col:nth-child(4) .footer-grid-inner {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .footer-col:nth-child(4) {
                grid-column: auto;
                margin-top: 0;
            }

            .footer-col:nth-child(4) .footer-grid-inner {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .footer-middle {
                flex-direction: column;
                gap: 25px;
                text-align: center;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            .footer-links {
                flex-wrap: wrap;
                justify-content: center;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .newsletter-input {
                border-radius: 4px;
                margin-bottom: 10px;
            }

            .newsletter-btn {
                border-radius: 4px;
                padding: 12px;
            }
        }

        @media (max-width: 480px) {
            .footer-top {
                padding: 40px 0 30px;
            }

            .footer-logo {
                font-size: 36px;
            }

            .social-icons {
                justify-content: center;
            }

            .payment-methods {
                flex-direction: column;
                gap: 15px;
            }

            .security-badges {
                flex-direction: column;
                gap: 15px;
            }
        }

        /* --- 8. Responsive Design (Media Queries) --- */

        /* Tablet */
        @media (max-width: 992px) {
            .container {
                width: 95%;
            }

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

            .best-selling-promo-card,
            .video-promo-card,
            .form-promo-card {
                /* <-- Applied to all */
                grid-column: span 2;
                /* Spans full width */
            }

            .search-bar {
                margin: 0 20px;
            }

            .header-icons {
                gap: 15px;
            }

            .category-bubbles {
                gap: 20px;
            }

            .bubble-image {
                width: 70px;
                height: 70px;
            }

            .bubble {
                font-size: 13px;
            }
        }

        /* Mobile */
        @media (max-width: 768px) {
            body {
                padding-top: 120px;
                /* Smaller header on mobile */
            }

            .main-header {
                flex-direction: column;
                gap: 15px;
            }

            .search-bar {
                width: 100%;
                margin: 0;
            }

            .header-icons {
                width: 100%;
                justify-content: space-around;
            }

            .product-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }

            .best-selling-promo-card,
            .video-promo-card,
            .form-promo-card {
                grid-column: span 2;
            }

            /* Best seller scroll */
            .best-selling-promo-card .best-selling-grid {
                grid-template-columns: repeat(3, 70%);
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                -ms-overflow-style: none;
                scrollbar-width: none;
            }

            .best-selling-promo-card .best-selling-grid::-webkit-scrollbar {
                display: none;
            }

            .best-selling-promo-card .best-selling-card {
                scroll-snap-align: center;
            }

            .best-selling-promo-card .scroll-arrow {
                display: none;
            }

            .video-overlay-buttons {
                flex-direction: column;
                align-items: flex-start;
            }

            .video-btn {
                width: 100%;
                justify-content: center;
            }

            .product-title {
                font-size: 13px;
            }

            .product-price {
                font-size: 15px;
            }

            .product-stock {
                font-size: 12px;
                display: block;
                /* Stack on mobile */
                margin-left: 0;
                margin-top: 4px;
            }

            .filter-bar {
                flex-wrap: nowrap;
                overflow-x: auto;
                padding-bottom: 15px;
            }

            .sort-by {
                margin-left: 10px;
                flex-shrink: 0;
            }

            .category-bubbles {
                justify-content: flex-start;
                overflow-x: auto;
                padding-left: 15px;
                padding-right: 15px;
            }
        }

        @media (max-width: 480px) {

            .page-title {
                font-size: 22px;
            }

            .page-title span {
                font-size: 14px;
                display: block;
                margin-left: 0;
            }


            .best-selling-promo-card .best-selling-grid {
                grid-template-columns: repeat(3, 85%);
            }

            .video-btn {
                font-size: 13px;
                padding: 10px 15px;
            }
        }
   