        /* ============================================
           TOYLAND - KIDS TOY SHOP WEBSITE
           Playful, Modern, Futuristic Style
           ============================================ */

        :root {
            /* Colors - Playful Futuristic Palette */
            --purple: #a855f7;
            --purple-dark: #9333ea;
            --purple-light: #c084fc;
            --pink: #ec4899;
            --pink-light: #f472b6;
            --blue: #3b82f6;
            --blue-light: #60a5fa;
            --cyan: #06b6d4;
            --yellow: #fbbf24;
            --orange: #f97316;
            --green: #22c55e;
            --navy: #1e1b4b;
            --navy-light: #312e81;
            --slate: #475569;
            --gray: #94a3b8;
            --light: #f8fafc;
            --lighter: #fefefe;
            --white: #ffffff;

            /* Gradients */
            --gradient-primary: linear-gradient(135deg, var(--purple) 0%, var(--pink) 100%);
            --gradient-secondary: linear-gradient(135deg, var(--blue) 0%, var(--cyan) 100%);
            --gradient-fun: linear-gradient(135deg, var(--yellow) 0%, var(--orange) 100%);
            --gradient-hero: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #4c1d95 100%);

            /* Typography */
            --font-heading: 'Nunito', sans-serif;
            --font-body: 'Quicksand', sans-serif;

            /* Spacing */
            --section-padding: 100px;
            --container-max: 1200px;

            /* Effects */
            --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 20px 40px -10px rgba(168, 85, 247, 0.25);
            --shadow-card: 0 10px 30px -5px rgba(0, 0, 0, 0.1);

            /* Border Radius */
            --radius-sm: 12px;
            --radius: 20px;
            --radius-lg: 28px;
            --radius-xl: 40px;
            --radius-full: 100px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            font-size: 16px;
            line-height: 1.7;
            color: var(--slate);
            background-color: var(--white);
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition);
        }

        ul, ol {
            list-style: none;
        }

        .container {
            width: 100%;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 24px;
        }

        .section {
            padding: var(--section-padding) 0;
            position: relative;
        }

        /* ============================================
           TYPOGRAPHY
           ============================================ */
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            font-weight: 800;
            line-height: 1.2;
            color: var(--navy);
        }

        h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
        h2 { font-size: clamp(2rem, 4vw, 3rem); }
        h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
        h4 { font-size: clamp(1rem, 2vw, 1.125rem); }

        .section-header {
            text-align: center;
            max-width: 650px;
            margin: 0 auto 60px;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--gradient-primary);
            padding: 8px 24px;
            border-radius: var(--radius-full);
            font-size: 0.875rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .section-header h2 {
            margin-bottom: 16px;
        }

        .section-header p {
            color: var(--slate);
            font-size: 1.125rem;
        }

        .text-gradient {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* ============================================
           BUTTONS
           ============================================ */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 16px 32px;
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1rem;
            border-radius: var(--radius-full);
            transition: all var(--transition);
            cursor: pointer;
            border: none;
            position: relative;
            overflow: hidden;
        }

        .btn svg {
            width: 20px;
            height: 20px;
            transition: transform var(--transition);
        }

        .btn:hover svg {
            transform: translateX(4px);
        }

        .btn-primary {
            background: var(--gradient-primary);
            color: var(--white);
            box-shadow: 0 8px 20px rgba(168, 85, 247, 0.35);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(168, 85, 247, 0.45);
        }

        .btn-secondary {
            background: var(--white);
            color: var(--purple);
            box-shadow: var(--shadow-card);
        }

        .btn-secondary:hover {
            background: var(--light);
            transform: translateY(-2px);
        }

        .btn-outline {
            background: transparent;
            border: 3px solid var(--purple);
            color: var(--purple);
        }

        .btn-outline:hover {
            background: var(--purple);
            color: var(--white);
        }

        /* ============================================
           NAVIGATION
           ============================================ */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 16px 0;
            transition: all var(--transition);
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            padding: 10px 0;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
        }

        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: var(--font-heading);
            font-size: 1.75rem;
            font-weight: 900;
            color: var(--white);
        }

        .navbar.scrolled .logo {
            color: var(--navy);
        }

        .logo-icon {
            width: 48px;
            height: 48px;
            background: var(--gradient-primary);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
        }

        .logo span {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .nav-link {
            font-weight: 600;
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.9375rem;
            position: relative;
            padding: 8px 0;
        }

        .navbar.scrolled .nav-link {
            color: var(--slate);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: var(--gradient-primary);
            border-radius: 3px;
            transition: width var(--transition);
        }

        .nav-link:hover {
            color: var(--purple);
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .nav-icon {
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            transition: all var(--transition);
        }

        .navbar.scrolled .nav-icon {
            background: var(--light);
        }

        .nav-icon:hover {
            background: var(--purple);
        }

        .nav-icon:hover svg {
            stroke: var(--white);
        }

        .nav-icon svg {
            width: 22px;
            height: 22px;
            stroke: var(--white);
            fill: none;
            stroke-width: 2;
            transition: stroke var(--transition);
        }

        .navbar.scrolled .nav-icon svg {
            stroke: var(--slate);
        }

        .nav-icon-badge {
            position: absolute;
            top: -4px;
            right: -4px;
            width: 20px;
            height: 20px;
            background: var(--pink);
            color: var(--white);
            font-size: 0.75rem;
            font-weight: 700;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 10px;
        }

        .menu-toggle span {
            width: 24px;
            height: 3px;
            background: var(--white);
            border-radius: 3px;
            transition: all var(--transition);
        }

        .navbar.scrolled .menu-toggle span {
            background: var(--navy);
        }

        /* ============================================
           HERO SECTION
           ============================================ */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            background: var(--gradient-hero);
            overflow: hidden;
            padding-top: 80px;
        }

        .hero-shapes {
            position: absolute;
            inset: 0;
            overflow: hidden;
        }

        .hero-shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.4;
        }

        .hero-shape-1 {
            width: 500px;
            height: 500px;
            background: var(--purple);
            top: -100px;
            right: -100px;
        }

        .hero-shape-2 {
            width: 400px;
            height: 400px;
            background: var(--pink);
            bottom: -100px;
            left: -100px;
        }

        .hero-shape-3 {
            width: 300px;
            height: 300px;
            background: var(--cyan);
            top: 50%;
            left: 30%;
        }

        .hero-stars {
            position: absolute;
            inset: 0;
            background-image: radial-gradient(2px 2px at 20px 30px, white, transparent),
                              radial-gradient(2px 2px at 40px 70px, white, transparent),
                              radial-gradient(2px 2px at 50px 160px, white, transparent),
                              radial-gradient(2px 2px at 90px 40px, white, transparent),
                              radial-gradient(2px 2px at 130px 80px, white, transparent),
                              radial-gradient(2px 2px at 160px 120px, white, transparent);
            background-repeat: repeat;
            background-size: 200px 200px;
            animation: twinkle 4s ease-in-out infinite;
        }

        @keyframes twinkle {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }

        .hero .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-content {
            color: var(--white);
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 10px 24px;
            border-radius: var(--radius-full);
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 28px;
        }

        .hero-badge-emoji {
            font-size: 1.25rem;
        }

        .hero h1 {
            color: var(--white);
            margin-bottom: 24px;
            font-weight: 900;
            line-height: 1.1;
        }

        .hero-description {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 40px;
            max-width: 480px;
            line-height: 1.8;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 50px;
        }

        .hero-features {
            display: flex;
            gap: 40px;
        }

        .hero-feature {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .hero-feature-icon {
            width: 48px;
            height: 48px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-feature-icon svg {
            width: 24px;
            height: 24px;
            stroke: var(--yellow);
            fill: none;
            stroke-width: 2;
        }

        .hero-feature span {
            font-weight: 600;
            font-size: 0.9375rem;
        }

        .hero-visual {
            position: relative;
        }

        .hero-image-container {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-image-bg {
            position: absolute;
            width: 400px;
            height: 400px;
            background: var(--gradient-primary);
            border-radius: 50%;
            opacity: 0.3;
            filter: blur(40px);
        }

        .hero-image-container img {
            position: relative;
            max-width: 90%;
            border-radius: var(--radius-xl);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
        }

        .hero-float {
            position: absolute;
            background: var(--white);
            padding: 16px 24px;
            border-radius: var(--radius);
            box-shadow: var(--shadow-lg);
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .hero-float.float-1 {
            top: 10%;
            left: 0;
            animation: floatUp 5s ease-in-out infinite;
        }

        .hero-float.float-2 {
            bottom: 20%;
            right: 0;
            animation: floatUp 5s ease-in-out infinite 1.5s;
        }

        .hero-float.float-3 {
            bottom: 5%;
            left: 10%;
            animation: floatUp 5s ease-in-out infinite 3s;
        }

        @keyframes floatUp {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        .float-icon {
            width: 50px;
            height: 50px;
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .float-icon.purple { background: rgba(168, 85, 247, 0.15); }
        .float-icon.pink { background: rgba(236, 72, 153, 0.15); }
        .float-icon.blue { background: rgba(59, 130, 246, 0.15); }

        .float-text h4 {
            font-size: 0.9375rem;
            margin-bottom: 2px;
        }

        .float-text p {
            font-size: 0.8125rem;
            color: var(--slate);
        }

        /* ============================================
           CATEGORIES SECTION
           ============================================ */
        .categories {
            background: var(--light);
            position: relative;
        }

        .categories-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 24px;
        }

        .category-card {
            background: var(--white);
            padding: 32px 20px;
            border-radius: var(--radius-lg);
            text-align: center;
            transition: all var(--transition);
            cursor: pointer;
            border: 2px solid transparent;
        }

        .category-card:hover {
            transform: translateY(-8px);
            border-color: var(--purple-light);
            box-shadow: var(--shadow-lg);
        }

        .category-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 16px;
            border-radius: var(--radius);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            transition: transform var(--transition);
        }

        .category-card:hover .category-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .category-icon.purple { background: rgba(168, 85, 247, 0.15); }
        .category-icon.pink { background: rgba(236, 72, 153, 0.15); }
        .category-icon.blue { background: rgba(59, 130, 246, 0.15); }
        .category-icon.cyan { background: rgba(6, 182, 212, 0.15); }
        .category-icon.yellow { background: rgba(251, 191, 36, 0.15); }
        .category-icon.green { background: rgba(34, 197, 94, 0.15); }

        .category-card h4 {
            font-size: 1rem;
            margin-bottom: 4px;
        }

        .category-card p {
            font-size: 0.8125rem;
            color: var(--gray);
        }

        /* ============================================
           PRODUCTS SECTION
           ============================================ */
        .products {
            background: var(--white);
        }

        .products-tabs {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }

        .products-tab {
            padding: 12px 28px;
            background: var(--light);
            border: none;
            border-radius: var(--radius-full);
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 0.9375rem;
            color: var(--slate);
            cursor: pointer;
            transition: all var(--transition);
        }

        .products-tab:hover,
        .products-tab.active {
            background: var(--gradient-primary);
            color: var(--white);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 28px;
        }

        .product-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: all var(--transition);
            border: 2px solid var(--light);
            position: relative;
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: var(--purple-light);
        }

        .product-badge {
            position: absolute;
            top: 16px;
            left: 16px;
            padding: 6px 14px;
            border-radius: var(--radius-full);
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--white);
            z-index: 1;
        }

        .product-badge.new { background: var(--green); }
        .product-badge.sale { background: var(--pink); }
        .product-badge.hot { background: var(--orange); }

        .product-actions {
            position: absolute;
            top: 16px;
            right: 16px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            opacity: 0;
            transform: translateX(10px);
            transition: all var(--transition);
            z-index: 1;
        }

        .product-card:hover .product-actions {
            opacity: 1;
            transform: translateX(0);
        }

        .product-action {
            width: 40px;
            height: 40px;
            background: var(--white);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow);
            transition: all var(--transition);
            cursor: pointer;
        }

        .product-action:hover {
            background: var(--purple);
        }

        .product-action:hover svg {
            stroke: var(--white);
        }

        .product-action svg {
            width: 20px;
            height: 20px;
            stroke: var(--slate);
            fill: none;
            stroke-width: 2;
        }

        .product-image {
            position: relative;
            background: var(--light);
            padding: 20px;
            overflow: hidden;
        }

        .product-image img {
            width: 100%;
            aspect-ratio: 1;
            object-fit: contain;
            transition: transform 0.5s ease;
        }

        .product-card:hover .product-image img {
            transform: scale(1.08);
        }

        .product-info {
            padding: 24px;
        }

        .product-category {
            font-size: 0.8125rem;
            color: var(--purple);
            font-weight: 600;
            margin-bottom: 6px;
        }

        .product-name {
            font-size: 1.125rem;
            margin-bottom: 10px;
            line-height: 1.3;
        }

        .product-rating {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 14px;
        }

        .product-rating-stars {
            display: flex;
            gap: 2px;
        }

        .product-rating svg {
            width: 16px;
            height: 16px;
            fill: var(--yellow);
        }

        .product-rating span {
            font-size: 0.8125rem;
            color: var(--gray);
        }

        .product-price {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }

        .product-price-current {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--purple);
        }

        .product-price-old {
            font-size: 1rem;
            color: var(--gray);
            text-decoration: line-through;
        }

        .product-add-btn {
            width: 100%;
            padding: 14px;
            background: var(--gradient-primary);
            color: var(--white);
            border: none;
            border-radius: var(--radius);
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 0.9375rem;
            cursor: pointer;
            transition: all var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .product-add-btn:hover {
            transform: scale(1.02);
            box-shadow: 0 8px 20px rgba(168, 85, 247, 0.35);
        }

        .product-add-btn svg {
            width: 20px;
            height: 20px;
            stroke: currentColor;
            fill: none;
            stroke-width: 2;
        }

        .products-cta {
            text-align: center;
            margin-top: 50px;
        }

        /* ============================================
           FEATURES SECTION
           ============================================ */
        .features {
            background: var(--gradient-hero);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .features-shapes {
            position: absolute;
            inset: 0;
        }

        .features-shape {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
        }

        .features-shape-1 {
            width: 400px;
            height: 400px;
            top: -200px;
            left: -200px;
        }

        .features-shape-2 {
            width: 300px;
            height: 300px;
            bottom: -150px;
            right: -150px;
        }

        .features .container {
            position: relative;
            z-index: 1;
        }

        .features .section-header h2,
        .features .section-header p {
            color: var(--white);
        }

        .features .section-header p {
            opacity: 0.8;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
        }

        .feature-card {
            text-align: center;
            padding: 40px 24px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-lg);
            transition: all var(--transition);
        }

        .feature-card:hover {
            background: rgba(255, 255, 255, 0.12);
            transform: translateY(-8px);
        }

        .feature-icon {
            width: 90px;
            height: 90px;
            background: var(--gradient-primary);
            border-radius: var(--radius);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            font-size: 2.5rem;
        }

        .feature-card h3 {
            color: var(--white);
            margin-bottom: 12px;
        }

        .feature-card p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9375rem;
        }

        /* ============================================
           ABOUT SECTION
           ============================================ */
        .about {
            background: var(--white);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-images {
            position: relative;
        }

        .about-image-main {
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }

        .about-image-main img {
            width: 100%;
            aspect-ratio: 4/3;
            object-fit: cover;
        }

        .about-image-float {
            position: absolute;
            bottom: -30px;
            right: -30px;
            width: 200px;
            height: 200px;
            background: var(--gradient-primary);
            border-radius: var(--radius-lg);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--white);
            box-shadow: var(--shadow-lg);
        }

        .about-image-float-number {
            font-family: var(--font-heading);
            font-size: 4rem;
            font-weight: 900;
            line-height: 1;
        }

        .about-image-float-text {
            font-weight: 600;
            font-size: 1rem;
        }

        .about-text h2 {
            margin-bottom: 24px;
        }

        .about-text p {
            color: var(--slate);
            margin-bottom: 16px;
        }

        .about-list {
            margin: 32px 0;
        }

        .about-list li {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 16px;
        }

        .about-list-icon {
            width: 32px;
            height: 32px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .about-list-icon svg {
            width: 16px;
            height: 16px;
            stroke: var(--white);
            fill: none;
            stroke-width: 3;
        }

        .about-list span {
            font-weight: 600;
            color: var(--navy);
        }

        /* ============================================
           NEWSLETTER SECTION
           ============================================ */
        .newsletter {
            background: var(--light);
        }

        .newsletter-card {
            background: var(--gradient-primary);
            border-radius: var(--radius-xl);
            padding: 80px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .newsletter-shapes {
            position: absolute;
            inset: 0;
        }

        .newsletter-shape {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
        }

        .newsletter-shape-1 {
            width: 300px;
            height: 300px;
            top: -150px;
            right: -100px;
        }

        .newsletter-shape-2 {
            width: 200px;
            height: 200px;
            bottom: -100px;
            left: -50px;
        }

        .newsletter-content {
            position: relative;
            z-index: 1;
            color: var(--white);
        }

        .newsletter-content h2 {
            color: var(--white);
            margin-bottom: 16px;
        }

        .newsletter-content p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.125rem;
        }

        .newsletter-form {
            position: relative;
            z-index: 1;
        }

        .newsletter-input-group {
            display: flex;
            gap: 12px;
            background: var(--white);
            padding: 8px;
            border-radius: var(--radius-full);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .newsletter-input {
            flex: 1;
            padding: 16px 24px;
            border: none;
            background: transparent;
            font-family: var(--font-body);
            font-size: 1rem;
            color: var(--navy);
        }

        .newsletter-input::placeholder {
            color: var(--gray);
        }

        .newsletter-input:focus {
            outline: none;
        }

        .newsletter-submit {
            padding: 16px 32px;
            background: var(--gradient-primary);
            color: var(--white);
            border: none;
            border-radius: var(--radius-full);
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all var(--transition);
        }

        .newsletter-submit:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 20px rgba(168, 85, 247, 0.4);
        }

        /* ============================================
           CONTACT SECTION
           ============================================ */
        .contact {
            background: var(--white);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 28px;
        }

        .contact-card {
            background: var(--light);
            padding: 36px 28px;
            border-radius: var(--radius-lg);
            text-align: center;
            transition: all var(--transition);
        }

        .contact-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            background: var(--white);
        }

        .contact-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient-primary);
            border-radius: var(--radius);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .contact-icon svg {
            width: 32px;
            height: 32px;
            stroke: var(--white);
            fill: none;
            stroke-width: 1.5;
        }

        .contact-card h4 {
            margin-bottom: 10px;
        }

        .contact-card p {
            color: var(--slate);
            font-size: 0.9375rem;
            line-height: 1.7;
        }

        .contact-card a {
            color: var(--purple);
            font-weight: 600;
        }

        .contact-card a:hover {
            text-decoration: underline;
        }

        /* ============================================
           FOOTER
           ============================================ */
        .footer {
            background: var(--navy);
            color: var(--white);
            padding: 80px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 50px;
            margin-bottom: 60px;
        }

        .footer-brand .logo {
            margin-bottom: 20px;
        }

        .footer-brand p {
            color: var(--gray);
            margin-bottom: 24px;
            line-height: 1.8;
        }

        .footer-social {
            display: flex;
            gap: 12px;
        }

        .footer-social a {
            width: 46px;
            height: 46px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all var(--transition);
        }

        .footer-social a:hover {
            background: var(--purple);
            transform: translateY(-4px);
        }

        .footer-social svg {
            width: 22px;
            height: 22px;
            fill: var(--white);
        }

        .footer-column h4 {
            color: var(--white);
            font-size: 1.125rem;
            margin-bottom: 24px;
        }

        .footer-links li {
            margin-bottom: 14px;
        }

        .footer-links a {
            color: var(--gray);
            font-size: 0.9375rem;
            transition: all var(--transition);
        }

        .footer-links a:hover {
            color: var(--purple-light);
            padding-left: 8px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-bottom p {
            color: var(--gray);
            font-size: 0.875rem;
        }

        .footer-bottom a {
            color: var(--purple-light);
        }

        .footer-payments {
            display: flex;
            gap: 16px;
            align-items: center;
        }

        .footer-payments span {
            font-size: 0.875rem;
            color: var(--gray);
        }

        .footer-payments-icons {
            display: flex;
            gap: 8px;
        }

        .footer-payments-icons img {
            height: 24px;
            opacity: 0.7;
        }

        /* ============================================
           ANIMATIONS
           ============================================ */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ============================================
           RESPONSIVE DESIGN
           ============================================ */
        @media (max-width: 1024px) {
            :root {
                --section-padding: 80px;
            }

            .hero .container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-description {
                margin: 0 auto 40px;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-features {
                justify-content: center;
            }

            .hero-visual {
                display: none;
            }

            .categories-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .about-images {
                max-width: 500px;
                margin: 0 auto;
            }

            .newsletter-card {
                grid-template-columns: 1fr;
                text-align: center;
                padding: 60px 40px;
            }

            .contact-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
            }

            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 100%;
                max-width: 350px;
                height: 100vh;
                background: var(--white);
                flex-direction: column;
                justify-content: center;
                gap: 24px;
                box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
                transition: right var(--transition);
            }

            .nav-menu.active {
                right: 0;
            }

            .nav-menu .nav-link {
                color: var(--slate);
            }

            .menu-toggle {
                display: flex;
                z-index: 1001;
            }
        }

        @media (max-width: 768px) {
            :root {
                --section-padding: 60px;
            }

            .categories-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .products-grid {
                grid-template-columns: 1fr;
                max-width: 350px;
                margin: 0 auto;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .hero-features {
                flex-direction: column;
                align-items: center;
                gap: 20px;
            }

            .about-image-float {
                width: 150px;
                height: 150px;
                right: -15px;
                bottom: -15px;
            }

            .about-image-float-number {
                font-size: 2.5rem;
            }

            .newsletter-card {
                padding: 40px 24px;
            }

            .newsletter-input-group {
                flex-direction: column;
            }

            .newsletter-submit {
                width: 100%;
            }

            .contact-grid {
                grid-template-columns: 1fr;
                max-width: 350px;
                margin: 0 auto;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-social {
                justify-content: center;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
        }
/* Page banner */
.page-banner {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--purple) 0%, var(--pink) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.15) 0, transparent 30%),
                      radial-gradient(circle at 80% 70%, rgba(255,255,255,0.12) 0, transparent 30%);
}
.page-banner .container { position: relative; }
.page-banner-label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255,255,255,0.2);
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.page-banner h1 {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--white);
}
.page-banner p { font-size: 1.15rem; max-width: 640px; margin: 0 auto; opacity: 0.95; }

/* FAQ */
.faq { background: var(--light); }
.faq-list { max-width: 820px; margin: 60px auto 0; display: flex; flex-direction: column; gap: 16px; }
.faq-item {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(168,85,247,0.08);
    border: 2px solid transparent;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-item.active { border-color: var(--purple); box-shadow: 0 8px 30px rgba(168,85,247,0.18); }
.faq-question {
    padding: 22px 26px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: var(--navy);
    font-size: 1.05rem;
}
.faq-question::after {
    content: '+';
    font-size: 1.8rem;
    color: var(--purple);
    transition: transform 0.3s ease;
    line-height: 1;
}
.faq-item.active .faq-question::after { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 26px;
    color: var(--slate);
    line-height: 1.7;
}
.faq-item.active .faq-answer { max-height: 400px; padding: 0 26px 22px; }
