:root {
    --primary: #f97316;
    --primary-dark: #ea580c;
    --accent: #06b6d4;
    --accent-light: #22d3ee;
    --bg-light: #fffbf5;
    --bg-card: #ffffff;
    --bg-section: #fef7f0;
    --text: #1e293b;
    --text-muted: #64748b;
    --success: #22c55e;
    --warning: #eab308;
    --gradient: linear-gradient(135deg, var(--primary), #fb923c);
    --gradient-accent: linear-gradient(135deg, var(--accent), var(--accent-light));
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 12px 40px rgba(249, 115, 22, 0.15);
    --radius: 20px;
    --radius-sm: 12px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--bg-light);
    color: var(--text);
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    text-decoration: none;
}

.logo-icon {
    font-size: 1.75rem;
}

.logo .accent {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    width: 24px;
    height: 3px;
    background: var(--text);
    border-radius: 2px;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 24px 80px;
    max-width: 1280px;
    margin: 0 auto;
    gap: 60px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    padding: 10px 20px;
    background: var(--gradient);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    animation: bounce 2s ease-in-out infinite;
}

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

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text);
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

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

.pet-circle {
    width: 280px;
    height: 280px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 20px 60px rgba(249, 115, 22, 0.3);
}

.pet-circle.small {
    width: 100px;
    height: 100px;
    position: absolute;
}

.pet-circle.cat {
    top: 0;
    right: 0;
    background: var(--gradient-accent);
    animation-delay: 0.5s;
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3);
}

.pet-circle.bird {
    bottom: 20px;
    left: 0;
    background: linear-gradient(135deg, #a855f7, #d946ef);
    animation-delay: 1s;
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.3);
}

.pet-emoji {
    font-size: 6rem;
}

.pet-circle.small .pet-emoji {
    font-size: 2.5rem;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

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

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.125rem;
}

/* Trust Section */
.trust-section {
    padding: 40px 0;
    background: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.trust-grid {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text-muted);
}

.trust-icon {
    color: var(--success);
    font-weight: 800;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text);
}

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

/* Categories Section */
.categories-section {
    padding: 80px 0;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
}

.category-card {
    background: white;
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    text-decoration: none;
    color: var(--text);
    transition: all 0.3s;
    box-shadow: var(--shadow);
}

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

.category-icon {
    font-size: 4rem;
    margin-bottom: 16px;
}

.category-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.product-count {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background: var(--bg-section);
}

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

.tab-btn {
    padding: 12px 24px;
    background: white;
    border: 2px solid transparent;
    border-radius: 50px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

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

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.product-card {
    position: relative;
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

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

.product-badge.bestseller { background: var(--primary); }
.product-badge.new { background: var(--accent); }
.product-badge.sale { background: #ef4444; }

.product-image {
    height: 180px;
    background: linear-gradient(135deg, #fef7f0, #fff1e6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-emoji {
    font-size: 5rem;
}

.product-info {
    padding: 24px;
}

.product-brand {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-info h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 8px 0;
    color: var(--text);
}

.product-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

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

.stars {
    color: var(--warning);
}

.reviews {
    font-size: 0.8rem;
    color: var(--text-muted);
}

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

.price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
}

.original-price {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

/* Quiz Section */
.quiz-section {
    padding: 60px 0;
}

.quiz-card {
    background: var(--gradient);
    border-radius: var(--radius);
    padding: 60px 40px;
    text-align: center;
    color: white;
}

.quiz-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.quiz-card h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.quiz-card p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.quiz-card .btn-primary {
    background: white;
    color: var(--primary);
}

.quiz-card .btn-primary:hover {
    background: var(--text);
    color: white;
}

/* Guides Section */
.guides-section {
    padding: 80px 0;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.guide-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.guide-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.guide-image {
    height: 160px;
    background: linear-gradient(135deg, #fef7f0, #fff1e6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.guide-content {
    padding: 24px;
}

.guide-category {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(249, 115, 22, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.guide-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.guide-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.guide-link {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
}

.guide-link:hover {
    text-decoration: underline;
}

/* Newsletter */
.newsletter-section {
    padding: 60px 0;
    background: var(--bg-section);
}

.newsletter-card {
    background: white;
    border-radius: var(--radius);
    padding: 60px 40px;
    text-align: center;
    box-shadow: var(--shadow);
}

.newsletter-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.newsletter-card h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.newsletter-card > p {
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto 16px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    background: var(--bg-light);
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 1rem;
    font-family: inherit;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.newsletter-note {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    background: white;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

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

.footer-brand p {
    color: var(--text-muted);
    margin-top: 16px;
    max-width: 300px;
}

.footer-links h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text);
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

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

/* Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-toggle { display: flex; }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-image {
        margin-top: 40px;
    }
    
    .pet-circle {
        width: 200px;
        height: 200px;
    }
    
    .pet-emoji {
        font-size: 4rem;
    }
    
    .pet-circle.small {
        width: 70px;
        height: 70px;
    }
    
    .trust-grid {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand p {
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ===== ENHANCED SECTIONS ===== */

/* Testimonials */
.testimonials-section { padding: 80px 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.testimonial-card { background: var(--bg-card); border: 1px solid var(--glass-border); border-radius: var(--radius); padding: 32px; transition: all 0.3s; }
.testimonial-card:hover { background: var(--bg-card-hover); transform: translateY(-4px); }
.testimonial-stars { color: var(--warning); font-size: 1.25rem; margin-bottom: 16px; }
.testimonial-text { font-style: italic; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 48px; height: 48px; background: var(--gradient); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; color: white; }
.author-name { font-weight: 600; }
.author-title { font-size: 0.8rem; color: var(--text-muted); }

/* Social Proof */
.social-proof { padding: 48px 0; background: var(--bg-card); }
.proof-items { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 32px; }
.proof-item { text-align: center; }
.proof-number { display: block; font-size: 2.5rem; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.proof-label { font-size: 0.875rem; color: var(--text-muted); }

/* Floating animation */
.product-card:nth-child(1) { animation: float 4s ease-in-out infinite; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Glow button */
.btn-glow { animation: glow 2s ease-in-out infinite; }
@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px rgba(236, 147, 67, 0.3); }
  50% { box-shadow: 0 0 40px rgba(236, 147, 67, 0.5); }
}
