﻿        :root {
            /* Modern Luxury Color Palette */
            --primary-color: #d4af37; /* Rich Gold */
            --primary-dark: #b8941f;
            --primary-light: #f4e4bc;
            --secondary-color: #1a1a2e; /* Deep Navy */
            --luxury-burgundy: #8b1538; /* Deep Burgundy */
            --luxury-purple: #2d1b3d; /* Royal Purple */
            --luxury-black: #0d0d0d; /* Deep Black */
            --luxury-gold: #c9a961; /* Platinum Gold */
            --accent-color: #a67c52; /* Bronze */
            --text-dark: #1a1a1a;
            --text-light: #6c757d;
            --bg-light: #faf9f6; /* Warm Cream */
            --bg-gradient: linear-gradient(135deg, rgba(26,26,46,0.05) 0%, rgba(212,175,55,0.08) 50%, rgba(139,21,56,0.05) 100%);
            
            /* Modern UI Variables */
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
            --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
            --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.16);
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-xl: 24px;
            --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        /* Light Mode - Luxury Theme (Default) */
        :root {
            --bg-primary: var(--bg-light);
            --text-primary: #1a1a2e;
            --text-secondary: #4a4a5c;
            --card-bg: #ffffff;
            --border-color: #e8e6e0;
            --footer-bg: linear-gradient(135deg, #1a1a2e 0%, #0d0d0d 100%);
            --section-bg: linear-gradient(135deg, rgba(250,249,246,0.8) 0%, rgba(255,255,255,1) 100%);
        }
        
        body {
            font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            color: var(--text-primary);
            background-color: var(--bg-primary);
            padding-top: 90px;
            line-height: 1.7;
            transition: all var(--transition-base);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        
        @media (max-width: 991px) {
            body {
                padding-top: 85px;
            }
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: 0.5px;
        }
        
        /* MoreGems.com Style Navbar */
        /* Modern Luxury Navigation Bar - Clean Design */
        .navbar-modern {
            background: rgba(255, 255, 255, 0.98) !important;
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            box-shadow: 0 2px 20px rgba(26, 26, 46, 0.06);
            padding: 0;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
            z-index: 1050;
            position: relative;
        }
        
        .navbar-modern.scrolled {
            box-shadow: 0 4px 30px rgba(26, 26, 46, 0.1);
            background: rgba(255, 255, 255, 1) !important;
            border-bottom: 1px solid rgba(212, 175, 55, 0.3);
        }
        
        .navbar-modern .navbar-brand {
            padding: 18px 0;
            position: relative;
        }
        
        .navbar-modern .navbar-brand img {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            height: 50px;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
        }
        
        .navbar-modern .navbar-brand:hover img {
            transform: scale(1.08);
            filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.3));
        }
        
        .navbar-modern .nav-link {
            position: relative;
            padding: 22px 24px;
            font-weight: 500;
            font-size: 15px;
            color: #1a1a2e !important;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            text-transform: none;
            letter-spacing: 0.3px;
            margin: 0 4px;
            border-radius: 8px;
        }
        
        .navbar-modern .nav-link::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0);
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, 
                rgba(212, 175, 55, 0.12) 0%, 
                rgba(139, 21, 56, 0.08) 100%
            );
            border-radius: 8px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: -1;
        }
        
        .navbar-modern .nav-link:hover::before {
            transform: translate(-50%, -50%) scale(1);
        }
        
        .navbar-modern .nav-link:hover {
            color: var(--primary-color) !important;
        }
        
        .navbar-modern .nav-link.active {
            color: var(--primary-color) !important;
            font-weight: 600;
            background: linear-gradient(135deg, 
                rgba(212, 175, 55, 0.15) 0%, 
                rgba(139, 21, 56, 0.1) 100%
            );
        }
        
        .navbar-modern .nav-link.active::before {
            transform: translate(-50%, -50%) scale(1);
        }
        
        /* Navbar Buttons - Luxury Style */
        .navbar-modern .btn-navbar-modern {
            background: transparent;
            border: 1px solid rgba(212, 175, 55, 0.3);
            color: #1a1a2e;
            font-weight: 500;
            padding: 9px 18px;
            border-radius: 8px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-size: 14px;
            position: relative;
            overflow: hidden;
        }
        
        .navbar-modern .btn-navbar-modern::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
            transition: left 0.5s ease;
        }
        
        .navbar-modern .btn-navbar-modern:hover::before {
            left: 100%;
        }
        
        .navbar-modern .btn-navbar-modern:hover {
            background: rgba(212, 175, 55, 0.1);
            border-color: var(--primary-color);
            color: var(--primary-color);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
        }
        
        .navbar-modern .btn-navbar-primary {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--luxury-gold) 100%);
            border: 1px solid var(--primary-color);
            color: #000;
            font-weight: 600;
            padding: 9px 18px;
            border-radius: 8px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-size: 14px;
            box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
        }
        
        .navbar-modern .btn-navbar-primary:hover {
            background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--primary-color) 100%);
            border-color: var(--luxury-gold);
            transform: translateY(-2px);
            box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4);
        }
        
        .navbar-modern .btn-navbar-cart {
            background: transparent;
            border: 1px solid rgba(212, 175, 55, 0.3);
            color: #1a1a2e;
            font-weight: 500;
            padding: 9px 18px;
            border-radius: 8px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-size: 14px;
            position: relative;
        }
        
        .navbar-modern .btn-navbar-cart:hover {
            background: rgba(212, 175, 55, 0.1);
            border-color: var(--primary-color);
            color: var(--primary-color);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
        }
        
        /* Navbar Toggler */
        .navbar-modern .navbar-toggler-modern {
            border: 1px solid #ddd;
            border-radius: 4px;
            padding: 6px 12px;
            background: transparent;
        }
        
        .navbar-modern .navbar-toggler-modern:focus {
            box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.1);
        }
        
        .navbar-modern .navbar-toggler-icon-modern {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(51, 51, 51, 0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
            width: 24px;
            height: 24px;
        }
        
        /* Category Navigation Bar - Second Navigation */
        .category-navbar {
            background: linear-gradient(135deg, rgba(26, 26, 46, 0.05) 0%, rgba(212, 175, 55, 0.08) 100%);
            border-top: 1px solid rgba(212, 175, 55, 0.2);
            border-bottom: 2px solid rgba(212, 175, 55, 0.25);
            padding: 0;
            box-shadow: 0 2px 10px rgba(26, 26, 46, 0.05);
            position: relative;
            z-index: 1040;
        }
        
        .category-navbar::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, 
                transparent 0%,
                var(--primary-color) 20%,
                var(--luxury-burgundy) 50%,
                var(--primary-color) 80%,
                transparent 100%
            );
            opacity: 0.5;
        }
        
        .category-navbar .container {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            padding: 12px 15px;
        }
        
        .category-navbar .category-nav {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            flex-wrap: wrap;
            justify-content: center;
            gap: 5px;
        }
        
        .category-navbar .category-nav-item {
            position: relative;
        }
        
        .category-navbar .category-nav-link {
            display: block;
            padding: 10px 18px;
            color: #1a1a2e;
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            border-radius: 8px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            white-space: nowrap;
        }
        
        .category-navbar .category-nav-link::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0);
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, 
                rgba(212, 175, 55, 0.15) 0%, 
                rgba(139, 21, 56, 0.1) 100%
            );
            border-radius: 8px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: -1;
        }
        
        .category-navbar .category-nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, 
                var(--primary-color) 0%,
                var(--luxury-burgundy) 50%,
                var(--primary-color) 100%
            );
            border-radius: 2px 2px 0 0;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .category-navbar .category-nav-link:hover::before {
            transform: translate(-50%, -50%) scale(1);
        }
        
        .category-navbar .category-nav-link:hover::after {
            width: 80%;
        }
        
        .category-navbar .category-nav-link:hover {
            color: var(--primary-color);
            transform: translateY(-2px);
        }
        
        .category-navbar .category-nav-link.active {
            color: var(--primary-color);
            font-weight: 600;
            background: linear-gradient(135deg, 
                rgba(212, 175, 55, 0.18) 0%, 
                rgba(139, 21, 56, 0.12) 100%
            );
        }
        
        .category-navbar .category-nav-link.active::before {
            transform: translate(-50%, -50%) scale(1);
        }
        
        .category-navbar .category-nav-link.active::after {
            width: 80%;
        }
        
        /* Category Dropdown in Category Navbar */
        .category-navbar .dropdown-menu {
            background: linear-gradient(135deg, #ffffff 0%, #faf9f6 100%) !important;
            border: 1px solid rgba(212, 175, 55, 0.3) !important;
            box-shadow: 0 8px 32px rgba(26, 26, 46, 0.2) !important;
            border-radius: 8px;
            padding: 8px 0;
            margin-top: 8px;
            border-top: 2px solid var(--primary-color);
            min-width: 220px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: block;
            pointer-events: none;
        }
        
        /* Show dropdown on hover - Desktop only */
        @media (min-width: 992px) {
            .category-navbar .dropdown:hover .dropdown-menu {
                opacity: 1 !important;
                visibility: visible !important;
                transform: translateY(0) !important;
                pointer-events: all !important;
            }
            
            .category-navbar .dropdown:hover .dropdown-toggle {
                color: var(--primary-color) !important;
            }
        }
        
        /* Keep Bootstrap's click behavior for mobile */
        .category-navbar .dropdown-menu.show {
            opacity: 1 !important;
            visibility: visible !important;
            transform: translateY(0) !important;
            pointer-events: all !important;
        }
        
        .category-navbar .dropdown-item {
            color: #333 !important;
            padding: 10px 20px;
            transition: all 0.2s ease;
            font-size: 14px;
            position: relative;
        }
        
        .category-navbar .dropdown-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 3px;
            height: 0;
            background: var(--primary-color);
            transition: height 0.2s ease;
        }
        
        .category-navbar .dropdown-item:hover,
        .category-navbar .dropdown-item.active {
            background: linear-gradient(90deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%) !important;
            color: var(--primary-color) !important;
            padding-left: 25px;
        }
        
        .category-navbar .dropdown-item:hover::before,
        .category-navbar .dropdown-item.active::before {
            height: 70%;
        }
        
        .category-navbar .dropdown-header {
            color: #1a1a2e !important;
            font-weight: 600;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 8px 20px 4px;
        }
        
        @media (max-width: 991px) {
            .category-navbar {
                display: none;
            }
        }
        
        @media (max-width: 1200px) {
            .category-navbar .category-nav-link {
                padding: 8px 14px;
                font-size: 13px;
            }
        }
        
        /* Dropdown Menu Styling - Hover Support with Luxury Theme */
        .navbar-modern .dropdown-menu {
            background: linear-gradient(135deg, #ffffff 0%, #faf9f6 100%);
            border: 1px solid rgba(212, 175, 55, 0.3);
            box-shadow: 0 8px 32px rgba(26, 26, 46, 0.2), 0 0 0 1px rgba(212, 175, 55, 0.1);
            border-radius: 8px;
            padding: 8px 0;
            margin-top: 8px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: block;
            pointer-events: none;
            border-top: 2px solid var(--primary-color);
            min-width: 220px;
        }
        
        /* Show dropdown on hover - Desktop only */
        @media (min-width: 992px) {
            .navbar-modern .dropdown:hover .dropdown-menu {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
                pointer-events: all;
            }
            
            .navbar-modern .dropdown:hover .dropdown-toggle {
                color: var(--primary-color) !important;
            }
            
            .navbar-modern .dropdown:hover .dropdown-toggle::after {
                transform: rotate(180deg);
            }
        }
        
        /* Keep Bootstrap's click behavior for mobile */
        .navbar-modern .dropdown-menu.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
            pointer-events: all;
        }
        
        .navbar-modern .dropdown-item {
            color: #333;
            padding: 10px 20px;
            transition: all 0.2s ease;
            font-size: 14px;
            position: relative;
        }
        
        .navbar-modern .dropdown-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 3px;
            height: 0;
            background: var(--primary-color);
            transition: height 0.2s ease;
        }
        
        .navbar-modern .dropdown-item:hover,
        .navbar-modern .dropdown-item.active {
            background: linear-gradient(90deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
            color: var(--primary-color);
            padding-left: 25px;
        }
        
        .navbar-modern .dropdown-item:hover::before,
        .navbar-modern .dropdown-item.active::before {
            height: 70%;
        }
        
        /* Mobile Search Button */
        .navbar-modern .mobile-search-btn {
            background: transparent;
            border: 1px solid #ddd;
            color: #333;
            border-radius: 4px;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
        }
        
        .navbar-modern .mobile-search-btn:hover {
            background: #f8f9fa;
            border-color: var(--primary-color);
            color: var(--primary-color);
        }
        
        /* Phone Number Display */
        .navbar-phone {
            color: #333;
            font-weight: 500;
            font-size: 14px;
            text-decoration: none;
            padding: 8px 12px;
            transition: all 0.2s ease;
        }
        
        .navbar-phone:hover {
            color: var(--primary-color);
        }
        
        .navbar-phone i {
            margin-right: 5px;
        }
        
        /* Mobile Cart Badge */
        .mobile-cart-badge {
            position: absolute;
            top: -5px;
            right: -5px;
            background: #dc3545;
            color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: bold;
        }
        
        /* Dropdown Toggle Arrows */
        .navbar-modern .dropdown-toggle::after {
            border-top-color: #333;
            transition: transform 0.3s ease;
        }
        
        .navbar-modern .dropdown-toggle[aria-expanded="true"]::after {
            transform: rotate(180deg);
        }
        
        /* Language & Currency Switchers */
        .navbar-modern .lang-currency-switchers .btn {
            background: transparent;
            border: 1px solid rgba(212, 175, 55, 0.3);
            color: #1a1a2e;
            font-size: 13px;
            padding: 7px 13px;
            border-radius: 6px;
            transition: all 0.3s ease;
        }
        
        .navbar-modern .lang-currency-switchers .btn:hover {
            background: rgba(212, 175, 55, 0.1);
            border-color: var(--primary-color);
            color: var(--primary-color);
            color: var(--primary-color);
        }
        
        /* Search Form */
        .navbar-modern .search-form {
            position: relative;
        }
        
        .navbar-modern .search-input {
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 8px;
            padding: 9px 45px 9px 14px;
            font-size: 14px;
            width: 250px;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.9);
            color: #1a1a2e;
        }
        
        .navbar-modern .search-input:focus {
            border-color: var(--primary-color);
            outline: none;
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
            background: #ffffff;
        }
        
        .navbar-modern .search-input::placeholder {
            color: #8a8a9e;
        }
        
        .navbar-modern .search-btn {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            background: transparent;
            border: none;
            color: #8a8a9e;
            padding: 6px 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 6px;
        }
        
        .navbar-modern .search-btn:hover {
            color: var(--primary-color);
            background: rgba(212, 175, 55, 0.1);
        }
        
        /* Navbar positioning */
        .navbar-modern {
            position: relative;
            width: 100%;
        }
        
        /* Body padding */
        body {
            padding-top: 0;
        }
        
        @media (max-width: 991px) {
            body {
                padding-top: 0;
            }
        }
        
        
        .dropdown-menu {
            border: none;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            padding: 10px;
            background: var(--card-bg);
        }
        
        .dropdown-item {
            border-radius: 6px;
            padding: 8px 15px;
            font-weight: 500;
            transition: all 0.2s;
            color: var(--text-primary);
        }
        
        .dropdown-item:hover {
            background-color: rgba(212, 175, 55, 0.1);
            color: var(--primary-dark);
        }
        
        /* User Dropdown Styles */
        .user-dropdown .dropdown-toggle::after {
            margin-left: 5px;
        }
        
        .user-dropdown .dropdown-menu {
            min-width: 200px;
        }
        
        .user-dropdown .dropdown-item {
            padding: 10px 15px;
            font-size: 14px;
        }
        
        .user-dropdown .dropdown-item i {
            width: 20px;
            text-align: center;
        }
        
        /* Search Form Styles */
        .search-form {
            position: relative;
            margin-right: 15px;
        }
        
        .search-input {
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            border-radius: 20px;
            padding: 8px 15px;
            padding-right: 40px;
            width: 250px;
            transition: all 0.3s;
        }
        
        .search-input:focus {
            background-color: rgba(255, 255, 255, 0.15);
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
            outline: none;
        }
        
        .search-input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }
        
        .search-btn {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            background: transparent;
            border: none;
            color: rgba(255, 255, 255, 0.6);
            padding: 5px 10px;
            border-radius: 50%;
        }
        
        .search-btn:hover {
            color: var(--primary-color);
        }
        
        /* Mobile Search Overlay */
        .mobile-search-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 1050;
            display: none;
            padding: 80px 20px 20px;
        }
        
        .mobile-search-container {
            width: 100%;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .mobile-search-close {
            position: absolute;
            top: 20px;
            right: 20px;
            color: white;
            font-size: 24px;
            background: none;
            border: none;
            cursor: pointer;
        }
        
        /* Search Results Page */
        .search-results-header {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
            padding: 3rem 0;
            color: #000;
            margin-bottom: 3rem;
        }
        
        .results-count {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
        }
        
        .filter-sidebar {
            background: var(--card-bg);
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            margin-bottom: 2rem;
            border: 1px solid var(--border-color);
            position: sticky;
            top: 120px;
        }

        .sorting-options {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            margin-bottom: 1.5rem;
            gap: 10px;
        }

        .sort-label {
            font-weight: 500;
            color: var(--text-primary);
        }

        .sort-select {
            border-radius: 20px;
            padding: 8px 16px;
            border: 1px solid var(--border-color);
            background: var(--card-bg);
            color: var(--text-primary);
        }

        .no-results {
            text-align: center;
            padding: 4rem 2rem;
        }

        .no-results i {
            font-size: 4rem;
            color: var(--text-light);
            margin-bottom: 1rem;
        }
        
        .filter-title {
            font-weight: 600;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--primary-color);
            color: var(--text-primary);
        }
        
        .filter-group {
            margin-bottom: 1.5rem;
        }
        
        .filter-group:last-child {
            margin-bottom: 0;
        }
        
        .filter-group h5 {
            font-size: 1rem;
            margin-bottom: 0.8rem;
            color: var(--text-primary);
        }
        
        .form-check {
            margin-bottom: 0.5rem;
        }
        
        .form-check-input:checked {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }
        
        .form-check-label {
            color: var(--text-primary);
        }
        
        .price-range {
            margin-top: 0.5rem;
        }
        
        .price-inputs {
            display: flex;
            gap: 10px;
            margin-top: 10px;
        }
        
        .price-inputs input {
            width: 100%;
            padding: 5px 10px;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            background: var(--card-bg);
            color: var(--text-primary);
        }
        
        /* Modern Hero Section */
        .hero-section {
            position: relative;
            height: 90vh;
            min-height: 650px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
        }
        
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            height: 100%;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            padding-bottom: 250px;
        }
        
        .hero-content .row {
            width: 100%;
            display: flex;
            justify-content: center;
        }
        
        .hero-content .col-lg-8 {
            text-align: center;
        }
        
        .hero-title {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            margin-bottom: 1.5rem;
            line-height: 1.15;
            text-align: center;
            font-weight: 900;
            letter-spacing: -2px;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            animation: fadeInUp 1s ease-out;
        }
        
        .hero-subtitle {
            font-size: clamp(1.1rem, 2.5vw, 1.6rem);
            margin-bottom: 2.5rem;
            font-weight: 400;
            text-align: center;
            line-height: 1.6;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            animation: fadeInUp 1s ease-out 0.2s both;
            opacity: 0.95;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .hero-buttons {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
            justify-content: center;
            animation: fadeInUp 1s ease-out 0.4s both;
        }
        
        .hero-buttons .btn {
            margin-right: 0;
            margin-bottom: 0;
            border-radius: 50px;
            padding: 18px 45px;
            font-weight: 700;
            font-size: 1rem;
            transition: all var(--transition-base);
            letter-spacing: 0.8px;
            text-transform: uppercase;
            box-shadow: var(--shadow-lg), 0 0 0 0 rgba(212, 175, 55, 0.4);
            position: relative;
            overflow: hidden;
        }
        
        .hero-buttons .btn:hover {
            transform: translateY(-6px) scale(1.08);
            box-shadow: var(--shadow-xl), 0 0 0 4px rgba(212, 175, 55, 0.3);
        }
        
        .hero-buttons .btn:active {
            transform: translateY(-3px) scale(1.05);
        }
        
        .hero-indicators {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 3;
        }
        
        .hero-indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all 0.3s;
            border: 2px solid rgba(255, 255, 255, 0.6);
        }
        
        .hero-indicator:hover,
        .hero-indicator.active {
            background: var(--primary-color);
            transform: scale(1.3);
            border-color: var(--primary-color);
        }
        
        /* Modern Button Design */
        .btn-primary {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
            border: none;
            color: #000;
            font-weight: 700;
            padding: 16px 42px;
            border-radius: 50px;
            transition: all var(--transition-base);
            box-shadow: var(--shadow-lg), 0 0 0 0 rgba(212, 175, 55, 0.4);
            letter-spacing: 0.5px;
            text-transform: uppercase;
            font-size: 0.95rem;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
        }
        
        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: left 0.6s ease;
        }
        
        .btn-primary::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 50px;
            padding: 2px;
            background: linear-gradient(135deg, rgba(255,255,255,0.3), rgba(255,255,255,0.1));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity var(--transition-base);
        }
        
        .btn-primary:hover::before {
            left: 100%;
        }
        
        .btn-primary:hover::after {
            opacity: 1;
        }
        
        .btn-primary:hover {
            background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
            transform: translateY(-6px) scale(1.05);
            box-shadow: var(--shadow-xl), 0 0 0 4px rgba(212, 175, 55, 0.2);
        }
        
        .btn-primary:active {
            transform: translateY(-3px) scale(1.02);
        }
        
        .btn-outline-light {
            border-radius: 50px;
            padding: 15px 40px;
            font-weight: 700;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            letter-spacing: 1px;
            text-transform: uppercase;
            font-size: 0.95rem;
            border: 2px solid rgba(255, 255, 255, 0.8);
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
        }
        
        .btn-outline-light:hover {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
            border-color: var(--primary-color);
            color: #000;
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
        }
        
        .btn-outline-dark {
            border-radius: 50px;
            padding: 12px 28px;
            font-weight: 600;
            transition: all var(--transition-base);
            letter-spacing: 0.5px;
            border: 2px solid var(--border-color);
            color: var(--text-primary);
            background: transparent;
            position: relative;
            overflow: hidden;
        }
        
        .btn-outline-dark::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--primary-color), var(--luxury-gold));
            opacity: 0;
            transition: opacity var(--transition-base);
            z-index: -1;
        }
        
        .btn-outline-dark:hover::before {
            opacity: 1;
        }
        
        .btn-outline-dark:hover {
            transform: translateY(-4px) scale(1.05);
            box-shadow: var(--shadow-md);
            border-color: var(--primary-color);
            color: #000;
        }
        
        /* NEW: Enhanced Categories Section */
        .categories-section {
            padding: 80px 0;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 3rem;
            text-align: center;
            padding-bottom: 16px;
            color: var(--text-primary);
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            font-weight: 800;
            letter-spacing: -1px;
            line-height: 1.2;
            background: linear-gradient(135deg, #1a1a2e 0%, var(--primary-color) 50%, #8b1538 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            background-size: 200% auto;
            animation: gradientShift 8s ease infinite;
        }
        
        @keyframes gradientShift {
            0%, 100% { background-position: 0% center; }
            50% { background-position: 100% center; }
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: 0;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, 
                transparent, 
                var(--luxury-burgundy) 0%,
                var(--primary-color) 50%,
                var(--luxury-burgundy) 100%,
                transparent
            );
            border-radius: var(--radius-sm);
            box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
        }
        
        .section-title::before {
            content: '';
            position: absolute;
            left: 50%;
            bottom: -2px;
            transform: translateX(-50%);
            width: 60px;
            height: 2px;
            background: var(--primary-color);
            border-radius: var(--radius-sm);
            opacity: 0.5;
        }
        
        .category-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 32px;
            position: relative;
            z-index: 1;
        }
        
        @media (max-width: 768px) {
            .category-grid {
                grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
                gap: 16px;
            }
        }
        
        /* Centered last two categories - same size as others */
        .category-grid-last-two {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 32px;
            margin-top: 32px;
            flex-wrap: wrap;
        }
        
        .category-grid-last-two .category-card {
            flex: 0 0 auto;
            width: 100%;
            max-width: 280px;
        }
        
        @media (max-width: 991px) {
            .category-grid-last-two {
                display: grid;
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
                max-width: 100%;
                justify-items: center;
            }
        }
        
        @media (max-width: 768px) {
            .category-grid-last-two {
                grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
                gap: 16px;
            }
        }
        
        @media (max-width: 640px) {
            .category-grid-last-two {
                grid-template-columns: 1fr;
            }
        }
        
        .category-card {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: all var(--transition-base);
            background: var(--card-bg);
            cursor: pointer;
            border: 1px solid rgba(212, 175, 55, 0.1);
            display: flex;
            flex-direction: column;
            backdrop-filter: blur(10px);
        }
        
        .category-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(139, 21, 56, 0.05));
            opacity: 0;
            transition: opacity var(--transition-base);
            z-index: 1;
        }
        
        .category-card:hover::before {
            opacity: 1;
        }
        
        .category-card:hover {
            transform: translateY(-10px) scale(1.03);
            box-shadow: var(--shadow-xl), 0 0 0 2px rgba(212, 175, 55, 0.3);
            border-color: transparent;
        }
        
        .category-link {
            display: flex;
            flex-direction: column;
            text-decoration: none;
            color: inherit;
            width: 100%;
            height: 100%;
        }
        
        .category-image {
            width: 100%;
            height: 240px;
            object-fit: cover;
            transition: transform 0.5s ease;
            display: block;
        }
        
        .category-card:hover .category-image {
            transform: scale(1.05);
        }
        
        .category-name-container {
            padding: 20px;
            text-align: center;
            background: var(--card-bg);
            flex-grow: 1;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .category-name {
            font-size: 1.3rem;
            margin: 0;
            transition: all var(--transition-base);
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: -0.3px;
            position: relative;
            z-index: 2;
        }
        
        .category-card:hover .category-name {
            color: var(--primary-color);
            transform: scale(1.08);
        }
        
        /* View All Button */
        .view-all-container {
            text-align: center;
            margin-top: 40px;
        }
        
        .btn-view-all {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--luxury-gold) 100%);
            border: none;
            color: #000;
            font-weight: 700;
            padding: 12px 32px;
            border-radius: 50px;
            transition: all var(--transition-base);
            box-shadow: var(--shadow-md), 0 0 0 0 rgba(212, 175, 55, 0.3);
            font-size: 0.95rem;
            position: relative;
            overflow: hidden;
            letter-spacing: 0.5px;
        }
        
        .btn-view-all::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: left 0.6s ease;
        }
        
        .btn-view-all:hover::before {
            left: 100%;
        }
        
        .btn-view-all:hover {
            transform: translateY(-4px) scale(1.05);
            box-shadow: var(--shadow-lg), 0 0 0 3px rgba(212, 175, 55, 0.2);
            background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--primary-color) 100%);
        }
        
        .btn-outline-dark {
            border: 1px solid rgba(212, 175, 55, 0.4);
            color: var(--text-primary);
            font-weight: 500;
            padding: 8px 24px;
            border-radius: 8px;
            transition: all 0.3s ease;
            background: transparent;
        }
        
        .btn-outline-dark:hover {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--luxury-gold) 100%);
            border-color: var(--primary-color);
            color: #000;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
        }
        
        /* Modern Enhanced Cards */
        .product-card {
            border: 1px solid rgba(212, 175, 55, 0.1);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition-base);
            background: var(--card-bg);
            position: relative;
            height: 100%;
            display: flex;
            flex-direction: column;
            backdrop-filter: blur(10px);
        }
        
        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, 
                var(--luxury-burgundy) 0%,
                var(--primary-color) 50%,
                var(--luxury-burgundy) 100%
            );
            opacity: 0;
            transition: opacity var(--transition-base);
            z-index: 1;
        }
        
        .product-card::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: var(--radius-lg);
            padding: 1px;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(139, 21, 56, 0.1));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity var(--transition-base);
            pointer-events: none;
        }
        
        .product-card:hover::before {
            opacity: 1;
        }
        
        .product-card:hover::after {
            opacity: 1;
        }
        
        .product-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: var(--shadow-xl), 0 0 0 1px rgba(212, 175, 55, 0.2);
            border-color: transparent;
        }
        
        .product-card img {
            height: 280px;
            object-fit: cover;
            transition: transform 0.5s ease;
            width: 100%;
            display: block !important;
            visibility: visible !important;
            opacity: 1 !important;
            position: relative;
            z-index: 0;
        }
        
        .product-card:hover img {
            transform: scale(1.05);
        }
        
        .product-card .card-body {
            padding: 1.5rem;
            position: relative;
            z-index: 2;
            background: var(--card-bg);
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .product-card .card-title {
            font-weight: 700;
            margin-bottom: 0.75rem;
            font-size: 1.2rem;
            color: var(--text-primary);
            transition: all var(--transition-base);
            line-height: 1.3;
            letter-spacing: -0.3px;
        }
        
        .product-card:hover .card-title {
            color: var(--primary-color);
            transform: translateX(4px);
        }
        
        .product-card .card-text {
            color: var(--text-secondary);
            margin-bottom: 1rem;
            font-size: 0.95rem;
            line-height: 1.7;
            flex-grow: 1;
            opacity: 0.85;
        }
        
        .badge {
            font-weight: 700;
            padding: 10px 18px;
            border-radius: 50px;
            font-size: 0.75rem;
            letter-spacing: 0.8px;
            text-transform: uppercase;
            box-shadow: var(--shadow-md);
            transition: all var(--transition-base);
            backdrop-filter: blur(10px);
        }
        
        .badge:hover {
            transform: scale(1.08) translateY(-2px);
            box-shadow: var(--shadow-lg);
        }
        
        /* Modern Section Spacing */
        section {
            padding: 80px 0;
            position: relative;
        }
        
        section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, 
                transparent, 
                rgba(139,21,56,0.2) 0%,
                rgba(212,175,55,0.5) 50%,
                rgba(139,21,56,0.2) 100%,
                transparent
            );
            opacity: 0.6;
        }
        
        section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 200px;
            height: 2px;
            background: var(--primary-color);
            opacity: 0.3;
        }
        
        .bg-light-custom {
            background: linear-gradient(135deg, 
                rgba(26,26,46,0.02) 0%, 
                rgba(212,175,55,0.06) 25%,
                rgba(250,249,246,0.95) 50%,
                rgba(212,175,55,0.06) 75%,
                rgba(139,21,56,0.02) 100%
            );
            position: relative;
            border-radius: var(--radius-xl);
            padding: 60px 40px;
            margin: 40px 0;
            border: 1px solid rgba(212,175,55,0.1);
            box-shadow: var(--shadow-lg);
            backdrop-filter: blur(20px);
        }
        
        .bg-light-custom::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: var(--radius-xl);
            padding: 1px;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(139, 21, 56, 0.2));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0.5;
            pointer-events: none;
        }
        
        .bg-light-custom::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle fill="rgba(212,175,55,0.02)" cx="50" cy="50" r="2"/></svg>') repeat;
            opacity: 0.5;
            pointer-events: none;
        }
        
        /* Enhanced Testimonials */
        .testimonial-card {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: none;
            transition: all 0.3s;
            height: 100%;
            background: var(--card-bg);
        }
        
        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }
        
        .testimonial-card .card-body {
            padding: 2rem;
        }
        
        .testimonial-card .card-text {
            color: var(--text-primary);
        }
        
        .testimonial-card .card-footer {
            background: linear-gradient(to right, rgba(212,175,55,0.1), rgba(166,124,82,0.1));
            border-top: 1px solid rgba(212,175,55,0.2);
            padding: 1.2rem 2rem;
        }
        
        /* Enhanced Footer */
        footer {
            background: var(--footer-bg);
            position: relative;
            overflow: hidden;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(to right, transparent, var(--primary-color), transparent);
        }
        
        footer h5 {
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 12px;
            font-weight: 700;
            color: white;
        }
        
        footer h5::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background-color: var(--primary-color);
        }
        
        footer a {
            color: #adb5bd;
            text-decoration: none;
            transition: all 0.3s;
            font-weight: 400;
        }
        
        footer a:hover {
            color: var(--primary-color);
            padding-left: 5px;
        }
        
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            margin-right: 10px;
            transition: all 0.3s;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .social-icons a:hover {
            background-color: var(--primary-color);
            color: #000 !important;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
            border-color: var(--primary-color);
        }
        
        /* New UI Elements */
        .floating-whatsapp {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 100;
        }
        
        .floating-whatsapp a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #25D366, #128C7E);
            color: white;
            font-size: 28px;
            box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
            transition: all 0.3s;
            animation: pulse 2s infinite;
        }
        
        .floating-whatsapp a:hover {
            transform: scale(1.1) translateY(-5px);
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
            animation: none;
        }
        
        @media (max-width: 991.98px) {
            .floating-whatsapp {
                bottom: 90px;
                right: 20px;
            }
            
            .floating-whatsapp a {
                width: 56px;
                height: 56px;
                font-size: 24px;
            }
        }
        
        @media (max-width: 576px) {
            .floating-whatsapp {
                bottom: 85px;
                right: 15px;
            }
            
            .floating-whatsapp a {
                width: 50px;
                height: 50px;
                font-size: 22px;
            }
        }
        
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }
        
        .quick-links {
            position: fixed;
            top: 50%;
            right: 20px;
            transform: translateY(-50%);
            z-index: 90;
            display: flex;
            flex-direction: column;
        }
        
        .quick-link {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            color: #000;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            font-size: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s;
        }
        
        .quick-link:hover {
            transform: scale(1.1) translateX(-5px);
            color: #000;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }
        
        .promo-banner {
            background: linear-gradient(135deg, 
                var(--luxury-burgundy) 0%, 
                #6b0f2a 50%,
                var(--luxury-burgundy) 100%
            );
            color: var(--primary-light);
            padding: 12px 0;
            text-align: center;
            font-weight: 500;
            box-shadow: 0 2px 10px rgba(139, 21, 56, 0.3);
            border-bottom: 2px solid var(--primary-color);
        }
        
        .promo-banner p {
            margin: 0;
            font-size: 0.95rem;
            letter-spacing: 0.5px;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
        }
        
        .promo-banner.scrolling p {
            animation: scrollText 20s linear infinite;
            white-space: nowrap;
            padding: 0 20px;
            display: inline-block;
            padding-left: 100%;
        }
        
        @keyframes scrollText {
            0% { transform: translateX(0); }
            100% { transform: translateX(-100%); }
        }
        
        /* Craftsmanship Section */
        .craftsmanship-card {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.4s;
            height: 100%;
            border: none;
            background: var(--card-bg);
        }
        
        .craftsmanship-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }
        
        .craftsmanship-card img {
            height: 250px;
            object-fit: cover;
            width: 100%;
        }
        
        .craftsmanship-card .card-body {
            padding: 2rem;
        }
        
        .craftsmanship-card .card-title,
        .craftsmanship-card .card-text {
            color: var(--text-primary);
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 100px;
            right: 30px;
            z-index: 99;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: none;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            background: var(--primary-color);
            color: #000;
            border: none;
        }
        
        /* Instagram Section */
        .instagram-post {
            position: relative;
            display: block;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .instagram-post img {
            transition: transform 0.5s;
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .instagram-post:hover img {
            transform: scale(1.1);
        }
        
        .instagram-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s;
            cursor: pointer;
        }
        
        .instagram-overlay i {
            color: white;
            font-size: 2rem;
        }
        
        .instagram-post:hover .instagram-overlay {
            opacity: 1;
        }
        
        /* Why Choose Us Section */
        .why-choose-section .section-subtitle {
            max-width: 640px;
            margin: -1.5rem auto 2.5rem;
            text-align: center;
            color: var(--text-secondary);
            font-size: 1.05rem;
            line-height: 1.7;
        }

        .why-choose-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .why-choose-card {
            position: relative;
            background: var(--card-bg);
            border: 1px solid rgba(212, 175, 55, 0.15);
            border-radius: var(--radius-lg);
            padding: 2rem 1.5rem;
            text-align: center;
            box-shadow: var(--shadow-sm);
            transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
            overflow: hidden;
            height: 100%;
        }

        .why-choose-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--luxury-burgundy), var(--primary-color), var(--accent-color));
            opacity: 0.85;
        }

        .why-choose-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: rgba(212, 175, 55, 0.35);
        }

        .why-choose-card--policy {
            background: linear-gradient(160deg, #fff 0%, rgba(250, 249, 246, 0.95) 100%);
        }

        .feature-icon {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.25rem;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(166, 124, 82, 0.08) 100%);
            font-size: 1.75rem;
            color: var(--primary-color);
            transition: all var(--transition-base);
            border: 1px solid rgba(212, 175, 55, 0.2);
        }
        
        .why-choose-card:hover .feature-icon {
            transform: scale(1.08) translateY(-4px);
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
            color: #000;
            border-color: transparent;
            box-shadow: 0 8px 24px rgba(212, 175, 55, 0.25);
        }

        .why-choose-card h4 {
            font-size: 1.15rem;
            margin-bottom: 0.75rem;
            color: var(--text-primary);
        }

        .why-choose-card p {
            margin-bottom: 0;
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.65;
        }

        .feature-item:hover .feature-icon {
            transform: scale(1.1) translateY(-5px);
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
            color: #000;
        }
        
        .feature-item h4,
        .feature-item p {
            color: var(--text-primary);
        }

        @media (max-width: 991.98px) {
            .why-choose-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }

            .why-choose-card:last-child:nth-child(2n + 1):not(:only-child) {
                grid-column: 1 / -1;
                max-width: 420px;
                justify-self: center;
            }
        }

        @media (min-width: 992px) {
            .why-choose-card:last-child:nth-child(3n + 1):not(:only-child) {
                grid-column: 2;
            }
        }

        @media (max-width: 575.98px) {
            .why-choose-grid {
                grid-template-columns: 1fr;
            }

            .why-choose-card {
                padding: 1.5rem 1.25rem;
            }

            .why-choose-card:last-child:nth-child(2n + 1):not(:only-child),
            .why-choose-card:last-child:nth-child(3n + 1):not(:only-child) {
                grid-column: auto;
                max-width: none;
                justify-self: stretch;
            }
        }
        
        /* Newsletter Section */
        .newsletter-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
            color: #000;
            position: relative;
            overflow: hidden;
        }
        
        .newsletter-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="rgba(255,255,255,0.1)" x="0" y="0" width="20" height="20"/></svg>') repeat;
            animation: diagonalMove 20s linear infinite;
            transform: rotate(30deg);
        }
        
        @keyframes diagonalMove {
            0% { transform: translateY(0) rotate(30deg); }
            100% { transform: translateY(-100px) rotate(30deg); }
        }
        
        /* Alerts */
        .alert {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            color: var(--text-primary);
        }
        
        .alert-warning {
            border-left: 4px solid var(--primary-color);
        }
        
        /* Form Controls */
        .form-control {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            color: var(--text-primary);
        }
        
        .form-control:focus {
            background: var(--card-bg);
            color: var(--text-primary);
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
        }
        
        .form-control::placeholder {
            color: var(--text-secondary);
        }
        
        /* Mobile Navigation */
        .mobile-nav-toggler {
            background: transparent;
            border: none;
            color: white;
            font-size: 1.5rem;
            padding: 0.5rem;
        }
        
        .mobile-search-btn {
            display: none;
            background: transparent;
            border: none;
            color: white;
            font-size: 1.2rem;
            padding: 0.5rem;
        }
        
        /* Mobile Cart Badge */
        .mobile-cart-badge {
            position: absolute;
            top: -5px;
            right: -5px;
            background: var(--primary-color);
            color: #000;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: bold;
        }
        
        /* Mobile Responsive Adjustments */
        @media (max-width: 1200px) {
            .hero-title {
                font-size: 3rem;
            }
        }
        
        @media (max-width: 992px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.3rem;
            }
            
            .category-grid {
                grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            }
            
            .quick-links {
                display: none;
            }
            
            .navbar {
                padding: 10px 0;
            }
            
            .search-input {
                width: 180px;
            }
            
            
            /* Mobile search button */
            .search-form.d-lg-flex {
                display: none !important;
            }
            
            .mobile-search-btn {
                display: block;
            }
            
            /* Mobile cart adjustments */
            .btn-outline-light.me-2 {
                margin-right: 0.5rem !important;
            }
        }
        
        @media (max-width: 768px) {
            body {
                padding-top: 70px;
            }
            
            .hero-section {
                height: 75vh;
                min-height: 550px;
            }
            
            .hero-title {
                font-size: 2.5rem;
                margin-bottom: 1rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
                margin-bottom: 2rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                gap: 15px;
            }
            
            .hero-buttons .btn {
                padding: 12px 30px;
                font-size: 0.9rem;
                width: 100%;
                max-width: 300px;
            }
            
            .hero-indicators {
                bottom: 20px;
            }
            
            .category-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
                gap: 20px;
            }
            
            .category-card {
                height: auto;
            }
            
            .category-image {
                height: 200px;
            }
            
            .section-title {
                font-size: 2rem;
                margin-bottom: 2.5rem;
            }
            
            section {
                padding: 40px 0;
            }
            
            .bg-light-custom {
                padding: 30px 20px;
                border-radius: 20px;
            }
            
            .section-title {
                font-size: 1.8rem;
                margin-bottom: 2rem;
            }
            
            .product-card img {
                height: 240px;
            }
            
            .category-card {
                height: auto;
            }
            
            .category-image {
                height: 180px;
            }
            
            .search-form {
                margin-right: 0;
                margin-bottom: 10px;
                width: 100%;
            }
            
            .search-input {
                width: 100%;
            }
            
            /* Mobile navigation improvements */
            .navbar-modern .navbar-collapse {
                background: #ffffff;
                padding: 1rem;
                border-top: 1px solid #e5e5e5;
                margin-top: 10px;
                margin-top: 10px;
                border-radius: 8px;
            }
            
            .nav-item {
                margin: 5px 0;
            }
            
            .dropdown-menu {
                background: rgba(40, 40, 40, 0.95);
                margin-left: 15px;
                border-left: 2px solid var(--primary-color);
            }
            
            .dropdown-item {
                color: white;
            }
            
            /* Mobile cart improvements */
            .navbar-nav .btn {
                margin: 5px 0;
                width: 100%;
                text-align: center;
                justify-content: center;
            }
            
            /* Product card improvements for mobile */
            .product-card img {
                height: 220px;
            }
            
            .product-card .card-body {
                padding: 1.2rem;
            }
            
            .product-card .card-title {
                font-size: 1.1rem;
            }
            
            /* Craftsmanship section improvements */
            .craftsmanship-card .card-body {
                padding: 1.5rem;
            }
            
            /* Testimonial improvements */
            .testimonial-card .card-body {
                padding: 1.5rem;
            }
            
            .testimonial-card .card-footer {
                padding: 1rem;
            }
            
            /* Footer improvements */
            footer .col-lg-3 {
                margin-bottom: 2rem;
            }
            
            footer h5 {
                margin-bottom: 1rem;
            }
        }
        
        @media (max-width: 576px) {
            .hero-section {
                height: 60vh;
                min-height: 450px;
            }
            
            .hero-title {
                font-size: 1.8rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .btn-primary,
            .btn-outline-dark {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
            
            .category-grid {
                grid-template-columns: 1fr 1fr;
                gap: 15px;
            }
            
            .category-card {
                height: 200px;
            }
            
            .category-name {
                font-size: 1.1rem;
            }
            
            .floating-whatsapp a {
                width: 50px;
                height: 50px;
                font-size: 24px;
            }
            
            .back-to-top {
                bottom: 90px;
                right: 20px;
                width: 45px;
                height: 45px;
                font-size: 18px;
            }
            
            /* Mobile navigation improvements */
            .navbar-brand img {
                height: 35px;
            }
            
            /* Product card improvements */
            .product-card img {
                height: 200px;
            }
            
            .product-card .card-body {
                padding: 1rem;
            }
            
            .product-card .card-title {
                font-size: 1rem;
            }
            
            .product-card .card-text {
                font-size: 0.85rem;
            }
            
            /* Section title improvements */
            .section-title {
                font-size: 1.8rem;
                margin-bottom: 2rem;
            }
            
            /* Newsletter improvements */
            .newsletter-section .row {
                text-align: center;
            }
            
            .newsletter-section .col-md-6 {
                margin-bottom: 1.5rem;
            }
            
            /* Instagram grid improvements */
            .instagram-post img {
                height: 150px;
            }
            
            /* Feature icon improvements */
            .feature-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
            
            /* Promo banner improvements */
        }
        
        @media (max-width: 400px) {
            .category-grid {
                grid-template-columns: 1fr;
            }
            
            .category-card {
                height: auto;
            }
            
            .category-image {
                height: 160px;
            }
            
            .category-name {
                font-size: 1rem;
            }
            
            .product-scroll-item {
                flex: 0 0 150px;
            }
            
            .product-scroll-item img {
                height: 150px;
            }
            
            .monthly-gem-thumb {
                height: 100px;
            }
            
            .hero-buttons .btn {
                display: block;
                width: 100%;
                margin-right: 0;
                margin-bottom: 10px;
            }
            
            /* Mobile navigation improvemen ts */
            .navbar-nav {
                text-align: center;
            }
            
            /* Product card improvements */
            .product-card img {
                height: 180px;
            }
            
            /* Footer improvements */
            footer .col-md-6 {
                text-align: center !important;
            }
            
            footer h5::after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            /* Search results improvements */
            .search-results-header {
                padding: 2rem 0;
            }
            
            .search-results-header h1 {
                font-size: 1.8rem;
            }
            
            .filter-sidebar {
                padding: 1rem;
            }
        }
        
        /* Products Scroll Gallery - Modern Design */
        .products-scroll-container {
            overflow-x: auto;
            overflow-y: hidden;
            padding: 30px 0;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: thin;
            scrollbar-color: var(--primary-color) transparent;
            position: relative;
            scroll-behavior: smooth;
        }
        
        .products-scroll-container::before,
        .products-scroll-container::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 50px;
            z-index: 2;
            pointer-events: none;
        }
        
        .products-scroll-container::before {
            left: 0;
            background: linear-gradient(to right, var(--bg-primary) 0%, rgba(250, 249, 246, 0.8) 50%, transparent 100%);
        }
        
        .products-scroll-container::after {
            right: 0;
            background: linear-gradient(to left, var(--bg-primary) 0%, rgba(250, 249, 246, 0.8) 50%, transparent 100%);
        }
        
        .products-scroll-container.scrolled-start::before {
            opacity: 0;
        }
        
        .products-scroll-container.scrolled-end::after {
            opacity: 0;
        }
        
        .products-scroll-container::-webkit-scrollbar {
            height: 12px;
        }
        
        .products-scroll-container::-webkit-scrollbar-track {
            background: rgba(212, 175, 55, 0.1);
            border-radius: 10px;
            margin: 0 20px;
        }
        
        .products-scroll-container::-webkit-scrollbar-thumb {
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            border-radius: 10px;
            border: 2px solid rgba(212, 175, 55, 0.2);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
        
        .products-scroll-container::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
            box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
        }
        
        .products-scroll {
            display: flex;
            gap: 20px;
            padding-bottom: 10px;
        }
        
        .product-scroll-item {
            flex: 0 0 220px;
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            text-decoration: none;
            display: block;
            background: var(--card-bg);
            border: 1px solid rgba(212, 175, 55, 0.15);
        }
        
        .product-scroll-item:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
            border-color: var(--primary-color);
        }
        
        .product-scroll-item img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            display: block;
            transition: transform 0.3s ease;
        }
        
        .product-scroll-item:hover img {
            transform: scale(1.05);
        }
        
        .product-scroll-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
            padding: 15px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        
        .product-scroll-item:hover .product-scroll-overlay {
            transform: translateY(0);
        }
        
        .product-scroll-name {
            color: white;
            font-weight: 600;
            font-size: 0.9rem;
            display: block;
        }
        
        /* Monthly Gem Styles - Modern Compact Design */
        .monthly-gem-section.modern-design {
            position: relative;
            overflow: hidden;
            background: var(--card-bg);
            border-radius: 24px;
            padding: 40px 30px;
            border: 1px solid var(--border-color);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }
        
        .monthly-gem-featured.modern-style {
            background: transparent;
            border: none;
            box-shadow: none;
            border-radius: 0;
            position: relative;
            overflow: visible;
            transition: none;
        }
        
        .monthly-gem-featured.modern-style:hover {
            transform: none;
            box-shadow: none;
        }
        
        .monthly-gem-badge.modern-badge {
            background: var(--primary-color);
            color: #000;
            font-weight: 700;
            padding: 8px 20px;
            border-radius: 20px;
            display: inline-block;
            box-shadow: 0 2px 8px rgba(212, 175, 55, 0.25);
            font-size: 0.8rem;
            letter-spacing: 0.5px;
            position: relative;
            z-index: 2;
            text-transform: uppercase;
            border: none;
            margin-bottom: 15px;
        }
        
        .monthly-gem-badge.modern-badge::before {
            content: '3a5';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            margin-right: 6px;
        }
        
        .monthly-gem-title.modern-title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-primary);
            margin: 15px 0 25px 0;
            position: relative;
            z-index: 2;
            letter-spacing: -0.5px;
            line-height: 1.3;
        }
        
        .monthly-gem-image.modern-image {
            text-align: center;
            position: relative;
            padding: 0;
            margin: 25px 0;
        }
        
        .monthly-gem-image.modern-image img {
            max-height: 300px;
            max-width: 100%;
            width: auto;
            object-fit: contain;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
            border-radius: 16px;
            position: relative;
            z-index: 1;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            background: transparent;
            padding: 0;
        }
        
        .monthly-gem-image.modern-image:hover img {
            transform: translateY(-5px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
        }
        
        .monthly-gem-description.modern-description {
            font-size: 0.95rem;
            line-height: 1.7;
            color: var(--text-secondary);
            padding: 0;
            position: relative;
            z-index: 2;
            font-weight: 400;
            letter-spacing: 0;
            margin-top: 20px;
        }
        
        .monthly-gem-card-body.modern-body {
            padding: 0;
            position: relative;
            z-index: 2;
        }
        
        @media (max-width: 768px) {
            .monthly-gem-section.modern-design {
                padding: 30px 20px;
                border-radius: 20px;
            }
            
            .monthly-gem-title.modern-title {
                font-size: 1.6rem;
            }
            
            .monthly-gem-image.modern-image {
                margin: 20px 0;
            }
            
            .monthly-gem-image.modern-image img {
                max-height: 220px;
            }
            
            .monthly-gem-description.modern-description {
                font-size: 0.9rem;
                margin-top: 15px;
            }
            
            .monthly-gem-badge.modern-badge {
                padding: 6px 16px;
                font-size: 0.75rem;
            }
        }
        
        /* Monthly Gem Styles - Alternative Elegant Design */
        .monthly-gem-section.elegant-design {
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, 
                rgba(255, 255, 255, 0.95) 0%, 
                rgba(250, 248, 245, 0.98) 50%,
                rgba(255, 255, 255, 0.95) 100%
            );
            border-radius: 40px;
            padding: 100px 60px;
            border: 1px solid rgba(212, 175, 55, 0.15);
            box-shadow: 
                0 20px 80px rgba(0, 0, 0, 0.08),
                0 0 0 1px rgba(212, 175, 55, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
        }
        
        .monthly-gem-section.elegant-design::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(166, 124, 82, 0.08) 0%, transparent 50%);
            pointer-events: none;
        }
        
        .monthly-gem-section.elegant-design::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
            animation: elegantFloat 20s ease-in-out infinite;
            pointer-events: none;
        }
        
        @keyframes elegantFloat {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            50% { transform: translate(-5%, 5%) rotate(180deg); }
        }
        
        .monthly-gem-featured.elegant-style {
            background: linear-gradient(145deg, 
                rgba(255, 255, 255, 0.9) 0%, 
                rgba(250, 248, 245, 0.95) 100%
            );
            border: 2px solid rgba(212, 175, 55, 0.2);
            box-shadow: 
                0 30px 100px rgba(0, 0, 0, 0.1),
                0 0 0 1px rgba(212, 175, 55, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
            border-radius: 40px;
            position: relative;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(20px);
        }
        
        .monthly-gem-featured.elegant-style::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, 
                transparent, 
                rgba(212, 175, 55, 0.1), 
                transparent
            );
            transition: left 0.6s ease;
        }
        
        .monthly-gem-featured.elegant-style:hover::before {
            left: 100%;
        }
        
        .monthly-gem-featured.elegant-style:hover {
            transform: translateY(-10px);
            box-shadow: 
                0 50px 150px rgba(0, 0, 0, 0.15),
                0 0 0 1px rgba(212, 175, 55, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 1);
            border-color: rgba(212, 175, 55, 0.4);
        }
        
        .monthly-gem-badge.elegant-badge {
            background: linear-gradient(135deg, 
                rgba(212, 175, 55, 0.15) 0%, 
                rgba(212, 175, 55, 0.25) 100%
            );
            color: #8B6914;
            font-weight: 700;
            padding: 14px 35px;
            border-radius: 50px;
            display: inline-block;
            box-shadow: 
                0 4px 15px rgba(212, 175, 55, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
            letter-spacing: 2px;
            position: relative;
            z-index: 3;
            text-transform: uppercase;
            border: 1px solid rgba(212, 175, 55, 0.3);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
        
        .monthly-gem-badge.elegant-badge:hover {
            background: linear-gradient(135deg, 
                rgba(212, 175, 55, 0.25) 0%, 
                rgba(212, 175, 55, 0.35) 100%
            );
            transform: scale(1.05);
            box-shadow: 
                0 6px 20px rgba(212, 175, 55, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
        }
        
        .monthly-gem-badge.elegant-badge::before {
            content: '3a5';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            margin-right: 12px;
            color: var(--primary-color);
        }
        
        .monthly-gem-title.elegant-title {
            font-size: 3.2rem;
            font-weight: 800;
            background: linear-gradient(135deg, 
                #8B6914 0%, 
                var(--primary-color) 30%,
                #8B6914 60%,
                var(--primary-color) 100%
            );
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin: 40px 0;
            position: relative;
            z-index: 3;
            animation: elegantShine 8s linear infinite;
            letter-spacing: 1px;
            line-height: 1.3;
        }
        
        @keyframes elegantShine {
            0% { background-position: 0% center; }
            100% { background-position: 200% center; }
        }
        
        .monthly-gem-image.elegant-image {
            text-align: center;
            position: relative;
            padding: 60px;
            margin: 50px 0;
        }
        
        .monthly-gem-image.elegant-image::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 90%;
            height: 90%;
            background: linear-gradient(135deg, 
                rgba(212, 175, 55, 0.1) 0%, 
                rgba(212, 175, 55, 0.05) 50%,
                transparent 100%
            );
            border-radius: 50%;
            z-index: 0;
            animation: elegantPulse 6s ease-in-out infinite;
        }
        
        @keyframes elegantPulse {
            0%, 100% { 
                transform: translate(-50%, -50%) scale(1); 
                opacity: 0.6; 
            }
            50% { 
                transform: translate(-50%, -50%) scale(1.1); 
                opacity: 0.8; 
            }
        }
        
        .monthly-gem-image.elegant-image img {
            max-height: 480px;
            max-width: 100%;
            width: auto;
            object-fit: contain;
            box-shadow: 
                0 25px 70px rgba(0, 0, 0, 0.15),
                0 0 0 1px rgba(212, 175, 55, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
            border-radius: 25px;
            position: relative;
            z-index: 2;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid rgba(212, 175, 55, 0.2);
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(250, 248, 245, 0.98));
            padding: 30px;
        }
        
        .monthly-gem-image.elegant-image:hover img {
            transform: scale(1.05);
            box-shadow: 
                0 40px 100px rgba(0, 0, 0, 0.2),
                0 0 0 1px rgba(212, 175, 55, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 1);
            border-color: rgba(212, 175, 55, 0.4);
        }
        
        .monthly-gem-description.elegant-description {
            font-size: 1.15rem;
            line-height: 2;
            color: #5a5a5a;
            padding: 0 40px;
            position: relative;
            z-index: 3;
            font-weight: 400;
            letter-spacing: 0.3px;
        }
        
        .monthly-gem-card-body.elegant-body {
            padding: 80px 60px;
            position: relative;
            z-index: 2;
        }
        
        @media (max-width: 768px) {
            .monthly-gem-section.elegant-design {
                padding: 60px 25px;
            }
            
            .monthly-gem-title.elegant-title {
                font-size: 2.3rem;
                letter-spacing: 0.5px;
            }
            
            .monthly-gem-image.elegant-image {
                padding: 40px;
            }
            
            .monthly-gem-image.elegant-image img {
                max-height: 320px;
                padding: 20px;
            }
            
            .monthly-gem-card-body.elegant-body {
                padding: 50px 30px;
            }
            
            .monthly-gem-description.elegant-description {
                font-size: 1rem;
                padding: 0 20px;
            }
            
            .monthly-gem-badge.elegant-badge {
                padding: 12px 25px;
                font-size: 0.8rem;
            }
        }
        
        /* Monthly Gem Styles - Cinematic Design */
        .monthly-gem-section {
            position: relative;
            overflow: hidden;
            background: radial-gradient(ellipse at center, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.9) 100%);
            border-radius: 30px;
            padding: 80px 40px;
            border: 1px solid rgba(212, 175, 55, 0.2);
            box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5), inset 0 0 100px rgba(212, 175, 55, 0.05);
        }
        
        .monthly-gem-section::before {
            content: '';
            position: absolute;
            top: -100%;
            left: -100%;
            width: 300%;
            height: 300%;
            background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, transparent 60%);
            animation: cinematicGlow 12s ease-in-out infinite;
            pointer-events: none;
        }
        
        .monthly-gem-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 30%, rgba(212,175,55,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(166,124,82,0.1) 0%, transparent 50%);
            animation: cinematicLight 15s ease-in-out infinite alternate;
            pointer-events: none;
        }
        
        @keyframes cinematicGlow {
            0%, 100% { 
                transform: translate(0, 0) rotate(0deg); 
                opacity: 0.3; 
            }
            33% { 
                transform: translate(-10%, 10%) rotate(120deg); 
                opacity: 0.6; 
            }
            66% { 
                transform: translate(10%, -10%) rotate(240deg); 
                opacity: 0.4; 
            }
        }
        
        @keyframes cinematicLight {
            0% { opacity: 0.3; }
            100% { opacity: 0.7; }
        }
        
        .monthly-gem-featured {
            background: linear-gradient(145deg, rgba(20,20,30,0.95) 0%, rgba(10,10,20,0.98) 100%);
            border: 2px solid rgba(212, 175, 55, 0.3);
            box-shadow: 
                0 40px 120px rgba(0, 0, 0, 0.8),
                0 0 80px rgba(212, 175, 55, 0.2),
                inset 0 0 60px rgba(212, 175, 55, 0.05);
            border-radius: 30px;
            position: relative;
            overflow: hidden;
            transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
            backdrop-filter: blur(10px);
        }
        
        .monthly-gem-featured::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -50%;
            width: 200%;
            height: 4px;
            background: linear-gradient(90deg, 
                transparent, 
                var(--primary-color), 
                rgba(212,175,55,0.8),
                var(--primary-color),
                transparent
            );
            background-size: 200% 100%;
            animation: cinematicShimmer 4s linear infinite;
        }
        
        .monthly-gem-featured::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, 
                transparent 30%, 
                rgba(212,175,55,0.05) 50%, 
                transparent 70%
            );
            background-size: 200% 200%;
            animation: cinematicSweep 8s linear infinite;
            pointer-events: none;
        }
        
        @keyframes cinematicShimmer {
            0% { background-position: -100% 0; }
            100% { background-position: 100% 0; }
        }
        
        @keyframes cinematicSweep {
            0% { background-position: 0% 0%; }
            100% { background-position: 100% 100%; }
        }
        
        .monthly-gem-featured:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 
                0 60px 150px rgba(0, 0, 0, 0.9),
                0 0 120px rgba(212, 175, 55, 0.4),
                inset 0 0 80px rgba(212, 175, 55, 0.1);
            border-color: rgba(212, 175, 55, 0.6);
        }
        
        .monthly-gem-badge {
            background: linear-gradient(135deg, var(--primary-color) 0%, rgba(212,175,55,0.9) 50%, var(--primary-color) 100%);
            background-size: 200% 100%;
            color: #000;
            font-weight: 800;
            padding: 12px 30px;
            border-radius: 50px;
            display: inline-block;
            box-shadow: 
                0 8px 25px rgba(212, 175, 55, 0.4),
                0 0 20px rgba(212, 175, 55, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
            font-size: 0.95rem;
            letter-spacing: 1px;
            position: relative;
            z-index: 3;
            text-transform: uppercase;
            animation: badgePulse 3s ease-in-out infinite;
            border: 2px solid rgba(0, 0, 0, 0.2);
        }
        
        @keyframes badgePulse {
            0%, 100% { 
                box-shadow: 
                    0 8px 25px rgba(212, 175, 55, 0.4),
                    0 0 20px rgba(212, 175, 55, 0.3);
            }
            50% { 
                box-shadow: 
                    0 8px 35px rgba(212, 175, 55, 0.6),
                    0 0 30px rgba(212, 175, 55, 0.5);
            }
        }
        
        .monthly-gem-badge::before {
            content: '3a5';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            margin-right: 10px;
            animation: gemRotate 4s linear infinite;
        }
        
        @keyframes gemRotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .monthly-gem-title {
            font-size: 3.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, 
                var(--primary-color) 0%, 
                rgba(255,255,255,0.9) 30%,
                var(--primary-color) 60%,
                rgba(255,255,255,0.9) 100%
            );
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin: 35px 0;
            position: relative;
            z-index: 3;
            animation: titleShine 6s linear infinite;
            text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
            letter-spacing: 2px;
            line-height: 1.2;
        }
        
        @keyframes titleShine {
            0% { background-position: 0% center; }
            100% { background-position: 200% center; }
        }
        
        .monthly-gem-image {
            text-align: center;
            position: relative;
            padding: 50px;
            margin: 40px 0;
            perspective: 1000px;
        }
        
        .monthly-gem-image::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            height: 100%;
            background: radial-gradient(ellipse, 
                rgba(212,175,55,0.3) 0%, 
                rgba(212,175,55,0.1) 40%,
                transparent 70%
            );
            border-radius: 50%;
            z-index: 0;
            animation: imageGlow 8s ease-in-out infinite;
            filter: blur(40px);
        }
        
        .monthly-gem-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 30% 30%, rgba(212,175,55,0.2) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(166,124,82,0.2) 0%, transparent 50%);
            z-index: 1;
            animation: imageLight 10s ease-in-out infinite alternate;
            pointer-events: none;
        }
        
        @keyframes imageGlow {
            0%, 100% { 
                transform: translate(-50%, -50%) scale(1); 
                opacity: 0.5; 
            }
            50% { 
                transform: translate(-50%, -50%) scale(1.2); 
                opacity: 0.8; 
            }
        }
        
        @keyframes imageLight {
            0% { opacity: 0.4; }
            100% { opacity: 0.8; }
        }
        
        .monthly-gem-image img {
            max-height: 500px;
            max-width: 100%;
            width: auto;
            object-fit: contain;
            box-shadow: 
                0 30px 80px rgba(0, 0, 0, 0.6),
                0 0 60px rgba(212, 175, 55, 0.4),
                0 0 100px rgba(212, 175, 55, 0.2),
                inset 0 0 40px rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            position: relative;
            z-index: 2;
            transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
            border: 3px solid rgba(212, 175, 55, 0.3);
            background: linear-gradient(145deg, rgba(20,20,30,0.9), rgba(10,10,20,0.95));
            padding: 20px;
        }
        
        .monthly-gem-image:hover img {
            transform: scale(1.08) rotateY(5deg) rotateX(5deg);
            box-shadow: 
                0 50px 120px rgba(0, 0, 0, 0.8),
                0 0 100px rgba(212, 175, 55, 0.6),
                0 0 150px rgba(212, 175, 55, 0.4),
                inset 0 0 60px rgba(255, 255, 255, 0.2);
            border-color: rgba(212, 175, 55, 0.6);
        }
        
        .monthly-gem-description {
            font-size: 1.2rem;
            line-height: 2;
            color: rgba(255, 255, 255, 0.9);
            padding: 0 30px;
            position: relative;
            z-index: 3;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
            font-weight: 400;
            letter-spacing: 0.5px;
        }
        
        .monthly-gem-card-body {
            padding: 70px 50px;
            position: relative;
            z-index: 2;
        }
        
        @media (max-width: 768px) {
            .monthly-gem-section {
                padding: 50px 20px;
            }
            
            .monthly-gem-title {
                font-size: 2.2rem;
                letter-spacing: 1px;
            }
            
            .monthly-gem-image {
                padding: 30px;
            }
            
            .monthly-gem-image img {
                max-height: 300px;
                padding: 15px;
            }
            
            .monthly-gem-card-body {
                padding: 40px 25px;
            }
            
            .monthly-gem-description {
                font-size: 1rem;
                padding: 0 15px;
            }
            
            .monthly-gem-badge {
                padding: 10px 20px;
                font-size: 0.85rem;
            }
        }
        
        .monthly-gem-card {
            background: var(--card-bg);
            border: 2px solid var(--border-color);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .monthly-gem-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            border-color: var(--primary-color);
        }
        
        .monthly-gem-card.active {
            border-color: var(--primary-color);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
        }
        
        .monthly-gem-card.active::before {
            content: 'Current Month';
            position: absolute;
            top: 10px;
            right: 10px;
            background: var(--primary-color);
            color: #000;
            padding: 4px 10px;
            border-radius: 15px;
            font-size: 0.7rem;
            font-weight: 600;
            z-index: 2;
        }
        
        .monthly-gem-thumb {
            width: 100%;
            height: 120px;
            object-fit: cover;
        }
        
        .monthly-gem-placeholder {
            width: 100%;
            height: 120px;
            background: linear-gradient(135deg, rgba(212,175,55,0.1) 0%, rgba(166,124,82,0.1) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--primary-color);
        }
        
        .monthly-gem-info {
            padding: 15px;
            flex-grow: 1;
        }
        
        .monthly-gem-info h6 {
            color: var(--text-primary);
            font-weight: 600;
        }
        
        /* Touch device improvements */
        @media (hover: none) {
            .product-card:hover {
                transform: none;
            }
            
            .category-card:hover {
                transform: none;
            }
            
            .category-card:hover .category-image {
                transform: none;
            }
            
            .nav-link::after {
                display: none;
            }
            
            /* Increase touch target sizes */
            .nav-link {
                padding: 12px 15px;
            }
            
            .dropdown-item {
                padding: 12px 15px;
            }
            
            .btn {
                min-height: 44px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
            }
            
            .form-check-label {
                padding-left: 8px;
            }
            
            .form-check-input {
                width: 20px;
                height: 20px;
            }
        }
        
        /* ============================================
           ADVANCED MOBILE APP-LIKE RESPONSIVE DESIGN
           ============================================ */
        
        /* Mobile-First Base Styles */
        @media (max-width: 991.98px) {
            /* Prevent horizontal scroll */
            html, body {
                overflow-x: hidden;
                width: 100%;
            }
            
            /* Enhanced mobile typography */
            body {
                font-size: 16px;
                line-height: 1.6;
                -webkit-font-smoothing: antialiased;
                -moz-osx-font-smoothing: grayscale;
            }
            
            h1 { font-size: 2rem; line-height: 1.2; }
            h2 { font-size: 1.75rem; line-height: 1.3; }
            h3 { font-size: 1.5rem; line-height: 1.4; }
            h4 { font-size: 1.25rem; }
            h5 { font-size: 1.1rem; }
            h6 { font-size: 1rem; }
            
            /* Better container padding */
            .container {
                padding-left: 16px;
                padding-right: 16px;
            }
            
            /* Enhanced touch targets (Material Design standard) */
            .btn, .nav-link, .category-nav-link, 
            .product-card, .category-card {
                min-height: 48px;
                min-width: 48px;
            }
            
            /* Smooth scrolling */
            * {
                -webkit-overflow-scrolling: touch;
            }
            
            /* Better section spacing */
            section {
                padding: 40px 0;
                scroll-margin-top: 20px;
            }
            
            .section-title {
                font-size: 1.75rem;
                margin-bottom: 24px;
                text-align: center;
            }
        }
        
        /* Bottom Navigation Bar (Android Material Design) */
        .mobile-bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: #ffffff;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
            display: none;
            z-index: 1000;
            border-top: 1px solid rgba(212, 175, 55, 0.2);
            padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
        }
        
        @media (max-width: 991.98px) {
            .mobile-bottom-nav {
                display: flex;
                justify-content: space-around;
                align-items: center;
            }
            
            body {
                padding-bottom: 70px;
            }
            
            footer {
                margin-bottom: 70px;
            }
        }
        
        .mobile-bottom-nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 8px 12px;
            text-decoration: none;
            color: #757575;
            font-size: 11px;
            font-weight: 500;
            transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            min-width: 64px;
            border-radius: 16px;
            -webkit-tap-highlight-color: transparent;
            flex: 1;
        }
        
        .mobile-bottom-nav-item i {
            font-size: 24px;
            margin-bottom: 4px;
            transition: all 0.2s ease;
        }
        
        .mobile-bottom-nav-item span {
            font-size: 10px;
            line-height: 1.2;
            text-align: center;
            white-space: nowrap;
        }
        
        .mobile-bottom-nav-item.active {
            color: var(--primary-color);
        }
        
        .mobile-bottom-nav-item.active i {
            transform: scale(1.1);
            color: var(--primary-color);
        }
        
        .mobile-bottom-nav-item:active {
            transform: scale(0.95);
            background: rgba(212, 175, 55, 0.1);
        }
        
        /* Ripple effect for bottom nav */
        .mobile-bottom-nav-item::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(212, 175, 55, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.4s, height 0.4s;
            pointer-events: none;
        }
        
        .mobile-bottom-nav-item:active::before {
            width: 80px;
            height: 80px;
        }
        
        .mobile-bottom-nav-badge {
            position: absolute;
            top: 4px;
            right: 8px;
            background: #f44336;
            color: white;
            border-radius: 10px;
            min-width: 18px;
            height: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            font-weight: bold;
            padding: 0 4px;
            border: 2px solid white;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        
        /* Mobile Navigation Drawer */
        .mobile-nav-drawer {
            position: fixed;
            top: 0;
            left: -100%;
            width: 85%;
            max-width: 320px;
            height: 100%;
            background: #ffffff;
            z-index: 1050;
            transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 2px 0 20px rgba(0, 0, 0, 0.15);
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
            display: flex;
            flex-direction: column;
        }
        
        .mobile-nav-drawer.show {
            left: 0;
        }
        
        .mobile-nav-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1040;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
        }
        
        .mobile-nav-overlay.show {
            opacity: 1;
            visibility: visible;
        }
        
        .mobile-nav-header {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }
        
        .mobile-nav-header .logo {
            height: 40px;
        }
        
        .mobile-nav-close {
            background: rgba(0, 0, 0, 0.1);
            border: none;
            color: #000;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        
        .mobile-nav-close:active {
            transform: scale(0.9);
            background: rgba(0, 0, 0, 0.2);
        }
        
        .mobile-nav-search {
            padding: 16px;
            border-bottom: 1px solid #e5e5e5;
        }
        
        .mobile-nav-search .form-control {
            border-radius: 24px;
            padding: 12px 20px;
            font-size: 16px;
            border: 2px solid #e5e5e5;
        }
        
        .mobile-nav-search .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
        }
        
        .mobile-nav-body {
            flex: 1;
            overflow-y: auto;
            padding: 8px 0;
        }
        
        .mobile-nav-item {
            display: flex;
            align-items: center;
            padding: 16px 20px;
            color: #333;
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            border-bottom: 1px solid #f0f0f0;
            transition: all 0.2s ease;
            -webkit-tap-highlight-color: transparent;
        }
        
        .mobile-nav-item:active {
            background: rgba(212, 175, 55, 0.1);
        }
        
        .mobile-nav-item.active {
            background: rgba(212, 175, 55, 0.1);
            color: var(--primary-color);
            border-left: 4px solid var(--primary-color);
            padding-left: 16px;
        }
        
        .mobile-nav-item i {
            width: 24px;
            margin-right: 16px;
            color: var(--primary-color);
            font-size: 20px;
        }
        
        .mobile-nav-item.has-submenu::after {
            content: '105';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            margin-left: auto;
            color: #999;
            transition: transform 0.2s ease;
        }
        
        .mobile-nav-item.has-submenu.open::after {
            transform: rotate(90deg);
        }
        
        .mobile-nav-submenu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background: #f8f9fa;
        }
        
        .mobile-nav-submenu.show {
            max-height: 1000px;
        }
        
        .mobile-nav-submenu-item {
            display: block;
            padding: 12px 20px 12px 60px;
            color: #666;
            text-decoration: none;
            font-size: 15px;
            border-bottom: 1px solid #e5e5e5;
            transition: all 0.2s ease;
        }
        
        .mobile-nav-submenu-item:active {
            background: rgba(212, 175, 55, 0.1);
            color: var(--primary-color);
        }
        
        .mobile-nav-footer {
            padding: 20px;
            border-top: 1px solid #e5e5e5;
            background: #f8f9fa;
        }
        
        .mobile-nav-footer .btn {
            width: 100%;
            margin-bottom: 10px;
            border-radius: 24px;
            padding: 12px;
            font-weight: 600;
        }
        
        /* Material Design Cards for Mobile */
        @media (max-width: 991.98px) {
            .product-card,
            .category-card,
            .testimonial-card {
                border-radius: 16px;
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
                transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                border: none;
            }
            
            .product-card:active,
            .category-card:active {
                transform: scale(0.97);
                box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
            }
            
            .product-card img,
            .category-card img {
                border-radius: 16px 16px 0 0;
            }
            
            .product-card .card-body {
                padding: 16px;
            }
            
            .product-card .card-title {
                font-size: 16px;
                font-weight: 600;
                margin-bottom: 8px;
                line-height: 1.4;
            }
            
            .product-card .card-text {
                font-size: 14px;
                color: #666;
                margin-bottom: 12px;
            }
            
            .product-card img {
                height: 240px;
                object-fit: cover;
            }
            
            .category-card {
                border-radius: 16px;
            }
            
            .category-image {
                height: 200px;
            }
            
            .category-name {
                font-size: 16px;
                padding: 16px;
                font-weight: 600;
            }
        }
        
        /* Material Design Buttons for Mobile */
        @media (max-width: 991.98px) {
            .btn {
                border-radius: 24px;
                padding: 12px 24px;
                font-weight: 600;
                text-transform: none;
                letter-spacing: 0.5px;
                box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
                transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            }
            
            .btn:active {
                transform: scale(0.96);
                box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
            }
            
            .btn-primary {
                background: linear-gradient(135deg, var(--primary-color) 0%, var(--luxury-gold) 100%);
                border: none;
                box-shadow: 0 4px 8px rgba(212, 175, 55, 0.3);
            }
            
            .btn-primary:active {
                box-shadow: 0 2px 4px rgba(212, 175, 55, 0.2);
            }
        }
        
        /* Material Design Inputs for Mobile */
        @media (max-width: 991.98px) {
            .form-control,
            .form-select {
                font-size: 16px;
                padding: 12px 16px;
                border-radius: 8px;
                border: 2px solid #e0e0e0;
                transition: all 0.2s ease;
            }
            
            .form-control:focus,
            .form-select:focus {
                border-color: var(--primary-color);
                box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
                outline: none;
            }
        }
        
        /* Enhanced Mobile Hero Section */
        @media (max-width: 991.98px) {
            .hero-section {
                height: 60vh;
                min-height: 400px;
            }
            
            .hero-title {
                font-size: 2rem;
                line-height: 1.2;
                margin-bottom: 16px;
            }
            
            .hero-subtitle {
                font-size: 1rem;
                line-height: 1.4;
                margin-bottom: 24px;
            }
            
            .hero-buttons {
                flex-direction: column;
                gap: 12px;
                width: 100%;
            }
            
            .hero-buttons .btn {
                width: 100%;
                max-width: 100%;
            }
        }
        
        /* Enhanced Mobile Category Grid */
        @media (max-width: 991.98px) {
            .category-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
        }
        
        @media (max-width: 576px) {
            .category-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
        }
        
        /* Enhanced Mobile Navbar */
        @media (max-width: 991.98px) {
            .navbar-modern {
                padding: 0.5rem 0;
            }
            
            .navbar-modern .navbar-brand img {
                height: 35px;
            }
            
            .navbar-modern .navbar-collapse {
                background: #ffffff;
                padding: 1rem;
                border-top: 1px solid rgba(212, 175, 55, 0.2);
                margin-top: 10px;
                border-radius: 8px;
                box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            }
            
            .navbar-modern .nav-item {
                margin: 5px 0;
                width: 100%;
            }
            
            .navbar-modern .nav-link {
                width: 100%;
                text-align: left;
                padding: 12px 16px;
                border-radius: 6px;
            }
            
            .navbar-modern .dropdown-menu {
                position: static !important;
                float: none;
                width: 100%;
                margin-top: 0;
                background: rgba(250, 249, 246, 0.95);
                border: 1px solid rgba(212, 175, 55, 0.2);
                box-shadow: none;
                border-radius: 6px;
                margin-left: 15px;
            }
        }
        
        /* Prevent body scroll when drawer is open */
        body.drawer-open {
            overflow: hidden;
            position: fixed;
            width: 100%;
        }
        
        /* Safe area support for notched devices */
        @supports (padding: max(0px)) {
            .mobile-bottom-nav {
                padding-left: max(0px, env(safe-area-inset-left));
                padding-right: max(0px, env(safe-area-inset-right));
                padding-bottom: max(8px, env(safe-area-inset-bottom));
            }
        }
        
        /* Hide social media icons on mobile */
        @media (max-width: 991.98px) {
            footer .social-icons {
                display: none !important;
            }
        }
        
        /* Enhanced Mobile Search */
        @media (max-width: 991.98px) {
            .mobile-search-overlay {
                padding: 80px 20px 20px;
            }
            
            .mobile-search-container {
                max-width: 100%;
            }
            
            .mobile-search-container .form-control {
                font-size: 18px;
                padding: 15px 20px;
                border-radius: 50px 0 0 50px;
            }
        }
        
        /* Material Design Ripple Effect */
        .ripple {
            position: relative;
            overflow: hidden;
        }
        
        .ripple::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
            pointer-events: none;
        }
        
        .ripple:active::after {
            width: 300px;
            height: 300px;
        }
        
        /* Enhanced Mobile Product Grid */
        @media (max-width: 991.98px) {
            .row.g-4 > [class*="col-"] {
                margin-bottom: 20px;
            }
        }
        
        /* Better Mobile Images */
        @media (max-width: 991.98px) {
            img {
                max-width: 100%;
                height: auto;
                display: block;
            }
        }
