
        /* --- 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: #2c3e50;
            --dark-blue: #34495e;
            --best-seller-bg: #7f8c8d;
            --text-color: #333;
            --light-grey: #f5f5f5;
            --border-color: #e0e0e0;
            --price-color: #212121;
            --tag-expert: #6a1b9a;
            --tag-bestseller: #8a0f0f;
            --form-button-color: #a1635f;
            --border-silver: #bdc3c7;
            --primary-silver: #d4af37;
            --secondary-silver: #ffd700;
            --deep-silver: #7f8c8d;
            --light-silver: #ecf0f1;
            --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 {
            background-color: #fff;
            color: var(--text-color);
            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) --- */
        .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;
        }

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

        .header-logo img {
            height: 100px;
            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: var(--primary-silver);
        }

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

        .header-actions a {
            margin-left: 20px;
            font-size: 17px;
            color: var(--primary-silver);
            text-decoration: none;
            display: flex;
            align-items: center;
            font-weight: 700;
        }

        .header-actions a i {
            margin-right: 5px;
            font-size: 18px;
            color: var(--primary-silver);
        }

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

        .nav-list {
            display: flex;
            justify-content: center;
            list-style: none;
            width: 100%;
            color: var(--deep-silver);
            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-silver);
            font-weight: 700;
            font-size: 17px;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: color 0.3s;
        }

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

        /* --- 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;
            max-height: 70vh;
            overflow-y: auto;
            scroll-behavior: smooth;
        }

        @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: #f0f3f5;
            color: var(--primary-color);
        }

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

        .tab-content {
            display: none;
            animation: fadeIn 0.3s;
        }

        .tab-content.active {
            display: block;
        }

        /* 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: var(--primary-color);
        }

        .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: #f0f3f5;
            border: 1px solid #d5dbdb;
            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: var(--primary-color);
        }

        .bottom-banner p {
            font-size: 12px;
            color: #666;
        }

        .btn-view-all {
            background: var(--primary-color);
            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) {
            .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) {
            body {
                padding-top: 70px;
            }

            .header-main {
                height: 70px;
                padding: 10px 0;
            }

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

            .mobile-nav-toggle {
                display: block;
                color: var(--primary-silver);
            }

            .header-actions span {
                display: none;
            }

            .main-nav {
                display: none;
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                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;
            }

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

            .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: var(--primary-color);
            }

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

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

            .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 var(--primary-color);
            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: 'Playfair Display', serif;
            font-size: 28px;
            margin-bottom: 20px;
        }

        .page-title span {
            font-family: 'Montserrat', sans-serif;
            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);
        }

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

        .product-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            position: relative;
            z-index: 2;
            transition: transform 0.4s ease-in-out;
            transform: translateX(0);
        }

        .product-image-hover {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 1;
            transform: translateX(100%);
            transition: transform 0.4s ease-in-out;
        }

        .product-card:hover .product-image {
            transform: translateX(-100%);
        }

        .product-card:hover .product-image-hover {
            transform: translateX(0);
            z-index: 3;
        }

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

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

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

        .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(--tag-bestseller);
            color: #fff;
            border-color: var(--primary-color);
        }

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

        .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: 'Playfair Display', serif;
            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;
        }

        .video-promo-card {
            grid-column: span 2;
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            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);
        }

        .card-video-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }

        .video-overlay-darken {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            z-index: 1;
            pointer-events: none;
        }

        .video-overlay-icons,
        .video-overlay-buttons {
            position: relative;
            z-index: 2;
        }

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

        .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;
            margin-bottom: 15px;
        }

        .form-promo-card h3 {
            font-family: 'Playfair Display', serif;
            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: 'Montserrat', sans-serif;
        }

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

        .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: 'Montserrat', sans-serif;
        }

        .load-more-btn:hover {
            background-color: #1a252f;
        }

        /* =================================
        === ASSURANCE SECTION STYLING ===
        =================================
        */
        .assurance-section-wrapper {
            position: relative;
            width: 80%;
            margin: 0 auto;
            padding: 30px;
        }

        .assurance-section-wrapper svg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            overflow: visible;
        }

        .assurance-content {
            position: relative;
            z-index: 2;
            background-color: #fff;
            padding: 50px 40px;
            text-align: center;
        }

        .assurance-content h2 {
            font-family: 'Playfair Display', serif;
            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);
        }

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

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

            .assurance-section-wrapper svg {
                display: none;
            }

            .assurance-section-wrapper {
                border: 1px solid var(--border-silver);
                border-radius: 8px;
                padding: 10px;
            }
        }

        @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, #2c3e50, #1a252f);
            color: var(--light-text);
            position: relative;
            overflow: hidden;
        }

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

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

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

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

        .footer-col h3 {
            font-family: 'Playfair Display', serif;
            font-size: 22px;
            font-weight: 600;
            color: var(--primary-silver);
            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-silver);
        }

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

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

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

        .footer-brand {
            margin-bottom: 25px;
        }

        .footer-logo {
            font-family: 'Playfair Display', serif;
            font-size: 42px;
            font-weight: 700;
            color: var(--primary-silver);
            margin-bottom: 15px;
            letter-spacing: 2px;
        }

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

        .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: 'Montserrat', sans-serif;
            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-silver);
        }

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

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

        .contact-info {
            margin-top: 20px;
        }

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

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

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

        .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-silver);
            color: var(--dark-bg);
            transform: translateY(-3px);
        }

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

        .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-silver);
            font-size: 18px;
        }

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

        .back-to-top {
            background: var(--primary-silver);
            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(149, 165, 166, 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-silver {
            background-color: var(--primary-silver, #95a5a6);
            color: #fff;
            font-weight: 700;
            font-size: 1rem;
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .btn-silver:hover {
            background-color: #7f8c8d;
            color: #fff;
            box-shadow: 0 4px 10px rgba(149, 165, 166, 0.3);
            transform: translateY(-2px);
        }

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

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

        @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) --- */
        @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 {
                grid-column: span 2;
            }

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

            .header-icons {
                gap: 15px;
            }

            .category-bubbles {
                gap: 20px;
            }

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

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

        @media (max-width: 768px) {
            body {
                padding-top: 120px;
            }

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