 @import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Archivo:wght@400;500;600;700&display=swap');
        
        :root {
            --white: #ffffff;
            --deep-blue: #0a3d62;
            --blue-light: #1a5f8a;
            --green: #27ae60;
            --green-dark: #1e8449;
            --green-light: #a8e6cf;
            --gray: #2c3e50;
            --gray-light: #ecf0f1;
            --gray-medium: #95a5a6;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            color: var(--gray);
            line-height: 1.7;
            overflow-x: hidden;
        }
        
        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: var(--white);
            z-index: 1000;
            padding: 1rem 0;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-family: 'Archivo', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--deep-blue);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.2rem;
        }
        
        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
            align-items: center;
        }
        
        .nav-links a {
            color: var(--gray);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .nav-links a:hover {
            color: var(--green);
        }
        
        .nav-actions {
            display: flex;
            gap: 1.5rem;
            align-items: center;
        }
        
        .nav-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--gray-light);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-icon:hover {
            background: var(--green);
            color: var(--white);
        }
        
        .cart-count {
            position: absolute;
            top: -5px;
            right: -5px;
            width: 20px;
            height: 20px;
            background: var(--green);
            color: var(--white);
            border-radius: 50%;
            font-size: 0.7rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
        }
        
        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }
        
        .mobile-toggle span {
            width: 25px;
            height: 3px;
            background: var(--deep-blue);
            border-radius: 2px;
            transition: all 0.3s ease;
        }
        
        /* Hero Section */
        .hero {
            min-height: 90vh;
            background: linear-gradient(135deg, var(--deep-blue) 0%, var(--blue-light) 100%);
            display: flex;
            align-items: center;
            padding-top: 80px;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(39, 174, 96, 0.15) 0%, transparent 70%);
            top: -200px;
            right: -100px;
            border-radius: 50%;
            animation: float 15s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(-30px, 30px); }
        }
        
        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 4rem 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        
        .hero-text {
            color: var(--white);
            animation: slideInLeft 1s ease-out;
        }
        
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .hero-badge {
            display: inline-block;
            background: rgba(39, 174, 96, 0.2);
            color: var(--green-light);
            padding: 0.6rem 1.2rem;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 2rem;
            border: 1px solid rgba(39, 174, 96, 0.3);
        }
        
        .hero h1 {
            font-family: 'Archivo', sans-serif;
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }
        
        .hero h1 span {
            color: var(--green-light);
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
            line-height: 1.8;
        }
        
        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        
        .btn {
            padding: 1rem 2rem;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }
        
        .btn-primary {
            background: var(--green);
            color: var(--white);
            box-shadow: 0 5px 20px rgba(39, 174, 96, 0.3);
        }
        
        .btn-primary:hover {
            background: var(--green-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(39, 174, 96, 0.4);
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }
        
        .btn-secondary:hover {
            background: var(--white);
            color: var(--deep-blue);
        }
        
        .hero-visual {
            position: relative;
            animation: slideInRight 1s ease-out;
        }
        
        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .hero-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
        }
        
        .hero-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-family: 'Archivo', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--green-light);
            margin-bottom: 0.5rem;
        }
        
        .stat-label {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
        }
        
        /* Section Styles */
        section {
            padding: 6rem 2rem;
        }
        
        .container {
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-tag {
            display: inline-block;
            background: var(--green-light);
            color: var(--green-dark);
            padding: 0.5rem 1.2rem;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .section-header h2 {
            font-family: 'Archivo', sans-serif;
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--deep-blue);
        }
        
        .section-header p {
            font-size: 1.1rem;
            color: var(--gray-medium);
        }
        
        /* Featured Products */
        #featured {
            background: var(--white);
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
        }
        
        .product-card {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid var(--gray-light);
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }
        
        .product-image {
            width: 100%;
            height: 300px;
            background: var(--gray-light);
            position: relative;
            overflow: hidden;
        }
        
        .product-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--green);
            color: var(--white);
            padding: 0.4rem 0.8rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
        }
        
        .product-wishlist {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 40px;
            height: 40px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .product-wishlist:hover {
            background: var(--green);
            color: var(--white);
        }
        
        .product-info {
            padding: 1.5rem;
        }
        
        .product-category {
            color: var(--green);
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .product-info h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--deep-blue);
            font-weight: 700;
        }
        
        .product-rating {
            display: flex;
            gap: 0.3rem;
            margin-bottom: 1rem;
        }
        
        .star {
            color: #f39c12;
        }
        
        .product-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .product-price {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--deep-blue);
        }
        
        .add-to-cart {
            width: 45px;
            height: 45px;
            background: var(--green);
            color: var(--white);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .add-to-cart:hover {
            background: var(--green-dark);
            transform: scale(1.1);
        }
        
        /* About Section */
        #about {
            background: var(--gray-light);
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }
        
        .about-image {
            height: 500px;
            background: linear-gradient(135deg, var(--deep-blue) 0%, var(--green) 100%);
            border-radius: 20px;
            position: relative;
        }
        
        .about-image::after {
            content: '🛍️';
            position: absolute;
            font-size: 8rem;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            opacity: 0.2;
        }
        
        .about-text h3 {
            font-family: 'Archivo', sans-serif;
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            color: var(--deep-blue);
            font-weight: 700;
        }
        
        .about-text p {
            margin-bottom: 1.5rem;
            line-height: 1.9;
            color: var(--gray);
        }
        
        .about-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .feature-item {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
        }
        
        .feature-icon {
            width: 50px;
            height: 50px;
            background: var(--green);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            flex-shrink: 0;
            font-size: 1.3rem;
        }
        
        .feature-text h4 {
            font-weight: 600;
            margin-bottom: 0.3rem;
            color: var(--deep-blue);
        }
        
        .feature-text p {
            font-size: 0.9rem;
            color: var(--gray-medium);
            margin: 0;
        }
        
        /* Categories Section */
        #categories {
            background: var(--white);
        }
        
        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .category-card {
            background: var(--gray-light);
            border-radius: 15px;
            padding: 3rem 2rem;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            border: 2px solid transparent;
        }
        
        .category-card:hover {
            background: var(--green);
            color: var(--white);
            border-color: var(--green-dark);
            transform: translateY(-5px);
        }
        
        .category-icon {
            font-size: 3.5rem;
            margin-bottom: 1rem;
        }
        
        .category-card h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            font-weight: 700;
        }
        
        .category-card p {
            font-size: 0.9rem;
            opacity: 0.8;
        }
        
        /* Blog Section */
        #blog {
            background: var(--gray-light);
        }
        
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
        }
        
        .blog-card {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }
        
        .blog-image {
            width: 100%;
            height: 250px;
            background: linear-gradient(135deg, var(--deep-blue) 0%, var(--green) 100%);
        }
        
        .blog-content {
            padding: 2rem;
        }
        
        .blog-meta {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 1rem;
            font-size: 0.85rem;
            color: var(--gray-medium);
        }
        
        .blog-content h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--deep-blue);
            font-weight: 700;
        }
        
        .blog-content p {
            color: var(--gray);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }
        
        .read-more {
            color: var(--green);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: gap 0.3s ease;
        }
        
        .read-more:hover {
            gap: 1rem;
        }
        
        /* Contact Section */
        #contact {
            background: var(--white);
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        
        .contact-item {
            display: flex;
            gap: 1.5rem;
            padding: 1.5rem;
            background: var(--gray-light);
            border-radius: 15px;
            transition: all 0.3s ease;
        }
        
        .contact-item:hover {
            background: var(--green-light);
        }
        
        .contact-icon {
            width: 60px;
            height: 60px;
            background: var(--green);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.5rem;
            flex-shrink: 0;
        }
        
        .contact-details h3 {
            font-family: 'Archivo', sans-serif;
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: var(--deep-blue);
            font-weight: 700;
        }
        
        .contact-details p {
            color: var(--gray);
            line-height: 1.8;
        }
        
        .map-container {
            margin-top: 2rem;
            height: 300px;
            background: var(--gray-light);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .contact-form {
            background: var(--gray-light);
            padding: 3rem;
            border-radius: 15px;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--deep-blue);
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid transparent;
            border-radius: 10px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            background: var(--white);
            transition: all 0.3s ease;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--green);
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }
        
        /* Footer */
        footer {
            background: var(--deep-blue);
            color: var(--white);
            padding: 4rem 2rem 2rem;
        }
        
        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 3rem;
        }
        
        .footer-about h3 {
            font-family: 'Archivo', sans-serif;
            font-size: 1.8rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }
        
        .footer-about p {
            opacity: 0.8;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
        }
        
        .social-icon {
            width: 45px;
            height: 45px;
            background: rgba(39, 174, 96, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--green-light);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            background: var(--green);
            color: var(--white);
        }
        
        .footer-section h4 {
            font-family: 'Archivo', sans-serif;
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
            color: var(--green-light);
        }
        
        .footer-section a {
            display: block;
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            margin-bottom: 0.8rem;
            transition: color 0.3s ease;
        }
        
        .footer-section a:hover {
            color: var(--green-light);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0.7;
        }
        
        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
            }
            
            .about-content,
            .contact-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: var(--white);
                flex-direction: column;
                padding: 3rem 2rem;
                transition: left 0.3s ease;
                align-items: flex-start;
                box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .mobile-toggle {
                display: flex;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .section-header h2 {
                font-size: 2.2rem;
            }
            
            section {
                padding: 4rem 1.5rem;
            }
            
            .products-grid,
            .blog-grid,
            .categories-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            .about-features {
                grid-template-columns: 1fr;
            }
        }
        
        /* Scroll Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }