/* ============================================
   MilkyPot - O Potinho Mais Feliz do Mundo
   Main Stylesheet
   ============================================ */

/* CSS Variables - Dreamy Pastel Rainbow Theme (from logo) */
:root {
    --pink: #90CAF9;
    --pink-dark: #42A5F5;
    --pink-light: #E3F2FD;
    --purple: #D4A5FF;
    --purple-dark: #B87EDC;
    --purple-light: #F0E0FF;
    --blue: #B8D8F8;
    --blue-dark: #7EB8E8;
    --blue-light: #E4F0FC;
    --mint: #C8F0DC;
    --yellow: #FFF0C8;
    --yellow-dark: #F0D060;
    --orange: #FFB38A;
    --green: #A8E0A8;
    --white: #FFFFFF;
    --cream: #FFF8F0;
    --bg: #F0F7FF;
    --bg-alt: #F5EEFF;
    --bg-dreamy: linear-gradient(180deg, #F0F7FF 0%, #F5EEFF 25%, #EEF5FF 50%, #F5EEFF 75%, #F0F7FF 100%);
    --text: #5A4570;
    --text-light: #9484A8;
    --text-dark: #3D2A55;
    --shadow: 0 4px 24px rgba(200, 150, 255, 0.18);
    --shadow-lg: 0 12px 48px rgba(200, 150, 255, 0.22);
    --shadow-pink: 0 4px 24px rgba(144, 202, 249, 0.35);
    --shadow-dreamy: 0 8px 32px rgba(212, 165, 255, 0.2), 0 0 80px rgba(144, 202, 249, 0.1);
    --radius: 20px;
    --radius-lg: 28px;
    --radius-xl: 36px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display: 'Baloo 2', cursive;
    --font-body: 'Nunito', sans-serif;

    --gradient-rainbow: linear-gradient(135deg, #90CAF9, #D4A5FF, #B8D8F8, #C8F0DC, #FFF0C8, #90CAF9);
    --gradient-pink: linear-gradient(135deg, #42A5F5, #64B5F6);
    --gradient-purple: linear-gradient(135deg, #B87EDC, #9060D0);
    --gradient-main: linear-gradient(135deg, #90CAF9 0%, #D4A5FF 25%, #B8D8F8 50%, #D4A5FF 75%, #90CAF9 100%);
    --gradient-card: linear-gradient(145deg, #FFFFFF 0%, #F5F9FF 30%, #F8F0FF 60%, #F0F5FF 100%);
    --gradient-dreamy: linear-gradient(135deg, #E3F2FD 0%, #F0E0FF 20%, #E4F0FC 40%, #F0E0FF 60%, #E3F2FD 80%, #FFF0C8 100%);
    --gradient-hero: linear-gradient(180deg, #F0F7FF 0%, #F0E0FF 20%, #E8F0FF 40%, #F0E0FF 60%, #E3F2FD 80%, #F0F7FF 100%);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    background-image: var(--bg-dreamy);
    background-attachment: fixed;
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Dreamy Rainbow Stripe Accents */
.rainbow-bg-stripe {
    position: fixed;
    pointer-events: none;
    z-index: 0;
    opacity: 0.06;
    border-radius: 50%;
    filter: blur(80px);
}
.rainbow-stripe-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, #90CAF9, transparent 70%);
    top: -200px; left: -200px;
}
.rainbow-stripe-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, #B8D8F8, transparent 70%);
    top: 40%; right: -150px;
}
.rainbow-stripe-3 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, #D4A5FF, transparent 70%);
    bottom: -200px; left: 30%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--text-dark);
    line-height: 1.2;
}

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

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

button {
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
    font-weight: 600;
    transition: var(--transition);
}

input, select, textarea {
    font-family: var(--font-body);
    font-size: 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Particles Background */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    animation: float-particle linear infinite;
}

@keyframes float-particle {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% { transform: translateY(-10vh) rotate(360deg); opacity: 0; }
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(240, 247, 255, 0.88);
    backdrop-filter: blur(24px) saturate(1.2);
    -webkit-backdrop-filter: blur(24px) saturate(1.2);
    border-bottom: 2px solid rgba(144, 202, 249, 0.25);
    transition: var(--transition);
    padding: 8px 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    padding: 4px 0;
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 72px;
    width: auto;
    object-fit: contain;
    border-radius: 12px;
    transition: var(--transition);
    filter: drop-shadow(0 2px 8px rgba(144, 202, 249, 0.3));
}

.logo:hover .logo-img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 16px rgba(144, 202, 249, 0.4));
}

.footer-logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 12px rgba(144, 202, 249, 0.3));
}

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

.nav-links a {
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    background: var(--pink-light);
    color: var(--pink-dark);
}

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

.btn-cart {
    position: relative;
    background: var(--pink-light);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.btn-cart:hover {
    background: var(--pink);
    transform: scale(1.1);
}

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

.btn-primary-small {
    background: var(--gradient-pink);
    color: white;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: var(--shadow-pink);
}

.btn-primary-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(66, 165, 245, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--text);
    border-radius: 3px;
    transition: var(--transition);
}

/* ============================================
   HERO SECTION — Dreamy Vibrant Style
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #D6ECFF 0%, #F0D0FF 15%, #D8C0F8 30%, #C8B8FF 45%, #D0D8FF 60%, #E0E8FF 75%, #F0E8FF 100%);
    padding: 100px 20px 60px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 15% 25%, rgba(144, 202, 249, 0.35) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 20%, rgba(150, 180, 255, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 75%, rgba(200, 150, 255, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 60%, rgba(255, 200, 150, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

/* Neon Glow Orbs */
.hero-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.hero-glow-1 {
    width: 400px; height: 400px;
    top: -80px; left: -80px;
    background: radial-gradient(circle, rgba(100, 181, 246, 0.4) 0%, rgba(100, 181, 246, 0) 70%);
    animation: glow-pulse 5s ease-in-out infinite;
}
.hero-glow-2 {
    width: 350px; height: 350px;
    top: 20%; right: -60px;
    background: radial-gradient(circle, rgba(130, 160, 255, 0.35) 0%, rgba(130, 160, 255, 0) 70%);
    animation: glow-pulse 6s ease-in-out infinite 1s;
}
.hero-glow-3 {
    width: 500px; height: 500px;
    bottom: -100px; left: 30%;
    background: radial-gradient(circle, rgba(180, 130, 255, 0.3) 0%, rgba(180, 130, 255, 0) 70%);
    animation: glow-pulse 7s ease-in-out infinite 2s;
}
@keyframes glow-pulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.15); opacity: 1; }
}

/* Hero Logo — Enhanced Neon Glow */
.hero-logo-wrapper {
    margin-bottom: 16px;
    animation: hero-logo-float 4s ease-in-out infinite;
    position: relative;
}

.hero-logo-wrapper::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 30px;
    background: radial-gradient(ellipse, rgba(100, 181, 246, 0.3) 0%, transparent 70%);
    filter: blur(10px);
    animation: logo-glow-pulse 4s ease-in-out infinite;
}

@keyframes logo-glow-pulse {
    0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(0.95); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.05); }
}

.hero-logo {
    max-width: 420px;
    width: 85%;
    height: auto;
    border-radius: 24px;
    filter:
        drop-shadow(0 0 20px rgba(100, 181, 246, 0.5))
        drop-shadow(0 0 60px rgba(212, 165, 255, 0.3))
        drop-shadow(0 8px 32px rgba(144, 202, 249, 0.4));
    transition: transform 0.4s ease, filter 0.4s ease;
}

.hero-logo:hover {
    transform: scale(1.05);
    filter:
        drop-shadow(0 0 30px rgba(100, 181, 246, 0.6))
        drop-shadow(0 0 80px rgba(212, 165, 255, 0.4))
        drop-shadow(0 12px 40px rgba(144, 202, 249, 0.5));
}

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

/* Hero Tagline — "O Potinho Mais Feliz do Mundo" */
.hero-tagline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    gap: 8px 12px;
    margin-bottom: 20px;
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.2;
}

.tagline-word {
    display: inline-block;
    font-size: 1.6rem;
    animation: tagline-float 3s ease-in-out infinite;
}

.tagline-o, .tagline-do {
    font-size: 1.3rem;
    color: #C8A0D8;
    text-shadow: 0 0 15px rgba(200, 160, 216, 0.4);
}

.tagline-potinho {
    font-size: 2rem;
    background: linear-gradient(135deg, #FFD700, #FFA500, #FF8C00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(255, 165, 0, 0.3));
    animation-delay: 0.1s;
}

.tagline-mais {
    font-size: 2.2rem;
    color: #64B5F6;
    text-shadow: 0 0 20px rgba(100, 181, 246, 0.5), 0 2px 4px rgba(100, 181, 246, 0.2);
    animation-delay: 0.2s;
}

.tagline-feliz {
    font-size: 2.8rem;
    background: linear-gradient(135deg, #64B5F6, #42A5F5, #1E88E5, #1565C0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 3px 6px rgba(232, 90, 191, 0.35));
    animation-delay: 0.3s;
    letter-spacing: 1px;
}

.tagline-mundo {
    font-size: 2.2rem;
    background: linear-gradient(135deg, #60C0F0, #40A0E0, #3080D0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(64, 160, 224, 0.3));
    animation-delay: 0.4s;
}

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

/* Decorative Hearts */
.hero-hearts {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: 1;
}
.hero-heart {
    position: absolute;
    color: rgba(100, 181, 246, 0.5);
    text-shadow: 0 0 15px rgba(100, 181, 246, 0.4);
    animation: heart-float 4s ease-in-out infinite;
}
.hero-heart-1 { top: 15%; right: 8%; font-size: 2rem; animation-delay: 0s; }
.hero-heart-2 { top: 65%; right: 12%; font-size: 1.4rem; animation-delay: 1s; color: rgba(212, 165, 255, 0.5); }
.hero-heart-3 { top: 45%; left: 6%; font-size: 1.6rem; animation-delay: 2s; color: rgba(144, 202, 249, 0.4); }

@keyframes heart-float {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.5; }
    50% { transform: translateY(-10px) scale(1.15); opacity: 0.9; }
}

/* Rainbow Arc (visible arc behind logo) */
.hero-rainbow-arc {
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 350px;
    border-radius: 350px 350px 0 0;
    background: transparent;
    border-top: 8px solid rgba(255, 0, 0, 0.12);
    border-left: 8px solid rgba(255, 165, 0, 0.1);
    border-right: 8px solid rgba(0, 128, 255, 0.1);
    box-shadow:
        0 -12px 0 0 rgba(255, 100, 0, 0.08),
        0 -24px 0 0 rgba(255, 200, 0, 0.08),
        0 -36px 0 0 rgba(100, 200, 100, 0.08),
        0 -48px 0 0 rgba(100, 150, 255, 0.08),
        0 -60px 0 0 rgba(180, 100, 255, 0.08),
        0 -72px 0 0 rgba(100, 181, 246, 0.06);
    pointer-events: none;
    z-index: 0;
    animation: rainbow-arc-glow 6s ease-in-out infinite;
}

@keyframes rainbow-arc-glow {
    0%, 100% { opacity: 0.6; filter: blur(2px); }
    50% { opacity: 1; filter: blur(0px); }
}

/* Cloud Floor (bottom volumetric clouds) */
.cloud-floor {
    position: absolute;
    bottom: -30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 100px;
    filter: blur(8px);
    z-index: 1;
}
.cloud-floor-1 {
    width: 500px; height: 100px;
    left: -50px;
    animation: cloud-floor-float 8s ease-in-out infinite;
}
.cloud-floor-2 {
    width: 600px; height: 120px;
    left: 30%;
    animation: cloud-floor-float 10s ease-in-out infinite 2s;
}
.cloud-floor-3 {
    width: 450px; height: 90px;
    right: -30px;
    animation: cloud-floor-float 9s ease-in-out infinite 4s;
}
@keyframes cloud-floor-float {
    0%, 100% { transform: translateY(0); opacity: 0.85; }
    50% { transform: translateY(-8px); opacity: 1; }
}

/* Button Glow Effect */
.btn-glow {
    box-shadow: 0 4px 20px rgba(66, 165, 245, 0.35), 0 0 30px rgba(66, 165, 245, 0.15);
    animation: btn-glow-pulse 3s ease-in-out infinite;
}
@keyframes btn-glow-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(66, 165, 245, 0.35), 0 0 30px rgba(66, 165, 245, 0.15); }
    50% { box-shadow: 0 6px 30px rgba(66, 165, 245, 0.5), 0 0 50px rgba(66, 165, 245, 0.25); }
}

/* Golden Sparkle Stars */
.hero-stars {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.star {
    position: absolute;
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.6), 0 0 20px rgba(255, 215, 0, 0.3);
    font-size: 1rem;
    animation: star-twinkle 3s ease-in-out infinite;
}

.star-1 { top: 10%; left: 8%; animation-delay: 0s; font-size: 1.4rem; }
.star-2 { top: 16%; right: 10%; animation-delay: 0.5s; font-size: 1.1rem; }
.star-3 { top: 30%; left: 4%; animation-delay: 1s; font-size: 1.2rem; }
.star-4 { top: 22%; right: 22%; animation-delay: 1.5s; font-size: 1.6rem; }
.star-5 { bottom: 32%; left: 12%; animation-delay: 2s; font-size: 1rem; }
.star-6 { bottom: 22%; right: 6%; animation-delay: 0.8s; font-size: 1.3rem; }
.star-7 { top: 48%; left: 2%; animation-delay: 1.2s; font-size: 0.9rem; }
.star-8 { top: 8%; left: 42%; animation-delay: 2.2s; font-size: 1.1rem; }
.star-9 { top: 40%; right: 3%; animation-delay: 0.3s; font-size: 1rem; }
.star-10 { bottom: 40%; left: 30%; animation-delay: 1.8s; font-size: 0.8rem; }
.star-11 { top: 5%; right: 35%; animation-delay: 2.5s; font-size: 1.3rem; }
.star-12 { bottom: 15%; right: 25%; animation-delay: 0.6s; font-size: 0.9rem; }

@keyframes star-twinkle {
    0%, 100% { opacity: 0.3; transform: scale(0.7) rotate(0deg); }
    50% { opacity: 1; transform: scale(1.3) rotate(180deg); }
}

/* Wave Divider */
.wave-divider {
    margin-top: -2px;
    line-height: 0;
}
.wave-divider svg {
    width: 100%;
    height: 60px;
    display: block;
}

.hero-clouds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 100px;
    filter: blur(2px);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.3), inset 0 -5px 15px rgba(200, 180, 255, 0.1);
}

.cloud-5 {
    width: 220px; height: 65px;
    top: 45%; left: -12%;
    animation: cloud-move 32s linear infinite;
    animation-delay: 8s;
}
.cloud-5::before { width: 90px; height: 90px; top: -45px; left: 35px; }
.cloud-5::after { width: 110px; height: 110px; top: -55px; left: 85px; }

.cloud-6 {
    width: 170px; height: 48px;
    top: 70%; left: -10%;
    animation: cloud-move 26s linear infinite;
    animation-delay: 20s;
}
.cloud-6::before { width: 65px; height: 65px; top: -32px; left: 22px; }
.cloud-6::after { width: 85px; height: 85px; top: -42px; left: 65px; }

.cloud::before, .cloud::after {
    content: '';
    position: absolute;
    background: inherit;
    border-radius: 50%;
}

.cloud-1 {
    width: 200px;
    height: 60px;
    top: 15%;
    left: -10%;
    animation: cloud-move 25s linear infinite;
}
.cloud-1::before { width: 80px; height: 80px; top: -40px; left: 30px; }
.cloud-1::after { width: 100px; height: 100px; top: -50px; left: 80px; }

.cloud-2 {
    width: 250px;
    height: 70px;
    top: 25%;
    left: -15%;
    animation: cloud-move 35s linear infinite;
    animation-delay: 5s;
}
.cloud-2::before { width: 100px; height: 100px; top: -50px; left: 40px; }
.cloud-2::after { width: 120px; height: 120px; top: -60px; left: 100px; }

.cloud-3 {
    width: 180px;
    height: 50px;
    top: 60%;
    left: -10%;
    animation: cloud-move 30s linear infinite;
    animation-delay: 10s;
}
.cloud-3::before { width: 70px; height: 70px; top: -35px; left: 25px; }
.cloud-3::after { width: 90px; height: 90px; top: -45px; left: 70px; }

.cloud-4 {
    width: 160px;
    height: 45px;
    top: 80%;
    left: -10%;
    animation: cloud-move 28s linear infinite;
    animation-delay: 15s;
}
.cloud-4::before { width: 60px; height: 60px; top: -30px; left: 20px; }
.cloud-4::after { width: 80px; height: 80px; top: -40px; left: 60px; }

@keyframes cloud-move {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(calc(100vw + 100%)); }
}

.hero-rainbow {
    position: absolute;
    top: -35%;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    height: 1200px;
    background: conic-gradient(
        from 180deg,
        transparent 0deg,
        rgba(100, 181, 246, 0.18) 25deg,
        rgba(255, 180, 130, 0.15) 50deg,
        rgba(255, 230, 100, 0.15) 75deg,
        rgba(140, 220, 140, 0.15) 100deg,
        rgba(140, 200, 255, 0.18) 125deg,
        rgba(200, 140, 255, 0.18) 150deg,
        rgba(100, 181, 246, 0.15) 175deg,
        transparent 180deg
    );
    border-radius: 50%;
    pointer-events: none;
    animation: rainbow-spin 25s linear infinite;
}

@keyframes rainbow-spin {
    to { transform: translateX(-50%) rotate(360deg); }
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    padding: 10px 28px;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--purple-dark);
    margin-bottom: 20px;
    border: 2px solid rgba(144, 202, 249, 0.3);
    animation: badge-glow 3s ease-in-out infinite;
}

@keyframes badge-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(144, 202, 249, 0.2), 0 0 40px rgba(212, 165, 255, 0.1); }
    50% { box-shadow: 0 0 40px rgba(144, 202, 249, 0.35), 0 0 80px rgba(212, 165, 255, 0.15); }
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.title-line {
    display: block;
    font-size: 1.5rem;
    color: var(--text-light);
    font-weight: 500;
}

.title-brand {
    display: block;
    font-size: 4.5rem;
    line-height: 1;
}

.letter {
    display: inline-block;
    animation: letter-bounce 2s ease-in-out infinite;
    text-shadow: 2px 4px 8px rgba(0,0,0,0.1);
}
.letter:nth-child(1) { animation-delay: 0s; }
.letter:nth-child(2) { animation-delay: 0.1s; }
.letter:nth-child(3) { animation-delay: 0.2s; }
.letter:nth-child(4) { animation-delay: 0.3s; }
.letter:nth-child(5) { animation-delay: 0.4s; }
.letter:nth-child(6) { animation-delay: 0.5s; }
.letter:nth-child(7) { animation-delay: 0.6s; }
.letter:nth-child(8) { animation-delay: 0.7s; }

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

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(100, 80, 130, 0.85);
    margin-bottom: 28px;
    line-height: 1.7;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-primary {
    background: linear-gradient(135deg, #42A5F5, #1976D2, #B87EDC);
    color: white;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(66, 165, 245, 0.35);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(66, 165, 245, 0.4), 0 0 20px rgba(30, 136, 229, 0.2);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.85);
    color: var(--purple-dark);
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow);
    border: 2px solid rgba(212, 165, 255, 0.4);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    background: var(--purple-light);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 165, 255, 0.6);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
}

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

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #42A5F5, #B87EDC, #7EB8E8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
}

.hero-mascot {
    display: none;
}

.bounce-animation {
    animation: gentle-bounce 3s ease-in-out infinite;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 1;
    pointer-events: none;
}

.scroll-indicator span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 3px solid var(--pink-dark);
    border-bottom: 3px solid var(--pink-dark);
    transform: rotate(45deg);
    margin: 0 auto;
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 1; }
    50% { transform: rotate(45deg) translate(5px, 5px); opacity: 0.5; }
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-badge {
    display: inline-block;
    background: var(--gradient-card);
    padding: 6px 20px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--purple-dark);
    margin-bottom: 12px;
    border: 2px solid rgba(212, 165, 255, 0.2);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.highlight {
    background: linear-gradient(135deg, #42A5F5, #B87EDC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   STORE SELECTOR
   ============================================ */
.store-selector {
    padding: 80px 0;
    background: linear-gradient(180deg, #F5EEFF 0%, #F0F7FF 50%, #EEF5FF 100%);
    position: relative;
}

.store-search-box {
    max-width: 600px;
    margin: 0 auto 40px;
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-full);
    padding: 6px 6px 6px 20px;
    box-shadow: 0 8px 32px rgba(212, 165, 255, 0.15);
    border: 2px solid rgba(144, 202, 249, 0.2);
    transition: var(--transition);
}

.search-input-wrapper:focus-within {
    border-color: rgba(144, 202, 249, 0.5);
    box-shadow: 0 8px 32px rgba(144, 202, 249, 0.2), 0 0 20px rgba(212, 165, 255, 0.1);
}

.search-icon {
    font-size: 1.2rem;
    margin-right: 10px;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    padding: 12px 0;
    background: transparent;
}

.btn-location {
    background: linear-gradient(135deg, #42A5F5, #1976D2);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.btn-location:hover {
    transform: scale(1.1);
}

.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.store-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 2px solid rgba(144, 202, 249, 0.25);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(212, 165, 255, 0.1);
}

.store-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-rainbow);
}

.store-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--pink);
}

.store-card.selected {
    border-color: var(--pink-dark);
    box-shadow: var(--shadow-pink);
}

.store-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.store-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--pink-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.store-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
}

.store-address {
    font-size: 0.85rem;
    color: var(--text-light);
}

.store-meta {
    display: flex;
    gap: 16px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.store-meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    color: var(--text-light);
    background: rgba(144, 202, 249, 0.1);
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

.store-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 10px;
}

.store-status.open {
    color: var(--green);
}

.store-status.closed {
    color: var(--pink-dark);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.store-status.open .status-dot {
    background: var(--green);
    animation: pulse-dot 2s ease-in-out infinite;
}

.store-status.closed .status-dot {
    background: var(--pink-dark);
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* ============================================
   PRODUCTS
   ============================================ */
.products-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #F0F7FF 0%, #E3F2FD 30%, #F0E0FF 60%, #F0F7FF 100%);
    position: relative;
}

.selected-store-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-card);
    border: 2px solid var(--pink);
    border-radius: var(--radius-full);
    padding: 12px 24px;
    margin-bottom: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.store-banner-icon {
    font-size: 1.3rem;
}

.store-banner-name {
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--pink-dark);
}

.btn-change-store {
    background: var(--pink-light);
    color: var(--pink-dark);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    border: none;
}

.btn-change-store:hover {
    background: var(--pink);
    color: white;
}

.category-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 8px;
    margin-bottom: 32px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.category-tabs::-webkit-scrollbar {
    display: none;
}

.cat-tab {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(144, 202, 249, 0.2);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    color: var(--text);
}

.cat-tab:hover {
    border-color: rgba(144, 202, 249, 0.5);
    background: var(--pink-light);
}

.cat-tab.active {
    background: linear-gradient(135deg, #42A5F5, #1976D2, #B87EDC);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(66, 165, 245, 0.3);
}

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

.product-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid rgba(144, 202, 249, 0.2);
    transition: var(--transition);
    position: relative;
    box-shadow: 0 4px 16px rgba(212, 165, 255, 0.1);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(144, 202, 249, 0.25), 0 0 20px rgba(212, 165, 255, 0.1);
    border-color: rgba(144, 202, 249, 0.5);
}

.product-image {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

.product-image.ninho { background: linear-gradient(135deg, #D6ECFF, #E3F2FD, #D6ECFF); }
.product-image.acai { background: linear-gradient(135deg, #E0D0F8, #C8A8E8, #E0D0F8); }
.product-image.fit { background: linear-gradient(135deg, #D0FFE8, #C8F0DC, #D0FFE8); }
.product-image.sundae { background: linear-gradient(135deg, #FFF0C8, #E3F2FD, #FFF0C8); }
.product-image.adulto { background: linear-gradient(135deg, #F0E0FF, #E4D0F8, #F0E0FF); }
.product-image.bebidas { background: linear-gradient(135deg, #D8F0FF, #E4F0FC, #D8F0FF); }

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--gradient-pink);
    color: white;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
}

.product-info {
    padding: 20px;
}

.product-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.product-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--pink-dark);
}

.product-price small {
    font-size: 0.75rem;
    color: var(--text-light);
    text-decoration: line-through;
    display: block;
    font-weight: 500;
}

.btn-add-cart {
    background: var(--gradient-pink);
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    border: none;
    box-shadow: var(--shadow-pink);
}

.btn-add-cart:hover {
    transform: scale(1.15) rotate(10deg);
}

/* ============================================
   CATALOG CATEGORY BLOCKS (Homepage full menu)
   ============================================ */
.catalog-category-block {
    margin-bottom: 48px;
}

.catalog-cat-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(248,180,217,0.15) 100%);
    border-radius: 20px;
    border: 2px solid rgba(248,180,217,0.3);
}

.catalog-cat-emoji {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.catalog-cat-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    margin: 0;
}

.catalog-cat-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 4px 0 0 0;
}

/* Format sub-headers within catalog sections */
.catalog-format-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    margin: 32px 0 20px 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(248,240,255,0.9) 100%);
    border-radius: 16px;
    border-left: 4px solid var(--primary, #42A5F5);
}

.catalog-format-header:first-of-type {
    margin-top: 16px;
}

.format-emoji {
    font-size: 2rem;
    flex-shrink: 0;
}

.format-title {
    font-family: 'Baloo 2', cursive;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d1b4e;
    margin: 0;
}

.format-desc {
    font-size: 0.92rem;
    color: #6b5b7b;
    margin: 4px 0 0 0;
    line-height: 1.4;
}

/* Size buttons inside product cards */
.product-sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.size-btn {
    flex: 1 1 auto;
    min-width: 0;
    padding: 6px 8px;
    border: 2px solid rgba(248,180,217,0.4);
    border-radius: 12px;
    background: rgba(255,255,255,0.8);
    font-size: 0.7rem;
    color: var(--text);
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    line-height: 1.3;
    font-family: var(--font-body);
}

.size-btn strong {
    display: block;
    font-size: 0.85rem;
    color: var(--pink-dark);
    font-family: var(--font-display);
    margin-top: 2px;
}

.size-btn:hover {
    background: var(--gradient-pink);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-pink);
}

.size-btn:hover strong {
    color: white;
}

.size-btn-popular {
    border-color: var(--pink);
    background: rgba(248,180,217,0.12);
    position: relative;
}

.size-btn-popular::before {
    content: 'Top';
    position: absolute;
    top: -8px;
    right: -4px;
    background: var(--gradient-pink);
    color: white;
    font-size: 0.55rem;
    font-weight: 700;
    padding: 1px 5px;
    border-radius: 6px;
}

/* ============================================
   HOW TO ORDER
   ============================================ */
.how-to-order {
    padding: 80px 0;
    background: linear-gradient(180deg, #EEF5FF 0%, #F0E0FF 50%, #E3F2FD 100%);
    position: relative;
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.step-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    width: 200px;
    border: 2px solid rgba(144, 202, 249, 0.2);
    position: relative;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(212, 165, 255, 0.1);
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(144, 202, 249, 0.25), 0 0 20px rgba(212, 165, 255, 0.1);
    border-color: rgba(144, 202, 249, 0.5);
}

.step-number {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #42A5F5, #1976D2);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    box-shadow: 0 2px 8px rgba(66, 165, 245, 0.3);
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.step-card h3 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.step-card p {
    font-size: 0.85rem;
    color: var(--text-light);
}

.step-connector {
    font-size: 1.5rem;
    color: var(--pink);
    font-weight: 700;
}

/* ============================================
   FRANCHISE
   ============================================ */
.franchise-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #F0F7FF 0%, #F5EEFF 30%, #E8F0FF 60%, #F5EEFF 100%);
    position: relative;
}

.franchise-hero-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-xl);
    padding: 48px;
    border: 2px solid rgba(144, 202, 249, 0.2);
    margin-bottom: 48px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(212, 165, 255, 0.12);
}

.franchise-hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-rainbow);
}

.franchise-hero-content h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.franchise-hero-content > p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.franchise-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.fh-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.fh-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.fh-item strong {
    display: block;
    font-size: 0.95rem;
}

.fh-item span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.models-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 32px;
}

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

.model-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-xl);
    padding: 32px;
    border: 2px solid rgba(212, 165, 255, 0.2);
    text-align: center;
    transition: var(--transition);
    position: relative;
    box-shadow: 0 4px 16px rgba(212, 165, 255, 0.1);
}

.model-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(144, 202, 249, 0.2), 0 0 20px rgba(212, 165, 255, 0.1);
}

.model-card.featured {
    border-color: rgba(66, 165, 245, 0.4);
    box-shadow: 0 8px 32px rgba(144, 202, 249, 0.25), 0 0 40px rgba(212, 165, 255, 0.1);
    transform: scale(1.02);
    background: rgba(240, 247, 255, 0.85);
}

.model-card.featured:hover {
    transform: scale(1.02) translateY(-6px);
}

.model-badge {
    display: inline-block;
    background: var(--gradient-purple);
    color: white;
    padding: 4px 16px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.model-card.featured .model-badge {
    background: var(--gradient-pink);
}

.model-icon {
    font-size: 3rem;
    margin-bottom: 12px;
}

.model-card h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.model-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.model-price {
    margin-bottom: 20px;
}

.price-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
}

.price-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--pink-dark);
}

.model-features {
    list-style: none;
    text-align: left;
    margin-bottom: 24px;
}

.model-features li {
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--text);
    border-bottom: 1px solid rgba(212, 165, 255, 0.1);
}

.model-features li::before {
    content: '✓ ';
    color: var(--green);
    font-weight: 700;
}

/* Franchise Numbers */
.franchise-numbers {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    padding: 32px 0;
}

.fn-item {
    text-align: center;
}

.fn-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #42A5F5, #B87EDC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fn-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #E3F2FD 0%, #F0E0FF 50%, #EEF5FF 100%);
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 2px solid rgba(144, 202, 249, 0.2);
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(212, 165, 255, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(144, 202, 249, 0.2), 0 0 20px rgba(212, 165, 255, 0.1);
}

.testimonial-stars {
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.testimonial-card p {
    font-size: 1rem;
    font-style: italic;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--pink-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ============================================
   CONTACT
   ============================================ */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #F5EEFF 0%, #F0F7FF 50%, #F0E0FF 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(212, 165, 255, 0.15);
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-item strong {
    display: block;
    font-size: 0.95rem;
}

.contact-item span {
    font-size: 0.9rem;
    color: var(--text-light);
}

.contact-socials {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.social-link {
    background: var(--gradient-card);
    padding: 10px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    border: 2px solid rgba(212, 165, 255, 0.15);
}

.social-link:hover {
    border-color: var(--pink);
    background: var(--pink-light);
}

.contact-form {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-xl);
    padding: 32px;
    border: 2px solid rgba(144, 202, 249, 0.2);
    box-shadow: 0 4px 24px rgba(212, 165, 255, 0.1);
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(212, 165, 255, 0.2);
    border-radius: var(--radius);
    background: white;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
    color: var(--text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--pink);
    box-shadow: 0 0 0 4px rgba(144, 202, 249, 0.2), 0 0 20px rgba(212, 165, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: linear-gradient(180deg, #F0E0FF, #E8D0F8 40%, #BBDEFB 70%, #E3F2FD);
    padding: 60px 0 20px;
    border-top: 3px solid;
    border-image: var(--gradient-rainbow) 1;
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

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

.footer-links a {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    padding: 4px 0;
}

.footer-links a:hover {
    color: var(--pink-dark);
    transform: translateX(4px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 2px solid rgba(212, 165, 255, 0.15);
}

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

/* ============================================
   CART SIDEBAR
   ============================================ */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    height: 100vh;
    background: linear-gradient(180deg, #F5F9FF, #F8F0FF, #F0F7FF);
    z-index: 2001;
    box-shadow: -10px 0 40px rgba(212, 165, 255, 0.2);
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 2px solid rgba(144, 202, 249, 0.2);
    background: var(--gradient-card);
}

.cart-header h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
}

.cart-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-close:hover {
    background: var(--pink-light);
    color: var(--pink-dark);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
}

.cart-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}

.cart-empty-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 12px;
    opacity: 0.5;
}

.cart-item {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: var(--gradient-card);
    border-radius: var(--radius);
    margin-bottom: 12px;
    border: 1px solid rgba(144, 202, 249, 0.15);
}

.cart-item-img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.cart-item-price {
    font-weight: 700;
    color: var(--pink-dark);
    font-size: 0.95rem;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.qty-btn {
    background: var(--pink-light);
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pink-dark);
}

.qty-btn:hover {
    background: var(--pink);
    color: white;
}

.cart-item-qty span {
    font-weight: 700;
    min-width: 20px;
    text-align: center;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.2rem;
    align-self: flex-start;
}

.cart-item-remove:hover {
    color: var(--pink-dark);
}

.cart-footer {
    padding: 20px 24px;
    border-top: 2px solid rgba(144, 202, 249, 0.2);
    background: var(--gradient-card);
}

.cart-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
}

.cart-total-value {
    color: var(--pink-dark);
    font-size: 1.4rem;
}

/* ============================================
   MODALS
   ============================================ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: linear-gradient(180deg, #FFFFFF, #F5F9FF, #F8F0FF);
    border-radius: var(--radius-xl);
    padding: 40px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(30px);
    transition: var(--transition);
    border: 2px solid rgba(144, 202, 249, 0.2);
    box-shadow: 0 20px 60px rgba(212, 165, 255, 0.2);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--pink-light);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.3rem;
    color: var(--pink-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--pink);
    color: white;
}

.modal-content h2 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.modal-desc {
    color: var(--text-light);
    margin-bottom: 24px;
}

/* Checkout specific */
.checkout-modal {
    max-width: 550px;
}

.checkout-steps {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin: 24px 0;
}

.checkout-step {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 600;
}

.checkout-step.active {
    color: var(--pink-dark);
}

.checkout-step.completed {
    color: var(--green);
}

.cs-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--pink-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
}

.checkout-step.active .cs-num {
    background: var(--gradient-pink);
    color: white;
}

.checkout-step.completed .cs-num {
    background: var(--green);
    color: white;
}

.checkout-panel {
    display: none;
}

.checkout-panel.active {
    display: block;
}

.checkout-panel h3 {
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.checkout-nav {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.checkout-nav .btn-secondary {
    padding: 12px 24px;
}

.checkout-nav .btn-primary {
    flex: 1;
    justify-content: center;
}

/* Delivery Options */
.delivery-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.delivery-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 2px solid rgba(212, 165, 255, 0.2);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.delivery-option:hover,
.delivery-option.active {
    border-color: var(--pink);
    background: var(--pink-light);
}

.delivery-option input {
    display: none;
}

.do-icon {
    font-size: 1.5rem;
}

.do-text strong {
    display: block;
    font-size: 0.95rem;
}

.do-text small {
    color: var(--text-light);
    font-size: 0.8rem;
}

/* Payment Options */
.payment-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.payment-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 16px;
    border: 2px solid rgba(212, 165, 255, 0.2);
    border-radius: var(--radius);
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
}

.payment-option:hover,
.payment-option.active {
    border-color: var(--pink);
    background: var(--pink-light);
}

.payment-option input {
    display: none;
}

.po-icon {
    font-size: 1.5rem;
}

.payment-option strong {
    font-size: 0.85rem;
}

.payment-option small {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* Order Summary */
.order-summary {
    background: var(--gradient-card);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(212, 165, 255, 0.15);
}

.order-summary h4 {
    font-size: 1rem;
    margin-bottom: 12px;
}

.summary-items {
    margin-bottom: 12px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    padding: 4px 0;
    color: var(--text-light);
}

.summary-line {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.9rem;
    border-top: 1px solid rgba(212, 165, 255, 0.15);
}

.summary-line.total {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--pink-dark);
    font-family: var(--font-display);
}

/* Success Modal */
.success-modal {
    text-align: center;
    max-width: 450px;
}

.success-animation {
    margin-bottom: 20px;
}

.success-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto;
    animation: success-pop 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes success-pop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.success-details {
    background: var(--gradient-card);
    border-radius: var(--radius);
    padding: 16px;
    margin: 20px 0;
    text-align: left;
    font-size: 0.9rem;
}

/* ============================================
   CHAT ORDERING (mmix style)
   ============================================ */
.chat-float-btn {
    position: fixed;
    bottom: 100px;
    right: 24px;
    z-index: 1500;
    background: var(--gradient-pink);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(66, 165, 245, 0.4);
    border: none;
    animation: gentle-bounce 3s ease-in-out infinite;
}

.chat-float-btn:hover {
    transform: scale(1.1);
}

.chat-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 380px;
    height: 600px;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.2);
    z-index: 1600;
    display: none;
    flex-direction: column;
    overflow: hidden;
    border: 2px solid rgba(144, 202, 249, 0.3);
}

.chat-widget.active {
    display: flex;
    animation: chat-slide-up 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes chat-slide-up {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.chat-header {
    background: var(--gradient-pink);
    color: white;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-header-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.chat-header-info h4 {
    color: white;
    font-size: 0.95rem;
}

.chat-header-info span {
    font-size: 0.75rem;
    opacity: 0.9;
}

.chat-close-btn {
    margin-left: auto;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #F5F9FF;
}

.chat-message {
    max-width: 85%;
    animation: msg-appear 0.3s ease-out;
}

@keyframes msg-appear {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.chat-message.bot {
    align-self: flex-start;
}

.chat-message.user {
    align-self: flex-end;
}

.chat-bubble {
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.chat-message.bot .chat-bubble {
    background: white;
    border: 1px solid rgba(144, 202, 249, 0.2);
    border-bottom-left-radius: 4px;
    color: var(--text);
}

.chat-message.user .chat-bubble {
    background: var(--gradient-pink);
    color: white;
    border-bottom-right-radius: 4px;
}

.chat-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.chat-option-btn {
    background: var(--pink-light);
    border: 2px solid var(--pink);
    color: var(--pink-dark);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.chat-option-btn:hover {
    background: var(--gradient-pink);
    color: white;
    border-color: transparent;
}

.chat-product-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(144, 202, 249, 0.2);
    margin-top: 8px;
}

.chat-product-img {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #D6ECFF, #E3F2FD);
}

.chat-product-info {
    padding: 12px;
}

.chat-product-info h5 {
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.chat-product-info .price {
    font-weight: 700;
    color: var(--pink-dark);
    font-family: var(--font-display);
}

.chat-product-info .desc {
    font-size: 0.8rem;
    color: var(--text-light);
}

.chat-product-actions {
    display: flex;
    gap: 8px;
    padding: 0 12px 12px;
}

.chat-product-actions button {
    flex: 1;
    padding: 8px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    border: none;
}

.chat-add-btn {
    background: var(--gradient-pink);
    color: white;
}

.chat-input-area {
    padding: 12px;
    border-top: 2px solid rgba(144, 202, 249, 0.15);
    display: flex;
    gap: 8px;
    background: white;
}

.chat-input {
    flex: 1;
    border: 2px solid rgba(212, 165, 255, 0.2);
    border-radius: var(--radius-full);
    padding: 10px 16px;
    font-size: 0.9rem;
    outline: none;
}

.chat-input:focus {
    border-color: var(--pink);
}

.chat-send-btn {
    background: var(--gradient-pink);
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: none;
}

.chat-send-btn:hover {
    transform: scale(1.1);
}

.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 12px 16px;
    background: white;
    border-radius: 18px;
    border-bottom-left-radius: 4px;
    border: 1px solid rgba(144, 202, 249, 0.2);
    width: fit-content;
}

.typing-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--pink);
    animation: typing-bounce 1.4s ease-in-out infinite;
}

.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing-bounce {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-6px); }
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1400;
    background: #25D366;
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* ============================================
   PROMO BANNER
   ============================================ */
.promo-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,240,248,0.9));
    backdrop-filter: blur(12px);
    border: 2px solid var(--pink);
    border-radius: var(--radius-full);
    padding: 12px 24px;
    margin-bottom: 24px;
    animation: pulse-border 2s ease-in-out infinite;
    flex-wrap: wrap;
}

@keyframes pulse-border {
    0%, 100% { border-color: var(--pink); box-shadow: 0 0 0 0 rgba(248,180,217,0.4); }
    50% { border-color: var(--purple); box-shadow: 0 0 20px rgba(212,165,255,0.3); }
}

.promo-badge {
    background: var(--gradient-pink);
    color: white;
    font-weight: 800;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    letter-spacing: 1px;
    font-family: var(--font-display);
    animation: pulse 1.5s ease-in-out infinite;
}

.promo-text {
    font-size: 0.95rem;
    color: var(--text-dark);
}

.promo-code {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    font-size: 1.1rem;
    font-family: var(--font-display);
    letter-spacing: 1px;
}

.promo-timer {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--pink-dark);
    font-family: var(--font-display);
}

/* ============================================
   BENEFITS BAR
   ============================================ */
.benefits-bar {
    background: linear-gradient(135deg, rgba(255,255,255,0.85), rgba(248,240,255,0.85));
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(248,180,217,0.2);
    border-bottom: 1px solid rgba(248,180,217,0.2);
    padding: 20px 0;
    position: relative;
    z-index: 1;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    text-align: left;
}

.benefit-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-item strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text-dark);
    line-height: 1.2;
}

.benefit-item small {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* ============================================
   SOCIAL PROOF BAR
   ============================================ */
.social-proof-bar {
    background: linear-gradient(135deg, var(--pink-light), var(--purple-light), var(--blue-light));
    padding: 24px 0;
    position: relative;
    z-index: 1;
}

.sp-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.sp-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.sp-icon {
    font-size: 1.3rem;
}

.sp-item strong {
    font-family: var(--font-display);
    font-size: 1.1rem;
}

.sp-divider {
    width: 1px;
    height: 24px;
    background: rgba(90,69,112,0.2);
}

/* ============================================
   PRODUCT URGENCY
   ============================================ */
.product-urgency {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--pink-dark);
    font-weight: 600;
    padding: 0 12px 8px;
    animation: pulse 2s ease-in-out infinite;
}

.urgency-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--pink-dark);
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ============================================
   TESTIMONIAL TABS
   ============================================ */
.testimonial-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
}

.tt-tab {
    padding: 10px 24px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(8px);
    border: 2px solid transparent;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
    transition: var(--transition);
}

.tt-tab:hover {
    background: rgba(255,255,255,0.9);
}

.tt-tab.active {
    background: linear-gradient(135deg, var(--pink), var(--purple));
    color: white;
    border-color: transparent;
}

.testimonial-source {
    margin-top: 12px;
    font-size: 0.75rem;
    color: var(--text-light);
    font-style: italic;
}

.testimonial-badge-franchise {
    margin-top: 12px;
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--mint), var(--blue-light));
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* ============================================
   MEDIA & AWARDS
   ============================================ */
.media-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #F0F7FF 0%, #F5EEFF 50%, #EEF5FF 100%);
    position: relative;
    z-index: 1;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.award-card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(248,180,217,0.2);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    transition: var(--transition);
}

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

.award-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.award-card strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.award-card span {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* ============================================
   ROI SIMULATOR
   ============================================ */
.roi-simulator {
    background: linear-gradient(135deg, rgba(255,255,255,0.85), rgba(248,240,255,0.85));
    backdrop-filter: blur(12px);
    border: 2px solid rgba(212,165,255,0.3);
    border-radius: var(--radius-xl);
    padding: 40px;
    margin: 48px 0;
    text-align: center;
}

.roi-title {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.roi-desc {
    color: var(--text-light);
    margin-bottom: 32px;
}

.roi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    text-align: left;
}

.roi-inputs {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.roi-results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.roi-result-card {
    background: rgba(255,255,255,0.8);
    border-radius: var(--radius);
    padding: 16px;
    text-align: center;
    border: 1px solid rgba(248,180,217,0.2);
}

.roi-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 6px;
    font-weight: 600;
}

.roi-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
}

.roi-value.roi-green {
    color: #2D9E5C;
}

.roi-result-card.roi-highlight {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--pink-light), var(--purple-light));
    border: 2px solid var(--pink);
}

.roi-result-card.roi-highlight .roi-value {
    font-size: 1.8rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.roi-disclaimer {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 20px;
    font-style: italic;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #EEF5FF 0%, #F5EEFF 50%, #F0F7FF 100%);
    position: relative;
    z-index: 1;
}

.faq-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
}

.faq-tab {
    padding: 10px 24px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(8px);
    border: 2px solid transparent;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
    transition: var(--transition);
}

.faq-tab:hover {
    background: rgba(255,255,255,0.9);
}

.faq-tab.active {
    background: linear-gradient(135deg, var(--pink), var(--purple));
    color: white;
}

.faq-list {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(248,180,217,0.2);
    border-radius: var(--radius);
    margin-bottom: 10px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--pink);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: none;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
}

.faq-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s;
    color: var(--pink-dark);
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 20px 18px;
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.6;
}

/* ============================================
   TRUST BADGES
   ============================================ */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 24px 0;
    border-top: 1px solid rgba(248,180,217,0.2);
    margin-bottom: 16px;
}

.trust-badge {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 600;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.3);
    border: 1px solid rgba(248,180,217,0.15);
}

/* Utility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================
   Compact Hero
   ============================================ */
.hero-compact {
    padding: 100px 20px 20px;
    text-align: center;
    background: linear-gradient(180deg, #E3F2FD 0%, #F0F7FF 100%);
}

.hero-compact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    max-width: 700px;
    margin: 0 auto;
}

.hero-logo-small {
    width: 280px;
    height: auto;
    border-radius: 0;
    filter: drop-shadow(0 4px 16px rgba(66, 165, 245, 0.25));
}

.hero-title-compact {
    font-family: 'Baloo 2', cursive;
    font-size: 1.4rem;
    font-weight: 800;
    color: #2d1b4e;
    margin: 0;
    line-height: 1.2;
}

.hero-subtitle-compact {
    font-size: 0.95rem;
    color: #6b5b7b;
    margin: 4px 0 0;
}

/* ============================================
   Sticky Category Tabs
   ============================================ */
.sticky-tabs {
    position: sticky;
    top: 70px;
    z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 0;
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
    border-bottom: 1px solid rgba(66,165,245,0.1);
}

/* ============================================
   Mobile Product Cards
   ============================================ */
.products-grid-mobile {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px 0;
}

.product-card-mobile {
    display: flex;
    align-items: center;
    gap: 14px;
    background: white;
    border-radius: 20px;
    padding: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid rgba(66,165,245,0.08);
}

.product-card-mobile:active {
    transform: scale(0.98);
    box-shadow: 0 1px 6px rgba(0,0,0,0.1);
}

.card-emoji-wrap {
    position: relative;
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-emoji {
    font-size: 2rem;
}

.card-format-icon {
    position: absolute;
    bottom: -4px;
    right: -4px;
    font-size: 0.9rem;
    background: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.card-badge {
    position: absolute;
    top: -6px;
    left: -6px;
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 8px;
    font-weight: 700;
    color: white;
}

.badge-popular {
    background: #42A5F5;
}

.badge-adulto {
    background: #FF5252;
}

.card-info {
    flex: 1;
    min-width: 0;
}

.card-name {
    font-family: 'Baloo 2', cursive;
    font-size: 1rem;
    font-weight: 700;
    color: #2d1b4e;
    margin: 0;
    line-height: 1.2;
}

.card-desc {
    font-size: 0.78rem;
    color: #8b7b9b;
    margin: 2px 0 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-price {
    font-size: 0.82rem;
    color: #6b5b7b;
}

.card-price strong {
    color: #42A5F5;
    font-size: 1rem;
}

.card-add-btn {
    background: #42A5F5;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    min-height: 40px;
    transition: background 0.2s;
}

.card-add-btn:active {
    background: #1E88E5;
}

/* Category Dividers */
.catalog-cat-divider {
    padding: 20px 0 8px;
}

.catalog-cat-divider-title {
    font-family: 'Baloo 2', cursive;
    font-size: 1.2rem;
    font-weight: 700;
    color: #2d1b4e;
    margin: 0;
}

.catalog-cat-divider-desc {
    font-size: 0.82rem;
    color: #8b7b9b;
    margin: 2px 0 0;
}

/* ============================================
   Product Bottom Sheet
   ============================================ */
.sheet-backdrop {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 10000;
    opacity: 0;
    animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.product-sheet {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: white;
    border-radius: 24px 24px 0 0;
    z-index: 10001;
    max-height: 88vh;
    overflow-y: auto;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
    padding-bottom: env(safe-area-inset-bottom, 0px);
}

.product-sheet.sheet-open {
    transform: translateY(0);
}

.sheet-handle {
    width: 40px;
    height: 4px;
    background: #ddd;
    border-radius: 2px;
    margin: 12px auto;
    cursor: pointer;
}

.sheet-content {
    padding: 0 20px 20px;
}

.sheet-product-hero {
    text-align: center;
    padding: 8px 0 20px;
}

.sheet-emoji {
    font-size: 4rem;
    display: block;
    margin-bottom: 8px;
}

.sheet-name {
    font-family: 'Baloo 2', cursive;
    font-size: 1.5rem;
    font-weight: 800;
    color: #2d1b4e;
    margin: 0;
}

.sheet-desc {
    font-size: 0.9rem;
    color: #8b7b9b;
    margin: 4px 0 0;
}

.sheet-section {
    margin-top: 20px;
}

.sheet-section-title {
    font-family: 'Baloo 2', cursive;
    font-size: 1.05rem;
    font-weight: 700;
    color: #2d1b4e;
    margin: 0 0 10px;
}

.sheet-optional {
    font-weight: 400;
    color: #aaa;
    font-size: 0.85rem;
}

/* Size Buttons */
.sheet-sizes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.sheet-size-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 12px 8px;
    border: 2px solid #E3F2FD;
    border-radius: 16px;
    background: white;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.sheet-size-btn.selected {
    border-color: #42A5F5;
    background: #F0F7FF;
}

.size-ml {
    font-size: 0.75rem;
    color: #8b7b9b;
}

.size-name {
    font-family: 'Baloo 2', cursive;
    font-size: 0.9rem;
    font-weight: 700;
    color: #2d1b4e;
}

.size-price {
    font-size: 0.85rem;
    font-weight: 700;
    color: #42A5F5;
}

.size-popular-tag {
    position: absolute;
    top: -8px;
    right: -4px;
    font-size: 0.6rem;
    background: #42A5F5;
    color: white;
    padding: 1px 6px;
    border-radius: 8px;
    font-weight: 700;
}

/* Extras */
.sheet-extras {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sheet-extra-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 1.5px solid #f0f0f0;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.sheet-extra-item.extra-selected {
    border-color: #42A5F5;
    background: #F0F7FF;
}

.extra-emoji {
    font-size: 1.2rem;
}

.extra-name {
    flex: 1;
    font-size: 0.9rem;
    color: #333;
}

.extra-price {
    font-size: 0.85rem;
    color: #42A5F5;
    font-weight: 600;
}

.extra-toggle {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 6px;
    transition: all 0.2s;
    flex-shrink: 0;
}

.extra-selected .extra-toggle {
    background: #42A5F5;
    border-color: #42A5F5;
}

/* Sheet Footer (Fixed) */
.sheet-footer {
    position: sticky;
    bottom: 0;
    background: white;
    padding: 16px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #f0f0f0;
    margin-top: 20px;
}

.sheet-qty {
    display: flex;
    align-items: center;
    gap: 0;
    border: 2px solid #E3F2FD;
    border-radius: 14px;
    overflow: hidden;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: white;
    font-size: 1.2rem;
    font-weight: 700;
    color: #42A5F5;
    cursor: pointer;
}

.qty-btn:active {
    background: #E3F2FD;
}

.qty-value {
    width: 32px;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    color: #2d1b4e;
}

.sheet-add-btn {
    flex: 1;
    background: #42A5F5;
    color: white;
    border: none;
    padding: 14px 20px;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    min-height: 48px;
    transition: background 0.2s;
}

.sheet-add-btn:active {
    background: #1E88E5;
}

/* ============================================
   Sticky Cart Bar
   ============================================ */
.sticky-cart-bar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 9999;
    background: #42A5F5;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    animation: slideUpBanner 0.3s ease;
}

.sticky-cart-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.sticky-cart-icon {
    font-size: 1.3rem;
}

.sticky-cart-btn {
    background: white;
    color: #42A5F5;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    min-height: 44px;
}

/* ============================================
   Add to Cart Toast
   ============================================ */
.add-toast {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    background: #2d1b4e;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 99999;
    opacity: 0;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.add-toast.toast-show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Desktop: 2-column grid for product cards */
@media (min-width: 768px) {
    .products-grid-mobile {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .catalog-cat-divider {
        grid-column: 1 / -1;
    }

    .product-sheet {
        max-width: 480px;
        left: 50%;
        transform: translateX(-50%) translateY(100%);
        border-radius: 24px 24px 0 0;
    }

    .product-sheet.sheet-open {
        transform: translateX(-50%) translateY(0);
    }

    .hero-compact {
        padding: 100px 20px 30px;
    }

    .hero-title-compact {
        font-size: 2rem;
    }
}

/* ============================================
   Checkout Franchise Selection Styles
   ============================================ */

.checkout-panel-desc {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.franchise-search-checkout {
    margin-bottom: 16px;
}

.franchise-search-checkout .search-input-wrapper {
    display: flex;
    align-items: center;
    background: #F0F7FF;
    border: 2px solid #BBDEFB;
    border-radius: 12px;
    padding: 4px 8px;
    gap: 8px;
}

.franchise-search-checkout .search-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px 8px;
    font-size: 0.95rem;
    outline: none;
}

.franchise-search-checkout .btn-location {
    background: #42A5F5;
    border: none;
    border-radius: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
}

/* Store cards in checkout */
.checkout-stores-list {
    max-height: 340px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
    padding-right: 4px;
}

.checkout-stores-list::-webkit-scrollbar {
    width: 4px;
}
.checkout-stores-list::-webkit-scrollbar-thumb {
    background: #BBDEFB;
    border-radius: 4px;
}

.checkout-store-card {
    background: #fff;
    border: 2px solid #E3F2FD;
    border-radius: 14px;
    padding: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.checkout-store-card:hover {
    border-color: #42A5F5;
    box-shadow: 0 2px 12px rgba(66, 165, 245, 0.15);
}

.checkout-store-card.store-selected {
    border-color: #42A5F5;
    background: #F0F7FF;
    box-shadow: 0 2px 12px rgba(66, 165, 245, 0.2);
}

.checkout-store-card.store-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cs-card-main {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 8px;
}

.cs-card-info {
    flex: 1;
}

.cs-card-name {
    display: block;
    font-size: 0.95rem;
    color: #1565C0;
    margin-bottom: 2px;
}

.cs-card-addr {
    font-size: 0.8rem;
    color: #888;
    display: block;
}

.cs-card-check {
    font-size: 1.2rem;
    min-width: 24px;
    text-align: center;
}

.cs-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 4px;
}

.cs-meta {
    font-size: 0.78rem;
    color: #666;
    background: #F5F5F5;
    padding: 3px 8px;
    border-radius: 6px;
}

.cs-meta.store-open {
    color: #2E7D32;
    background: #E8F5E9;
    font-weight: 600;
}

.cs-meta.store-closed {
    color: #C62828;
    background: #FFEBEE;
    font-weight: 600;
}

.cs-card-hours {
    font-size: 0.78rem;
    color: #999;
}

/* Selected store card */
.checkout-selected-store {
    margin-bottom: 16px;
}

.selected-store-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #E3F2FD, #BBDEFB);
    border: 2px solid #42A5F5;
    border-radius: 14px;
    padding: 14px 16px;
    gap: 12px;
}

.selected-store-info strong {
    display: block;
    color: #1565C0;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.selected-store-addr {
    font-size: 0.8rem;
    color: #666;
    display: block;
    margin-bottom: 6px;
}

.selected-store-meta {
    display: flex;
    gap: 10px;
}

.ss-meta-item {
    font-size: 0.78rem;
    color: #555;
}

.ss-open {
    color: #2E7D32;
    font-weight: 600;
}

.btn-change-store {
    background: #fff;
    border: 2px solid #42A5F5;
    color: #42A5F5;
    padding: 8px 16px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-change-store:hover {
    background: #42A5F5;
    color: #fff;
}

/* Checkout step completed */
.checkout-step.completed .cs-num {
    background: #4CAF50;
    color: #fff;
}

.checkout-step.completed {
    color: #4CAF50;
}

/* No stores found */
.checkout-no-stores {
    text-align: center;
    padding: 24px;
    color: #999;
    font-size: 0.9rem;
}

/* Summary store card */
.summary-store-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #F0F7FF;
    border: 1px solid #BBDEFB;
    border-radius: 10px;
    padding: 10px 14px;
    margin-bottom: 12px;
}

.summary-store-card .summary-store-icon {
    font-size: 1.3rem;
}

.summary-store-card strong {
    display: block;
    color: #1565C0;
    font-size: 0.9rem;
}

.summary-store-card small {
    color: #888;
    font-size: 0.8rem;
}

/* Disabled button */
#btnToDelivery:disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.7;
}

/* 4-step layout adjustment */
.checkout-steps {
    display: flex;
    justify-content: space-between;
    gap: 4px;
}

.checkout-step {
    flex: 1;
    text-align: center;
    font-size: 0.75rem;
}

.checkout-step .cs-num {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
}

/* Mobile adjustments for checkout stores */
@media (max-width: 768px) {
    .checkout-stores-list {
        max-height: 280px;
    }

    .selected-store-card {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .selected-store-meta {
        justify-content: center;
    }

    .btn-change-store {
        align-self: center;
    }

    .cs-card-meta {
        gap: 4px;
    }

    .cs-meta {
        font-size: 0.72rem;
    }
}
