 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-behavior: smooth;
        }

        :root {
            --primary-red: #DC143C;
            --bright-red: #FF4444;
            --dark-gray: #2C3E50;
            --light-gray: #ECEFF1;
            --success-green: #28A745;
            --warning-orange: #FFA500;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark-gray);
            overflow-x: hidden;
        }

        /* Navbar */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            z-index: 1000;
            padding: 1rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Georgia', 'Garamond', serif;
            font-weight: 400;
            font-size: 3rem;
            color: var(--primary-red);
            position: relative;
            font-style: italic;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
            min-width: 350px;
            flex-shrink: 0;
        }

        .logo-letters {
            position: relative;
            display: flex;
            align-items: baseline;
        }

        .logo-s {
            position: relative;
            z-index: 1;
        }

        .logo-m {
            position: relative;
            margin-left: -16px;
            z-index: 2;
        }
        
        .brand-name {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-red);
        }
        
        .navbar-toggler {
            font-size: 1.5rem;
            color: var(--primary-red);
            cursor: pointer;
        }

        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            z-index: 1000;
            padding: 0.8rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark-gray);
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-red);
            transition: width 0.3s;
        }

        .nav-links a:hover {
            color: var(--primary-red);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .cart-icon {
            position: relative;
            font-size: 1.5rem;
            color: var(--primary-red);
            cursor: pointer;
        }

        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background: var(--bright-red);
            color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
        }

        /* Hero Section */
        .hero {
            margin-top: 80px;
            height: 90vh;
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
            url('assets/images/hero.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            position: relative;
        }

        .search-container {
            position: absolute;
            top: 20px;
            width: 500px;
            max-width: 90%;
        }

        .search-box {
            width: 100%;
            padding: 15px 50px 15px 20px;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            box-shadow: 0 5px 20px rgba(0,0,0,0.3);
        }

        .search-icon {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--primary-red);
            font-size: 1.2rem;
        }

        .hero-content h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
            animation: fadeInUp 1s ease-out;
        }

        .hero-content p {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            animation: fadeInUp 1.2s ease-out;
        }

        .cta-button {
            padding: 15px 40px;
            background: var(--primary-red);
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            animation: fadeInUp 1.4s ease-out;
            text-decoration: none;
            display: inline-block;
        }

        .cta-button:hover {
            background: var(--bright-red);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(220,20,60,0.4);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Section Styles */
        section {
            padding: 80px 5%;
            min-height: 100vh;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            color: var(--primary-red);
            margin-bottom: 3rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 100px;
            height: 4px;
            background: var(--primary-red);
            margin: 15px auto 0;
        }

        /* Categories Section */
        #categories {
            background: #f8f8f8;
        }

        .categories-container {
            display: grid;
            grid-template-columns: 250px 1fr;
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .filters-sidebar {
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            height: fit-content;
            sticky:top 100px;
        }

        .filter-section {
            margin-bottom: 25px;
        }

        .filter-section h3 {
            color: var(--primary-red);
            margin-bottom: 15px;
            font-size: 1.1rem;
        }

        .filter-option {
            display: flex;
            align-items: center;
            margin: 10px 0;
            cursor: pointer;
        }

        .filter-option input[type="checkbox"] {
            width: 18px;
            height: 18px;
            margin-right: 10px;
            cursor: pointer;
        }

        .price-inputs {
            display: flex;
            gap: 10px;
            margin-top: 10px;
        }

        .price-inputs input {
            width: 100%;
            padding: 8px;
            border: 1px solid var(--light-gray);
            border-radius: 5px;
        }

        .apply-filter-btn {
            width: 100%;
            padding: 10px;
            background: var(--primary-red);
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            margin-top: 10px;
        }

        .category-slideshow {
            position: relative;
            height: 400px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: inherit;
            z-index: 0;
        }

        .slide-content {
            position: relative;
            z-index: 2;
        }

        .slide.active {
            opacity: 1;
        }

        .slide-content {
            text-align: center;
            color: white;
            z-index: 2;
        }

        .slide-content h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
        }

        .slide::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4));
            z-index: 1;
        }

        /* Products Section */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .product-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s;
            cursor: pointer;
            position: relative;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(220,20,60,0.3);
        }

        .product-image {
            height: 250px;
            background: linear-gradient(135deg, var(--light-gray) 0%, #ddd 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            position: relative;
            overflow: hidden;
        }

        .product-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--primary-red);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }

        .product-info {
            padding: 20px;
        }

        .product-info h3 {
            color: var(--dark-gray);
            margin-bottom: 10px;
            font-size: 1.3rem;
        }

        .product-count {
            color: #888;
            font-size: 0.9rem;
        }

        /* Offers Section */
        #offers {
            background: linear-gradient(135deg, #fff5f5 0%, #ffe0e0 100%);
        }

        .offers-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .offers-header h2 {
            font-size: 3rem;
            color: var(--primary-red);
            margin-bottom: 1rem;
        }

        .offers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .offer-column {
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .offer-column h3 {
            color: var(--primary-red);
            font-size: 1.5rem;
            margin-bottom: 20px;
            text-align: center;
        }

        .offer-item {
            background: #f8f8f8;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 15px;
            position: relative;
        }

        .offer-item h4 {
            color: var(--dark-gray);
            margin-bottom: 10px;
        }

        .discount-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: var(--bright-red);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-weight: 600;
        }

        .countdown-timer {
            display: flex;
            gap: 10px;
            margin-top: 15px;
            justify-content: center;
        }

        .time-unit {
            text-align: center;
            background: var(--primary-red);
            color: white;
            padding: 10px;
            border-radius: 8px;
            min-width: 60px;
        }

        .time-unit .number {
            font-size: 1.5rem;
            font-weight: 700;
            display: block;
        }

        .time-unit .label {
            font-size: 0.75rem;
            display: block;
        }

        /* About Section */
        .about-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 50px;
            font-size: 1.2rem;
            color: #666;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .value-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            text-align: center;
            transition: transform 0.3s;
        }

        .value-card:hover {
            transform: translateY(-5px);
        }

        .value-icon {
            font-size: 3rem;
            color: var(--primary-red);
            margin-bottom: 20px;
        }

        .value-card h3 {
            color: var(--primary-red);
            margin-bottom: 15px;
            font-size: 1.5rem;
        }

        .testimonials {
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimonials h3 {
            text-align: center;
            font-size: 2rem;
            color: var(--primary-red);
            margin-bottom: 30px;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background: #f8f8f8;
            padding: 30px;
            border-radius: 15px;
            display: flex;
            gap: 20px;
        }

        .testimonial-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: var(--primary-red);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 700;
            flex-shrink: 0;
        }

        .testimonial-content h4 {
            color: var(--dark-gray);
            margin-bottom: 10px;
        }

        .testimonial-content p {
            color: #666;
            line-height: 1.6;
        }

        .stars {
            color: var(--warning-orange);
            margin-top: 10px;
        }

        /* Contact Section */
        #contact {
            background: #f8f8f8;
        }

        .contact-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .contact-form {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            margin-bottom: 40px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--dark-gray);
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 2px solid var(--light-gray);
            border-radius: 8px;
            font-family: 'Poppins', sans-serif;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-red);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            width: 100%;
            padding: 15px;
            background: var(--primary-red);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .submit-btn:hover {
            background: var(--bright-red);
            transform: translateY(-2px);
        }

        .contact-info-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }

        .contact-card {
            background: white;
            padding: 25px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }

        .contact-card i {
            font-size: 2rem;
            color: var(--primary-red);
            margin-bottom: 15px;
        }

        .contact-card h4 {
            color: var(--dark-gray);
            margin-bottom: 10px;
        }

        .contact-card p {
            color: #666;
        }

        .map-container {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .map-container iframe {
            width: 100%;
            height: 400px;
            border: none;
        }

        /* FAQs Section */
        .faq-search {
            max-width: 600px;
            margin: 0 auto 50px;
            position: relative;
        }

        .faq-search input {
            width: 100%;
            padding: 15px 50px 15px 20px;
            border: 2px solid var(--light-gray);
            border-radius: 50px;
            font-size: 1rem;
        }

        .faq-search i {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--primary-red);
        }

        .faq-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            cursor: pointer;
            transition: all 0.3s;
        }

        .faq-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(220,20,60,0.2);
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--primary-red);
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 15px;
        }

        .faq-answer {
            color: #666;
            line-height: 1.6;
        }

        /* Footer */
        footer {
            background: var(--dark-gray);
            color: white;
            padding: 40px 5%;
            text-align: center;
        }

        .social-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 20px;
        }

        .social-icons a {
            color: white;
            font-size: 1.5rem;
            transition: color 0.3s;
        }

        .social-icons a:hover {
            color: var(--primary-red);
        }

        .copyright {
            color: #aaa;
            font-size: 0.9rem;
        }

        /* Scroll to Top Button */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--primary-red);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: none;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 5px 20px rgba(0,0,0,0.3);
            transition: all 0.3s;
            z-index: 999;
        }

        .scroll-top:hover {
            background: var(--bright-red);
            transform: translateY(-5px);
        }

        .scroll-top.show {
            display: flex;
        }

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            font-size: 1.5rem;
            color: var(--primary-red);
            cursor: pointer;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: white;
                flex-direction: column;
                padding: 2rem;
                transition: left 0.3s;
                box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            }

            .nav-links.active {
                left: 0;
            }

            .mobile-menu-btn {
                display: block;
            }

            .categories-container {
                grid-template-columns: 1fr;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .hero-content p {
                font-size: 1.2rem;
            }

            .offers-header h2 {
                font-size: 2rem;
            }

            .products-grid,
            .offers-grid,
            .values-grid,
            .testimonials-grid,
            .faq-grid {
                grid-template-columns: 1fr;
            }

        }
