      :root {
    --primary: #6C63FF;       /* Soft Indigo */
    --secondary: #00C896;     /* Vibrant Teal */
    --light: #F4F7FA;         /* Soft Light Grey */
    --dark: #1F2937;          /* Deep Navy Gray */
    --success: #22C55E;       /* Bright Green */
    --warning: #FACC15;       /* Vibrant Yellow */
    --danger: #EF4444;        /* Vivid Red */
    --font-lg: 1.25rem;
    --font-xl: 1.5rem;
    --font-xxl: 2rem;
}

        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.6;
            font-size: var(--font-lg);
            padding-top: 80px; /* Space for fixed navbar */
        }
        
        /* Accessibility improvements */
        a, button {
            font-size: var(--font-lg);
        }
        
        h1, h2, h3 {
            color: var(--dark);
            margin-bottom: 1rem;
        }
        
        h1 {
            font-size: var(--font-xxl);
        }
        
        h2 {
            font-size: var(--font-xl);
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem;
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            color: white;
            padding: 1.5rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            z-index: 1000;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-weight: bold;
            font-size: var(--font-xl);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav li {
            margin-left: 1.5rem;
        }
        
        nav a {
            color: white;
            text-decoration: none;
            padding: 0.5rem;
            border-radius: 4px;
            transition: background-color 0.3s;
        }
        
        nav a:hover {
            background-color: rgba(255,255,255,0.2);
        }
        
        .cart-icon {
            position: relative;
            cursor: pointer;
        }
        
        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background-color: var(--danger);
            color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 0.8rem;
        }
        
        .hero {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
        }

        .hero:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://storage.googleapis.com/workspace-0f70711f-8b4e-4d94-86f1-2a93ccde5887/image/5bddc621-ad47-4489-8bba-7fcd644d6f0c.png') center/cover;
            opacity: 0.05;
            z-index: 0;
        }

        .hero .container {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .hero-content {
            flex: 1;
            padding-right: 2rem;
        }

        .hero-image {
            flex: 1;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .hero-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .hero h1 {
            font-size: 2.8rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: var(--dark);
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: #555;
            margin-bottom: 2rem;
            max-width: 600px;
        }

        .hero-btns {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }
        
        .btn {
            display: inline-block;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            color: white;
            padding: 0.8rem 1.5rem;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: var(--font-lg);
            text-decoration: none;
            transition: opacity 0.3s;
            margin: 0.5rem;
        }
        
        .btn:hover {
            opacity: 0.9;
        }
        
        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }
        
        .features {
            padding: 4rem 0;
            background-color: white;
        }

        .section-title {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 3rem;
            color: var(--dark);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .feature-card {
            background-color: var(--light);
            border-radius: 8px;
            padding: 2rem;
            text-align: center;
            transition: transform 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-5px);
        }

        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .feature-card h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
        }
        .feature-list {
            text-align: left;
            margin-top: 1rem;
            list-style-type: none;
        }
        .feature-list li {
            margin-bottom: 0.5rem;
            position: relative;
            padding-left: 1.5rem;
        }
        .feature-list li:before {
            content: "✓";
            color: var(--success);
            position: absolute;
            left: 0;
        }

        .testimonials {
            padding: 3rem 0;
            background-color: #f8f9fa;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .testimonial-card {
            background: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .testimonial-content {
            font-style: italic;
            margin-bottom: 1rem;
        }

        .testimonial-author {
            font-weight: bold;
            color: var(--primary);
        }

        .products {
            padding: 3rem 0;
        }

        .product-detail-container {
            margin-top: 2rem;
        }

        .product-detail {
            background: white;
            border-radius: 8px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .btn-back {
            background: none;
            border: none;
            color: var(--primary);
            font-size: 1rem;
            cursor: pointer;
            margin-bottom: 1rem;
            padding: 0.5rem 0;
        }

        .product-detail-content {
            display: flex;
            gap: 2rem;
        }

        .product-detail-image {
            flex: 1;
        }

        .product-detail-image img {
            width: 100%;
            height: auto;
            border-radius: 8px;
        }

        .product-detail-info {
            flex: 1;
            padding: 1rem;
        }

        .product-features {
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid #eee;
        }

        @media (max-width: 768px) {
            .product-detail-content {
                flex-direction: column;
            }
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 2rem;
        }
        
        .product-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
        }
        
        .product-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }
        
        .product-info {
            padding: 1.5rem;
        }
        
        .product-title {
            font-weight: bold;
            margin-bottom: 0.5rem;
        }
        
        .product-price {
            color: var(--primary);
            font-weight: bold;
            margin-bottom: 1rem;
        }
        
        .size-selector {
            margin: 1rem 0;
        }
        
        .size-options {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        
        .size-btn {
            background-color: var(--light);
            border: 1px solid #ccc;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .size-btn.selected {
            background-color: var(--primary);
            color: white;
            border-color: var(--primary);
        }
        
        .cart-modal {
            display: none;
            position: fixed;
            top: 0;
            right: 0;
            width: 100%;
            max-width: 400px;
            height: 100%;
            background-color: white;
            box-shadow: -2px 0 10px rgba(0,0,0,0.1);
            z-index: 1000;
            overflow-y: auto;
            padding: 1.5rem;
        }
        
        .cart-modal.active {
            display: block;
        }
        
        .cart-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }
        
        .close-cart {
            background: none;
            border: none;
            font-size: var(--font-xl);
            cursor: pointer;
        }
        
        .cart-items {
            margin-bottom: 2rem;
        }
        
        .cart-item {
            display: flex;
            gap: 1rem;
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #eee;
        }
        
        .cart-item-image {
            width: 100px;
            height: 100px;
            object-fit: contain;
            border-radius: 4px;
            background: #f5f5f5;
            padding: 5px;
        }
        
        .cart-item-info {
            flex: 1;
        }
        
        .cart-item-title {
            font-weight: bold;
        }
        
        .cart-item-price {
            color: var(--primary);
        }
        
        .cart-item-size {
            color: #666;
        }
        
        .remove-item {
            color: var(--danger);
            background: none;
            border: none;
            cursor: pointer;
            align-self: flex-start;
        }
        
        .cart-total {
            font-weight: bold;
            font-size: var(--font-xl);
            text-align: right;
            margin-bottom: 1.5rem;
        }
        
        .checkout-btn {
            width: 100%;
        }
        
        .newsletter {
            padding: 3rem 0;
            background: var(--primary);
            color: white;
            text-align: center;
        }

        .newsletter-form {
            display: flex;
            max-width: 500px;
            margin: 1rem auto 0;
        }

        .newsletter-form input {
            flex: 1;
            padding: 0.8rem;
            border: none;
            border-radius: 4px 0 0 4px;
        }

        .newsletter-form .btn {
            border-radius: 0 4px 4px 0;
            margin: 0;
        }

        footer {
            background-color: var(--dark);
            color: white;
            padding: 2rem 0;
            text-align: center;
        }
        
        .footer-content {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        
        .footer-links a {
            color: white;
            text-decoration: none;
        }
        
        .copyright {
            color: rgba(255,255,255,0.7);
        }
        
        @media (max-width: 768px) {
            body {
                padding-top: 120px; /* More space for stacked mobile navbar */
            }
            .header-content {
                flex-direction: column;
                gap: 1rem;
                padding: 1rem 0;
            }
            
            nav ul {
                margin-top: 1rem;
            }
            
            .products-grid {
                grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            }
        }