        /* ============================================
           PETZONE - FRIENDLY PET SHOP
           Warm, Playful, Trustworthy Style
           ============================================ */

        :root {
            /* Colors - Warm Pet-Friendly Palette */
            --orange: #f97316;
            --orange-dark: #ea580c;
            --orange-light: #fb923c;
            --green: #22c55e;
            --green-dark: #16a34a;
            --green-light: #4ade80;
            --brown: #92400e;
            --brown-light: #b45309;
            --cream: #fef3c7;
            --beige: #fdf4e7;
            --navy: #1e293b;
            --slate: #475569;
            --gray: #94a3b8;
            --light: #fefce8;
            --lighter: #fffbeb;
            --white: #ffffff;

            /* Gradients */
            --gradient-primary: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
            --gradient-secondary: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
            --gradient-warm: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);

            /* Typography */
            --font-heading: 'Fredoka', sans-serif;
            --font-body: 'Nunito', 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(249, 115, 22, 0.2);
            --shadow-card: 0 10px 30px -5px rgba(0, 0, 0, 0.08);

            /* Border Radius */
            --radius-sm: 12px;
            --radius: 16px;
            --radius-lg: 24px;
            --radius-xl: 32px;
            --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: 600;
            line-height: 1.2;
            color: var(--navy);
        }

        h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
        h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
        h3 { font-size: clamp(1.125rem, 2.5vw, 1.375rem); }

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

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--cream);
            color: var(--orange);
            padding: 10px 24px;
            border-radius: var(--radius-full);
            font-size: 0.9375rem;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .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: 600;
            font-size: 1rem;
            border-radius: var(--radius-full);
            transition: all var(--transition);
            cursor: pointer;
            border: none;
        }

        .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(249, 115, 22, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(249, 115, 22, 0.4);
        }

        .btn-secondary {
            background: var(--white);
            color: var(--orange);
            border: 3px solid var(--orange);
        }

        .btn-secondary:hover {
            background: var(--orange);
            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: 10px;
            font-family: var(--font-heading);
            font-size: 1.625rem;
            font-weight: 700;
            color: var(--white);
        }

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

        .logo-icon {
            width: 48px;
            height: 48px;
            background: var(--gradient-primary);
            border-radius: var(--radius);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .logo span {
            color: var(--orange-light);
        }

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

        .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(--orange);
            border-radius: 3px;
            transition: width var(--transition);
        }

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

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

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

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

        .navbar.scrolled .nav-cart {
            background: var(--cream);
        }

        .nav-cart:hover {
            background: var(--orange);
        }

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

        .nav-cart svg {
            width: 24px;
            height: 24px;
            stroke: var(--white);
            fill: none;
            stroke-width: 2;
        }

        .navbar.scrolled .nav-cart svg {
            stroke: var(--orange);
        }

        .nav-cart-badge {
            position: absolute;
            top: -6px;
            right: -6px;
            width: 22px;
            height: 22px;
            background: var(--green);
            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: 26px;
            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: linear-gradient(135deg, #1e293b 0%, #334155 100%);
            overflow: hidden;
            padding-top: 80px;
        }

        .hero-pattern {
            position: absolute;
            inset: 0;
            background-image:
                radial-gradient(circle at 10% 20%, rgba(249, 115, 22, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(34, 197, 94, 0.1) 0%, transparent 40%);
        }

        .hero-paws {
            position: absolute;
            inset: 0;
            opacity: 0.03;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Ctext x='30' y='35' font-size='30' text-anchor='middle' fill='white'%3E%F0%9F%90%BE%3C/text%3E%3C/svg%3E");
            background-size: 100px 100px;
        }

        .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: 8px;
            background: rgba(249, 115, 22, 0.2);
            border: 1px solid rgba(249, 115, 22, 0.3);
            padding: 10px 24px;
            border-radius: var(--radius-full);
            font-size: 0.9375rem;
            font-weight: 600;
            margin-bottom: 24px;
        }

        .hero h1 {
            color: var(--white);
            margin-bottom: 24px;
            line-height: 1.15;
        }

        .hero-description {
            font-size: 1.125rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 36px;
            max-width: 500px;
            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: 52px;
            height: 52px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: var(--radius);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

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

        .hero-visual {
            position: relative;
        }

        .hero-image-container {
            position: relative;
        }

        .hero-image-bg {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 400px;
            height: 400px;
            background: var(--gradient-primary);
            border-radius: 50%;
            opacity: 0.2;
            filter: blur(60px);
        }

        .hero-image-container img {
            position: relative;
            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: -20px;
            animation: floatUp 4s ease-in-out infinite;
        }

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

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

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

        .float-icon.orange { background: rgba(249, 115, 22, 0.15); }
        .float-icon.green { background: rgba(34, 197, 94, 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(--lighter);
        }

        .categories-grid {
            display: grid;
            grid-template-columns: repeat(5, 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: 3px solid transparent;
        }

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

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

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

        .category-icon.dogs { background: rgba(249, 115, 22, 0.15); }
        .category-icon.cats { background: rgba(168, 85, 247, 0.15); }
        .category-icon.birds { background: rgba(59, 130, 246, 0.15); }
        .category-icon.fish { background: rgba(6, 182, 212, 0.15); }
        .category-icon.small { background: rgba(34, 197, 94, 0.15); }

        .category-card h3 {
            font-size: 1.125rem;
            margin-bottom: 6px;
        }

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

        /* Products Section */
        .products {
            background: 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);
        }

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

        .product-image {
            position: relative;
            background: var(--lighter);
            padding: 20px;
            aspect-ratio: 1;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: var(--radius);
            transition: transform 0.5s ease;
        }

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

        .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);
        }

        .product-badge.new { background: var(--green); }
        .product-badge.sale { background: var(--orange); }
        .product-badge.popular { background: #a855f7; }

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

        .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);
            cursor: pointer;
            transition: all var(--transition);
        }

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

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

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

        .product-info {
            padding: 24px;
        }

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

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

        .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: #fbbf24;
        }

        .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: 700;
            color: var(--orange);
        }

        .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: 600;
            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(249, 115, 22, 0.35);
        }

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

        /* Features Section */
        .features {
            background: var(--gradient-primary);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .features-pattern {
            position: absolute;
            inset: 0;
            opacity: 0.1;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Ctext x='30' y='35' font-size='25' text-anchor='middle' fill='white'%3E%F0%9F%90%BE%3C/text%3E%3C/svg%3E");
            background-size: 80px 80px;
        }

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

        .features .section-badge {
            background: rgba(255, 255, 255, 0.2);
            color: var(--white);
        }

        .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: 36px 24px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: var(--radius-lg);
            transition: all var(--transition);
        }

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

        .feature-icon {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: var(--radius);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            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: 180px;
            height: 180px;
            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: 3.5rem;
            font-weight: 700;
            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: 36px;
            height: 36px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

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

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

        /* Newsletter Section */
        .newsletter {
            background: var(--lighter);
        }

        .newsletter-card {
            background: linear-gradient(135deg, var(--navy) 0%, #334155 100%);
            border-radius: var(--radius-xl);
            padding: 80px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .newsletter-pattern {
            position: absolute;
            inset: 0;
            opacity: 0.05;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Ctext x='30' y='35' font-size='25' text-anchor='middle' fill='white'%3E%F0%9F%90%BE%3C/text%3E%3C/svg%3E");
            background-size: 80px 80px;
        }

        .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.7);
            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);
        }

        .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: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all var(--transition);
        }

        .newsletter-submit:hover {
            transform: scale(1.05);
        }

        /* Contact Section */
        .contact {
            background: var(--white);
        }

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

        .contact-card {
            background: var(--lighter);
            padding: 32px 24px;
            border-radius: var(--radius-lg);
            text-align: center;
            transition: all var(--transition);
        }

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

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

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

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

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

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

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

        /* Footer */
        .footer {
            background: var(--navy);
            color: var(--white);
            padding: 60px 0 24px;
        }

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

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

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

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

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

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

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

        .footer-column h4 {
            color: var(--white);
            margin-bottom: 20px;
        }

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

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

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

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

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

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

        /* 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 */
        @media (max-width: 1024px) {
            :root {
                --section-padding: 80px;
            }

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

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

            .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: 320px;
                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;
                gap: 20px;
            }

            .about-image-float {
                width: 140px;
                height: 140px;
                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: 16px;
                text-align: center;
            }
        }

/* ============================================
   PAGE BANNER (inner pages)
   ============================================ */
.page-banner {
    background: linear-gradient(135deg, var(--cream) 0%, var(--beige) 100%);
    padding: 200px 0 90px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.page-banner::before {
    content: '🐾';
    position: absolute;
    font-size: 350px;
    right: -60px;
    top: 30px;
    opacity: 0.06;
    transform: rotate(-15deg);
}
.page-banner > .container { position: relative; z-index: 2; }
.page-banner .section-label {
    background: var(--orange);
    color: var(--white);
    padding: 8px 22px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 18px;
    box-shadow: 0 8px 20px rgba(249,115,22,0.25);
}
.page-banner h1 {
    color: var(--navy);
    font-size: clamp(2.4rem, 5vw, 4rem);
    margin-bottom: 16px;
    font-weight: 800;
}
.page-banner h1 span { color: var(--orange); }
.page-banner p {
    color: var(--slate);
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq { background: var(--lighter); }
.faq-list { max-width: 850px; margin: 0 auto; }
.faq-item {
    background: var(--white);
    margin-bottom: 16px;
    border-radius: 16px;
    border: 2px solid var(--cream);
    overflow: hidden;
    transition: border-color 0.3s;
}
.faq-item:hover { border-color: var(--orange-light); }
.faq-item.active { border-color: var(--orange); }
.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 22px 28px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-family: inherit;
}
.faq-question::before {
    content: '🐾';
    font-size: 1.1rem;
    margin-right: 8px;
}
.faq-question::after {
    content: '+';
    color: var(--orange);
    font-size: 1.8rem;
    font-weight: 300;
    transition: transform 0.3s;
    margin-left: auto;
}
.faq-item.active .faq-question::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { padding: 0 28px 24px; color: var(--slate); }
.faq-item.active .faq-answer { max-height: 400px; }
