 /* CSS Reset and Base Styles */
        :root {
            --primary-red: #991b1b;
            --primary-yellow: #d97706;
            --light-red: #fef2f2;
            --light-yellow: #fefce8;
            --dark-red: #7f1d1d;
            --dark-yellow: #b45309;
        }
        
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        body, html {
            overflow-x: hidden;
            font-family: 'Inter', sans-serif;
            background-color: #ffffff;
            scroll-behavior: smooth;
        }

        .font-serif {
            font-family: 'Playfair Display', serif;
        }

        /* Enhanced Responsive Design */
        @media (max-width: 475px) {
            .container-padding {
                padding-left: 0.75rem;
                padding-right: 0.75rem;
            }
        }

        /* Featured Swiper - Super Responsive */
        .featured-swiper-container {
            width: 100%;
            position: relative;
            border-radius: 0.75rem;
            overflow: hidden;
            margin: 0 auto;
        }

        .featured-swiper {
            width: 100%;
            height: 250px;
        }

        @media (min-width: 375px) {
            .featured-swiper {
                height: 280px;
            }
        }

        @media (min-width: 640px) {
            .featured-swiper {
                height: 350px;
            }
        }

        @media (min-width: 768px) {
            .featured-swiper {
                height: 400px;
            }
        }

        @media (min-width: 1024px) {
            .featured-swiper {
                height: 500px;
            }
        }

        .featured-swiper .swiper-slide {
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fef2f2;
        }

        .featured-swiper .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
            border-radius: 0.75rem;
            transition: transform 0.3s ease;
        }

        /* Enhanced Card Hover Effects */
        .card-hover {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .card-hover:hover {
            box-shadow: 0 20px 40px rgba(153, 27, 27, 0.15);
            transform: translateY(-8px);
        }

        /* Professional Navigation */
        .main-nav {
            background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
            box-shadow: 0 4px 20px rgba(153, 27, 27, 0.3);
        }

        /* Enhanced Buttons */
        .btn-primary {
            background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
            color: white;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(153, 27, 27, 0.4);
        }

        .btn-secondary {
            background: var(--primary-yellow);
            color: var(--dark-red);
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: var(--dark-yellow);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(217, 119, 6, 0.3);
        }

        /* Professional Hero Section */
        .hero-gradient {
            background: linear-gradient(135deg, #ffffff 0%, #fef2f2 50%, #fefce8 100%);
        }

        /* Enhanced Product Grid */
        .product-grid {
            display: grid;
            gap: 1rem;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        }

        /* Loading States */
        .loading-skeleton {
            background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
            background-size: 200% 100%;
            animation: loading 1.5s infinite;
        }

        @keyframes loading {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }

        /* Enhanced Mobile Menu */
        .mobile-menu {
            transform: translateX(-100%);
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .mobile-menu.open {
            transform: translateX(0);
        }

        /* Professional Typography */
        .text-balance {
            text-wrap: balance;
        }

        /* Line clamp utilities */
        .line-clamp-1 {
            overflow: hidden;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 1;
        }

        .line-clamp-2 {
            overflow: hidden;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 2;
        }

        .line-clamp-3 {
            overflow: hidden;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 3;
        }

        /* Enhanced Swiper Navigation */
        .swiper-pagination-bullet-active {
            background-color: var(--primary-red) !important;
            transform: scale(1.2);
        }

        .swiper-button-next, 
        .swiper-button-prev {
            color: var(--primary-red) !important;
            background: rgba(255, 255, 255, 0.95);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
        }

        .swiper-button-next:hover, 
        .swiper-button-prev:hover {
            background: white;
            transform: scale(1.1);
        }

        .swiper-button-next:after, 
        .swiper-button-prev:after {
            font-size: 16px;
            font-weight: bold;
        }

        /* Hide navigation on mobile */
        @media (max-width: 768px) {
            .swiper-button-next, 
            .swiper-button-prev {
                display: none !important;
            }
        }

        /* Professional Badge */
        .badge-premium {
            background: linear-gradient(135deg, var(--light-red), var(--dark-yellow));
            color: var(--dark-red);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* Enhanced Category Filter */
        .category-filter {
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .category-filter::-webkit-scrollbar {
            display: none;
        }

        /* Professional Stats */
        .stat-card {
            background: linear-gradient(135deg, #ffffff, #fef2f2);
            border: 1px solid #fecaca;
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 24px rgba(153, 27, 27, 0.1);
        }

        /* Remove text decoration from all links */
        a {
            text-decoration: none;
        }

        /* Touch-friendly button sizes */
        @media (max-width: 640px) {
            .touch-button {
                min-height: 44px;
                min-width: 44px;
            }
        }

        /* View Options Styles */
        .view-option-btn.active {
            background-color: var(--primary-yellow);
            color: white;
            box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
        }

        .products-container {
            position: relative;
            min-height: 300px;
        }

        .product-view {
            transition: opacity 0.3s ease-in-out;
        }

        .product-view.active-view {
            display: block;
            opacity: 1;
        }

        .product-view[data-view="grid"].active-view {
            display: grid;
        }

        .product-view[data-view="detailed"].active-view {
            display: grid;
        }

        .product-view.hidden {
            display: none;
            opacity: 0;
        }

        /* Mobile First Responsive Design */
        @media (max-width: 639px) {
            .product-view[data-view="grid"] {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 12px;
            }
            
            .product-view[data-view="detailed"] {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            
            /* Improve touch targets */
            a, button {
                min-height: 44px;
                display: flex;
                align-items: center;
                justify-content: center;
            }
        }

        @media (min-width: 640px) and (max-width: 767px) {
            .product-view[data-view="grid"] {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
            
            .product-view[data-view="detailed"] {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (min-width: 768px) and (max-width: 1023px) {
            .product-view[data-view="grid"] {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
            
            .product-view[data-view="detailed"] {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (min-width: 1024px) {
            .product-view[data-view="grid"] {
                grid-template-columns: repeat(4, minmax(0, 1fr));
            }
            
            .product-view[data-view="detailed"] {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
        }

        @media (min-width: 1280px) {
            .product-view[data-view="grid"] {
                grid-template-columns: repeat(5, minmax(0, 1fr));
            }
        }

        /* Reviews Animation */
        @media (min-width: 768px) {
            .reviews-track {
                animation: marqueeAnim 40s linear infinite;
            }

            @keyframes marqueeAnim {
                from { transform: translateX(0); }
                to { transform: translateX(-50%); }
            }
        }

        /* Updated Color Classes for #991b1b Theme */
        .text-red-800 {
            color: var(--primary-red);
        }

        .text-red-700 {
            color: var(--primary-red);
        }

        .text-red-600 {
            color: var(--primary-red);
        }

        .bg-red-700 {
            background-color: var(--primary-red);
        }

        .bg-red-800 {
            background-color: var(--dark-red);
        }

        .border-red-200 {
            border-color: #fecaca;
        }

        .border-red-300 {
            border-color: #fca5a5;
        }

        .bg-red-50 {
            background-color: var(--light-red);
        }

        .hover\:bg-red-800:hover {
            background-color: var(--dark-red);
        }

        .hover\:bg-red-50:hover {
            background-color: var(--light-red);
        }

        .text-yellow-500 {
            color: var(--primary-yellow);
        }

        .bg-yellow-500 {
            background-color: var(--primary-yellow);
        }

        .hover\:bg-yellow-600:hover {
            background-color: var(--dark-yellow);
        }

        /* Custom color overrides */
        .btn-secondary {
            background: var(--primary-yellow);
            color: #7f1d1d;
        }

        .btn-secondary:hover {
            background: var(--dark-yellow);
            color: #7f1d1d;
        }

        .badge-premium {
            background: linear-gradient(135deg, var(--primary-yellow), var(--dark-yellow));
            color: #7f1d1d;
        }