:root {
    --color-bg: #FFD194;
    /* Peach/Orange - Magic Slab inspired */
    --color-primary: #C72B3E;
    /* Bold Red */
    --color-text: #1a1a1a;
    --color-text-light: #ffffff;
    --color-accent: #FFAB73;
    /* Slightly darker peach for hover/depth */

    --font-heading: 'Zilla Slab', serif;
    --font-body: 'Josefin Sans', sans-serif;
    --spacing-container: 1200px;
    --radius-card: 24px;
    --radius-btn: 50px;
}

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

html {
    overflow-x: hidden;
}

/* Decorative Section Icons */
.section-icon {
    position: absolute;
    width: 60px;
    height: auto;
    opacity: 0.25;
    pointer-events: none;
    z-index: 0;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    overflow-x: hidden;
    line-height: 1.6;
    width: 100%;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    /* Boldest available for Zilla */
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: var(--color-primary);
}

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

.mobile-break {
    display: none;
}

/* Navbar Animation */
@keyframes slideInNav {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.25rem 1.5rem;
    /* Increased height */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 209, 148, 0.95);
    backdrop-filter: blur(5px);
    animation: slideInNav 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #000;
    font-weight: 700;
    /* Boldest available */
    letter-spacing: -1px;
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    text-transform: none;
}

.chinese-logo {
    color: var(--color-primary);
    margin-left: 0.2rem;
    /* Closer to 'a' */
    font-weight: 400;
    font-family: 'Ma Shan Zheng', cursive;
    /* Less generic */
    font-size: 0.5em;
    /* Match lowercase a height */
    vertical-align: 3px;
    /* Align to baseline */
}

.nav-left,
.nav-right {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin: 0 2rem;
}

/* Cleaned up empty nav rules */

.nav-left a,
.nav-right a {
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.featured-img.contain-fit {
    object-fit: contain;
    padding: 10px;
    background: transparent;
}


.featured-item.no-card .featured-img.scale-fix {
    transform: scale(2.4) translateY(-5px);
    transform-origin: center center;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.6));
}

.featured-item.no-card .featured-img.matcha-scale {
    transform: scale(2.9) translateY(-05px);
    transform-origin: center center;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.6));
}


.nav-left a:hover,
.nav-right a:hover {
    color: var(--color-primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    justify-self: end;
    color: var(--color-primary);
    /* Red Lines */
}

/* Nav Icons */
.nav-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.nav-icon-link:hover {
    transform: translateY(-2px);
}

.nav-app-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 8px;
    /* Smooth corners */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero {
    min-height: auto;
    background: var(--color-bg);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 0;
    overflow: hidden;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.4), transparent 70%);
    z-index: 0;
    /* Lower z-index just in case */
    pointer-events: none;
}

.hero>* {
    position: relative;
    z-index: 2;
    /* Ensure content is above */
}

/* Ambient Background Mesh */
.ambient-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 1;
    opacity: 0.7;
    will-change: transform;
    animation: drift 25s infinite alternate ease-in-out;
}

.shape-1 {
    width: 700px;
    height: 700px;
    background: #FFD194;
    top: -200px;
    left: -200px;
}

.shape-2 {
    width: 600px;
    height: 600px;
    background: #ff9a9e;
    bottom: -150px;
    right: -150px;
    animation-delay: -5s;
    animation-duration: 28s;
}

.shape-3 {
    width: 600px;
    height: 600px;
    background: #fad0c4;
    top: 30%;
    right: -100px;
    animation-delay: -10s;
    animation-duration: 32s;
}

@keyframes drift {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    33% {
        transform: translate(100px, -80px) rotate(15deg) scale(1.1);
    }

    66% {
        transform: translate(-50px, 120px) rotate(-10deg) scale(0.9);
    }

    100% {
        transform: translate(40px, 40px) rotate(5deg) scale(1.0);
    }
}

.hero-content {
    margin-bottom: 0;
    z-index: 20;
}

.hero h1 {
    font-size: clamp(2rem, 10vw, 4rem) !important;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: #000;
    text-shadow: 2px 2px 0px rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

/* Common Line Styles */
.line-crown,
.line-your,
.line-cravings {
    font-weight: 700;
    letter-spacing: 2px;
    opacity: 0;
    text-align: center;
}

/* 1. CROWN */
/* 1. CROWN (Slams and Tilts Left) */
/* 1. CROWN */
.line-crown {
    animation: wordSlamHard 0.6s ease-out forwards 0.3s;
}

/* 2. YOUR */
.line-your {
    margin-top: 1.5rem;
    animation: wordSlamHard 0.6s ease-out forwards 0.7s;
}

/* 3. CRAVINGS (Straight) */
.line-cravings {
    margin-top: 1.5rem;
    animation: wordSlamExtreme 0.6s ease-out forwards 1.1s;
}

.text-red {
    display: inline-block;
    position: relative;
    color: var(--color-primary) !important;
    font-weight: 800;
    font-size: 1.35em;
}

/* Cleaned up old crown animation classes */

@keyframes wordSlam {
    0% {
        opacity: 0;
        transform: scale(4);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes wordSlamLeft {
    0% {
        opacity: 0;
        transform: scale(4) rotate(-15deg);
    }

    100% {
        opacity: 1;
        transform: scale(1) rotate(-3deg);
    }
}

@keyframes wordSlamRight {
    0% {
        opacity: 0;
        transform: scale(4) rotate(15deg);
    }

    100% {
        opacity: 1;
        transform: scale(1) rotate(3deg);
    }
}

@keyframes wordSlamHard {
    0% {
        opacity: 0;
        transform: scale(5);
    }

    40% {
        opacity: 1;
        transform: scale(0.9);
        /* IMPACT (Squish) */
    }

    60% {
        transform: scale(1.1) rotate(2deg);
        /* Rebound + Tilt */
    }

    80% {
        transform: scale(0.95) rotate(-2deg);
        /* Settle */
    }

    100% {
        opacity: 1;
        transform: scale(1) rotate(0);
    }
}

@keyframes wordSlamExtreme {
    0% {
        opacity: 0;
        transform: scale(10);
    }

    40% {
        opacity: 1;
        transform: scale(0.8);
    }

    60% {
        transform: scale(1.2) rotate(4deg);
    }

    80% {
        transform: scale(0.9) rotate(-3deg);
    }

    100% {
        opacity: 1;
        transform: scale(1) rotate(0);
    }
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-text);
}

/* 3-Bowl Layout */
.hero-visual-group {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    height: 0px;
    width: 100%;
    transform: translateX(-100px);
    margin-bottom: -50px;
}

.bowl-center {
    width: 900px;
    height: 900px;
    object-fit: contain;
    z-index: 10;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.2));
    opacity: 0;
    animation: popCenter 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards, floatLow 6s ease-in-out infinite 1s;
    animation-delay: 0.2s, 1.2s;
}

.bowl-side {
    width: 480px;
    height: 480px;
    object-fit: contain;
    z-index: 5;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s;
    opacity: 0;
}

.bowl-left {
    transform: translateX(380px) translateY(20px) rotate(-10deg) scale(0.9);
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.15));
    animation: popLeft 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: 0.4s;
}

.bowl-right {
    transform: translateX(-380px) translateY(20px) rotate(10deg) scale(0.9);
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.15));
    animation: popRight 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: 0.4s;
}

@keyframes popCenter {
    0% {
        opacity: 0;
        transform: translateX(-15px) scale(0.25) translateY(-100px);
    }

    100% {
        opacity: 1;
        transform: translateX(-15px) scale(0.45) translateY(-100px);
    }
}

@keyframes floatLow {

    0%,
    100% {
        transform: translateX(-15px) scale(0.45) translateY(-100px);
    }

    50% {
        transform: translateX(-15px) scale(0.45) translateY(-120px);
    }
}

@keyframes popLeft {
    0% {
        opacity: 0;
        transform: translateX(380px) translateY(20px) rotate(-10deg) scale(0.6);
    }

    100% {
        opacity: 1;
        transform: translateX(380px) translateY(-20px) rotate(-10deg) scale(0.64);
    }
}

@keyframes popRight {
    0% {
        opacity: 0;
        transform: translateX(-380px) translateY(20px) rotate(10deg) scale(0.6);
    }

    100% {
        opacity: 1;
        transform: translateX(-380px) translateY(-20px) rotate(10deg) scale(0.64);
    }
}



.btn-primary {
    background: var(--color-primary);
    color: var(--color-text-light);
    border: none;
    padding: 1.2rem 4rem;
    /* Bigger */
    font-size: 1.5rem;
    /* Bigger */
    font-weight: 800;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(199, 43, 62, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(199, 43, 62, 0.5);
}

/* .hero-image moved to bottom for animation clarity, or see below */

/* Scrolling Banner - Restored */
.scrolling-banner-container {
    background: #FFBD69;
    /* Restored Peach */
    padding: 1.5rem 0;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
    margin: 3rem 0;
    transform: rotate(-1deg);
    opacity: 0;
    animation: bannerFadeUp 1s ease-out forwards 0.8s;
}



.scrolling-banner {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    width: max-content;
    gap: 0;
    animation: scroll 15s linear infinite;
}

.banner-content {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center;
    white-space: nowrap;
    flex-shrink: 0;
    padding: 0;
}

.banner-content span {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 3rem;
    color: #1a1a1a;
    padding: 0 1rem;
}

.banner-icon {
    width: auto;
    height: 40px;
    /* Bigger */
    margin: 0 1rem;
    filter: grayscale(100%) brightness(0);
    /* Solid Black */
}

.boba-icon {
    width: 30px;
    height: 30px;
    color: #000;
}

/* Tea Section (Gong Cha Staggered) */
.tea-showcase {
    padding: 2rem 5% 6rem 5%;
    text-align: center;
}

/* Tea Section Header Animation */
.tea-showcase .section-title {
    opacity: 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: block;
    margin: 0 auto 2rem;
    text-align: center;
}

.tea-showcase .section-title.active {
    opacity: 1;
    transform: scaleX(1);
}

.tea-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Tea Card Reveal (Simplified) */
.tea-card {
    flex: 1;
    position: relative;
    border-radius: 200px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    height: 500px;
    display: block;
    text-decoration: none;
    color: inherit;

    /* Animation Props */
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.tea-card.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.tea-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
    transition-delay: 0s !important;
}

/* Staggered Delays */
.tea-card:nth-child(1) {
    transition-delay: 0.1s;
}

.tea-card:nth-child(2) {
    transition-delay: 0.3s;
}

.tea-card:nth-child(3) {
    transition-delay: 0.5s;
}

/* Our Story Masked Letters */
.slide-up-wrapper {
    overflow: hidden;
    display: block;
    line-height: 1.2;
}

.letter {
    display: inline-block;
    transform: translateY(110%);
    transition: transform 0.4s ease-out;
    will-change: transform;
}

.section-title.active .letter {
    transform: translateY(0);
}

/* Letter Staggering (Starts after Subheader) */
.section-title.active .letter:nth-child(1) {
    transition-delay: 0.6s;
}

.section-title.active .letter:nth-child(2) {
    transition-delay: 0.65s;
}

.section-title.active .letter:nth-child(3) {
    transition-delay: 0.7s;
}

/* 4 is space */
.section-title.active .letter:nth-child(5) {
    transition-delay: 0.75s;
}

.section-title.active .letter:nth-child(6) {
    transition-delay: 0.8s;
}

.section-title.active .letter:nth-child(7) {
    transition-delay: 0.85s;
}

.section-title.active .letter:nth-child(8) {
    transition-delay: 0.9s;
}

.section-title.active .letter:nth-child(9) {
    transition-delay: 0.95s;
}

/* Subheader Center Scale */
.about-subheader {
    opacity: 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: block;
    text-align: center;
    margin-top: 1rem;
    font-size: 1.1rem;
    /* Adjust if needed */
    letter-spacing: 2px;
    font-weight: 700;
}

.about-subheader.active {
    opacity: 1;
    transform: scaleX(1);
}

/* Staggering */
.tea-card:nth-child(1) {
    transform: translateY(30px) rotate(-2deg);
    height: 480px;
}

.tea-card:nth-child(2) {
    transform: translateY(-40px);
    height: 550px;
    z-index: 2;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    /* Pop more */
}

.tea-card:nth-child(3) {
    transform: translateY(30px) rotate(2deg);
    height: 480px;
}

.tea-card:hover {
    /* Base hover removed in favor of specifics */
    z-index: 100 !important;
}

.tea-card.reveal.active:nth-child(2):hover {
    transform: translateY(-50px) scale(1.05);
    box-shadow: 0 30px 60px rgba(199, 43, 62, 0.3);
}

.tea-card.reveal.active:nth-child(1):hover {
    transform: translateY(15px) rotate(-2deg) scale(1.02);
    /* Gentle lift from 30px */
    box-shadow: 0 25px 40px rgba(199, 43, 62, 0.2);
}

.tea-card.reveal.active:nth-child(3):hover {
    transform: translateY(15px) rotate(2deg) scale(1.02);
    /* Gentle lift from 30px */
    box-shadow: 0 25px 40px rgba(199, 43, 62, 0.2);
}

.tea-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tea-label {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 900;
    color: #000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    font-size: 1.1rem;
    white-space: nowrap;
    text-transform: uppercase;
}

.about-section {
    padding: 12rem 5% 0;
    /* Transparent/Peach (Inherited) */
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Grid Layout Container */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
        "headers"
        "collage"
        "text";
    gap: 2rem;
    align-items: center;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-headers {
    grid-area: headers;
    text-align: center;
}

.about-text {
    grid-area: text;
    text-align: center;
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
    color: var(--color-text);
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-collage {
    grid-area: collage;
    position: relative;
    width: 100%;
    max-width: 300px;
    max-height: 1100px;
    margin: 0 auto;
}

.about-section h2 {
    color: #000;
    font-size: 4rem;
    margin-bottom: 0.5rem;
    text-transform: none;
}

.about-subheader {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    text-transform: none;
    line-height: 1.3;
    letter-spacing: 1px;
    /* Reduced Spacing */
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Collage Items (Preserved) */
.collage-item {
    position: absolute;
    width: 250px;
    height: 300px;
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border: 5px solid #fff;
    background: rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.item-1 {
    top: 20px;
    left: 20px;
    transform: rotate(-10deg);
    z-index: 1;
}

.item-2 {
    bottom: 20px;
    right: 20px;
    transform: rotate(5deg);
    z-index: 2;
}



@media (min-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "headers collage"
            "text    collage";
        justify-items: start;
        text-align: left;
        gap: 2rem;
    }

    .about-headers {
        text-align: left;
        align-self: end;
        width: 100%;
    }

    .about-section h2 {
        text-align: left;
        margin-left: 0;
    }

    .about-text {
        text-align: left;
        align-self: start;
        max-width: 100%;
        width: 100%;
        margin-left: 0;
    }

    .about-subheader {
        max-width: 100%;
        margin-left: 0;
        text-align: left;
    }

    .about-collage {
        margin: 0;
        justify-self: end;
        max-width: 900px;
        height: 650px;
        width: 100%;
    }

    /* Double the size of the images inside the collage for desktop */
    /* Double the size of the images inside the collage for desktop */
    /* Double the size of the images inside the collage for desktop */
    .about-collage .collage-item {
        width: 200px;
        height: 400px;
    }

    .item-1 {
        top: 150px;
        left: 100px;
    }

    .item-2 {
        top: 105px;
        right: 130px;
        bottom: auto;
        /* Override bottom positioning */
    }


    .tea-showcase .section-title {
        margin-bottom: 5rem;
    }

    .section-divider {
        margin-left: 0;
    }

    /* Desktop Navigation - 3-Zone Layout */
    .navbar {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        justify-content: stretch;
    }

    /* Left zone: Logo stays left (already positioned via .logo styles) */

    /* Hide nav-left on desktop - move those links to nav-right */
    .nav-left {
        display: none;
    }

    /* Right zone: All nav links right-aligned */
    .nav-right {
        display: flex;
        gap: 2rem;
        align-items: center;
        justify-content: flex-end;
        margin-right: 2rem;
        grid-column: 3;
    }

    /* Center zone: Order Now CTA centered */
    /* Hide Order Now from nav (it's in hero center column) */
    .nav-right .btn-nav-cta {
        display: none;
    }

    /* Hide delivery app icons on desktop nav */
    .nav-icon-link {
        display: none;
    }

    /* Position gradient shapes behind right column (text) */
    .shape-1 {
        top: 50%;
        left: 75%;
        transform: translate(-50%, -50%);
    }

    .shape-2 {
        top: 35%;
        left: 85%;
        right: auto;
        bottom: auto;
        transform: translate(-50%, -50%);
    }

    .shape-3 {
        top: 65%;
        left: 80%;
        right: auto;
        transform: translate(-50%, -50%);
    }

    /* ===========================================
       DESKTOP HERO - 3-COLUMN LAYOUT (Bowls Left, CTA Center, Text Right)
       =========================================== */
    .hero {
        min-height: 90vh;
        max-height: 100vh;
        padding: 8rem 4rem 2rem;
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        grid-template-rows: 1fr;
        align-items: center;
        justify-items: center;
        gap: 2rem;
        overflow: hidden;
    }

    /* LEFT COLUMN: Single Large Bowl */
    .hero-visual-group {
        grid-column: 1;
        justify-self: center;
        align-self: center;
        position: relative;
        width: 700px;
        height: 500px;
        transform: none;
        margin: 0;
    }

    /* Main center bowl - BIG and centered */
    .bowl-center {
        width: 1000px;
        height: 1000px;
        z-index: 15;
        position: absolute;
        left: -50px;
        top: -270px;
        transform: translate(-50%, -50%);
        filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.3));
        animation: popBowlDesktop 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
        animation-delay: 0.2s;
    }

    /* Hide side bowls on desktop */
    .bowl-left,
    .bowl-right {
        display: none;
    }

    .bowl-side {
        position: absolute;
    }

    /* MIDDLE COLUMN: CTA Button - HIDDEN ON DESKTOP */
    .hero-cta-wrapper {
        display: none;
    }

    .btn-primary.hero-btn {
        padding: 1rem 3rem;
        font-size: 1.2rem;
        background: var(--color-primary);
        color: #fff;
        border-radius: 50px;
        box-shadow: 0 8px 20px rgba(199, 43, 62, 0.35);
        transition: all 0.3s ease;
    }

    .btn-primary.hero-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 28px rgba(199, 43, 62, 0.45);
    }

    /* RIGHT COLUMN: Headline (shifted left within column) */
    .hero-content {
        grid-column: 3;
        grid-row: 1;
        justify-self: start;
        align-self: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0;
        padding-left: 2rem;
        height: 100%;
    }

    /* Order Now button below headline - desktop only */
    .hero .hero-text-btn {
        margin-top: 2rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 280px;
        height: 70px;
        font-size: 1.8rem;
        line-height: 1;
        opacity: 0;
        animation: fadeSlideUp 0.4s ease-out forwards;
        animation-delay: 1.7s;
    }

    @keyframes fadeSlideUp {
        0% {
            opacity: 0;
            transform: translateY(20px);
        }

        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .hero h1 {
        font-size: clamp(2.5rem, 4vw, 4rem) !important;
        gap: 0.2rem;
        align-items: center;
        text-align: center;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Crown YOUR on same line */
    .line-crown,
    .line-your {
        display: inline;
        text-align: center;
        vertical-align: baseline;
        margin-top: 0;
    }

    .line-crown::after {
        content: '';
        margin-right: 0.2em;
    }

    /* Cravings on its own line, bigger */
    .line-cravings {
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 0.5rem;
        font-size: 1.2em;
    }

    /* Simplified Bowl Animation */
    @keyframes popBowlDesktop {
        0% {
            opacity: 0;
            transform: scale(0.7) translateY(20px);
        }

        100% {
            opacity: 1;
            transform: scale(1) translateY(0);
        }
    }
}

/* Scroll Top Button */
#scrollTopBtn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: #C72B3E;
    /* Hardcoded Red */
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex !important;
    justify-content: center;
    align-items: center;
    z-index: 2147483647;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

#scrollTopBtn.active {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0);
    z-index: 2147483647;
}

#scrollTopBtn:hover {
    transform: translateY(-5px);
    background: #a01d2d;
}

@media (max-width: 768px) {
    .collage-item {
        width: 180px;
        height: 220px;
    }

    .about-collage {
        height: 300px;
        max-width: 350px;
    }

    /* Hide desktop-only nav links on mobile */
    .desktop-nav-link {
        display: none !important;
    }
}

/* Menu Section */
/* Favorites Section */
.menu-section {
    padding: 0 5% 6rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    text-transform: none;
    color: #000;
    font-weight: 800;
    letter-spacing: -1px;
}

.favorites-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    max-width: 1200px;
    margin: 0 auto;
}

.fav-card {
    text-align: left;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.fav-card:hover {
    transform: translateY(-5px);
}

.fav-visual {
    width: 100%;
    aspect-ratio: 1 / 1;
    /* Force Square */
    margin-bottom: 0.5rem;
    border-radius: 8px;
    /* Slightly rounded for mobile polish */
}

.fav-info h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.1rem;
    color: #000;
    line-height: 1.2;
    text-transform: capitalize;
}

.fav-info .price {
    font-size: 0.8rem;
    color: #666;
    font-weight: 400;
    text-transform: uppercase;
}

/* Visual Placeholders - Pastels */
.visual-oreo {
    background: #E2E8F0;
}

/* Slate 200 */
.visual-banana {
    background: #FEF3C7;
}

/* Amber 100 */
.visual-berry {
    background: #FECACA;
}

/* Red 200 */

.visual-royal {
    background: #D1FAE5;
}

/* Emerald 100 */
.visual-sugar {
    background: #F3E8FF;
}

/* Purple 100 */
.visual-matcha {
    background: #BEF264;
}

/* Lime 200 */

.visual-rose {
    background: #FCE7F3;
}

/* Pink 100 */
.visual-poke {
    background: #BFDBFE;
}

/* Blue 200 */
.visual-combo {
    background: #DDD6FE;
}

/* Violet 200 */

@media (min-width: 992px) {
    .favorites-grid {
        gap: 2.5rem;
    }

    .fav-visual {
        margin-bottom: 1rem;
        border-radius: 12px;
    }

    .fav-info h4 {
        font-size: 1.25rem;
        margin-bottom: 0.25rem;
    }

    .fav-info .price {
        font-size: 1rem;
    }
}

/* Taro */

.menu-item-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.price {
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.desc {
    font-size: 0.95rem;
    opacity: 0.8;
}

.wide {
    grid-column: span 2;
}

/* Location Section */
.location-section {
    padding: 6rem 5%;
    display: flex;
    justify-content: center;
    background: #fff;
    color: var(--color-text);
}

.location-details {
    text-align: center;
}

.location-details h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

address {
    font-style: normal;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.phone-link {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 2rem;
    display: block;
}

.hours {
    background: var(--color-bg);
    padding: 2rem;
    border-radius: var(--radius-card);
    margin-bottom: 2rem;
}

.hours p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.btn-outline {
    display: inline-block;
    padding: 1rem 2rem;
    border: 2px solid var(--color-text);
    border-radius: var(--radius-btn);
    font-weight: 700;
    transition: 0.3s;
}

.btn-outline:hover {
    background: var(--color-text);
    color: #fff;
}

footer {
    padding: 2rem;
    text-align: center;
    background: var(--color-primary);
    color: var(--color-text-light);
    font-size: 0.9rem;
}

/* Responsive */
/* Responsive */
/* Responsive */
@media (max-width: 768px) {

    /* Navbar - Logic for true centering */
    /* Navbar - Left Aligned Logo via Flex */
    .navbar {
        padding: 1.75rem 1.5rem;
        /* Even Taller Nav */
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        grid-template-columns: none;
        z-index: 1000;
        /* Ensure above overlay */
    }

    .nav-left,
    .nav-right {
        display: none !important;
    }

    .logo {
        text-align: left;
        width: auto;
        font-size: 2rem;
        /* Taller/Bigger */
        letter-spacing: 0px;
        color: #000 !important;
        margin-top: 0;
        /* Reset Centering */
        margin-left: -20px;
        /* More Left */
    }

    .mobile-menu-btn {
        display: block;
        position: absolute;
        right: 1.5rem;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1001;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        width: 22px;
        /* Smaller width */
        height: 16.5px;
        /* Tighter height = bars closer */
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .bar {
        width: 100%;
        height: 2.5px;
        /* Perfect Middle Ground */
        background-color: var(--color-primary);
        border-radius: 4px;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
        /* Explicit props */
        transform-origin: center;
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 1;
        will-change: transform, opacity;
    }

    /* Animation to X */
    .mobile-menu-btn.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .mobile-menu-btn.active .bar:nth-child(2) {
        opacity: 0;
        transform: scale(0);
        /* Ensure it shrinks/disappears smoothly */
    }

    .mobile-menu-btn.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* Hero */
    .hero {
        padding: 7rem 1rem 4rem;
        min-height: auto;
    }

    .hero h1 {
        font-size: 4.5rem;
        /* Clearly larger than nav (2rem) */
        line-height: 1;
        letter-spacing: -2px;
    }

    /* Crown - Re-positioned on ROYAL */
    /* Crown - Re-positioned on ROYAL */
    .crown-icon {
        width: 55px !important;
        height: 55px !important;
        /* Tiny bit smaller */
        top: 38% !important;
        /* Moved Up */
        left: -24px !important;
        /* Moved Left */
        transform: rotate(-15deg);
    }

    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .hero-buttons {
        margin-top: 1.5rem;
        margin-bottom: 2rem;
    }

    .btn-primary {
        padding: 0.8rem 2.5rem;
        /* Smaller Mobile Button */
        font-size: 1.1rem;
    }

    /* Hero Visuals */
    .hero-visual-group {
        height: 500px;
        align-items: center;
        transform: translateX(-50px);
        transform-origin: center bottom;
        margin-bottom: -50px;
    }

    .shape-1,
    .shape-2,
    .shape-3 {
        transform: scale(0.4);
        opacity: 0.3;
    }

    /* Section Titles */
    .section-title {
        font-size: 3rem !important;
        /* Larger Mobile Title */
    }

    /* Tea Section - Rounded Rectangles */
    /* Tea Section - Rounded Rectangles */
    .tea-grid {
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
        /* Uniform spacing */
        padding: 0 0.5rem;
        /* WIDER CARDS */
    }

    .tea-card {
        width: 100%;
        background: #fff;
        border-radius: 40px;
        /* MORE ROUNDED */
        overflow: hidden;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
        /* STRONGER SHADOW */
        padding: 0 !important;
        margin: 0 !important;
    }

    /* Mobile tea card order: Milk Teas first, Fruit Teas second, Milk Foam third */
    .tea-card:nth-child(1) {
        order: 1;
    }

    .tea-card:nth-child(2) {
        order: 2;
    }

    .tea-card:nth-child(3) {
        order: 3;
    }

    /* Mobile tea card styling adjustments */
    .tea-card:nth-child(1) {
        position: relative;
        z-index: 100 !important;
        margin-bottom: 1.5rem !important;
    }

    .tea-card img {
        width: 100%;
        height: 450px;
        object-fit: cover;
        display: block;
    }

    /* Make Milk Tea (1st card) Taller */
    .tea-card:nth-child(1) img {
        height: 550px !important;
    }

    /* Align Label Left */
    .tea-label {
        left: 1.5rem !important;
        transform: none !important;
        right: auto;
        text-align: left;
        bottom: 1.5rem !important;
        color: #000 !important;
        /* BLACK TEXT */
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    /* Reset Stagger + Add Text Padding */
    .tea-card h3,
    .tea-card a {
        position: relative;
        z-index: 2;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    /* FORCE UNIFORM TRANSFORMS (No Slant) */
    .tea-card.reveal:nth-child(n) {
        transform: translateY(30px) rotate(0deg) !important;
    }

    .tea-card.reveal.active:nth-child(n) {
        transform: translateY(0) rotate(0deg) !important;
        transition-delay: 0s !important;
    }

    /* Menu & Layout */
    .menu-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    bottom: auto;
    background: var(--color-bg);
    padding: 5rem 1.5rem 4.5rem 1.5rem;
    z-index: 999;

    display: flex;
    flex-direction: column;
    gap: 0.5rem !important;
    text-align: left;
    border-bottom: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);

    /* Animation State */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s ease-in-out;
    pointer-events: none;
}

.mobile-menu-cta {
    background: #c72b3e;
    color: #fff !important;
    padding: 0;
    height: 3rem;
    border-radius: 0;
    margin: 0;
    box-shadow: none;
    width: 100%;
    position: absolute;
    bottom: -2px;
    left: 0;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
    font-size: 2rem;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.mobile-menu-overlay.closing {
    /* Deprecated but kept to prevent breakage if JS adds it */
    display: flex;
}

.mobile-menu-overlay a {
    font-size: 1rem;
    font-weight: 800;
    text-transform: capitalize;
    /* Title Case */
    color: var(--color-text);
    text-decoration: none;
    margin: 0 !important;
    padding: 0 !important;
    display: block;
}

@keyframes slideDownMenu {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUpMenu {
    from {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animations */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Global Reveal State */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.3s cubic-bezier(0.5, 0, 0, 1);
    /* Faster (0.3s) */
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

/* Crown and Hero Animations */
.hero-content>* {
    opacity: 0;
    animation: slideUpFade 0.8s ease-out forwards;
}

.hero-title {
    /* animation-delay: 0.2s; Removed to let inner items control timing */
    animation: none !important;
    opacity: 1;
    position: relative;
    /* display: inline-block; REMOVED - breaks flex layout */
}

.hero-subtitle {
    animation-delay: 0.4s;
}

.hero-buttons {
    animation-delay: 0.6s;
}

.crown-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    top: 40%;
    /* Lowered slightly more */
    left: -35px;
    /* Tilted off the R */
    color: #FFD700;
    /* Gold */
    animation: crownDrop 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    animation-delay: 0.8s;
    /* Appear during Royal */
    opacity: 0;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
    z-index: 1;
}

@keyframes crownDrop {
    0% {
        transform: translateY(-80px) rotate(0deg) scale(0.5);
        opacity: 0;
    }

    70% {
        transform: translateY(0) rotate(-25deg) scale(1.1);
        opacity: 1;
    }

    100% {
        transform: translateY(-10px) rotate(-20deg) scale(1);
        opacity: 1;
    }

    /* Final resting tilt */
}

@keyframes bannerFadeUp {
    from {
        opacity: 0;
        transform: rotate(-1deg) translateY(40px);
    }

    to {
        opacity: 1;
        transform: rotate(-1deg) translateY(0);
    }
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroImageEntry {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* .hero-image styles replaced by .hero-visual-group */

/* Minimalist Reveal for Tea Cards */
.tea-card.reveal {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.215, 0.610, 0.355, 1.000);
    /* Smooth easing */
}

/* Start States (Offset by +50px) */
.tea-card.reveal:nth-child(1) {
    transform: translateY(80px) rotate(-2deg);
}

.tea-card.reveal:nth-child(2) {
    transform: translateY(10px);
}

.tea-card.reveal:nth-child(3) {
    transform: translateY(80px) rotate(2deg);
}

/* Active States (Restored to Layout) */
.tea-card.reveal.active {
    opacity: 1;
}

.tea-card.reveal.active:nth-child(1) {
    transform: translateY(30px) rotate(-2deg);
}

.tea-card.reveal.active:nth-child(2) {
    transform: translateY(-40px);
    transition-delay: 0.15s;
}

.tea-card.reveal.active:nth-child(3) {
    transform: translateY(30px) rotate(2deg);
    transition-delay: 0.3s;
}

/* Section Divider */
.section-divider {
    height: 4px;
    width: 240px;
    background-color: var(--color-primary);
    margin: 4rem auto;
    /* Clean uniform spacing */
    border: none;
    border-radius: 2px;
    opacity: 0.8;
    /* Slight fade */
}

/* Top Divider: Pull up strong */
#about .container>.section-divider:first-child {
    margin-top: -10rem;
    margin-bottom: 4rem;
}

/* Bottom Divider: Push down & Tight to Favorites */
#about .container>.section-divider:last-child {
    margin-top: 6rem;
    margin-bottom: 5rem;
}

@media (max-width: 768px) {
    .scroll-top {
        bottom: 2rem;
        /* Higher up to avoid mobile browser bars */
        right: 1rem;
        width: 45px;
        height: 45px;
        z-index: 2147483647;
    }

    .scroll-top.active {
        display: flex !important;
    }
}

/* Allow Location Section to be wider for Map */
.location-section .container {
    max-width: 1700px;
    /* Allow huge width for the map */
    width: 95%;
}

/* Location Section Redesign */
.location-section {
    padding: 6rem 5%;
    text-align: left;
    background-color: var(--color-bg) !important;
    /* Match Global Theme */
}

.location-card {
    background: rgba(255, 255, 255, 0.6) !important;
    /* Glassy effect */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 24px;
    padding: 2.5rem;
    /* Spacious Desktop Padding */
    width: 100%;
    /* Force full width */
    max-width: 1600px;
    /* HUGE CARD - 3x Map Width Support */
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: row;
    gap: 3rem;
    text-align: left;
    align-items: stretch;
    box-sizing: border-box;
    /* Ensure padding doesn't overflow width */
}

.map-wrapper {
    flex: 1.2;
    /* Balanced Size */
    min-height: 450px;
    position: relative;
    background: #E2E8F0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.map-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: grayscale(0.2);
}

.location-content {
    flex: 1;
    padding: 3rem;
    /* Restored Spacious Padding */
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

.address-row {
    display: flex;
    align-items: flex-start;
    /* Align to top of multi-line text */
    justify-content: space-between;
    /* Spread Text and Button */
    gap: 0.5rem;
    /* Reduced Gap (was 1.5rem) */
    flex-wrap: nowrap;
    /* Prevent wrapping if possible on desktop */
}

.address-row p {
    margin: 0;
    line-height: 1.3;
    text-align: left;
    /* Force Left Align */
    flex: 1;
    /* Allow text to fill space to push button right */
}

/* Fix Oversized Icon */
.info-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    object-fit: contain;
    margin-right: 0 !important;
    /* Remove extra margin here, let gap handle it */
}

.btn-directions {
    background: rgba(255, 255, 255, 0.8);
    color: #1D1D1F;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    /* Pill */
    font-size: 0.85rem;
    font-family: var(--font-body);
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
    border: 1px solid rgba(0, 0, 0, 0.05);
    align-self: flex-start;
    /* Prevent stretching */
    margin-top: -5px;
    /* Nudge up */
    margin-left: auto;
    /* Push to far right */
}

.btn-directions:hover {
    background: #fff;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.info-label {
    display: block;
    font-size: 0.95rem;
    /* Slight bump */
    color: #555;
    /* Darker grey */
    font-weight: 700;
    /* BOLD as requested */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.4rem;
}

.info-block p {
    font-size: 1.1rem;
    color: #1D1D1F;
    line-height: 1.4;
    font-weight: 500;
    margin: 0;
}

.info-block a {
    color: #1D1D1F;
    text-decoration: none;
}

/* NUCLEAR FIX: Force all icons to be small */
.info-block svg,
.info-block img,
.info-block .icon-box {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    /* Prevent collapse */
    max-width: 24px !important;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    color: #1D1D1F;
    /* SVG Fill */
}

/* Hours Accordion */
.hours-container {
    border-top: 1px solid #E0E0E0;
    padding-top: 1.5rem;
}

.hours-trigger {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
}

.current-status {
    font-weight: 700;
    color: #1D1D1F;
    font-size: 1.1rem;
    margin: 0;
}

.btn-see-hours {
    background: none;
    border: none;
    color: #1D1D1F;
    font-size: 1.1rem;
    font-family: var(--font-body);
    font-weight: 700;
    /* BOLD */
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s;
    pointer-events: none;
}

.btn-see-hours:hover {
    color: #000;
}

.hours-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, margin-top 0.4s ease;
}

.hours-dropdown.expanded {
    max-height: 500px;
    /* Arbitrary large height */
    margin-top: 1.5rem;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #EEE;
    font-size: 0.95rem;
    color: #444;
}

.hours-list li:last-child {
    border-bottom: none;
}

.btn-order-online {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--color-primary);
    color: #fff;
    font-weight: 700;
    font-family: var(--font-body);
    font-size: 1.1rem;
    padding: 0.7rem;
    /* REMOVED TALL PADDING */
    border-radius: 50px;
    text-decoration: none;
    margin-top: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(255, 95, 95, 0.3);
}

.btn-order-online:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 95, 95, 0.4);
}

/* Full Menu Button */
.menu-footer {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    width: 100%;
}

.btn-full-menu {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: var(--color-primary);
    font-family: var(--font-body);
    box-shadow: 0 4px 15px rgba(255, 95, 95, 0.3);
}

.btn-full-menu:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 95, 95, 0.4);
}

/* Fix Mobile Location Section */
@media (max-width: 768px) {
    .location-section {
        padding: 4rem 1rem;
        /* Reduced horizontal padding */
    }

    .location-card {
        flex-direction: column;
        padding: 2rem 1rem;
        /* Tighter padding for more width */
        width: 100%;
        /* Ensure it fits */
        box-sizing: border-box;
    }

    .map-wrapper {
        display: none;
    }

    .location-content {
        padding: 0;
    }

    /* Undo Stacked Address Row - Return to Row */
    .address-row {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        /* Center Vertically */
        gap: 1rem;
    }

    /* ONLY FOR MOBILE: Remove location icon */
    .address-row .info-icon {
        display: none;
    }

    .address-row p {
        flex: 1;
        /* Allow text to take space */
        text-align: left;
        max-width: none;
        width: auto;
        /* Side-by-side with button */
    }

    .mobile-break {
        display: inline;
    }


    /* "Get Directions" - Align naturally */
    .btn-directions {
        margin-top: 0;
        width: auto;
        /* Not full width */
        display: inline-flex;
    }
}

/* FORCED Overrides for Text Animation */
.about-text {
    /* Layout Properties */
    grid-area: text;
    text-align: center;
    font-size: 1.3rem;
    max-width: 800px;
    margin: 2rem auto 0;
    /* No animation on container */
}

.about-text p {
    margin-bottom: 2rem;
    line-height: 1.6;

    /* Animation Logic per paragraph */
    opacity: 0;
    transform: translateX(-100px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* 2nd Paragraph: Slide from Right */
.about-text p:nth-child(2) {
    transform: translateX(100px);
}

.about-text p.active {
    opacity: 1;
    transform: translateX(0);
}

@media (min-width: 992px) {
    .about-text {
        text-align: left;
        margin-right: 0;
    }

    /* Animate UP from bottom on desktop */
    .about-text p,
    .about-text p:nth-child(2) {
        transform: translateY(100px);
    }

    .about-text p.active {
        transform: translateY(0);
    }
}

/* =========================================
   FULL MENU PAGE STYLES
   ========================================= */

body.menu-page {
    background-color: var(--color-bg);
    /* Use Peach */
    min-height: 100vh;
}

.menu-navbar {
    justify-content: flex-start;
}

.menu-navbar .back-link {
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    font-size: 1.1rem;
    transition: transform 0.2s;
}

.menu-navbar .back-link:hover {
    transform: translateX(-5px);
}

.menu-hero {
    position: relative;
    padding: 8rem 1rem 4rem;
    text-align: center;
    background: transparent;
    /* No white bg */
    overflow: hidden;
}

/* Add Gradient Overlay */
.menu-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient from .hero */
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.4), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.menu-title {
    position: relative;
    z-index: 2;
    font-family: var(--font-display);
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 2.5rem;
    color: #000;
    text-transform: none !important;
}

/* Center Visual Wrapper */
.hero-visual-center {
    margin: 1rem auto 2rem;
    position: relative;
    z-index: 1;
    width: 450px;
    height: 450px;
    width: 650px;
    height: 650px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 5;
}

.hero-center-img {
    width: 85%;
    height: 85%;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    background-color: #f0f0f0;
    background-size: 80%;
    background-position: center 50%;
    background-repeat: no-repeat;
    opacity: 0;
    animation: fadeIn 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Curved Text SVG */
.circular-text-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 10;
    overflow: visible;
    pointer-events: none;
    animation: spinUp 1s cubic-bezier(0.45, 0, 0.55, 1) forwards;
}

.circular-text-content {
    font-family: 'Zilla Slab', serif;
    font-weight: 700;
    font-size: 3.5rem;
    letter-spacing: 1px;
    word-spacing: 20px;
    text-transform: uppercase;
    fill: var(--color-primary);
}

@keyframes spinUp {
    from {
        transform: translate(-50%, -50%) rotate(90deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(-90deg);
        /* Lands at top */
    }
}

/* Service Cards Container */
.hero-service-cards {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    position: relative;
    z-index: 5;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

/* Individual Service Cards */
/* Individual Service Cards */
.service-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    overflow: hidden;
    width: 115px !important;
    flex-shrink: 0;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    text-decoration: none;
    opacity: 0;
    animation: slideUpFade 0.6s ease-out forwards;
}

.service-card:nth-child(1) {
    animation-delay: 0.2s;
}

.service-card:nth-child(2) {
    animation-delay: 0.3s;
}

.service-card:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 30px rgba(199, 43, 62, 0.2);
}

.service-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transform: scale(2.5);
}

/* Pickup Card Specifics */
.pickup-card {
    gap: 3px;
    width: 115px !important;
    /* Ensure override */
}

.service-card .pickup-icon {
    width: 22px;
    height: 22px;
    stroke-width: 2.5px;
    transform: translateY(-2px);
}

.pickup-text {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    /* Nice and big */
    color: #000;
    letter-spacing: -1px;
    line-height: 1;
    padding-top: 3px;
}

/* Subtext */
.menu-hero-subtext {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #000;
    margin-top: 1rem;
    max-width: 1050px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: slideInLeft 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 0.5s;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hide Logo on Desktop */
@media (min-width: 992px) {
    .menu-navbar .logo {
        display: none !important;
    }
}

/* =========================================
   RESTORED MENU LAYOUT STYLES
   ========================================= */

.full-menu-container {
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-category {
    margin-bottom: 6rem;
}

.category-title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--color-primary);
    display: inline-block;
}

.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
}

.menu-item-detailed {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.menu-item-detailed:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.item-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #f0f0f0;
}

.item-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Simple Menu List Styling */
.menu-list-item {
    display: flex;
    align-items: flex-end;
    padding: 0.5rem 0;
    margin-bottom: 0.5rem;
}

.menu-list-item::after {
    content: "";
    flex-grow: 1;
    order: 2;
    margin: 0 15px;
    border-bottom: 3px dotted rgba(0, 0, 0, 0.2);
    position: relative;
    bottom: 7px;
}

.item-name {
    order: 1;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--color-text);
    line-height: 1.2;
}

.item-price-simple {
    order: 3;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
}

.item-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

/* Mobile Adjustments for Menu Page */
@media (max-width: 768px) {
    .hero-service-cards {
        flex-wrap: nowrap;
        gap: 0.8rem;
    }

    .service-card {
        width: 100px;
        height: 60px;
        border-radius: 18px;
    }

    .service-card img {
        width: 35px;
        height: 35px;
    }

    /* Shrink Visual for Mobile */
    .hero-visual-center {
        width: 75vw;
        height: 75vw;
        margin-left: auto;
        margin-right: auto;
        max-width: 420px;
        max-height: 420px;
        margin-bottom: 2rem;
    }



    .hero-center-img {
        width: 85%;
        height: 85%;
        object-position: 50% 50%;
    }

    .menu-title {
        font-size: 3.5rem;
    }

    .menu-items-grid {
        grid-template-columns: 1fr;
    }

    .item-img {
        height: 200px;
    }
}

/* =========================================
   MENU ACCORDION STYLES
   ========================================= */
.menu-category {
    border-bottom: none;
    margin-bottom: 0px !important;
}

.accordion-item {
    width: 100%;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 0;
    cursor: pointer;
    width: 100%;
    background: transparent;
    border: none;
    text-align: left;
    outline: none;
}

.accordion-header .category-title {
    margin: 0;
    font-size: 2.5rem;
    font-family: 'Zilla Slab', serif;
    transition: color 0.3s;
    line-height: 1;
    text-transform: capitalize;
}

.accordion-header:hover .category-title {
    color: var(--color-primary);
}

.accordion-icon {
    width: 32px;
    height: 32px;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    color: #333;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
    color: var(--color-primary);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    padding-bottom: 0;
}

.accordion-item.active .accordion-content {
    padding-bottom: 3rem;
    overflow: visible;
}

/* Simple Menu List Styling */
.menu-list-item {
    display: flex;
    align-items: flex-end;
    padding: 0.5rem 0;
    margin-bottom: 0.5rem;
}

.menu-list-item::after {
    content: "";
    flex-grow: 1;
    order: 2;
    margin: 0 15px;
    border-bottom: 3px dotted rgba(0, 0, 0, 0.2);
    position: relative;
    bottom: 7px;
}

.item-name {
    order: 1;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--color-text);
    line-height: 1.2;
}

.item-price-simple {
    order: 3;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
}

/* Featured Items Grid */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Force 2 columns for neatness on mobile */
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
    .featured-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 2rem;
    }
}

.featured-item {
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s;
}

.featured-item:hover {
    transform: translateY(-5px);
}

.featured-item.no-card {
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.featured-item.no-card:hover {
    transform: none;
    box-shadow: none;
}

.featured-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 0.8rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.featured-item.no-card .featured-img {
    box-shadow: none;
    border-radius: 0;
    height: 350px;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.1));
    margin-bottom: -50px;
}

.favorites-grid .featured-item.no-card .featured-img {
    height: 180px;
    margin-bottom: -5px;
}

/* --- OUR FAVORITES - Mobile Customization --- */
/* 1. Brown Sugar Bubble Tea (Row 1, Left) */
.favorites-grid .featured-item:nth-child(1) .featured-img {
    height: 180px;
    transform: scale(3.5) translateY(0);
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.2));
    margin-bottom: 2rem;
    margin-top: 1rem;
}

/* 2. Oreo Hand Roll (Row 1, Center) */
.favorites-grid .featured-item:nth-child(2) .featured-img {
    height: 180px;
    transform: scale(2) translateY(0);
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.1));
    margin-bottom: 2rem;
    margin-top: 1rem;
}

/* 3. Royal Fruit Black Tea (Row 1, Right) */
.favorites-grid .featured-item:nth-child(3) .featured-img {
    height: 180px;
    transform: scale(2.6) translateY(0) translateX(3px);
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
    margin-bottom: 2rem;
    margin-top: 1rem;
}

/* 4. Taro Strawberry Tea (Row 2, Left) */
.favorites-grid .featured-item:nth-child(4) .featured-img {
    height: 180px;
    transform: scale(2.3) translateY(0);
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.1));
    margin-bottom: 3rem;
    margin-top: 0;
}

/* 5. Chocolate Ice Cream Milk Tea (Row 2, Center) */
.favorites-grid .featured-item:nth-child(5) .featured-img {
    height: 180px;
    transform: scale(2.3) translateY(0);
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
    margin-bottom: 3.3rem;
    margin-top: -0.3rem;
}

/* 6. Chocolate Bubble Waffle (Row 2, Right) */
.favorites-grid .featured-item:nth-child(6) .featured-img {
    height: 180px;
    transform: scale(2.6) translateY(0);
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3)) contrast(0.9);
    margin-bottom: 6rem;
    margin-top: -3rem;
}

/* --- OUR FAVORITES - Price Margin Control (Mobile) --- */
/* 1. Brown Sugar Bubble Tea */
.favorites-grid .featured-item:nth-child(1) .featured-price {
    margin-bottom: 3rem;
}

/* 2. Oreo Hand Roll */
.favorites-grid .featured-item:nth-child(2) .featured-price {
    margin-bottom: 0;
}

/* 3. Royal Fruit Black Tea */
.favorites-grid .featured-item:nth-child(3) .featured-price {
    margin-bottom: 0;
}

/* 4. Taro Strawberry Tea */
.favorites-grid .featured-item:nth-child(4) .featured-price {
    margin-bottom: 0rem;
}

/* 5. Chocolate Ice Cream Milk Tea */
.favorites-grid .featured-item:nth-child(5) .featured-price {
    margin-bottom: 0;
}

/* 6. Chocolate Bubble Waffle */
.favorites-grid .featured-item:nth-child(6) .featured-price {
    margin-bottom: 0rem;
}

.featured-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    line-height: 1.2;
    color: var(--color-text);
}

.featured-price {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.1rem;
}

/* =========================================
   POKE BUILDER STYLES (Minimalist)
   ========================================= */
.poke-builder {
    padding: 1rem 0 2rem 0;
}

.poke-step {
    margin-bottom: 2.5rem;
    /* Removed card styling to blend with page */
}

.poke-step:last-child {
    margin-bottom: 0;
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-heading);
    display: flex;
    align-items: baseline;
    margin-bottom: 1rem;
    text-transform: capitalize;
}

.step-number {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 0.5rem;
    background: none;
    width: auto;
    height: auto;
    box-shadow: none;
    border-radius: 0;
}

.step-limit {
    font-size: 1rem;
    color: #888;
    font-weight: 400;
    margin-left: 0.5rem;
    font-family: var(--font-body);
}

.option-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
}

@media (min-width: 600px) {
    .option-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.poke-option {
    background: transparent;
    padding: 0.8rem 0.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    color: var(--color-text);
    font-weight: 600;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.1;
    box-shadow: none;
    font-family: var(--font-heading);
    cursor: default;
}

.poke-option small {
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
    color: #999;
    margin-top: 0.3rem;
    font-family: var(--font-body);
}

.poke-option.highlight {
    background: transparent;
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* =========================================
   ITEM DESCRIPTION STYLES
   ========================================= */
.menu-item-wrapper {
    margin-bottom: 0.8rem;
}

.menu-item-wrapper .menu-list-item {
    margin-bottom: 0;
}

.item-description {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
    font-weight: 400;
    line-height: 1.3;
    padding-right: 4rem;
    margin-top: -0.2rem;
    display: block;

}

/* =========================================
   MOBILE MENU CARD LINK
   ========================================= */
.mobile-menu-link-card {
    display: none;
}

@media (max-width: 900px) {
    .mobile-menu-link-card {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background-color: var(--color-primary);
        color: white;
        padding: 0.3rem 0.9rem;
        border-radius: 50px;
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-left: auto;
        /* Push to right next to hamburger */
        margin-right: 50px;
        box-shadow: 0 4px 6px rgba(199, 43, 62, 0.2);
        transition: transform 0.2s ease;
    }

    .mobile-menu-link-card:hover {
        transform: translateY(-2px);
        color: white;
    }
}

/* =========================================
   ABOUT SECTION GRADIENT
   ========================================= */
.about-section {
    background-color: var(--color-bg);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 40%, rgba(255, 182, 193, 0.5), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Ensure content sits above the glow */
.about-section .container {
    position: relative;
    z-index: 1;
}

/* =========================================
   SOCIAL MEDIA SECTION (ROLLING WALL)
   ========================================= */
.social-section {
    padding: 4rem 0 6rem;
    overflow: hidden;
    position: relative;
    /* Gradient behind photos: Smooth Peach Radial */
    /* Gradient behind photos: Smooth Pink Radial */
    background: radial-gradient(circle at 50% 70%, rgba(255, 182, 193, 0.6) 0%, rgba(255, 255, 255, 0) 70%);
    /* Fade out bottom to blend gradient */
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 85%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 0%, black 85%, transparent 100%);
}

.social-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.social-platforms {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.social-platform-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    min-width: 140px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.social-platform-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.social-platform-card.instagram {
    /* Instagram Gradient */
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-platform-card.tiktok {
    background: #000000;
}

.social-platform-card.facebook {
    background: #1877F2;
}

@media (max-width: 768px) {
    .social-platforms {
        flex-direction: row;
        /* Keep row on mobile but wrap if needed */
        margin-top: 0.5rem;
    }

    .social-platform-card {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
        min-width: auto;
    }
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    letter-spacing: 1px;
    font-weight: 500;
    margin-top: -1rem;
    text-transform: uppercase;
}

.social-marquee {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    display: flex;
    overflow: hidden;
    position: relative;
    z-index: 2;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.social-track {
    display: flex;
    gap: 2rem;
    padding: 1rem 0;
    align-items: center;
    animation: scroll 40s linear infinite;
    width: max-content;
}

/* Hover to Pause */
.social-marquee:hover .social-track {
    animation-play-state: paused;
}

/* --- COLLAGE LAYOUT --- */
.collage-group {
    display: flex;
    gap: 1rem;
    height: 400px;
}

/* Reverse Order Modifier */
.collage-group.reverse {
    flex-direction: row-reverse;
}

/* Single Wide Feature Modifier */
.collage-group.feature-wide {
    width: 500px;
    /* Wider group */
}

.collage-group.feature-wide .social-card {
    width: 100%;
    height: 100%;
}

/* Left: Tall Card */
.collage-group .social-card.tall {
    width: 300px;
    height: 100%;
    flex-shrink: 0;
}

/* Right: Stack */
.social-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 300px;
    height: 100%;
    flex-shrink: 0;
}

/* Small Cards in Stack: Flex grow to fill space */
.social-card.small {
    width: 100%;
    flex: 1;
    /* Default to equal split */
}

/* Uneven Stacks */
.social-card.grow-2 {
    flex: 2 !important;
    /* Takes 2/3 space */
}

.social-card.grow-1 {
    flex: 1 !important;
    /* Takes 1/3 space */
}

/* Base Card Styles */
.social-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.social-card:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.social-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Hero CTA */
.hero-cta-wrapper {
    position: relative;
    z-index: 50;
    text-align: center;
    margin-top: -50px;
    /* Pull up to meet lifted bowls */
    margin-bottom: 10px;
    /* Space before banner */
    opacity: 0;
    animation: ctaFadeIn 0.8s ease-out forwards 1.2s;
}

@keyframes ctaFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hide ORDER NOW button below headline on mobile - shown on desktop via media query */
.hero-text-btn {
    display: none;
}

.hero-btn {
    font-family: var(--font-heading) !important;
    text-transform: uppercase;
    font-size: 1.8rem;
    padding: 1rem 3rem;
    position: relative;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(199, 43, 62, 0.5);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .collage-group {
        height: 280px;
        gap: 0.5rem;
    }

    .collage-group .social-card.tall {
        width: 180px;
    }

    .social-stack {
        width: 180px;
        gap: 0.5rem;
    }

    .social-card.small {
        height: calc(50% - 0.25rem);
    }
}

/* Our Favorites Header Animation */
.favorites-header-animate {
    position: relative;
    padding: 0 0.2em;
    display: inline-block;
    color: transparent;
    text-transform: uppercase;
    font-size: 1.0em;
    transform: rotate(-4deg);
}

.section-title.active .favorites-header-animate {
    animation: textFadeIn 0.6s cubic-bezier(0.55, 0.055, 0.675, 0.19) forwards;
}

.favorites-header-animate::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--color-primary);
    z-index: -1;
    clip-path: inset(0 50% 0 50%);
}

.section-title.active .favorites-header-animate::before {
    animation: revealCenter 0.6s ease-in-out forwards;
}

@keyframes revealCenter {
    to {
        clip-path: inset(0 0 0 0);
    }
}

@keyframes textFadeIn {
    to {
        color: white;
    }
}

/* Adjust spacing for Our Favorites section */
.menu-section {
    padding-top: 4rem;
    /* Reduced significantly per request "move up more" */
    /* top margin between divider and favorites */
}

.menu-section .section-title {
    margin-bottom: 5rem;
    /* More space below */
    margin-top: 0;
}

/* Circular Text Scroll Wrapper */
.circular-text-scroll-wrapper {
    position: absolute;
    inset: -10%;
    width: 120%;
    height: 120%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 0;
    will-change: transform;
    /* Hardware acceleration */
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
    transform-style: preserve-3d;
}

.circular-text-scroll-wrapper svg {
    width: 100%;
    height: 100%;
}

/* Social Highlights Section */
.social-highlights {
    padding: 6rem 0;
    position: relative;
    background: radial-gradient(circle at center 55%, rgba(199, 43, 62, 0.3) 0%, var(--color-bg) 60%);
    /* Stronger central glow */
    /* Subtle central glow */
    /* Peach to Pink Gradient */
}

.social-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 1000px;
    /* Tighter width */
    height: 550px;
    /* Fixed height for bento look */
    margin-left: auto;
    margin-right: auto;
}

.social-card {
    position: relative;
    display: block;
    aspect-ratio: auto;
    /* Allow stretch */
    height: 100%;
    /* Square post */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s;
}

.social-card:nth-child(1) {
    grid-row: span 2;
}

.social-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.social-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.social-card:hover .social-img {
    transform: scale(1.05);
}

.social-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(199, 43, 62, 0.9) 0%, rgba(199, 43, 62, 0.4) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.social-metric {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    /* Tighter gap like TikTok */
    color: #fff;
    font-weight: 600;
    /* Semi-bold */
    font-size: 1.1rem;
    /* Smaller size */
    font-family: 'Segoe UI', system-ui, sans-serif;
    /* Clean sans */
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.8);
    /* Stronger drop shadow */
}

.social-metric svg {
    width: 20px;
    height: 20px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.7));
}

/* New Positioning Class */
.social-bottom-left {
    position: absolute;
    bottom: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    z-index: 10;
}

.social-media-type {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 5;
}

.promo-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--color-primary);
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(199, 43, 62, 0.4);
}

.social-cta-container {
    text-align: center;
    margin-top: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.social-cta-container p {
    font-size: 1.2rem;
    color: var(--color-text);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.social-buttons-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-social {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    background: #fff;
    color: var(--color-text);
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: none;
    /* Remove border causing gradient bleed */
    overflow: hidden;
    /* Clip any overflow */
}

.btn-social:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background: var(--color-primary);
    color: #fff;
}

.btn-social svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

/* Branded Colors */
.btn-social:nth-child(1) {
    /* TikTok */
    background: #000;
    color: #fff;
}

.btn-social:nth-child(2) {
    /* Instagram */
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
}

.btn-social:nth-child(3) {
    /* Facebook */
    background: #1877F2;
    color: #fff;
}

.btn-social:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    opacity: 0.9;
}

@media (max-width: 768px) {
    .social-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1.5fr 1fr;
        height: 500px;
        /* Force height to fit screen */
        max-width: 100%;
        margin-top: 2rem;
    }

    .social-card:nth-child(1) {
        grid-column: span 2;
        /* Full width top */
        grid-row: span 1;
        /* Only 1 row high */
    }
}

/* --- Our Story Collage --- */
.about-collage {
    display: flex;
    justify-content: center;
    /* Center items */
    gap: 6rem;
    margin-top: 2rem;
    margin-bottom: 2.5rem;
}

.collage-item {
    flex: 1;
    min-height: 325px;
    min-width: 250px;
    max-width: 45%;
    /* Limit width to create gap */
    margin: 0rem -3.5rem;
    /* Add horizontal spacing */
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid #fff;
    /* White border */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.collage-item:hover {
    transform: translateY(-5px);
}

@media (max-width: 868px) {
    .about-collage {
        flex-direction: column;
    }

    .collage-item {
        height: 250px;
    }
}

/* =========================================
   MOBILE / GLOBAL MENU FEATURE TUNING
   (These apply to mobile, and are overridden by desktop rules below)
   ========================================= */

/* Fruit Smoothie - Mobile Customization */
/* 1. Mango Smoothie (Left) */
#fruit-smoothie .featured-item:nth-child(1) .featured-img {
    height: 350px;
    /* Current Global Default */
    transform: scale(1.1) translateY(0);
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3)) brightness(1.2);
    margin-bottom: -1rem;
    /* Inherited Default */
    margin-top: -2rem;
}

/* 2. Strawberry Smoothie (Right) */
#fruit-smoothie .featured-item:nth-child(2) .featured-img {
    height: 350px;
    /* Current Global Default */
    transform: scale(1.06) translateY(0);
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3)) brightness(1.2);
    margin-bottom: 0rem;
    /* Inherited Default */
    margin-top: -3rem;
}

/* --- MILK TEA - Mobile --- */
/* 1. Brown Sugar Bubble Tea (Left) */
#milk-tea .featured-grid .featured-item:nth-child(1) .featured-img {
    height: 350px;
    transform: scale(2.5) translateY(0);
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
    margin-bottom: 2rem;
    margin-top: 0rem;
}

/* 2. Taro Strawberry Tea (Right) */
#milk-tea .featured-grid .featured-item:nth-child(2) .featured-img {
    height: 350px;
    transform: scale(1.8) translateY(0);
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
    margin-bottom: -50px;
    margin-top: -1rem;
}

/* --- BUBBLE WAFFLES - Mobile --- */
/* 1. Chocolate Bubble Waffle (Left) */
#bubble-waffles .featured-item:nth-child(1) .featured-img {
    height: 350px;
    transform: scale(1.3) translateY(0);
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3)) contrast(0.8);
    margin-bottom: 4rem;
    margin-top: -2rem;
}

/* 2. Strawberry Bubble Waffle (Right) */
#bubble-waffles .featured-item:nth-child(2) .featured-img {
    height: 350px;
    transform: scale(1.3) translateY(0) translateX(-5px);
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
    margin-bottom: 2rem;
    margin-top: -0rem;
}

/* --- FRUIT TEA - Mobile --- */
/* 1. Royal Fruit Black Tea (Left) */
#fruit-tea .featured-item:nth-child(1) .featured-img {
    height: 350px;
    transform: scale(1.2) translateY(0) translateX(7px);
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
    margin-bottom: -1rem;
    margin-top: -0rem;
}

/* 2. Honey Lemon Green Tea (Right) */
#fruit-tea .featured-item:nth-child(2) .featured-img {
    height: 350px;
    transform: scale(1.1) translateY(0) translateX(10px);
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.1));
    margin-bottom: -1rem;
    margin-top: -0rem;
}

/* --- MILK FOAM - Mobile --- */
/* 1. Taro  Milk Foam Cap (Left) */
#milk-foam .featured-item:nth-child(1) .featured-img {
    height: 350px;
    transform: scale(1.2) translateY(0);
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
    margin-bottom: -1rem;
    margin-top: -1rem;
}

/* 2. Matcha Milk Foam Cap (Right) */
#milk-foam .featured-item:nth-child(2) .featured-img {
    height: 350px;
    transform: scale(1.2) translateY(0) translateX(10px);
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
    margin-bottom: -2rem;
    margin-top: -0rem;
}

/* --- YAKULT - Mobile --- */
/* 1. Strawberry Yakult (Left) */
#yakult .featured-item:nth-child(1) .featured-img {
    height: 350px;
    transform: scale(1.2) translateY(0) translateX(10px);
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
    margin-bottom: -0.9rem;
    margin-top: -1rem;
}

/* 2. Passion Fruit & Lime Yakult (Right) */
#yakult .featured-item:nth-child(2) .featured-img {
    height: 350px;
    transform: scale(1.1) translateY(0);
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
    margin-bottom: 0rem;
    margin-top: -2rem;
}

/* --- ROYAL LEMON TEA - Mobile --- */
/* 1. Dragon Fruit Mango Lemon Tea (Left) */
#royal-lemon-tea .featured-item:nth-child(1) .featured-img {
    height: 350px;
    transform: scale(1) translateY(0);
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.1));
    margin-bottom: -50px;
    margin-top: 0;
}

/* 2. Strawberry Lemon Tea (Right) */
#royal-lemon-tea .featured-item:nth-child(2) .featured-img {
    height: 350px;
    transform: scale(1) translateY(0);
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.1));
    margin-bottom: -50px;
    margin-top: 0;
}

/* --- ICE CREAM MILK TEA - Mobile --- */
/* 1. Chocolate (Left) */
#ice-cream-milk-tea .featured-item:nth-child(1) .featured-img {
    height: 350px;
    transform: scale(1.1) translateY(0);
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
    margin-bottom: 0rem;
    margin-top: -3rem;
}

/* 2. Strawberry (Right) */
#ice-cream-milk-tea .featured-item:nth-child(2) .featured-img {
    height: 350px;
    transform: scale(1.15) translateY(0);
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
    margin-bottom: 0rem;
    margin-top: -3rem;
}

/* --- MACAROONS - Mobile --- */
/* 1. Mango Macaron (Left) */
#macaroons .featured-item:nth-child(1) .featured-img {
    height: 180px;
    transform: scale(1) translateY(0);
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
    margin-bottom: -1rem;
    margin-top: 0rem;
}

/* 2. Cookies & Cream Macaron (Right) */
#macaroons .featured-item:nth-child(2) .featured-img {
    height: 180px;
    transform: scale(1) translateY(0);
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.5));
    margin-bottom: -1rem;
    margin-top: 0;
}

/* --- MENU FEATURED PRICE MARGIN CONTROL (Mobile) --- */
/* Mango Macaron */
#macaroons .featured-item:nth-child(1) .featured-price {
    margin-top: 1.5rem;
}

/* Strawberry Yakult */
#yakult .featured-item:nth-child(1) .featured-price {
    margin-top: 1.4rem;
}

/* Royal Fruit Black Tea */
#fruit-tea .featured-item:nth-child(1) .featured-price {
    margin-top: 1.4rem;
}

/* Taro Strawberry Tea */
#milk-tea .featured-item:nth-child(2) .featured-price {
    margin-top: 1.4rem;
}

/* --- ROLLED ICE CREAM - Mobile --- */
/* 1. Oreo (Left) */
#rolled-ice-cream .featured-item:nth-child(1) .featured-img {
    height: 350px;
    transform: scale(1.5) translateY(0);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    margin-bottom: -1.5rem;
    margin-top: 0;
}

/* 2. Strawberry (Right) */
#rolled-ice-cream .featured-item:nth-child(2) .featured-img {
    height: 350px;
    transform: scale(1.4) translateY(0);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    margin-bottom: -1.5rem;
    margin-top: 0;
}

@media (min-width: 992px) {
    .menu-section .section-title {
        font-size: 3.5rem;
        margin-bottom: 8rem;
    }

    /* =========================================
       INDIVIDUAL FAVORITES IMAGE TUNING (DESKTOP)
       ========================================= */

    /* 1. Brown Sugar Bubble Tea (Row 1, Left) */
    .favorites-grid .featured-item:nth-child(1) .featured-img {
        height: 350px;
        transform: scale(1.3) translateY(0) !important;
        transform-origin: center center;
        filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.1));
        object-fit: contain;
        margin-bottom: 1rem !important;
        margin-top: 0;
    }

    /* 2. Oreo Hand Roll (Row 1, Center) */
    .favorites-grid .featured-item:nth-child(2) .featured-img {
        height: 350px;
        transform: scale(1.5) translateY(0) !important;
        transform-origin: center center;
        filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.1));
        object-fit: contain;
        margin-bottom: 3rem !important;
        margin-top: -2rem;
    }

    /* 3. Royal Fruit Black Tea (Row 1, Right) */
    .favorites-grid .featured-item:nth-child(3) .featured-img {
        height: 350px;
        transform: scale(1.5) translateY(0) translateX(5px) !important;
        transform-origin: center center;
        filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.2));
        object-fit: contain;
        margin-bottom: 1rem !important;
        margin-top: 0;
    }

    /* 4. Taro Strawberry Tea (Row 2, Left) */
    .favorites-grid .featured-item:nth-child(4) .featured-img {
        height: 350px;
        transform: scale(1.4) translateY(0) !important;
        transform-origin: center center;
        filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.1));
        object-fit: contain;
        margin-bottom: 1rem !important;
        margin-top: 0;
    }

    /* 5. Chocolate Ice Cream Milk Tea (Row 2, Center) */
    .favorites-grid .featured-item:nth-child(5) .featured-img {
        height: 350px;
        transform: scale(1.4) translateY(0) !important;
        transform-origin: center center;
        filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.1));
        object-fit: contain;
        margin-bottom: 3rem !important;
        margin-top: -2rem;
    }

    /* 6. Chocolate Bubble Waffle (Row 2, Right) */
    .favorites-grid .featured-item:nth-child(6) .featured-img {
        height: 350px;
        transform: scale(1.6) translateY(0) !important;
        transform-origin: center center;
        filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.1)) contrast(0.9);
        object-fit: contain;
        margin-bottom: 6rem !important;
        margin-top: -5rem;
    }

    /* --- OUR FAVORITES - Price Margin Control (Desktop) --- */
    /* 1. Brown Sugar Bubble Tea */
    .favorites-grid .featured-item:nth-child(1) .featured-price {
        margin-bottom: 0;
    }

    /* 2. Oreo Hand Roll */
    .favorites-grid .featured-item:nth-child(2) .featured-price {
        margin-bottom: 0;
    }

    /* 3. Royal Fruit Black Tea */
    .favorites-grid .featured-item:nth-child(3) .featured-price {
        margin-bottom: 0;
    }

    /* 4. Taro Strawberry Tea */
    .favorites-grid .featured-item:nth-child(4) .featured-price {
        margin-bottom: 0;
    }

    /* 5. Chocolate Ice Cream Milk Tea */
    .favorites-grid .featured-item:nth-child(5) .featured-price {
        margin-bottom: 0;
    }

    /* 6. Chocolate Bubble Waffle */
    .favorites-grid .featured-item:nth-child(6) .featured-price {
        margin-bottom: 0;
    }

    /* Increase font sizes for Favorites items on Desktop */
    .featured-title,
    .fav-info h4 {
        font-size: 1.1rem;
    }

    .featured-price,
    .fav-info .price {
        font-size: 1.1rem;
    }

    /* Stay in the Loop Header Size */
    .social-highlights .section-title {
        font-size: 4.5rem;
    }

    /* Section Divider Length on Desktop */
    .section-divider {
        width: 500px !important;
    }

    /* Desktop Menu Hero Resizing */
    .menu-hero .hero-visual-center {
        width: 400px;
        height: 400px;
        margin-bottom: 3rem;
    }

    /* Force "Home" link visibility on Menu Page Desktop */
    .menu-navbar .nav-left {
        display: flex !important;
        align-items: center;
    }

    .menu-navbar {
        justify-content: center !important;
    }

    /* Fix Service Card Images on Desktop */
    .service-card img {
        transform: scale(0.9);
    }

    /* Uber Eats Specific Adjustment */
    .service-card:nth-child(2) img {
        transform: scale(0.8);
    }

    /* Menu Page "Order Now" Button (Desktop) */
    .menu-navbar .nav-right {
        position: absolute;
        right: 2rem;
        top: 50%;
        transform: translateY(-50%);
        display: flex !important;
    }

    .menu-navbar .btn-nav-cta {
        display: block !important;
        padding: 0.8rem 2rem;
        font-size: 1rem;
        box-shadow: none;
        white-space: nowrap;
    }

    .menu-navbar .btn-nav-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(199, 43, 62, 0.3);
    }

    /* =========================================
       INDIVIDUAL MILK TEA FEATURED IMAGE TUNING (DESKTOP)
       Uncomment and adjust values below to custom style each image.
       ========================================= */

    /* SHARED: Remove "card" look from all featured items on desktop to match Favorites style */
    .menu-category .featured-item.no-card {
        padding: 0 !important;
    }

    .menu-category .featured-item.no-card .featured-img {
        /* The .no-card class handles shadow removal, but we ensure it here if overridden */
    }

    /* 1. Brown Sugar Bubble Tea (Left) */
    #milk-tea .featured-grid .featured-item:nth-child(1) .featured-img {
        height: 250px;
        /* Default Desktop Base */
        transform: scale(1.4) translateY(0) !important;
        transform-origin: center center;
        filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
        object-fit: contain;
        margin-bottom: 3rem !important;
        margin-top: 2rem !important;
    }

    /* 2. Taro Strawberry Tea (Right) */
    #milk-tea .featured-grid .featured-item:nth-child(2) .featured-img {
        height: 250px;
        transform: scale(1.8) translateY(0) !important;
        transform-origin: center center;
        filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
        object-fit: contain;
        margin-bottom: 4.5rem !important;
        margin-top: .5rem !important;
    }

    /* --- BUBBLE WAFFLES - Desktop --- */
    /* 1. Chocolate Bubble Waffle (Left) */
    #bubble-waffles .featured-item:nth-child(1) .featured-img {
        height: 250px;
        transform: scale(2) translateY(0) !important;
        transform-origin: center center;
        filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.2)) contrast(0.9);
        object-fit: contain;
        margin-bottom: 8rem !important;
        margin-top: -4rem !important;
    }

    /* 2. Strawberry Bubble Waffle (Right) */
    #bubble-waffles .featured-item:nth-child(2) .featured-img {
        height: 250px;
        transform: scale(2) translateY(0) translateX(-5px) !important;
        transform-origin: center center;
        filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.2));
        object-fit: contain;
        margin-bottom: 5rem !important;
        margin-top: -1rem !important;
    }

    /* --- FRUIT TEA - Desktop --- */
    /* 1. Royal Fruit Black Tea (Left) */
    #fruit-tea .featured-item:nth-child(1) .featured-img {
        height: 250px;
        transform: scale(1.8) translateY(0) translateX(5px) !important;
        transform-origin: center center;
        filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
        object-fit: contain;
        margin-bottom: 3rem !important;
        margin-top: 2rem !important;
    }

    /* 2. Honey Lemon Green Tea (Right) */
    #fruit-tea .featured-item:nth-child(2) .featured-img {
        height: 250px;
        transform: scale(1.7) translateY(0) translateX(5px) !important;
        transform-origin: center center;
        filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
        object-fit: contain;
        margin-bottom: 3rem !important;
        margin-top: 2rem !important;
    }

    /* --- FRUIT SMOOTHIE - Desktop --- */
    /* 1. Mango Smoothie (Left) */
    #fruit-smoothie .featured-item:nth-child(1) .featured-img {
        height: 250px;
        transform: scale(1.7) translateY(0) !important;
        transform-origin: center center;
        filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3)) brightness(1.15);
        object-fit: contain;
        margin-bottom: 3rem !important;
        margin-top: 2rem !important;
    }

    /* 2. Strawberry Smoothie (Right) */
    #fruit-smoothie .featured-item:nth-child(2) .featured-img {
        height: 250px;
        transform: scale(1.65) translateY(0) !important;
        transform-origin: center center;
        filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3)) brightness(1.15);
        object-fit: contain;
        margin-bottom: 4rem !important;
        margin-top: 1rem !important;
    }

    /* --- MILK FOAM - Desktop --- */
    /* 1. Taro Milk Foam Cap (Left) */
    #milk-foam .featured-item:nth-child(1) .featured-img {
        height: 250px;
        transform: scale(2) translateY(0) translateX(5px) !important;
        transform-origin: center center;
        filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.2));
        object-fit: contain;
        margin-bottom: 3rem !important;
        margin-top: 3rem !important;
    }

    /* 2. Matcha Milk Foam Cap (Right) */
    #milk-foam .featured-item:nth-child(2) .featured-img {
        height: 250px;
        transform: scale(2) translateY(0) translateX(5px) !important;
        transform-origin: center center;
        filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.2));
        object-fit: contain;
        margin-bottom: 2rem !important;
        margin-top: 4rem !important;
    }

    /* --- YAKULT - Desktop --- */
    /* 1. Strawberry Yakult (Left) */
    #yakult .featured-item:nth-child(1) .featured-img {
        height: 250px;
        transform: scale(1.9) translateY(0) translateX(7px) !important;
        transform-origin: center center;
        filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
        object-fit: contain;
        margin-bottom: 3rem !important;
        margin-top: 3rem !important;
    }

    /* 2. Passion Fruit & Lime Yakult (Right) */
    #yakult .featured-item:nth-child(2) .featured-img {
        height: 250px;
        transform: scale(1.7) translateY(0) !important;
        transform-origin: center center;
        filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
        object-fit: contain;
        margin-bottom: 4rem !important;
        margin-top: 2rem !important;
    }

    /* --- ROYAL LEMON TEA - Desktop --- */
    /* 1. Dragon Fruit Mango Lemon Tea (Left) */
    #royal-lemon-tea .featured-item:nth-child(1) .featured-img {
        height: 250px;
        transform: scale(1.4) translateY(0) !important;
        transform-origin: center center;
        filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.1));
        object-fit: contain;
        margin-bottom: 3rem !important;
        margin-top: 2rem !important;
    }

    /* 2. Strawberry Lemon Tea (Right) */
    #royal-lemon-tea .featured-item:nth-child(2) .featured-img {
        height: 250px;
        transform: scale(1.4) translateY(0) !important;
        transform-origin: center center;
        filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.1));
        object-fit: contain;
        margin-bottom: 3rem !important;
        margin-top: 2rem !important;
    }

    /* --- ICE CREAM MILK TEA - Desktop --- */
    /* 1. Chocolate (Left) */
    #ice-cream-milk-tea .featured-item:nth-child(1) .featured-img {
        height: 250px;
        transform: scale(1.7) translateY(0) translateX(3px) !important;
        transform-origin: center center;
        filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
        object-fit: contain;
        margin-bottom: 5rem !important;
        margin-top: 0rem !important;
    }

    /* 2. Strawberry (Right) */
    #ice-cream-milk-tea .featured-item:nth-child(2) .featured-img {
        height: 250px;
        transform: scale(1.8) translateY(0) !important;
        transform-origin: center center;
        filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
        object-fit: contain;
        margin-bottom: 5rem !important;
        margin-top: 0rem !important;
    }

    /* --- MACAROONS - Desktop --- */
    /* 1. Mango Macaron (Left) */
    #macaroons .featured-item:nth-child(1) .featured-img {
        height: 250px;
        transform: scale(1.4) translateY(0) !important;
        transform-origin: center center;
        filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
        object-fit: contain;
        margin-bottom: 1rem !important;
        margin-top: 2rem !important;
    }

    /* 2. Cookies & Cream Macaron (Right) */
    #macaroons .featured-item:nth-child(2) .featured-img {
        height: 250px;
        transform: scale(1.4) translateY(0) !important;
        transform-origin: center center;
        filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
        object-fit: contain;
        margin-bottom: 1rem !important;
        margin-top: 2rem !important;
    }

    /* --- ROLLED ICE CREAM - Desktop --- */
    /* 1. Oreo (Left) */
    #rolled-ice-cream .featured-item:nth-child(1) .featured-img {
        height: 250px;
        transform: scale(1.8) translateY(0) !important;
        transform-origin: center center;
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
        object-fit: contain;
        margin-bottom: 3rem !important;
        margin-top: 4rem !important;
    }

    /* 2. Strawberry (Right) */
    #rolled-ice-cream .featured-item:nth-child(2) .featured-img {
        height: 250px;
        transform: scale(1.7) translateY(0) !important;
        transform-origin: center center;
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
        object-fit: contain;
        margin-bottom: 3rem !important;
        margin-top: 4.5rem !important;
    }
}

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