/* ===================================
   OMG CAKES - MOBILE-FIRST FULL-SCREEN SNAP SCROLL
   Colors matched to logo.jpg
   =================================== */

/* ===================================
   CSS CUSTOM PROPERTIES (COLORS FROM LOGO)
   =================================== */

:root {
    /* Primary Colors (from logo) */
    --turquoise: #00CEC9;
    --turquoise-dark: #00a8a4;
    --turquoise-light: #1CE5DF;
    --turquoise-pale: #F0FFFE;
    
    /* Accent Colors (from logo "order" badge) */
    --orange: #FF8A65;
    --orange-hover: #FF7043;
    --orange-light: #FFE0B2;
    --pink-accent: #EC407A;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --black: #2d3436;
    --gray-light: #F8F9FA;
    --gray-medium: #E9ECEF;
    --gray-dark: #636e72;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-full: 9999px;
}

/* ===================================
   RESET & BASE STYLES
   =================================== */

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

html {
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--black);
    background: var(--white);
    overflow-x: hidden;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===================================
   FIXED SOCIAL ICONS (TOP RIGHT)
   =================================== */

.social-icons-fixed {
    position: fixed;
    top: 16px;
    right: 16px;
    display: flex;
    gap: 12px;
    z-index: 1000;
}

.social-icon-fixed {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.social-icon-fixed:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.social-icon-fixed svg {
    width: 28px;
    height: 28px;
}

.instagram-icon svg {
    fill: #E4405F; /* Instagram brand color */
}

.telegram-icon svg {
    fill: #0088cc; /* Telegram brand color */
}

/* ===================================
   FULL-SCREEN SECTIONS (SNAP SCROLL)
   =================================== */

.screen {
    min-height: 100vh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px 40px;
    position: relative;
}

/* Allow content screens to be taller than 100vh if needed */
.tastes-screen,
.info-screen,
.sizes-screen {
    min-height: 100vh;
    height: auto;
}

/* ===================================
   SCREEN 1: HERO
   =================================== */

.hero-screen {
    background: linear-gradient(135deg, var(--turquoise) 0%, var(--turquoise-dark) 100%);
    color: var(--white);
    text-align: center;
}

.hero-content {
    max-width: 600px;
    width: 100%;
}

.logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.hero-title {
     font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 16px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
    opacity: 0.95;
}

.hero-hours {
    font-size: 16px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-hover) 100%);
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 16px rgba(255, 138, 101, 0.4);
    transition: all 0.3s ease;
}

.hero-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 138, 101, 0.5);
}

.hero-button:active {
    transform: translateY(0);
}

/* ===================================
   SCREENS 2, 3, 4: CONTENT SCREENS
   =================================== */

.tastes-screen {
    background: var(--white);
}

.info-screen {
    background: var(--turquoise-pale);
}

.sizes-screen {
    background: var(--gray-light);
}

.screen-content {
    max-width: 1200px;
    width: 100%;
}

.screen-title {
     font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 12px;
    color: var(--black);
}

.screen-subtitle {
    text-align: center;
    font-size: 14px;
    color: var(--gray-dark);
    margin-bottom: 24px;
    line-height: 1.4;
    padding: 0 20px;
}

/* ===================================
   TASTES GRID (SCREEN 2)
   =================================== */

.tastes-grid {
    display: grid;
    grid-template-columns: 1fr; /* Mobile: 1 column, full-width */
    gap: 20px;
    margin-top: 24px;
    padding: 0 20px;
}

.tastes-grid img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md); /* 12px rounded corners */
    box-shadow: var(--shadow-md); /* Subtle shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.tastes-grid img:hover {
    transform: scale(1.03); /* Subtle zoom on hover */
    box-shadow: var(--shadow-lg); /* Stronger shadow on hover */
}

/* Desktop: Max 2 columns */
@media (min-width: 768px) {
    .tastes-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns */
        gap: 32px;
        padding: 0;
    }
}

/* Large desktop: Still max 2 columns */
@media (min-width: 1024px) {
    .tastes-grid {
        grid-template-columns: repeat(2, 1fr); /* Keep 2 columns max */
        gap: 40px;
    }
}

/* ===================================
   INFO CARDS (SCREEN 3)
   =================================== */

.info-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 32px;
    padding: 0 20px;
}

.info-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.info-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.info-card h3 {
     font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 8px;
    color: var(--turquoise);
}

.info-card p {
    font-size: 16px;
    color: var(--gray-dark);
    line-height: 1.5;
}

@media (min-width: 768px) {
    .info-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        padding: 0;
    }
}

/* ===================================
    SIZES SLIDER (SCREEN 4) - FULL WIDTH
    =================================== */

.sizes-screen {
    padding: 60px 0;
    background: transparent;
    display: flex;
    flex-direction: column;
}

.sizes-screen .screen-title {
    padding: 0 20px;
    margin-bottom: 16px;
}

.pricing-intro {
    max-width: 800px;
    margin: 0 auto 32px;
    padding: 20px;
    background: var(--turquoise-pale);
    border-radius: var(--radius-md);
    text-align: center;
}

.pricing-intro p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--black);
}

/* Swiper container - takes all available space */
.sizes-slider {
    width: 100%;
    height: auto;
    padding: 20px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.swiper-wrapper {
    display: flex;
    width: 100%;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 400px;
}

.sizes-slider img {
    width: 90%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sizes-slider img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

/* OMG STYLE - Bold Navigation Buttons */
.swiper-button-prev,
.swiper-button-next {
    background: transparent;
    color: var(--orange);
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    box-shadow: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: transparent;
    color: var(--orange-hover);
    box-shadow: none;
    transform: translateY(-50%) scale(1.15);
}

.swiper-button-prev:active,
.swiper-button-next:active {
    transform: translateY(-50%) scale(0.95);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 28px;
    font-weight: 900;
    color: inherit;
    text-shadow: none;
}

.swiper-button-prev {
    left: 0;
}

.swiper-button-next {
    right: 0;
}

/* Pagination Dots */
.swiper-pagination {
    position: static;
    margin-top: 20px;
    padding-bottom: 10px;
}

.swiper-pagination-bullet {
    background: var(--gray-medium);
    opacity: 0.5;
    width: 12px;
    height: 12px;
    transition: all 0.3s ease;
    margin: 0 6px;
}

.swiper-pagination-bullet-active {
    background: var(--turquoise);
    opacity: 1;
    transform: scale(1.2);
}

/* Tablet */
@media (min-width: 768px) {
    .sizes-screen {
        padding: 80px 0;
    }

    .sizes-screen .screen-title {
        padding: 0;
        margin-bottom: 24px;
    }

    .pricing-intro {
        margin-bottom: 40px;
    }

    .swiper-slide {
        min-height: 500px;
    }

    .sizes-slider img {
        width: 85%;
        max-height: 600px;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 64px;
        height: 64px;
    }

    .swiper-button-prev::after,
    .swiper-button-next::after {
        font-size: 32px;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .sizes-screen {
        padding: 100px 0;
    }

    .swiper-slide {
        min-height: 600px;
    }

    .sizes-slider img {
        width: 80%;
        max-height: 700px;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 72px;
        height: 72px;
    }

    .swiper-button-prev::after,
    .swiper-button-next::after {
        font-size: 36px;
    }
}

/* ===================================
    SCREEN 4.1: ORDER BLOCK
    =================================== */

.order-screen {
    min-height: auto;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-hover) 100%);
    color: var(--white);
    text-align: center;
    padding: 60px 20px 80px;
    display: block;
}

.order-screen .screen-title {
    color: var(--white);
    margin-bottom: 12px;
    font-size: 32px;
}

.order-subtitle {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
    font-weight: 500;
}

.order-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
    align-items: center;
    justify-content: center;
}

.order-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 36px;
    min-width: 260px;
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.button-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.order-button-instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 6px 20px rgba(228, 64, 95, 0.4);
}

.order-button-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(228, 64, 95, 0.6);
}

.order-button-telegram {
    background: linear-gradient(135deg, #2AABEE 0%, #229ED9 100%);
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.4);
}

.order-button-telegram:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 136, 204, 0.6);
}

.order-button:active {
    transform: translateY(-1px);
}

.order-note {
    font-size: 16px;
    font-weight: 500;
    opacity: 0.9;
}

@media (min-width: 768px) {
    .order-screen {
        padding: 80px 40px 100px;
    }

    .order-screen .screen-title {
        font-size: 42px;
        margin-bottom: 16px;
    }

    .order-subtitle {
        font-size: 20px;
        margin-bottom: 40px;
    }

    .order-buttons {
        flex-direction: row;
        gap: 24px;
    }

    .order-button {
        font-size: 18px;
        padding: 18px 44px;
        min-width: 280px;
    }

    .button-icon {
        width: 28px;
        height: 28px;
    }

    .order-note {
        font-size: 18px;
    }
}

@media (min-width: 1024px) {
    .order-screen {
        padding: 100px 60px 120px;
    }

    .order-screen .screen-title {
        font-size: 48px;
    }

    .order-buttons {
        gap: 32px;
    }

    .order-button {
        font-size: 20px;
        padding: 20px 52px;
        min-width: 300px;
    }

    .button-icon {
        width: 32px;
        height: 32px;
    }
}

/* ===================================
    SCREEN 4.5: DELIVERY & INFO
    =================================== */

.delivery-info-screen {
    background: var(--white);
}

.consultation-box {
    background: linear-gradient(135deg, var(--turquoise-pale) 0%, var(--gray-light) 100%);
    border: 2px solid var(--turquoise);
    border-radius: var(--radius-lg);
    padding: 32px 20px;
    margin-top: 40px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: box-shadow 0.3s ease;
}

.consultation-box:hover {
    box-shadow: var(--shadow-lg);
}

.consultation-box p {
    font-size: 18px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 20px;
    line-height: 1.5;
}

.consultation-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.consultation-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
    min-width: 240px;
}

.consultation-link svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Instagram link styling */
.consultation-link[href*="instagram"] {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 4px 12px rgba(228, 64, 95, 0.3);
}

.consultation-link[href*="instagram"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(228, 64, 95, 0.45);
}

/* Telegram link styling */
.consultation-link[href*="t.me"] {
    background: linear-gradient(135deg, #2AABEE 0%, #229ED9 100%);
    box-shadow: 0 4px 12px rgba(0, 136, 204, 0.3);
}

.consultation-link[href*="t.me"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 136, 204, 0.45);
}

.consultation-link:active {
    transform: translateY(0);
}

.or-text {
    font-size: 16px;
    font-weight: 400;
    color: var(--gray-dark);
    margin: 0 8px;
}

/* Tablet and Desktop: Horizontal layout for consultation links */
@media (min-width: 768px) {
    .consultation-box {
        padding: 40px;
        margin-top: 48px;
    }
    
    .consultation-box p {
        font-size: 20px;
        margin-bottom: 24px;
    }
    
    .consultation-links {
        flex-direction: row;
        justify-content: center;
        gap: 12px;
    }
    
    .consultation-link {
        font-size: 18px;
        padding: 16px 32px;
        min-width: 260px;
    }
    
    .or-text {
        font-size: 18px;
    }
}

/* Large desktop adjustments */
@media (min-width: 1024px) {
    .consultation-box p {
        font-size: 22px;
    }
    
    .consultation-link {
        font-size: 20px;
        padding: 18px 36px;
    }
}

/* ===================================
   SCREEN 5: CTA
   =================================== */

.cta-screen {
    background: linear-gradient(135deg, var(--turquoise) 0%, var(--turquoise-dark) 100%);
    color: var(--white);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    width: 100%;
}

.cta-title {
     font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 16px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.cta-text {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
    align-items: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    min-width: 280px;
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
}

.button-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.cta-button-instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 4px 16px rgba(228, 64, 95, 0.4);
}

.cta-button-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(228, 64, 95, 0.5);
}

.cta-button-telegram {
    background: linear-gradient(135deg, #2AABEE 0%, #229ED9 100%);
    box-shadow: 0 4px 16px rgba(0, 136, 204, 0.4);
}

.cta-button-telegram:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 136, 204, 0.5);
}

.cta-button:active {
    transform: translateY(0);
}

.social-handles {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.3px;
    margin-bottom: 32px;
}

.footer-text {
    font-size: 14px;
    opacity: 0.7;
    margin-top: 40px;
}

/* ===================================
   TABLET BREAKPOINT (768px+)
   =================================== */

@media (min-width: 768px) {
    .screen {
        padding: 100px 40px 60px;
    }
    
    .logo {
        width: 140px;
        height: 140px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .hero-hours {
        font-size: 18px;
    }
    
    .hero-button {
        font-size: 18px;
        padding: 18px 48px;
    }
    
    .screen-title {
        font-size: 40px;
    }
    
    .screen-subtitle {
        font-size: 16px;
    }
    
    .cta-title {
        font-size: 42px;
    }
    
    .cta-text {
        font-size: 20px;
    }
    
    .cta-buttons {
        flex-direction: row;
        gap: 20px;
    }
    
    .cta-button {
        font-size: 18px;
        padding: 20px 48px;
        min-width: 260px;
    }
    
    .social-icon-fixed {
        width: 56px;
        height: 56px;
    }
    
    .social-icon-fixed svg {
        width: 32px;
        height: 32px;
    }
    
    .social-icons-fixed {
        top: 20px;
        right: 20px;
        gap: 16px;
    }
}

/* ===================================
   DESKTOP BREAKPOINT (1024px+)
   =================================== */

@media (min-width: 1024px) {
    .logo {
        width: 150px;
        height: 150px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .screen-title {
        font-size: 48px;
    }
    
    .screen-subtitle {
        font-size: 18px;
    }
    
    .cta-title {
        font-size: 48px;
    }
    
    .cta-button {
        font-size: 20px;
        padding: 22px 56px;
        min-width: 280px;
    }
    
    .cta-button:hover {
        transform: translateY(-4px);
    }
}

/* ===================================
   ACCESSIBILITY
   =================================== */

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
        scroll-snap-type: none;
    }
}

/* Focus visible for keyboard navigation */
:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 2px;
}

/* ===================================
   PRINT STYLES
   =================================== */

@media print {
    html {
        scroll-snap-type: none;
    }
    
    .screen {
        min-height: auto;
        page-break-inside: avoid;
    }
    
    .instagram-icon-fixed {
        display: none;
    }
}

/* ===================================
   SEO ENHANCEMENT SECTIONS
   =================================== */

/* Intro Screen */
.intro-screen {
    background: var(--white);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.intro-title {
     font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 24px;
    color: var(--turquoise);
}

.intro-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--black);
}

.intro-text p {
    margin-bottom: 16px;
}

.intro-text strong {
    color: var(--turquoise);
    font-weight: 600;
}

.intro-benefits {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.intro-benefits li {
    padding: 12px 0;
    font-size: 16px;
    line-height: 1.6;
    border-bottom: 1px solid var(--gray-medium);
}

.intro-benefits li:last-child {
    border-bottom: none;
}

/* Flavor Cards with Photos */
.flavor-cards-with-photos {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 32px;
    padding: 0 20px;
}

.flavor-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.flavor-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.flavor-photo {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.flavor-card {
    background: var(--white);
    padding: 20px;
}

.flavor-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--black);
}

.flavor-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-dark);
}

.flavors-note {
    text-align: center;
    font-size: 14px;
    color: var(--gray-dark);
    font-style: italic;
    margin-top: 32px;
    padding: 0 20px;
}

/* Pricing Intro */
.pricing-intro {
    max-width: 800px;
    margin: 0 auto 32px;
    padding: 20px;
    background: var(--turquoise-pale);
    border-radius: var(--radius-md);
    text-align: center;
}

.pricing-intro p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--black);
}

/* FAQ Section */
.faq-screen {
    background: var(--turquoise-pale);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    padding: 24px;
    margin-bottom: 16px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--turquoise);
    line-height: 1.4;
}

.faq-answer {
    font-size: 15px;
    line-height: 1.7;
    color: var(--black);
}

.faq-answer p {
    margin-bottom: 12px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer a {
    color: var(--turquoise);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.faq-answer a:hover {
    color: var(--turquoise-dark);
}

/* Location Info in CTA */
.location-info {
    margin: 32px 0 24px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
}

.location-text,
.hours-text {
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    margin: 8px 0;
    line-height: 1.5;
}

.screen-subtitle-large {
    text-align: center;
    font-size: 16px;
    color: var(--gray-dark);
    margin-bottom: 32px;
    line-height: 1.6;
    padding: 0 20px;
}

/* Tablet adjustments */
@media (min-width: 768px) {
    .intro-title {
        font-size: 32px;
    }
    
    .intro-text {
        font-size: 17px;
    }
    
    .intro-benefits li {
        font-size: 17px;
    }
    
    .flavor-cards-with-photos {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0;
    }
    
    .flavor-item {
        flex-direction: row;
        gap: 24px;
    }
    
    .flavor-photo {
        width: 50%;
        flex-shrink: 0;
        object-fit: cover;
    }
    
    .flavor-card {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 24px;
    }
    
    .faq-question {
        font-size: 20px;
    }
    
    .faq-answer {
        font-size: 16px;
    }
    
    .pricing-intro p {
        font-size: 16px;
    }
    
    .screen-subtitle-large {
        font-size: 18px;
    }
}

/* Desktop adjustments */
@media (min-width: 1024px) {
    .intro-title {
        font-size: 36px;
    }
    
    .flavor-cards-with-photos {
        gap: 48px;
    }
    
    .flavor-item {
        gap: 32px;
    }
    
    .flavor-card h4 {
        font-size: 22px;
    }
    
    .flavor-card p {
        font-size: 16px;
    }
    
    .flavors-description {
        padding: 48px 40px;
    }
}
