/* ============================================
   Exotic Berry Frozen Yogurt - Harlingen
   Vibrant Modern with Emerald + Cream Palette
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --emerald-50: #ecfdf5;
    --emerald-100: #d1fae5;
    --emerald-200: #a7f3d0;
    --emerald-400: #34d399;
    --emerald-500: #10b981;
    --emerald-600: #059669;
    --emerald-700: #047857;
    --emerald-800: #065f46;
    --emerald-900: #064e3b;
    
    --cream-50: #fffff7;
    --cream-100: #fefce8;
    --cream-200: #fef9c3;
    --cream-300: #fef08a;
    
    --pink-400: #f472b6;
    --pink-500: #ec4899;
    --pink-100: #fce7f3;
    
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --amber-100: #fef3c7;
    
    --purple-400: #a78bfa;
    --purple-500: #8b5cf6;
    --purple-100: #ede9fe;
    
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    --font-heading: 'Fredoka', sans-serif;
    --font-body: 'Nunito', sans-serif;
    
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 14px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.06);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.12);
    
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-800);
    background-color: var(--cream-50);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

ul {
    list-style: none;
}

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

.text-emerald { color: var(--emerald-600); }
.text-cream { color: var(--cream-200); }
.text-center { text-align: center; }

/* --- Decorative Blobs --- */
.blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: var(--emerald-200);
    top: -100px;
    right: -100px;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: var(--pink-100);
    bottom: 20%;
    left: -100px;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: var(--amber-100);
    bottom: -50px;
    right: 10%;
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 247, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(5, 150, 105, 0.08);
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 247, 0.95);
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--emerald-700);
}

.logo-text {
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.938rem;
    color: var(--gray-700);
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
    background: var(--emerald-50);
    color: var(--emerald-700);
}

.nav-cta {
    background: var(--emerald-600) !important;
    color: white !important;
    padding: 10px 22px !important;
    margin-left: 8px;
}

.nav-cta:hover {
    background: var(--emerald-700) !important;
    color: white !important;
}

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

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background: var(--emerald-600);
    color: white;
}

.btn-primary:hover {
    background: var(--emerald-700);
}

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

.btn-secondary:hover {
    border-color: var(--emerald-400);
    background: var(--emerald-50);
}

.btn-cream {
    background: var(--cream-100);
    color: var(--emerald-800);
}

.btn-cream:hover {
    background: var(--cream-200);
}

.btn-outline-cream {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline-cream:hover {
    background: rgba(255,255,255,0.15);
    border-color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.063rem;
}

/* --- Section Labels & Titles --- */
.section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.813rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--emerald-600);
    background: var(--emerald-50);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--emerald-700);
    background: var(--emerald-50);
    border: 1px solid var(--emerald-200);
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero-badge svg {
    fill: var(--emerald-500);
    stroke: var(--emerald-500);
}

.hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--gray-900);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-headline .highlight {
    color: var(--emerald-600);
    position: relative;
}

.hero-headline .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--emerald-200);
    border-radius: 4px;
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--emerald-700);
    line-height: 1;
}

.stat-label {
    font-size: 0.813rem;
    color: var(--gray-500);
    font-weight: 600;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-200);
}

/* Hero Image */
.hero-image {
    position: relative;
}

.hero-image-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.hero-image-wrapper img {
    width: 100%;
    height: 700px;
    object-fit: cover;
}

.hero-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 14px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    font-weight: 700;
    font-size: 0.938rem;
    animation: float 3s ease-in-out infinite;
}

.float-card-1 {
    top: 15%;
    left: -30px;
    color: var(--emerald-700);
    animation-delay: 0s;
}

.float-card-2 {
    bottom: 20%;
    right: -20px;
    color: var(--amber-600);
    animation-delay: 1.5s;
}

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

/* Hero Geometric Shapes */
.hero-shape {
    position: absolute;
    z-index: 0;
}

.shape-circle-1 {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--emerald-100);
    top: 10%;
    right: -40px;
    z-index: 0;
}

.shape-circle-2 {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--pink-100);
    bottom: 15%;
    left: 48%;
    z-index: 0;
}

.shape-square-1 {
    width: 60px;
    height: 60px;
    background: var(--amber-100);
    border-radius: var(--radius-sm);
    top: 5%;
    left: 46%;
    transform: rotate(25deg);
    z-index: 0;
}

/* --- About Section --- */
.about {
    position: relative;
    z-index: 1;
    padding: 100px 0;
}

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

.about-visual {
    position: relative;
}

.about-image-stack {
    position: relative;
}

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

.about-img-main img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.about-img-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 5px solid var(--cream-50);
}

.about-img-accent img {
    width: 320px;
    height: 240px;
    object-fit: cover;
}

.about-shape {
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--emerald-100);
    border-radius: var(--radius-md);
    top: -20px;
    left: -20px;
    transform: rotate(-15deg);
    z-index: -1;
}

.about-content p {
    color: var(--gray-600);
    margin-bottom: 16px;
    font-size: 1.063rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.938rem;
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* --- Flavors Section --- */
.flavors {
    position: relative;
    z-index: 1;
    padding: 100px 0;
    background: white;
}

.flavors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.flavor-card {
    background: var(--cream-50);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.flavor-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--emerald-200);
}

.flavor-emoji {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.flavor-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.flavor-desc {
    color: var(--gray-600);
    font-size: 0.938rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.flavor-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 14px;
    border-radius: 50px;
    background: var(--emerald-100);
    color: var(--emerald-700);
}

.flavors-cta {
    margin-top: 48px;
}

.flavors-cta p {
    font-size: 1.063rem;
    color: var(--gray-600);
    margin-bottom: 20px;
}

/* --- Toppings Section --- */
.toppings {
    position: relative;
    z-index: 1;
    padding: 100px 0;
}

.toppings-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.toppings-content p {
    color: var(--gray-600);
    font-size: 1.063rem;
    line-height: 1.8;
    margin-bottom: 32px;
}

.topping-categories {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.topping-cat {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.topping-cat-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.topping-cat h4 {
    font-family: var(--font-heading);
    font-size: 1.063rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.topping-cat p {
    font-size: 0.938rem;
    color: var(--gray-500);
    margin-bottom: 0;
    line-height: 1.5;
}

.toppings-visual {
    position: relative;
}

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

.toppings-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.toppings-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.t-shape {
    position: absolute;
}

.t-circle {
    width: 60px;
    height: 60px;
    background: var(--pink-100);
    border-radius: 50%;
    top: -15px;
    right: -15px;
}

.t-square {
    width: 45px;
    height: 45px;
    background: var(--amber-100);
    border-radius: var(--radius-sm);
    bottom: 40px;
    left: -20px;
    transform: rotate(15deg);
}

.t-triangle {
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 40px solid var(--emerald-200);
    top: 40%;
    right: -30px;
}

/* --- Visit Section --- */
.visit {
    position: relative;
    z-index: 1;
    padding: 100px 0;
    background: white;
}

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

.visit-intro {
    font-size: 1.063rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 36px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    background: var(--cream-50);
    border-radius: var(--radius-md);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-card:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card h4 {
    font-family: var(--font-heading);
    font-size: 0.938rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.contact-card p {
    font-size: 0.938rem;
    color: var(--gray-600);
    line-height: 1.6;
}

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

.contact-card a:hover {
    color: var(--emerald-800);
    text-decoration: underline;
}

.map-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 480px;
}

/* --- CTA Banner --- */
.cta-banner {
    position: relative;
    z-index: 1;
    background: var(--emerald-700);
    padding: 80px 0;
    overflow: hidden;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 1.125rem;
    color: var(--emerald-200);
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.cta-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.cta-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
}

.cta-circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -80px;
}

.cta-circle-2 {
    width: 180px;
    height: 180px;
    bottom: -60px;
    right: 10%;
}

.cta-square {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-sm);
    top: 15%;
    right: 5%;
    transform: rotate(30deg);
}

/* --- Footer --- */
.footer {
    position: relative;
    z-index: 1;
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 64px 0 32px;
}

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

.footer-brand .logo {
    color: var(--emerald-400);
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.938rem;
    line-height: 1.7;
    color: var(--gray-500);
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.938rem;
    color: var(--gray-500);
    transition: color 0.2s ease;
}

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

.footer-contact p {
    font-size: 0.938rem;
    line-height: 1.7;
    margin-bottom: 6px;
}

.footer-contact a {
    color: var(--emerald-400);
}

.footer-contact a:hover {
    color: var(--emerald-300);
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 24px;
    text-align: center;
}

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

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-container {
        gap: 40px;
    }
    
    .hero-image-wrapper img {
        height: 560px;
    }
    
    .flavors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 247, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 8px;
        border-bottom: 1px solid var(--emerald-100);
        transform: translateY(-120%);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
        pointer-events: none;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 12px 16px;
    }
    
    .nav-cta {
        margin-left: 0 !important;
        margin-top: 8px;
    }
    
    /* Hero */
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-image {
        order: -1;
        max-width: 480px;
        margin: 0 auto;
    }
    
    .hero-image-wrapper img {
        height: 420px;
    }
    
    .hero-float-card {
        display: none;
    }
    
    .hero-shape {
        display: none;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-img-accent {
        right: 0;
        bottom: -20px;
    }
    
    .about-img-accent img {
        width: 240px;
        height: 180px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    /* Flavors */
    .flavors-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Toppings */
    .toppings-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .toppings-image img {
        height: 400px;
    }
    
    .t-shape {
        display: none;
    }
    
    /* Visit */
    .visit-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .map-wrapper {
        min-height: 320px;
    }
    
    /* CTA */
    .cta-banner {
        padding: 60px 0;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

/* --- Animations --- */
@media (prefers-reduced-motion: no-preference) {
    .flavor-card {
        animation: fadeUp 0.6s ease both;
    }
    
    .flavor-card:nth-child(1) { animation-delay: 0.05s; }
    .flavor-card:nth-child(2) { animation-delay: 0.1s; }
    .flavor-card:nth-child(3) { animation-delay: 0.15s; }
    .flavor-card:nth-child(4) { animation-delay: 0.2s; }
    .flavor-card:nth-child(5) { animation-delay: 0.25s; }
    .flavor-card:nth-child(6) { animation-delay: 0.3s; }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
