/*<style>*/
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-black: #000000;
            --secondary-gold: #d4af37;
            --accent-gold: #ffd700;
            --light-gray: #f8f9fa;
            --medium-gray: #6c757d;
            --dark-gray: #343a40;
            --white: #ffffff;
            --border-color: #dee2e6;
            --shadow: 0 2px 10px rgba(0,0,0,0.1);
            --shadow-hover: 0 4px 20px rgba(0,0,0,0.15);
            --sunglasses-color: #000000;
            --spectacles-color: #d4af37;
        }
        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--primary-black);
            background: var(--white);
        }
        /* Top Announcement Bar */
        .top-bar {
            background: white;
            color: black;
            text-align: center;
            padding: 0.75rem;
            font-size: 0.85rem;
        }
        /* Modern Navbar */
        .navbar {
            background: var(--primary-black);
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: var(--shadow);
        }
        .navbar-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 70px;
        }
        /* Logo */
        .navbar-logo {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: var(--white);
        }
        .logo-image {
            height: 70px;
            width: auto;
            max-width: 150px;
            object-fit: contain;
            display: block;
        }
        /* Product Dropdown Styles - Always visible */
        .product-dropdown {
            position: relative;
            display: inline-block;
        }
        .dropbtn {
            background: transparent;
            color: var(--white);
            padding: 0.8rem 1.2rem;
            font-size: 0.95rem;
            font-weight: 500;
            border: none;
            cursor: pointer;
            transition: color 0.2s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .dropbtn:hover {
            color: var(--secondary-gold);
        }
        .dropdown-content {
            display: none;
            position: absolute;
            background: var(--white);
            min-width: 300px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
            border-radius: 12px;
            z-index: 1001;
            top: 100%;
            left: 0;
            overflow: hidden;
        }
        .dropdown-content.show {
            display: block;
        }
        .dropdown-category {
            padding: 1rem;
            border-bottom: 1px solid var(--border-color);
        }
        .dropdown-category:last-child {
            border-bottom: none;
        }
        .dropdown-category h4 {
            color: var(--primary-black);
            margin-bottom: 0.75rem;
            font-size: 0.9rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .dropdown-category h4 i {
            color: var(--secondary-gold);
        }
        .dropdown-models {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .dropdown-model {
            background: var(--light-gray);
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            text-decoration: none;
            color: var(--dark-gray);
            transition: all 0.2s ease;
            display: inline-block;
        }
        .dropdown-model:hover {
            background: var(--secondary-gold);
            color: var(--white);
        }
        /* Main Navigation */
        .navbar-nav {
            display: flex;
            list-style: none;
            gap: 2rem;
            margin-left: 2rem;
        }
        .navbar-nav a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.5rem 0;
            transition: color 0.2s ease;
            position: relative;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .navbar-nav a:hover {
            color: var(--secondary-gold);
        }
        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 0.5rem;
            background: transparent;
            border: none;
        }
        .mobile-menu-btn span {
            width: 25px;
            height: 2px;
            background: var(--white);
            margin: 3px 0;
            transition: all 0.3s ease;
        }
        .mobile-menu-btn.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
        }
        .mobile-menu-btn.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }
        /* Mobile Menu */
        .mobile-menu {
            display: block;
            position: fixed;
            top: 0;
            right: -100%;
            width: 320px;
            height: 100vh;
            background: var(--white);
            box-shadow: -5px 0 20px rgba(0,0,0,0.1);
            transition: right 0.3s ease;
            z-index: 1000;
        }
        .mobile-menu.active {
            right: 0;
        }
        .mobile-menu-header {
            padding: 1rem;
            border-bottom: 1px solid var(--border-color);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .mobile-menu-logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--primary-black);
        }
        .mobile-menu-close {
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--medium-gray);
            padding: 0.5rem;
            background: none;
            border: none;
        }
        .mobile-menu-nav {
            padding: 2rem;
        }
        .mobile-menu-nav a {
            display: block;
            color: var(--primary-black);
            text-decoration: none;
            font-weight: 500;
            padding: 0.8rem 0;
            border-bottom: 1px solid var(--light-gray);
            transition: color 0.2s ease;
        }
        .mobile-menu-nav a:hover {
            color: var(--secondary-gold);
        }
        .mobile-menu-filters {
            padding: 2rem;
            border-top: 1px solid var(--border-color);
        }
        .mobile-menu-filters h4 {
            color: var(--primary-black);
            margin-bottom: 1rem;
            font-size: 1rem;
        }
        .mobile-filter-btn {
            display: block;
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 0.5rem;
            border: 1px solid var(--border-color);
            background: var(--white);
            color: var(--primary-black);
            font-size: 0.9rem;
            font-weight: 500;
            cursor: pointer;
            border-radius: 6px;
            transition: all 0.2s ease;
            text-align: left;
        }
        .mobile-filter-btn:hover {
            border-color: var(--secondary-gold);
            background: var(--light-gray);
        }
        .mobile-filter-btn.active {
            background: var(--primary-black);
            color: var(--white);
            border-color: var(--primary-black);
        }
        .mobile-menu-actions {
            padding: 2rem;
            border-top: 1px solid var(--border-color);
        }
        .mobile-menu-actions a {
            display: flex;
            align-items: center;
            gap: 1rem;
            color: var(--primary-black);
            text-decoration: none;
            font-weight: 500;
            padding: 0.8rem 0;
        }
        .mobile-menu-actions a:hover {
            color: var(--secondary-gold);
        }
        .mobile-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0,0,0,0.5);
            z-index: 999;
        }
        .mobile-overlay.active {
            display: block;
        }
        /* Hero Section */
        .hero {
            height: 80vh;
            min-height: 500px;
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('https://res.cloudinary.com/duo3nkqgb/image/upload/v1771362496/glamorous-african-american-woman-warm-fur-coat-eyeglasses-pose-street_eagbtg.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            position: relative;
        }
        .hero-content {
            max-width: 800px;
            padding: 2rem;
            position: relative;
            z-index: 2;
            animation: fadeInUp 1s ease;
        }
        .hero-tag {
            font-size: 1rem;
            font-weight: 500;
            color: var(--secondary-gold);
            letter-spacing: 3px;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
        }
        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            font-weight: 400;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: var(--white);
        }
        .hero-subtitle {
            font-size: 1.1rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
            font-weight: 400;
        }
        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        .hero-btn {
            padding: 1rem 2rem;
            border: 2px solid var(--secondary-gold);
            background: var(--secondary-gold);
            color: var(--primary-black);
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            border-radius: 6px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .hero-btn:hover {
            background: transparent;
            color: var(--secondary-gold);
            transform: translateY(-2px);
        }
        .hero-btn-secondary {
            background: transparent;
            color: var(--white);
            border-color: var(--white);
        }
        .hero-btn-secondary:hover {
            background: var(--white);
            color: var(--primary-black);
        }
        .hero-scroll {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            color: var(--white);
            font-size: 0.9rem;
            animation: bounce 2s infinite;
        }
        /* Trust Badges */
        .trust-badges {
            background: var(--light-gray);
            padding: 3rem 2rem;
        }
        .trust-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }
        .trust-badge {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            padding: 2rem;
            text-align: center;
            transition: transform 0.2s ease;
        }
        .trust-badge:hover {
            transform: translateY(-5px);
        }
        .trust-icon {
            font-size: 2.5rem;
            color: var(--secondary-gold);
        }
        .trust-text {
            font-size: 1rem;
            font-weight: 600;
            color: var(--primary-black);
        }
        .trust-desc {
            font-size: 0.85rem;
            color: var(--medium-gray);
        }
        /* Main Content */
        main {
            max-width: 1400px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }
        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 400;
            text-align: center;
            margin-bottom: 1rem;
            color: var(--primary-black);
        }
        .section-subtitle {
            text-align: center;
            color: var(--medium-gray);
            font-size: 1.1rem;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        /* Category Tabs */
        .category-tabs {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin: 2rem 0 1rem;
            padding: 0 1rem;
        }
        .category-tab {
            padding: 1rem 3rem;
            font-size: 1.2rem;
            font-weight: 600;
            border: none;
            background: var(--light-gray);
            color: var(--dark-gray);
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 8px;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: var(--shadow);
        }
        .category-tab:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
        }
        .category-tab.active {
            background: var(--primary-black);
            color: var(--white);
            border-bottom: 3px solid var(--secondary-gold);
        }
        /* Category Sections */
        .category-section {
            display: none;
            padding: 2rem 0;
        }
        .category-section.active {
            display: block;
        }
        .category-header {
            text-align: center;
            margin-bottom: 2rem;
        }
        .category-title {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 600;
            color: var(--primary-black);
            margin-bottom: 0.5rem;
        }
        .category-description {
            color: var(--medium-gray);
            font-size: 1rem;
            max-width: 600px;
            margin: 0 auto;
        }
        /* Filter Status */
        .filter-status {
            text-align: center;
            margin-bottom: 2rem;
            padding: 1rem;
            background: var(--light-gray);
            border-radius: 8px;
            border-left: 4px solid var(--secondary-gold);
        }
        .filter-status.hidden {
            display: none;
        }
        /* Products Grid */
        .products {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 1rem;
            margin-bottom: 2rem;
        }
        .product {
            background: var(--white);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s ease;
            cursor: pointer;
            height: fit-content;
        }
        .product:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
            border-color: var(--secondary-gold);
        }
        .product-image-container {
            position: relative;
            background: var(--white);
            overflow: hidden;
        }
        .main-image {
            width: 100%;
            height: 160px;
            object-fit: contain;
            transition: transform 0.3s ease;
            background: var(--white);
        }
        .product:hover .main-image {
            transform: scale(1.05);
        }
        .product-badge {
            position: absolute;
            top: 0.5rem;
            left: 0.5rem;
            background: var(--accent-gold);
            color: var(--primary-black);
            padding: 0.2rem 0.5rem;
            border-radius: 10px;
            font-size: 0.65rem;
            font-weight: 600;
        }
        .product-category-badge {
            position: absolute;
            top: 0.5rem;
            right: 0.5rem;
            padding: 0.2rem 0.5rem;
            border-radius: 10px;
            font-size: 0.65rem;
            font-weight: 600;
            background: var(--primary-black);
            color: var(--white);
        }
        .product-category-badge.spectacles {
            background: var(--spectacles-color);
            color: var(--primary-black);
        }
        .product-info {
            padding: 0.8rem;
        }
        .product-collection {
            font-size: 0.7rem;
            color: var(--secondary-gold);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.2rem;
            font-weight: 600;
        }
        .product-title {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--primary-black);
            margin-bottom: 0.3rem;
            line-height: 1.2;
            height: 2rem;
            overflow: hidden;
        }
        .product-description {
            font-size: 0.75rem;
            color: var(--medium-gray);
            margin-bottom: 0.4rem;
            line-height: 1.2;
            height: 1rem;
            overflow: hidden;
            font-style: italic;
        }
        .product-payment {
            font-size: 0.7rem;
            color: var(--medium-gray);
            margin-bottom: 0.6rem;
        }
        .mpesa-text {
            color: var(--primary-black);
            font-weight: 600;
        }
        .product-actions {
            display: flex;
            gap: 0.4rem;
        }
        .btn {
            padding: 0.4rem 0.6rem;
            border: 1px solid var(--primary-black);
            background: var(--primary-black);
            color: var(--white);
            font-size: 0.7rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            flex: 1;
            text-align: center;
            border-radius: 4px;
            text-transform: uppercase;
        }
        .btn:hover {
            background: transparent;
            color: var(--primary-black);
        }
        .stock-badge {
            display: inline-block;
            padding: 0.2rem 0.5rem;
            border-radius: 20px;
            font-size: 0.65rem;
            font-weight: 600;
            margin-top: 0.3rem;
        }
        .stock-badge.in-stock {
            background: #d4edda;
            color: #155724;
        }
        .stock-badge.out-of-stock {
            background: #f8d7da;
            color: #721c24;
        }
        .btn-buy {
            background: var(--primary-black);
            color: var(--white);
        }
        .btn-buy:hover {
            background: var(--secondary-gold);
            color: var(--primary-black);
        }
        .btn-view {
            background: var(--medium-gray);
            color: var(--white);
        }
        .btn-view:hover {
            background: var(--secondary-gold);
            color: var(--primary-black);
        }
        .product.hidden {
            display: none;
        }
        .view-more-container {
            text-align: center;
            margin: 2rem 0 3rem;
        }
        .view-more-btn {
            padding: 1rem 2rem;
            background: var(--primary-black);
            color: var(--white);
            border: 2px solid var(--primary-black);
            border-radius: 6px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .view-more-btn:hover {
            background: transparent;
            color: var(--primary-black);
        }
        /* WhatsApp Float */
        .whatsapp-float {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 60px;
            height: 60px;
            background: #25d366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 999;
            animation: pulse 2s infinite;
        }
        .whatsapp-float:hover {
            transform: scale(1.1);
        }
        .whatsapp-icon {
            font-size: 1.8rem;
            color: white;
        }
        .whatsapp-popup {
            position: fixed;
            bottom: 100px;
            right: 2rem;
            width: 300px;
            background: var(--white);
            border-radius: 12px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.15);
            z-index: 1000;
            transform: translateY(20px) scale(0.95);
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid var(--border-color);
        }
        .whatsapp-popup.show {
            transform: translateY(0) scale(1);
            opacity: 1;
            visibility: visible;
        }
        .whatsapp-popup-header {
            background: linear-gradient(135deg, #25d366, #128c7e);
            color: white;
            padding: 1rem;
            border-radius: 12px 12px 0 0;
            position: relative;
        }
        .whatsapp-popup-close {
            position: absolute;
            top: 0.5rem;
            right: 0.75rem;
            background: none;
            border: none;
            color: white;
            font-size: 1.1rem;
            cursor: pointer;
        }
        .whatsapp-popup-profile {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        .whatsapp-popup-avatar {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.3);
            object-fit: cover;
        }
        .whatsapp-popup-info h3 {
            font-size: 1rem;
            margin-bottom: 0.1rem;
        }
        .whatsapp-popup-info p {
            font-size: 0.8rem;
            opacity: 0.9;
        }
        .whatsapp-popup-body {
            padding: 1.25rem;
        }
        .whatsapp-popup-message {
            font-size: 0.9rem;
            line-height: 1.5;
            color: var(--dark-gray);
            margin-bottom: 1rem;
        }
        .whatsapp-popup-cta {
            background: #25d366;
            color: white;
            border: none;
            padding: 0.75rem 1.25rem;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }
        /* Payment Methods */
        .payment-methods {
            background: var(--light-gray);
            padding: 3rem 2rem;
            text-align: center;
        }
        .payment-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 500;
            color: var(--primary-black);
            margin-bottom: 2rem;
        }
        .payment-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 1.5rem;
            max-width: 800px;
            margin: 0 auto;
        }
        .payment-option {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.8rem;
            padding: 1.5rem 1rem;
            background: var(--white);
            border: 2px solid var(--border-color);
            border-radius: 10px;
            transition: all 0.3s ease;
        }
        .payment-option:hover {
            border-color: var(--secondary-gold);
            transform: translateY(-3px);
        }
        .payment-icon {
            font-size: 2rem;
            color: var(--secondary-gold);
        }
        .payment-text {
            font-weight: 600;
            color: var(--primary-black);
            font-size: 0.9rem;
        }
        /* Modal */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.95);
        }
        .modal-content {
            background-color: var(--white);
            margin: 0;
            padding: 0;
            width: 100%;
            height: 100%;
            overflow-y: auto;
            position: relative;
            display: flex;
            flex-direction: column;
        }
        .modal-header {
            padding: 2rem 3rem;
            border-bottom: 2px solid var(--border-color);
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: var(--white);
            position: sticky;
            top: 0;
            z-index: 10;
        }
        .modal-title {
            /*font-family: 'Playfair Display', serif;*/
            font-family: 'Inter', sans-serif;
            font-size: 2rem;
            font-weight: 600;
            color: var(--primary-black);
        }
        .close {
            color: var(--medium-gray);
            font-size: 2rem;
            cursor: pointer;
            padding: 0.5rem;
            transition: all 0.3s ease;
        }
        .close:hover {
            color: var(--primary-black);
        }
        .modal-body {
            padding: 3rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: start;
        }
        .gallery-container {
            position: relative;
        }
        .main-gallery-image {
            width: 100%;
            height: 400px;
            object-fit: contain;
            border-radius: 12px;
            border: 2px solid var(--border-color);
            margin-bottom: 1rem;
        }
        .gallery-thumbnails {
            display: flex;
            gap: 1rem;
            overflow-x: auto;
            padding: 0.5rem 0;
        }
        .gallery-thumbnail {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 8px;
            border: 2px solid var(--border-color);
            cursor: pointer;
            opacity: 0.7;
        }
        .gallery-thumbnail.active {
            opacity: 1;
            border-color: var(--secondary-gold);
        }
        .gallery-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.8);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            z-index: 10;
        }
        .gallery-nav:hover {
            background: rgba(255, 255, 255, 1);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        .gallery-nav.prev {
            left: 15px;
        }
        .gallery-nav.next {
            right: 15px;
        }
        .gallery-nav i {
            color: var(--primary-black);
            font-size: 1.2rem;
        }
        .modal-info {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .modal-description {
            background: var(--light-gray);
            padding: 2rem;
            border-radius: 12px;
            border-left: 4px solid var(--secondary-gold);
        }
        .modal-description h3 {
            margin-bottom: 1rem;
        }
        .modal-pricing {
            background: var(--white);
            padding: 2rem;
            border-radius: 12px;
            border: 2px solid var(--border-color);
            text-align: center;
        }
        .modal-payment {
            margin: 1rem 0;
            padding: 1rem;
            background: var(--light-gray);
            border-radius: 8px;
        }
        .modal-actions {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }
        /* Footer */
        footer {
            background: var(--primary-black);
            color: var(--white);
            padding: 3rem 2rem 2rem;
            margin-top: 4rem;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            margin-bottom: 2rem;
        }
        .footer-section h3 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--secondary-gold);
        }
        .footer-section p, .footer-section a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            line-height: 1.8;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .footer-section a:hover {
            color: var(--secondary-gold);
        }
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.2);
        }
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            40% {
                transform: translateX(-50%) translateY(-10px);
            }
            60% {
                transform: translateX(-50%) translateY(-5px);
            }
        }
        @keyframes pulse {
            0% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
            50% { box-shadow: 0 4px 20px rgba(37,211,102,0.8); }
            100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
        }
        /* Responsive */
        @media (max-width: 1024px) {
            .navbar-nav {
                display: none;
            }
            .product-dropdown {
                display: block;
            }
            .mobile-menu-btn {
                display: flex;
            }
            .hero-title {
                font-size: 2.5rem;
            }
        }
        @media (max-width: 768px) {
            .navbar-container {
                padding: 0 1rem;
            }
            .logo-image {
                height: 50px;
            }
            .hero {
                height: 70vh;
                min-height: 400px;
                background-attachment: scroll;
            }
            .hero-title {
                font-size: 1.8rem;
            }
            .hero-subtitle {
                font-size: 0.9rem;
            }
            .hero-btn {
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
            }
            .trust-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }
            .category-tabs {
                flex-direction: column;
                align-items: center;
                gap: 0.5rem;
            }
            .category-tab {
                width: 100%;
                max-width: 280px;
                padding: 0.8rem 1rem;
                font-size: 1rem;
            }
            .products {
                grid-template-columns: 1fr;
            }
            .modal-body {
                grid-template-columns: 1fr;
                padding: 1rem;
            }
            .main-gallery-image {
                height: 300px;
            }
            .footer-content {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .whatsapp-popup {
                width: 280px;
                right: 1rem;
                bottom: 80px;
            }
            .whatsapp-float {
                width: 50px;
                height: 50px;
                bottom: 1rem;
                right: 1rem;
            }
        }
        @media (max-width: 480px) {
            .hero-title {
                font-size: 1.5rem;
            }
            .trust-container {
                grid-template-columns: 1fr;
            }
            .payment-options {
                grid-template-columns: 1fr;
            }
        }

        /* Seller Popup Styles */
        .seller-popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.85);
            z-index: 2000;
            display: flex;
            align-items: center;
            justify-content: center;
            visibility: hidden;
            opacity: 0;
            transition: all 0.3s ease;
        }
        .seller-popup-overlay.active {
            visibility: visible;
            opacity: 1;
        }
        .seller-popup {
            background: var(--white);
            max-width: 500px;
            width: 90%;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0,0,0,0.3);
            transform: scale(0.9);
            transition: transform 0.3s cubic-bezier(0.34, 1.2, 0.64, 1);
        }
        .seller-popup-overlay.active .seller-popup {
            transform: scale(1);
        }
        .seller-popup-header {
            background: linear-gradient(135deg, var(--primary-black) 0%, #1a1a1a 100%);
            padding: 1.5rem;
            text-align: center;
            color: var(--secondary-gold);
            position: relative;
        }
        .seller-popup-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
            opacity: 0.7;
            transition: opacity 0.2s;
        }
        .seller-popup-close:hover { opacity: 1; }
        .seller-popup-header i {
            font-size: 3rem;
            margin-bottom: 0.5rem;
        }
        .seller-popup-header h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            margin-top: 0.5rem;
        }
        .seller-popup-body {
            padding: 2rem;
            text-align: center;
        }
        .seller-popup-body p {
            color: var(--dark-gray);
            margin-bottom: 1.5rem;
            line-height: 1.5;
        }
        .seller-badge-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            justify-content: center;
            margin: 1.5rem 0;
        }
        .seller-badge {
            background: var(--light-gray);
            padding: 0.4rem 1rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 500;
            color: var(--primary-black);
        }
        .seller-badge i {
            color: var(--secondary-gold);
            margin-right: 0.4rem;
        }
        .seller-popup-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            background: var(--secondary-gold);
            color: var(--primary-black);
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.3s;
            margin-top: 0.5rem;
            border: none;
            cursor: pointer;
        }
        .seller-popup-btn:hover {
            background: #ffd966;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(212,175,55,0.3);
        }
        .reminder-text {
            font-size: 0.75rem;
            color: var(--medium-gray);
            margin-top: 1rem;
        }
    /*</style>*/