/**
 * Theme: Vibrant
 * Energetic, colorful, gradient-heavy. Food/lifestyle brand feel.
 * Bold gradients, colored shadows, playful animations.
 */

/* ── Palette ──────────────────────────────────────────── */
body.theme-vibrant {
    --color-primary: #e11d48;
    --color-secondary: #be123c;
    --color-accent: #f59e0b;
    --color-background: #fefefe;
    --color-surface: #ffffff;
    --color-text: #1a1a2e;
    --color-text-muted: #5a5a7a;
    --font-heading: 'Poppins', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
    background: #fefefe !important;
}

/* ── Header (gradient) ────────────────────────────────── */
body.theme-vibrant .site-header {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent, var(--color-secondary)));
    border-bottom: none;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
body.theme-vibrant .site-header .site-title { color: #fff; font-weight: 700; }
body.theme-vibrant .nav-item a { color: rgba(255,255,255,0.9); }
body.theme-vibrant .nav-item a:hover,
body.theme-vibrant .nav-item.active a { color: #fff; }
body.theme-vibrant .nav-item.active a::after { background: #fff; }
body.theme-vibrant .mobile-menu-toggle span { background: #fff; }
body.theme-vibrant .header-icon-link { color: #fff; }
body.theme-vibrant .header-icon-link:hover { color: #fff; background: rgba(255,255,255,0.18); }

/* ── Sections ─────────────────────────────────────────── */
body.theme-vibrant .section { padding: 5rem 0; }

body.theme-vibrant .section-header .section-heading,
body.theme-vibrant .slider-header .section-heading {
    font-size: 1.85rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent, var(--color-secondary)));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Cards ────────────────────────────────────────────── */
body.theme-vibrant .product-card,
body.theme-vibrant .card,
body.theme-vibrant .section-categories .category-card {
    background: #fff;
    border-radius: 20px;
    border: none;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: transform 0.45s cubic-bezier(0.22,1,0.36,1), box-shadow 0.45s;
}
body.theme-vibrant .product-card:hover,
body.theme-vibrant .section-categories .category-card:hover {
    transform: translateY(-10px) rotate(-0.5deg);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}
body.theme-vibrant .product-image { border-radius: 16px 16px 0 0; }

/* ── Buttons ──────────────────────────────────────────── */
body.theme-vibrant .btn {
    border-radius: 999px;
    font-weight: 700;
    transition: all 0.35s;
}
body.theme-vibrant .btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent, var(--color-secondary)));
    box-shadow: 0 6px 20px rgba(59,130,246,0.3);
    border: none;
}
body.theme-vibrant .btn-primary:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 10px 30px rgba(59,130,246,0.4);
    filter: brightness(1.08);
}

/* ── Hero ─────────────────────────────────────────────── */
body.theme-vibrant .section-hero .hero-heading {
    font-weight: 800;
    text-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

/* ── Deals ────────────────────────────────────────────── */
body.theme-vibrant .section-deals {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent, var(--color-secondary)));
    border-radius: 24px;
    margin: 0 1rem;
    overflow: hidden;
}
body.theme-vibrant .deals-badge {
    background: rgba(255,255,255,0.25);
    color: #fff;
}

/* ── Footer ───────────────────────────────────────────── */
body.theme-vibrant .site-footer {
    background: linear-gradient(180deg, #1a1a2e, #16213e);
    border-top: none;
    color: #ddd;
}
body.theme-vibrant .footer-section h4 { color: #fff; font-weight: 700; }
body.theme-vibrant .footer-links a,
body.theme-vibrant .footer-section p,
body.theme-vibrant .footer-contact { color: #aaa; }
body.theme-vibrant .footer-links a:hover { color: var(--color-accent, var(--color-primary)); }
body.theme-vibrant .footer-bottom { border-top-color: rgba(255,255,255,0.08); color: #666; }
body.theme-vibrant .social-links a { background: rgba(255,255,255,0.1); color: #fff; }
body.theme-vibrant .social-links a:hover { background: var(--color-primary); }

/* ── Scroll animations (playful) ── */
body.theme-vibrant .product-card,
body.theme-vibrant .category-card,
body.theme-vibrant .deal-card {
    transform: translateY(36px) scale(0.95);
    transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
}
body.theme-vibrant .product-card.animated,
body.theme-vibrant .category-card.animated,
body.theme-vibrant .deal-card.animated {
    transform: translateY(0) scale(1);
}
