:root {
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 1rem;
    --space-4: 1.5rem;
    --space-5: 2rem;
    --space-6: 2.5rem;
    --space-7: 3.5rem;
    --space-8: 4.5rem;
    --space-9: 6rem;
   --section-pad-y: clamp(var(--space-7), 8vw, var(--space-9));
   /* Match header: fixed side gutters (logo aligns with section content) */
   --section-pad-x: 3in;
    --header-height: 5.5rem;
    --color-primary: #E3001B;
    --color-primary-hover: #b80016;
    --color-primary-contrast: #ffffff;
    --color-surface: #ffffff;
    --color-surface-alt: #fef7f8;
    --color-text: #1b1b1b;
    --color-text-muted: #555555;
    --ease-section: cubic-bezier(0.22, 1, 0.36, 1);
    --shadow-section: 0 4px 32px rgba(27, 27, 27, 0.06);
   --tap-min: 44px;
}

* {
   box-sizing: border-box;
}

html,
body {
   max-width: 100%;
   overflow-x: hidden;
}

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

@media (max-width: 900px) {
    :root {
        --section-pad-x: clamp(14px, 4vw, 28px);
    }
}

body {
    margin: 0;
padding-top: 80px;
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden;
    color: var(--color-text);
}

section {
    scroll-margin-top: calc(var(--header-height) + var(--space-3));
}

.hero,
.flavors,
.service,
.about-story,
.about,
.contact {
    transition: box-shadow 0.45s var(--ease-section), background-color 0.45s var(--ease-section);
}

header {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: flex-start;
    padding: var(--space-4) var(--section-pad-x);
    flex-wrap: wrap;
    position: fixed;
    top: 0;
    left: 0;           /* add this */
    width: 100%;       /* add this */
    z-index: 999;
    background: var(--color-surface);
    min-height: var(--header-height);
    box-sizing: border-box;
    box-shadow: 0 1px 0 rgba(27, 27, 27, 0.06);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.logo img {
    height: 50px;
    width: auto;
    margin: 0;
    display: block;
}

nav {
    display: flex;
    gap: clamp(var(--space-2), 1.2vw, var(--space-4));
    align-items: center;
}

/* Desktop: logo left, nav truly centered in the bar */
@media (min-width: 901px) {
    header {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        align-content: center;
        column-gap: var(--space-4);
        flex-wrap: nowrap;
    }

    .logo {
        grid-column: 1;
        grid-row: 1;
        justify-self: start;
    }

    nav {
        position: static;
        left: auto;
        transform: none;
        margin-left: 0;
        grid-column: 2;
        grid-row: 1;
        justify-self: center;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        align-self: center;
    }
}
header {
    /* already has position: sticky and z-index: 999 — just ensure transition doesn't fight it */
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
nav a {
    position: relative;
    text-decoration: none;
    color: var(--color-text);
    font-weight: 500;
    padding: var(--space-2) var(--space-3);
    min-height: var(--tap-min);
    display: inline-flex;
    align-items: center;
    box-sizing: border-box;
    transition: color 0.25s ease;
}

/* Smooth red underline */
nav a::after {
    content: "";
    position: absolute;
    left: var(--space-3);
    right: var(--space-3);
    bottom: 4px;
    width: auto;
    height: 2px;
    background-color: var(--color-primary);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

/* Hover effect */
nav a:hover {
    color: #E3001B;
}

nav a:hover::after {
    transform: scaleX(1);
}

/* Active link (when scrolling) */
nav a.active {
    color: var(--color-primary);
}

nav a.active::after {
    transform: scaleX(1);
}


.auth {
    display: flex;
    align-items: center;
    gap: 15px;
}

.auth a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
}

.auth a:hover {
    color: red;
}

.auth button {
    background: red;
    color: white;
    padding: 10px 22px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.auth button:hover {
    background: #c40000;
    transform: translateY(-2px);
}

.auth button .material-symbols-outlined {
    transition: transform 0.3s ease;
}

.auth button:hover .material-symbols-outlined {
    transform: translateX(4px);
}

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    min-width: var(--tap-min);
    min-height: var(--tap-min);
    margin-right: var(--space-2);
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--color-text);
    transition: background 0.2s ease, color 0.2s ease;
}

.menu-toggle:hover {
    background: rgba(227, 0, 27, 0.08);
    color: var(--color-primary);
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: var(--section-pad-y) var(--section-pad-x);
    gap: var(--space-7);
    margin: 0;
    max-width: none;
    box-sizing: border-box;
    width: 100%;
}

.hero-text {
    flex: none;
    width: 100%;
    max-width: 42rem;
    min-width: 0;
    text-align: center;
    margin: 0;
    padding: 0;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5.5vw + 1rem, 4.25rem);
    margin: 0 0 var(--space-5);
    font-weight: 700;
    text-align: center;
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.hero-text p {
    margin: 0 auto;
    line-height: 1.65;
    font-size: clamp(1rem, 0.5vw + 0.95rem, 1.125rem);
    max-width: 36rem;
    text-align: center;
    color: var(--color-text-muted);
}

/* Phones container â€” hero mockup scale */
.phones {
    position: relative;
    flex: none;
    width: 100%;
    max-width: min(100%, 30rem);
    min-width: 0;
    height: clamp(240px, 42vw, 340px);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: var(--space-4);
}

/* Desktop: Home â€” copy left, phones right */
@media (min-width: 901px) {
    .hero {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        gap: var(--space-6);
    }

    .hero-text {
        flex: 1 1 46%;
        max-width: 34rem;
        text-align: left;
    }

    .hero-text h1,
    .hero-text p {
        text-align: left;
    }

    .hero-text p {
        margin-left: 0;
        margin-right: 0;
    }

    .hero .btns {
        justify-content: flex-start;
    }

    .phones {
        flex: 0 1 54%;
        max-width: 36rem;
        height: clamp(340px, 34vw, 460px);
    }
}

/* Shared phone style */
.phone {
    position: absolute;
    width: clamp(175px, 32vw, 290px);
    max-width: 100%;
    transform-origin: bottom center;
    filter: drop-shadow(0 16px 36px rgba(0, 0, 0, 0.2));
}

/* BACK phone (white UI) â€“ slightly smaller */
.phone-1 {
    transform: translateX(100px) rotate(2deg) scale(1.06);
    z-index: 1;
}

/* FRONT phone (red splash) â€“ slightly bigger */
.phone-2 {
    transform: translate(-52px, 42px) rotate(4deg) scale(1.06);
    z-index: 2;
}

/* BACK phone â€“ slow depth sway */
.phone-1 {
animation: swayBack 8s ease-in-out infinite;
}

/* FRONT phone â€“ subtle breathing */
.phone-2 {
animation: breatheFront 6s ease-in-out infinite;
}

@keyframes swayBack {
0% {
   transform: translateX(100px) rotate(2deg) scale(1.06);
}
50% {
   transform: translateX(92px) rotate(4deg) scale(1.03);
}
100% {
   transform: translateX(100px) rotate(2deg) scale(1.06);
}
}

@keyframes breatheFront {
0% {
   transform: translate(-52px, 42px) rotate(4deg) scale(1.06);
}
50% {
   transform: translate(-52px, 42px) rotate(4deg) scale(1.09);
}
100% {
   transform: translate(-52px, 42px) rotate(4deg) scale(1.06);
}
}

.btns {
    margin-top: var(--space-6);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-3);
}

.btns button {
    padding: 0.875rem 1.75rem;
    border: 2px solid transparent;
    border-radius: 999px;
    margin: 0;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    min-height: var(--tap-min);
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.download-btn {
    background: #e8e8e8;
    color: var(--color-text);
    border-color: #d8d8d8;
    box-shadow: 0 2px 8px rgba(27, 27, 27, 0.06);
}

.download-btn:hover {
    background: #dedede;
    border-color: #cfcfcf;
    color: var(--color-text);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(27, 27, 27, 0.1);
}

.download-btn:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 3px;
}

/* Hero: "Download App" only on small screens (matches mobile nav breakpoint) */
@media (min-width: 901px) {
    /* .hero .download-btn {
        display: none !important;
    } */
}

.btn-primary-solid {
    background: var(--color-primary);
    color: var(--color-primary-contrast);
    border-color: var(--color-primary);
    box-shadow: 0 4px 16px rgba(227, 0, 27, 0.35);
}

.btn-primary-solid:hover {
    background: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(227, 0, 27, 0.4);
}

.btn-primary-solid:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 3px;
}

.red {
    color: #E3001B;
}

.black {
    color: #1B1B1B;
}

/* Top Flavors Section */
.flavors {
    padding: var(--section-pad-y) var(--section-pad-x);
    background-color: var(--color-surface-alt);
    text-align: center;
  
}

.section-title {
    font-size: clamp(1.75rem, 2vw + 1rem, 2.375rem);
    font-weight: 700;
    margin: 0 0 var(--space-6);
    padding: 0;
    max-width: none;
    width: 100%;
    text-align: left;
    line-height: 1.2;
    box-sizing: border-box;
}

.section-title--center {
    text-align: center;
    width: 100%;
    max-width: none;
}

.section-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

/* Flavors: auto-scroll marquee on small screens; 4-column grid on desktop */
.flavors-wrapper.flavors-marquee {
    display: block;
    position: relative;
    overflow: hidden;
    margin: 0;
    max-width: none;
    width: 100%;
    padding: 0;
    box-sizing: border-box;
}

.flavors-marquee-inner {
    overflow: hidden;
    width: 100%;
    touch-action: pan-y;
}

.flavors-marquee-track {
    display: flex;
    width: max-content;
}

.flavors-marquee-track .flavors-container {
    display: flex;
    flex-wrap: nowrap;
    flex: 0 0 auto;
    align-items: stretch;
    gap: var(--space-4);
    overflow: visible;
    padding: var(--space-3) 0;
    margin: 0;
}

.flavors-marquee .flavors-marquee-track .flavors-container {
    padding-inline-end: var(--space-4);
    box-sizing: content-box;
}

@keyframes flavor-marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 1023px) {
    .flavors-marquee-track {
        animation: flavor-marquee-scroll linear infinite;
        animation-duration: calc(var(--flavor-marquee-secs, 45) * 1s);
    }

    .flavors-marquee .flavor-card {
        width: 15.75rem;
        min-width: 15.75rem;
        max-width: 15.75rem;
    }
}

@media (max-width: 380px) {
    .flavors-marquee .flavor-card {
        width: 14rem;
        min-width: 14rem;
        max-width: 14rem;
    }
}

@media (hover: hover) and (pointer: fine) {
    .flavors-marquee-track:hover {
        animation-play-state: paused;
    }
}

.flavors-marquee-track:focus-within {
    animation-play-state: paused;
}

@media (min-width: 1024px) {
    .flavors-marquee-inner {
        overflow: visible;
    }

    .flavors-marquee-track {
        animation: none;
        width: 100%;
        display: block;
        transform: none !important;
    }

    .flavors-marquee-track .flavors-container--marquee-clone {
        display: none;
    }

    .flavors-marquee-track > .flavors-container:first-child {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        overflow: visible;
        gap: clamp(var(--space-4), 2vw, var(--space-6));
        width: 100%;
        max-width: 100%;
        padding-inline-end: 0;
        box-sizing: border-box;
    }

    .flavors-marquee-track > .flavors-container:first-child .flavor-card {
        min-width: 0;
        max-width: none;
        width: auto;
    }
}

.flavor-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 0 0 var(--space-2);
}

.flavor-rating .material-symbols-outlined.filled {
    font-size: 16px;
    color: #FFD700;
}

.flavor-rating .rating-text {
    font-size: 12px;
    color: #555;
}

.flavor-card {
    flex: 0 0 auto;
    min-width: 270px;
    max-width: 320px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(27, 27, 27, 0.06);
    box-shadow: 0 2px 14px rgba(27, 27, 27, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.flavor-content {
    padding: var(--space-4) var(--space-3) var(--space-4);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    min-width: 0;
    flex: 1;
    gap: 0;
    text-align: center;
    box-sizing: border-box;
}

.flavor-btn {
    color: var(--color-primary);
    background-color: #fff;
    border: 1px solid var(--color-primary);
    padding: 0.625rem 1.5rem;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.875rem;
    width: 100%;
    max-width: 12rem;
    align-self: center;
    flex-shrink: 0;
    margin-top: var(--space-3);
    min-height: 44px;
    box-sizing: border-box;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.flavor-btn:hover {
    background: #fff;
    border-color: var(--color-primary-hover);
    color: var(--color-primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(227, 0, 27, 0.15);
}

.flavor-btn:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 2px;
}

.flavor-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 14px 36px rgba(27, 27, 27, 0.12);
}

.flavor-img-wrap {
    display: block;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.flavor-img-wrap:focus {
    outline: 2px solid #E3001B;
    outline-offset: 2px;
}

.flavor-img {
    width: 100%;
    aspect-ratio: 1;
    height: auto;
    max-height: 280px;
    object-fit: cover;
    border-radius: 0;
    display: block;
    pointer-events: none;
}

.flavor-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 var(--space-2);
    line-height: 1.3;
    text-align: center;
    min-width: 0;
    overflow-wrap: anywhere;
}

.flavor-desc {
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--color-text-muted);
    margin: 0 0 var(--space-2);
    line-height: 1.55;
    text-align: center;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-wrap: anywhere;
    word-wrap: break-word;
    word-break: break-word;
}

.flavor-desc:empty {
    display: none;
}



.service {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    max-width: none;
    width: 100%;
    margin: 0;
    gap: var(--space-7);
    padding: var(--section-pad-y) var(--section-pad-x);
    box-sizing: border-box;
}


.service-phones {
    order: 2;
    max-width: min(100%, 34rem);
    margin: 0 auto;
    width: 100%;
}

.service-phones img {
    width: 100%;
    max-width: min(100%, 30rem);
    height: auto;
    display: block;
    margin: 0 auto;
}

.service-text {
    flex: 1;
    order: 1;
    min-width: 0;
    max-width: 40rem;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.service-text h1 {
    font-size: clamp(1.75rem, 2vw + 1rem, 2.5rem);
    margin-bottom: var(--space-4);
    font-weight: 700;
    text-align: center;
    line-height: 1.15;
}

.service-text p {
    margin-bottom: var(--space-6);
    line-height: 1.65;
    color: var(--color-text-muted);
}

.service-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, auto);
    gap: var(--space-3) var(--space-4);
    width: 100%;
    max-width: 22rem;
    margin: 0 auto;
    justify-items: stretch;
    align-items: stretch;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 20px;
    min-width: 0;
    box-sizing: border-box;
}

/* Desktop: Services â€” visual left, copy right */
@media (min-width: 901px) {
    .service {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        gap: clamp(var(--space-7), 5vw, var(--space-9));
    }

    .service-phones {
        order: 1;
        flex: 0 1 48%;
        max-width: min(48%, 36rem);
        margin: 0;
    }

    .service-phones img {
        margin: 0 auto;
        max-width: min(100%, 32rem);
    }

    .service-text {
        order: 2;
        flex: 1 1 50%;
        max-width: 28rem;
        margin: 0;
        text-align: left;
    }

    .service-text h1,
    .service-text p {
        text-align: left;
    }

    .service-features {
        margin: 0;
        max-width: 100%;
    }

    .feature {
        justify-content: flex-start;
        text-align: left;
    }
}

.icon-bg {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    padding: 10px;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    box-sizing: border-box;
}

.feature img {
    width: 40px;
    height: 40px;
}

.feature .icon-bg .material-symbols-outlined {
    font-size: 28px;
    line-height: 1;
    font-variation-settings: 'FILL' 0, 'wght' 500, 'GRAD' 0, 'opsz' 24;
}

.feature--quality .icon-bg {
    background-color: #ffe6e6;
}

.feature--quality .icon-bg .material-symbols-outlined {
    color: #e53935;
}

.feature--delivery .icon-bg {
    background-color: #e8e8ff;
}

.feature--delivery .icon-bg .material-symbols-outlined {
    color: #3949ab;
}

.feature--booking .icon-bg {
    background-color: #fff8e1;
}

.feature--booking .icon-bg .material-symbols-outlined {
    color: #f9a825;
}

.feature--order .icon-bg {
    background-color: #e8f5e9;
}

.feature--order .icon-bg .material-symbols-outlined {
    color: #43a047;
}

.feature p {
    margin: 0;
    font-weight: 600;
    color: var(--color-text);
}

/* RESPONSIVE MOBILE STYLES */
@media (max-width: 1024px) {
    .flavors-wrapper {
        margin-left: -2px; 
        margin-right: -2px;
    }
}

@media (max-width: 900px) {
    .service {
        flex-direction: column;
        align-items: center;
        gap: var(--space-5);
    }

    .service-text {
        padding: 0;
        text-align: center;
        max-width: 100%;
    }

    .service-text h1 {
        font-size: 32px;
        text-align: center;
    }

    .service-text p {
        font-size: 16px;
        margin-bottom: 30px;
        text-align: center;
    }

    .service-phones {
        max-width: min(100%, 30rem);
    }

    .service-phones img {
        width: 100%;
        max-width: 28rem;
    }

    .service-features {
        max-width: min(100%, 24rem);
        margin-left: auto;
        margin-right: auto;
        gap: var(--space-3);
    }

    .feature {
        justify-content: center;
        text-align: left;
        padding: 10px 12px;
    }

    .feature p {
        font-size: 0.875rem;
    }
}

/* About / Testimonial Section */
.about {
    padding: var(--section-pad-y) var(--section-pad-x);
    background-color: #f9f9f9;
    
}

.about-container {
    margin: 0;
    max-width: none;
    width: 100%;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.about-title {
    font-size: clamp(1.75rem, 2vw + 1rem, 2.5rem);
    font-weight: 700;
    display: block;
    margin-bottom: var(--space-6);
    text-align: left;
}

/* Endless testimonial marquee (duplicated row in HTML) */
.about-marquee {
    overflow: hidden;
    touch-action: pan-y;
    user-select: none;
    padding-block: var(--space-2);
}

.about-marquee-track {
    display: flex;
    width: max-content;
    animation: about-marquee-scroll linear infinite;
    animation-duration: calc(var(--about-marquee-secs, 45) * 1s);
}

@keyframes about-marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-marquee-track {
        animation: none;
    }

    .about-marquee .about-boxes--marquee-clone {
        display: none;
    }
}

.about-boxes-wrapper {
    overflow: hidden;
    touch-action: pan-y;
    user-select: none;
    scrollbar-width: none;
}

.about-boxes-wrapper::-webkit-scrollbar {
    display: none;
}

.about-marquee img {
    -webkit-user-drag: none;
    pointer-events: none;
}

.about-boxes {
    display: flex;
    gap: 30px;
    flex-shrink: 0;
    align-items: stretch;
}

/* Space after last card before the duplicated row (keeps loop seamless with -50% scroll) */
.about-marquee .about-boxes {
    padding-inline-end: 30px;
    box-sizing: content-box;
}

.testimonial-card {
    flex: 0 0 auto;
    min-width: 300px;
    max-width: 500px;
    height: 350px;
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


@media (max-width: 768px) {
    .testimonial-card {
        height: 300px;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        height: 250px;
        padding: 15px;
        min-width: 250px;
    }
}



.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.profile img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-info h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.stars {
    color: #f6c000;
    letter-spacing: 2px;
}

.testimonial-text {
    color: #555;
    line-height: 1.6;
}

.date {
    margin-top: auto;
    /* pushes date to bottom */
    font-size: 14px;
    color: #777;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .testimonial-card {
        min-width: 250px;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 50px var(--section-pad-x);
    }

    .about-title {
        font-size: 28px;
        text-align: center;
    }

    .about-boxes {
        gap: 20px;
    }

    .about-marquee .about-boxes {
        padding-inline-end: 20px;
    }

    .testimonial-card {
        min-width: 260px;
        max-width: 280px;
        width: 260px;
        padding: 20px;
    }

    .profile img {
        width: 50px;
        height: 50px;
    }

    .profile-info h3 {
        font-size: 16px;
    }

    .stars {
        font-size: 14px;
    }

    .testimonial-text {
        font-size: 15px;
    }

    .date {
        font-size: 13px;
    }
}

.contact {
    padding: var(--section-pad-y) var(--section-pad-x);
    background-color: var(--color-surface);
}

.contact-container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: var(--space-7);
    align-items: stretch;
    margin: 0;
    max-width: none;
    width: 100%;
    box-sizing: border-box;
}

.contact-form {
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
    max-width: 36rem;
    margin: 0;
    padding: 0;
    order: 1;
}

.contact-form h2 {
    font-size: clamp(1.75rem, 2vw + 1rem, 2.25rem);
    font-weight: 700;
    margin-bottom: var(--space-4);
}

.contact-form p {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-5);
    max-width: 36rem;
}

.contact-image {
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
    max-width: 22rem;
    margin: 0 auto;
    order: 2;
}

/* Desktop: Contact â€” form left, image right (mockup balance) */
@media (min-width: 901px) {
    .contact-container {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        gap: clamp(var(--space-6), 4vw, var(--space-8));
    }

    .contact-form {
        flex: 1 1 44%;
        max-width: 32rem;
        margin: 0;
    }

    .contact-form h2,
    .contact-form p {
        text-align: left;
    }

    .contact-form .form-group input,
    .contact-form .form-group textarea {
        max-width: 100%;
    }

    .contact-image {
        flex: 1 1 50%;
        max-width: min(28rem, 48%);
        margin: 0;
    }
}

.contact-image img {
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
    display: block;
}

/* Form styling */
.form-group {
    margin-bottom: var(--space-4);
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    max-width: 28rem;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    box-sizing: border-box;
    transition: border 0.3s ease;
}

.form-group input {
    min-height: var(--tap-min);
}

.form-group textarea {
    min-height: 7.5rem;
    resize: vertical;
}

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

.submit-btn {
    background: var(--color-primary);
    color: var(--color-primary-contrast);
    border: 2px solid var(--color-primary);
    padding: 0.875rem 1.75rem;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    min-height: var(--tap-min);
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 14px rgba(227, 0, 27, 0.3);
}

.submit-btn:hover {
    background: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 0, 27, 0.35);
}

/* Contact responsive â€“ full width on mobile */
@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
        gap: 40px;
    }

    .contact-image {
        margin-left: 0;
        max-width: 100%;
        align-self: center;
    }

    .contact-form {
        width: 100%;
        min-width: 0;
        padding: 0;
    }

    .contact-form p {
        max-width: 100%;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
}


/* Footer */
footer {
    background-color: #FEF7F8;
    color: #505050;
    padding: 60px var(--section-pad-x) 30px;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
}


.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: none;
    width: 100%;
    margin: 0;
}

.footer-col {
    flex: 1 1 200px;
}

.footer-logo img {
    height: 70px;
    margin-bottom: 15px;
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background: #E3001B;
}

.footer-col p {
    color: #505050;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: #505050;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #E3001B;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #E3001B;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #E3001B;
}

.copyright {
    text-align: left;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #1b1b1b;
    color: #aaa;
    font-size: 14px;
}

.copyright p {
    text-align: center;
    color: #1b1b1b;
    margin: 0;
    font-size: 16px;
}

/* Mobile & tablet responsive */
@media (max-width: 900px) {
   body.menu-open {
       overflow: hidden;
   }

    body {
        padding-bottom: 0;
    }

    header {
        padding: 16px var(--section-pad-x);
        align-items: center;
        align-content: center;
    }

    nav {
       display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        background: #fff;
        position: absolute;
        top: 100%;
        left: 0;
        gap: 0;
        border-top: 1px solid #ddd;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
       opacity: 0;
       pointer-events: none;
       max-height: 0;
       transform: translateY(-8px);
       transition: max-height 0.28s ease, opacity 0.22s ease, transform 0.22s ease;
        overflow: hidden;
        align-self: flex-start;
    }

    nav.active {
       opacity: 1;
       pointer-events: auto;
       max-height: 22rem;
       transform: translateY(0);
    }

    nav a {
        padding: 14px 22px;
        min-height: 48px;
        border-bottom: 1px solid #eee;
        box-sizing: border-box;
    }

    nav a::after {
        display: none;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        align-self: center;
    }

    .mobile-sticky-cta {
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
        justify-content: center;
        gap: var(--space-2);
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 998;
        padding: var(--space-3) var(--section-pad-x);
        padding-bottom: calc(var(--space-3) + env(safe-area-inset-bottom, 0px));
        background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.97) 18%, #fff 100%);
        border-top: 1px solid rgba(27, 27, 27, 0.08);
        box-shadow: 0 -12px 40px rgba(27, 27, 27, 0.08);
    }

    .mobile-sticky-cta__btn {
       flex: 1 1 0;
       min-width: 0;
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0 var(--space-4);
        border-radius: 999px;
        font-weight: 600;
        font-size: 0.9375rem;
        text-decoration: none;
        text-align: center;
        transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
        box-sizing: border-box;
    }

    .mobile-sticky-cta__btn:not(.mobile-sticky-cta__btn--secondary) {
        background: var(--color-primary);
        color: var(--color-primary-contrast);
        border: 2px solid var(--color-primary);
        box-shadow: 0 4px 16px rgba(227, 0, 27, 0.35);
    }

    .mobile-sticky-cta__btn:not(.mobile-sticky-cta__btn--secondary):active {
        transform: scale(0.98);
    }

    .mobile-sticky-cta__btn--secondary {
        background: var(--color-surface);
        color: var(--color-text);
        border: 2px solid rgba(27, 27, 27, 0.15);
    }

    .mobile-sticky-cta__btn--secondary:hover {
        border-color: var(--color-primary);
        color: var(--color-primary);
    }

    #scrollToTopBtn {
        bottom: calc(5.75rem + env(safe-area-inset-bottom, 0px));
    }

    .hero {
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        margin-left: 0;
        padding: clamp(20px, 4.5vw, 32px) var(--section-pad-x) clamp(12px, 3vw, 20px);
        gap: clamp(10px, 3vw, 18px);
        text-align: center;
        min-height: 0;
        box-sizing: border-box;
    }

    .hero-text {
        flex: 1 1 auto;
        min-width: 0;
        width: 100%;
        max-width: 100%;
        text-align: center;
        padding: 0 4px;
    }

    .hero-text h1 {
        font-size: clamp(28px, 6.5vw, 36px);
        margin-bottom: clamp(12px, 3vw, 18px);
        line-height: 1.2;
    }

    .hero-text p {
        font-size: clamp(14px, 3.5vw, 16px);
        max-width: 100%;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        padding: 0 4px;
    }

    .phones {
        flex: 0 0 auto;
        min-width: 0;
        width: 100%;
        max-width: 22rem;
        margin: -0.5rem auto 0;
        height: clamp(180px, 36vh, 260px);
        min-height: 170px;
        padding-bottom: clamp(8px, 2.5vw, 14px);
    }

    .phone {
        width: clamp(140px, 42vw, 180px);
        max-width: 100%;
    }

    .phone-1 {
        transform: translateX(22%) rotate(2deg) scale(1);
    }

    .phone-2 {
        transform: translate(-18%, 18%) rotate(4deg) scale(1);
    }

    @keyframes swayBack {
        0%, 100% { transform: translateX(22%) rotate(2deg) scale(1); }
        50% { transform: translateX(19%) rotate(4deg) scale(0.98); }
    }

    @keyframes breatheFront {
        0%, 100% { transform: translate(-18%, 18%) rotate(4deg) scale(1); }
        50% { transform: translate(-18%, 18%) rotate(4deg) scale(1.03); }
    }

    .btns {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: clamp(16px, 4vw, 24px);
    }

    .btns button {
        width: auto;
        min-width: 140px;
        margin: 0;
        padding: clamp(12px, 2.5vw, 14px) clamp(20px, 4vw, 28px);
        font-size: clamp(14px, 3.2vw, 16px);
    }

    .flavors {
        padding: 50px var(--section-pad-x);
    }

    .section-title:not(.section-title--center) {
        font-size: 28px;
        margin-left: 0;
        margin-bottom: 30px;
    }

    .section-title--center {
        font-size: 28px;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 30px;
        text-align: center;
    }

    .flavors-wrapper {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        max-width: 100%;
    }

    .about-container {
        margin-left: 0;
        margin-right: 0;
    }

    .about-stats {
        justify-content: center;
    }

    .contact-container {
        flex-direction: column;
        margin-left: 0;
        margin-right: 0;
        gap: 30px;
    }

    footer {
        padding-bottom: calc(30px + 5.5rem + env(safe-area-inset-bottom, 0px));
    }
}

/* Tablet */
@media (max-width: 768px) {
    header {
        padding: 14px var(--section-pad-x);
    }

    .logo img {
        height: 40px;
    }

    .hero {
        padding: clamp(20px, 4vw, 30px) var(--section-pad-x);
        gap: clamp(12px, 3vw, 20px);
    }

    .hero-text {
        padding: 0 2px;
    }

    .hero-text h1 {
        font-size: clamp(24px, 5.8vw, 28px);
        margin-bottom: clamp(10px, 2.5vw, 14px);
    }

    .hero-text p {
        font-size: clamp(13px, 3.2vw, 15px);
        line-height: 1.55;
    }

    .phones {
        margin: -0.35rem auto 0;
        height: clamp(200px, 42vh, 280px);
        min-height: 190px;
        padding-bottom: clamp(8px, 2vw, 14px);
    }

    .phone {
        width: clamp(120px, 40vw, 150px);
        max-width: 100%;
    }

    .phone-1 {
        transform: translateX(20%) rotate(2deg) scale(1);
    }

    .phone-2 {
        transform: translate(-16%, 16%) rotate(4deg) scale(1);
    }

    .btns {
        gap: 8px;
        margin-top: clamp(12px, 3vw, 20px);
    }

    .btns button {
        min-width: 130px;
        padding: 12px 20px;
        font-size: 14px;
    }

    .flavors {
        padding: 40px var(--section-pad-x);
    }

    .section-title:not(.section-title--center) {
        font-size: 24px;
        margin-left: 0;
        margin-bottom: 24px;
    }

    .section-title--center {
        font-size: 24px;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 24px;
    }

    .flavors-wrapper {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        max-width: 100%;
    }

    .flavor-name {
        font-size: 18px;
    }

    .flavors-marquee .flavor-img {
        height: 200px;
        max-height: none;
    }

    .about {
        padding: 40px var(--section-pad-x);
    }

    .about-container {
        margin-left: 0;
        margin-right: 0;
    }

    .about-title {
        font-size: 24px;
        margin-bottom: 24px;
        text-align: center;
    }

    .testimonial-card {
        min-width: 240px;
        max-width: 260px;
        width: 240px;
    }

    .contact {
        padding: 40px var(--section-pad-x);
    }

    .contact-container {
        margin-left: 0;
        margin-right: 0;
    }

    .contact-form h2 {
        font-size: 28px;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    footer {
        padding: 40px var(--section-pad-x) calc(24px + 5.5rem + env(safe-area-inset-bottom, 0px));
        border-radius: 30px 30px 0 0;
    }

    .footer-container {
        gap: 30px;
    }

    .footer-col {
        flex: 1 1 100%;
        min-width: 0;
    }

    .footer-logo img {
        height: 50px;
    }

    #scrollToTopBtn {
        bottom: calc(5.75rem + env(safe-area-inset-bottom, 0px));
        right: 24px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    header {
        padding: 12px var(--section-pad-x);
    }

    .logo img {
        height: 36px;
    }

    .hero {
        padding: clamp(16px, 4vw, 24px) var(--section-pad-x);
        gap: clamp(10px, 2.5vw, 16px);
    }

    .hero-text {
        padding: 0 2px;
    }

    .hero-text h1 {
        font-size: clamp(20px, 5.2vw, 24px);
        margin-bottom: clamp(8px, 2vw, 12px);
        line-height: 1.2;
    }

    .hero-text p {
        font-size: clamp(12px, 3vw, 14px);
        line-height: 1.5;
    }

    .phones {
        height: clamp(180px, 38vh, 260px);
        min-height: 160px;
        padding-bottom: clamp(6px, 1.5vw, 12px);
    }

    .phone {
        width: clamp(100px, 36vw, 130px);
        max-width: 100%;
    }

    .phone-1 {
        transform: translateX(18%) rotate(2deg) scale(1);
    }

    .phone-2 {
        transform: translate(-14%, 14%) rotate(4deg) scale(1);
    }

    .btns {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        margin-top: clamp(10px, 2.5vw, 16px);
    }

    .btns button {
        width: 100%;
        min-width: 0;
        margin: 0;
        padding: 14px 20px;
        font-size: 14px;
    }

    .flavors {
        padding: 32px var(--section-pad-x);
    }

    .section-title:not(.section-title--center) {
        font-size: 20px;
        margin-left: 0;
        margin-bottom: 20px;
    }

    .section-title--center {
        font-size: 20px;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .flavors-wrapper {
        width: 100%;
        max-width: 100%;
    }

    .flavor-name {
        font-size: 16px;
    }

    .flavor-desc {
        font-size: 13px;
        line-height: 1.5;
    }

    .flavors-marquee .flavor-img {
        height: 180px;
        max-height: none;
    }

    .about-title {
        font-size: 20px;
    }

    .testimonial-card {
        min-width: 220px;
        max-width: 240px;
        width: 220px;
        padding: 16px;
        min-height: 260px;
    }

    .profile img {
        width: 44px;
        height: 44px;
    }

    .profile-info h3 {
        font-size: 15px;
    }

    .testimonial-text {
        font-size: 14px;
    }

    .contact-form h2 {
        font-size: 24px;
    }

    .auth {
        flex-direction: column;
        gap: 8px;
    }

    #scrollToTopBtn {
        bottom: calc(5.75rem + env(safe-area-inset-bottom, 0px));
        right: 20px;
    }
}

/* Very small phones (e.g. iPhone SE 320px) */
@media (max-width: 360px) {
    .hero {
        padding: 14px var(--section-pad-x);
        gap: 10px;
    }

    .hero-text h1 {
        font-size: clamp(18px, 5vw, 22px);
        margin-bottom: 8px;
    }

    .hero-text p {
        font-size: 12px;
    }

    .phones {
        height: clamp(150px, 35vh, 220px);
        min-height: 140px;
        padding-bottom: 6px;
    }

    .phone {
        width: clamp(90px, 34vw, 115px);
        max-width: 100%;
    }

    .phone-1 {
        transform: translateX(16%) rotate(2deg) scale(1);
    }

    .phone-2 {
        transform: translate(-12%, 12%) rotate(4deg) scale(1);
    }

    .btns button {
        padding: 12px 16px;
        font-size: 13px;
    }

    .flavors-wrapper {
        width: 100%;
        max-width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
   * {
       animation-duration: 0.01ms !important;
       animation-iteration-count: 1 !important;
       transition-duration: 0.01ms !important;
       scroll-behavior: auto !important;
   }

   .flavors-marquee-track {
       animation: none !important;
       transform: none !important;
   }

   .flavors-marquee-track .flavors-container--marquee-clone {
       display: none !important;
   }

   .flavors-marquee-inner {
       overflow-x: auto;
       -webkit-overflow-scrolling: touch;
       overscroll-behavior-x: contain;
   }

   .flavors-marquee-track > .flavors-container:first-child {
       width: max-content;
       padding-inline-end: var(--space-4);
   }
}

.floating-alert {
    position: fixed;
    top: calc(var(--header-height) + var(--space-3));
    left: 50%;
    transform: translate3d(-50%, -120%, 0);
    z-index: 10001;
    max-width: min(90vw, 28rem);
    padding: var(--space-3) var(--space-4);
    border-radius: 12px;
    border: 1px solid transparent;
    box-shadow: var(--shadow-section);
    font-size: 0.9375rem;
    line-height: 1.5;
    transition: transform 0.4s var(--ease-section), opacity 0.4s var(--ease-section);
    opacity: 0;
    pointer-events: none;
    box-sizing: border-box;
}

.floating-alert.show {
    transform: translate3d(-50%, 0, 0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-sticky-cta {
    display: none;
}

#scrollToTopBtn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 999;
    width: var(--tap-min);
    height: var(--tap-min);
    min-width: var(--tap-min);
    min-height: var(--tap-min);
    font-size: 24px;
    background-color: var(--color-primary);
    color: var(--color-primary-contrast);
    border: none;
    border-radius: 50%;
    padding: 0;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease, transform 0.3s ease;
    display: none;
    align-items: center;
    justify-content: center;
}

#scrollToTopBtn img {
    display: block;
    width: 22px;
    height: 22px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

#scrollToTopBtn:hover {
    background-color: var(--color-primary-hover);
    transform: scale(1.08);
}

/* Mobile app order modal (Order Now) */
.app-order-modal {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: max(16px, env(safe-area-inset-top)) max(16px, env(safe-area-inset-right)) max(16px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    pointer-events: none;
    overscroll-behavior: contain;
}

.app-order-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.app-order-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(27, 27, 27, 0.55);
    cursor: pointer;
}

.app-order-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 420px);
    max-height: min(90dvh, 90vh);
    overflow: auto;
    margin: 0;
    padding: clamp(1.25rem, 4vw, 1.75rem);
    border-radius: 16px;
    background: var(--color-surface);
    box-shadow: 0 20px 60px rgba(27, 27, 27, 0.2);
    text-align: left;
    box-sizing: border-box;
}

.app-order-modal__close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: #777;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
}

.app-order-modal__close:hover {
    background: rgba(27, 27, 27, 0.06);
    color: var(--color-text);
}

.app-order-modal__title {
    font-size: clamp(1.125rem, 2.5vw, 1.35rem);
    font-weight: 700;
    margin: 0 2rem 0.75rem 0;
    color: var(--color-text);
    line-height: 1.25;
}

.app-order-modal__text {
    margin: 0 0 1.25rem;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--color-text-muted);
}

.app-order-modal__actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.app-order-modal__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: var(--tap-min);
    padding: 0.65rem 1.25rem;
    border-radius: 12px;
    border: 1px solid #dadada;
    background: #fff;
    color: var(--color-text);
    font: inherit;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.app-order-modal__btn-secondary:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

.app-order-modal__play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: var(--tap-min);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    background: #000;
    color: #fff;
    font: inherit;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.app-order-modal__play:hover {
    background: #222;
    transform: translateY(-1px);
}

.app-order-modal__play:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 2px;
}

/* Image preview lightbox */
.image-preview-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: max(12px, env(safe-area-inset-top)) max(12px, env(safe-area-inset-right)) max(12px, env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left));
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
    overscroll-behavior: contain;
}

.image-preview-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.image-preview-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    cursor: pointer;
    z-index: 0;
}

.image-preview-close {
    position: absolute;
    top: max(12px, env(safe-area-inset-top));
    right: max(12px, env(safe-area-inset-right));
    width: 44px;
    height: 44px;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 2;
    flex-shrink: 0;
}

.image-preview-close:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: scale(1.08);
}

.image-preview-content {
    position: relative;
    z-index: 1;
    width: min(96vw, 1200px);
    max-width: 100%;
    max-height: min(90dvh, 90vh);
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.image-preview-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(8px, 2vw, 14px);
    width: 100%;
    max-width: 100%;
    min-height: 0;
    /* Space so image does not sit under the absolute close control */
    padding-top: 48px;
    box-sizing: border-box;
}

.image-preview-img {
    display: block;
    max-width: 100%;
    width: auto;
    height: auto;
    /* Reserve vertical space for caption + padding (dynamic viewport on mobile) */
    max-height: min(72dvh, calc(90dvh - 5.5rem), calc(90vh - 5.5rem));
    min-height: 0;
    object-fit: contain;
    object-position: center;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.image-preview-caption {
    margin: 0;
    color: #fff;
    font-size: clamp(13px, 2.5vw, 16px);
    font-weight: 500;
    text-align: center;
    line-height: 1.35;
    max-width: 100%;
    max-height: min(28dvh, 28vh);
    padding: 0 0.25rem;
    overflow-wrap: anywhere;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .image-preview-modal {
        padding: max(10px, env(safe-area-inset-top)) max(10px, env(safe-area-inset-right)) max(10px, env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left));
    }

    .image-preview-content {
        width: 100%;
        max-height: min(92dvh, 92vh);
    }

    .image-preview-body {
        padding-top: 44px;
        gap: 10px;
    }

    .image-preview-close {
        width: 44px;
        height: 44px;
        font-size: 26px;
    }

    .image-preview-img {
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .image-preview-close {
        top: max(8px, env(safe-area-inset-top));
        right: max(8px, env(safe-area-inset-right));
        width: 40px;
        height: 40px;
        font-size: 24px;
        background: rgba(0, 0, 0, 0.5);
    }

    .image-preview-body {
        padding-top: 40px;
        gap: 8px;
    }

    .image-preview-img {
        border-radius: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .image-preview-modal {
        transition: opacity 0.2s ease, visibility 0.2s ease;
    }

    .image-preview-close:hover {
        transform: none;
    }
}

/* About Us â€” company story (from former standalone About page) */
.about-story {
    padding: var(--section-pad-y) var(--section-pad-x);
    background: #ffffff;
}

.about-story-inner {
    display: flex;
    align-items: flex-start;
    gap: clamp(2rem, 5vw, 5rem);
    max-width: 1200px;
    margin: 0 auto;
}

.about-story__left {
    flex: 1;
    min-width: 0;
}

.about-story__title {
    font-size: clamp(1.75rem, 2vw + 1rem, 2.5rem);
    font-weight: 700;
    margin: 0 0 1.25rem;
    color: var(--color-text);
}

.about-story__title span {
    color: #e60023;
}

.about-story__image-box {
    width: 100%;
    min-height: 280px;
    height: 400px;
    max-height: min(50vh, 400px);
    background: #f4f6f8;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-story__image-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about-story__right {
    flex: 1;
    min-width: 0;
}

.about-story__heading {
    font-size: clamp(1.25rem, 1vw + 1rem, 1.75rem);
    font-weight: 700;
    margin: 0 0 1.25rem;
    color: var(--color-text);
}

.about-story__right p {
    line-height: 1.8;
    margin: 0 0 1.25rem;
    color: var(--color-text-muted);
}

.about-story__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.75rem 0;
}

.about-story__stat-box {
    background: #f7f7f7;
    padding: 1.25rem 1.5rem;
    border-radius: 15px;
    min-width: 120px;
    flex: 1 1 120px;
    text-align: center;
}

.about-story__stat-box h4 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 0.35rem;
    color: #111;
}

.about-story__stat-box span {
    font-size: 0.875rem;
    color: #777;
}

.about-story__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 14px 28px;
    border: 2px solid #e60023;
    border-radius: 50px;
    background: transparent;
    color: #e60023;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.about-story__btn:hover {
    background: #e60023;
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .about-story-inner {
        flex-direction: column;
    }

    .about-story__image-box {
        height: 320px;
        max-height: none;
    }
}

/* Explore overlay (do not use --section-pad-x: 3in â€” it wastes horizontal space) */
.explore-overlay {
    --explore-gutter: max(env(safe-area-inset-left), clamp(16px, 4vw, 40px));
    --explore-gutter-end: max(env(safe-area-inset-right), clamp(16px, 4vw, 40px));
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    /* Full viewport on mobile (dynamic toolbar safe) */
    min-height: 100vh;
    min-height: 100dvh;
}

.explore-overlay::-webkit-scrollbar {
    display: none;
}

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

.explore-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding-top: max(env(safe-area-inset-top), clamp(14px, 3vw, 25px));
    padding-right: var(--explore-gutter-end);
    padding-bottom: clamp(14px, 3vw, 25px);
    padding-left: var(--explore-gutter);
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
    flex-shrink: 0;
}

.explore-header img {
    height: clamp(36px, 8vw, 45px);
    width: auto;
    max-width: min(200px, 55vw);
    object-fit: contain;
}

.explore-close-btn {
    font-size: clamp(22px, 5vw, 26px);
    line-height: 1;
    cursor: pointer;
    color: #777;
    background: none;
    border: none;
    flex-shrink: 0;
    /* Touch-friendly tap target */
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    margin: -8px -8px -8px 0;
    transition: transform 0.3s ease, color 0.3s ease;
}

.explore-close-btn:hover {
    transform: rotate(90deg);
    color: #E3001B;
}

.explore-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: clamp(1.25rem, 3vw, 2.5rem);
    width: 100%;
    max-width: min(1200px, 100%);
    min-width: 0;
    margin: 0 auto;
    box-sizing: border-box;
    padding-top: clamp(14px, 3vw, 32px);
    padding-right: var(--explore-gutter-end);
    padding-left: var(--explore-gutter);
    padding-bottom: max(2rem, 1.25rem + env(safe-area-inset-bottom));
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.explore-overlay.active .explore-content {
    transform: translateY(0);
    opacity: 1;
}

/* Photo + story: image scales to column width (no tiny thumb in a tall gray box) */
.explore-image {
    flex: 1 1 48%;
    min-width: min(100%, 280px);
    max-width: 100%;
    border-radius: 16px;
    background: #f4f6f8;
    overflow: hidden;
    display: block;
    padding: clamp(8px, 1.5vw, 14px);
    box-sizing: border-box;
    align-self: flex-start;
}

.explore-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
    border-radius: 10px;
    transform: scale(0.98);
    transition: transform 0.6s ease;
}

.explore-overlay.active .explore-image img {
    transform: scale(1);
}

.explore-text {
    flex: 1 1 52%;
    min-width: 0;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
    color: var(--color-text-muted);
    font-size: clamp(0.9375rem, 0.35vw + 0.85rem, 1rem);
    line-height: 1.8;
    overflow-wrap: break-word;
    word-break: normal;
    padding-top: 2px;
}

.explore-text p {
    opacity: 0;
    transform: translateY(16px);
    animation: explore-fade-up 0.55s ease forwards;
    margin: 0 0 1.25rem;
}

.explore-text p:last-child {
    margin-bottom: 0;
}

.explore-text p:nth-child(1) {
    animation-delay: 0.15s;
}

.explore-text p:nth-child(2) {
    animation-delay: 0.28s;
}

.explore-text p:nth-child(3) {
    animation-delay: 0.4s;
}

.explore-text p:nth-child(4) {
    animation-delay: 0.52s;
}

.explore-overlay.active .explore-text p {
    animation-play-state: running;
}

@keyframes explore-fade-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .explore-content {
        flex-direction: column;
        align-items: stretch;
        gap: clamp(1.25rem, 3vw, 1.75rem);
        padding-top: clamp(8px, 2vw, 16px);
    }

    .explore-image {
        flex: 0 0 auto;
        width: 100%;
        min-width: 0;
        min-height: 0;
    }

    .explore-image img {
        width: 100%;
        height: auto;
        max-height: none;
        object-fit: contain;
    }

    .explore-text {
        justify-content: flex-start;
        font-size: clamp(0.875rem, 2.5vw, 0.9375rem);
        line-height: 1.8;
    }
}

@media (max-width: 480px) {
    .explore-overlay {
        --explore-gutter: max(env(safe-area-inset-left), 14px);
        --explore-gutter-end: max(env(safe-area-inset-right), 14px);
    }

    .explore-image {
        border-radius: 14px;
        padding: 10px;
    }

    .explore-image img {
        border-radius: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .explore-content {
        transform: none;
        transition: opacity 0.3s ease;
    }

    .explore-overlay.active .explore-content {
        transform: none;
    }

    .explore-image img {
        transform: none;
        transition: none;
    }

    .explore-overlay.active .explore-image img {
        transform: none;
    }

    .explore-text p {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .explore-close-btn:hover {
        transform: none;
    }
}
