:root {
    --kk-black: #181818;
    --kk-charcoal: #222222;
    --kk-gray: #848484;
    --kk-gray-soft: #bdbdbd;
    --kk-surface: #f2f2f2;
    --kk-red-dark: #621214;
    --kk-red: #b92127;
    --kk-red-soft: #d4767a;
    --kk-red-pale: #f3dcdd;
    --kk-green-dark: #0b4c28;
    --kk-green: #209653;
    --kk-green-soft: #50ac78;
    --kk-green-pale: #e2f0ed;
    --kk-gold-dark: #74692d;
    --kk-gold: #c9a536;
    --kk-gold-soft: #ebca61;
    --kk-cream: #f9f5e4;
    --kk-cream-deep: #f2e6c1;
    --paper: #fffefb;
    --border: #e6e3dc;
    --muted: #6d6d68;
    --shadow: 0 24px 70px rgba(24, 24, 24, .11);
}

html { scroll-behavior: smooth; }
body {
    background: var(--paper);
    color: var(--kk-black);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}
button, input, select, textarea { font: inherit; }
a { text-underline-offset: 3px; }

.coffee-navbar {
    min-height: 74px;
    background: rgba(24, 24, 24, .97);
    border-bottom: 1px solid rgba(255, 255, 255, .09);
    backdrop-filter: blur(16px);
}
.brand-mark {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--kk-red);
    box-shadow: 0 0 0 6px rgba(185, 33, 39, .16);
}
.brand-name { font-size: .96rem; letter-spacing: -.025em; line-height: 1.1; }
.brand-mini { color: #bdbdbd; font-size: .55rem; font-weight: 700; letter-spacing: .16em; }
.nav-outlet-button {
    align-items: center;
    gap: .5rem;
    max-width: 250px;
    padding: .62rem .85rem;
    border: 1px solid rgba(255,255,255,.17);
    border-radius: 999px;
    color: #fff;
    font-size: .78rem;
    font-weight: 750;
    text-decoration: none;
}
.nav-outlet-button span { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.nav-outlet-button i { color: var(--kk-gold-soft); }
.nav-outlet-button:hover { color: #fff; border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.07); }
.cart-button {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .65rem .8rem .65rem 1rem;
    border: 0;
    border-radius: 999px;
    color: var(--kk-black);
    background: #fff;
    font-weight: 800;
}
.cart-button:hover { background: var(--kk-cream); color: var(--kk-black); }
.cart-count {
    min-width: 1.65rem;
    height: 1.65rem;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    color: #fff;
    background: var(--kk-red);
    font-size: .76rem;
}
.service-closed-banner {
    position: fixed;
    z-index: 1025;
    top: 74px;
    left: 0;
    right: 0;
    padding: .65rem 1rem;
    color: #fff;
    background: var(--kk-red-dark);
    text-align: center;
    font-size: .84rem;
    font-weight: 700;
}

.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 720px;
    padding: 150px 0 90px;
    background:
        radial-gradient(circle at 88% 20%, rgba(235, 202, 97, .34), transparent 24%),
        linear-gradient(145deg, #fffefb 0%, #f9f5e4 58%, #f2e6c1 100%);
}
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .36;
    background-image: radial-gradient(rgba(24,24,24,.18) .65px, transparent .65px);
    background-size: 18px 18px;
    mask-image: linear-gradient(to right, #000, transparent 65%);
}
.hero-shape { position: absolute; border-radius: 50%; pointer-events: none; }
.hero-shape-red { width: 240px; height: 240px; right: -75px; top: 100px; background: var(--kk-red); opacity: .95; }
.hero-shape-green { width: 150px; height: 150px; right: 20%; bottom: -70px; background: var(--kk-green); opacity: .92; }
.eyebrow, .section-kicker {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: var(--kk-red);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .16em;
}
.hero-section h1 {
    max-width: 760px;
    margin: 1rem 0 1.2rem;
    font-size: clamp(3.2rem, 7vw, 6.2rem);
    font-weight: 800;
    line-height: .94;
    letter-spacing: -.065em;
}
.hero-copy {
    max-width: 680px;
    color: #575752;
    font-size: clamp(1.03rem, 1.7vw, 1.22rem);
    line-height: 1.75;
}
.btn-coffee {
    border: 1px solid var(--kk-red);
    border-radius: 14px;
    color: #fff;
    background: var(--kk-red);
    font-weight: 800;
    padding: .82rem 1.2rem;
    box-shadow: 0 12px 28px rgba(185, 33, 39, .22);
    transition: .18s ease;
}
.btn-coffee:hover, .btn-coffee:focus {
    color: #fff;
    border-color: var(--kk-red-dark);
    background: var(--kk-red-dark);
    transform: translateY(-1px);
}
.hero-actions .btn-outline-dark { border-radius: 14px; font-weight: 800; padding: .82rem 1.2rem; }
.meta-card { height: 100%; display: flex; align-items: center; gap: .7rem; color: #52524e; font-size: .84rem; font-weight: 650; }
.meta-card i { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 12px; color: var(--kk-green-dark); background: var(--kk-green-pale); }
.hero-cup-card {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 42px;
    background:
        radial-gradient(circle at 50% 27%, rgba(255,255,255,.08), transparent 28%),
        linear-gradient(155deg, #272727 0%, var(--kk-black) 48%, #101010 100%);
    box-shadow: 0 42px 90px rgba(24,24,24,.24);
}
.hero-cup-card::before {
    content: "";
    position: absolute;
    width: 330px;
    height: 330px;
    left: 50%;
    top: 54px;
    transform: translateX(-50%);
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 28%, rgba(255,255,255,.19), transparent 19%),
        linear-gradient(145deg, #ce3036, var(--kk-red) 58%, var(--kk-red-dark));
    box-shadow: 0 28px 70px rgba(185,33,39,.28);
    animation: heroOrbPulse 6s ease-in-out infinite;
}
.hero-cup-card::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    right: -25px;
    bottom: 65px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--kk-green-soft), var(--kk-green-dark));
    box-shadow: 0 18px 45px rgba(11,76,40,.32);
    animation: heroAccentFloat 7s ease-in-out infinite reverse;
}
.hero-card-badge { position: absolute; z-index: 5; top: 28px; left: 30px; color: #fff; font-size: .72rem; font-weight: 900; letter-spacing: .18em; }
.cup-illustration {
    --cup-scale: 1;
    position: absolute;
    z-index: 3;
    width: 280px;
    height: 280px;
    left: 50%;
    top: 118px;
    transform: translateX(-50%) scale(var(--cup-scale));
    transform-origin: 50% 82%;
    animation: cupHover 5.4s ease-in-out infinite;
}
.cup-body {
    position: absolute;
    z-index: 3;
    left: 35px;
    top: 56px;
    width: 205px;
    height: 170px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 20px 20px 68px 68px;
    color: var(--kk-red);
    background: linear-gradient(145deg, #fff 2%, var(--kk-cream) 50%, var(--kk-cream-deep));
    box-shadow: inset -18px -12px 28px rgba(116,105,45,.15), inset 12px 0 18px rgba(255,255,255,.72), 0 28px 35px rgba(0,0,0,.28);
}
.cup-body::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 24%, rgba(255,255,255,.48) 42%, transparent 58%);
    transform: translateX(-140%);
    animation: cupShine 6.5s ease-in-out infinite;
}
.cup-body span { position: relative; z-index: 2; font-size: 3.5rem; font-weight: 900; letter-spacing: -.12em; }
.cup-rim {
    position: absolute;
    z-index: 5;
    left: 27px;
    top: 43px;
    width: 220px;
    height: 52px;
    overflow: hidden;
    border: 10px solid var(--kk-cream-deep);
    border-radius: 50%;
    background: #4a2114;
    box-shadow: inset 0 5px 7px rgba(0,0,0,.62), 0 4px 4px rgba(255,255,255,.35);
}
.coffee-surface {
    position: absolute;
    inset: -2px;
    overflow: hidden;
    border-radius: 50%;
    background:
        radial-gradient(ellipse at 46% 42%, #8a4b2b 0%, #623019 29%, #3c190f 64%, #24100b 100%);
    animation: coffeeTilt 5.4s ease-in-out infinite;
}
.coffee-surface::before {
    content: "";
    position: absolute;
    inset: 4px 11px;
    border-radius: 50%;
    border: 2px solid rgba(246,216,165,.18);
    filter: blur(.2px);
    animation: coffeeRing 2.8s ease-in-out infinite;
}
.coffee-swirl {
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 50%;
    border-style: solid;
    border-color: rgba(246,216,165,.72) transparent rgba(246,216,165,.18) rgba(246,216,165,.42);
    transform: translate(-50%, -50%);
    filter: blur(.25px);
}
.coffee-swirl-one {
    width: 132px;
    height: 31px;
    border-width: 4px 7px 2px 3px;
    animation: coffeeStir 3.1s linear infinite;
}
.coffee-swirl-two {
    width: 78px;
    height: 20px;
    border-width: 3px 4px 1px 5px;
    opacity: .72;
    animation: coffeeStirReverse 2.35s linear infinite;
}
.coffee-highlight {
    position: absolute;
    width: 58px;
    height: 11px;
    left: 36px;
    top: 11px;
    border-radius: 50%;
    background: rgba(255,236,205,.28);
    filter: blur(3px);
    transform: rotate(-6deg);
    animation: coffeeHighlight 3s ease-in-out infinite;
}
.coffee-bubble {
    position: absolute;
    display: block;
    border-radius: 50%;
    border: 1px solid rgba(255,223,174,.54);
    background: rgba(130,68,38,.8);
    box-shadow: inset 1px 1px 1px rgba(255,255,255,.2);
}
.coffee-bubble-one { width: 8px; height: 8px; left: 62%; top: 25%; animation: bubbleDrift 3.2s ease-in-out infinite; }
.coffee-bubble-two { width: 5px; height: 5px; left: 31%; top: 52%; animation: bubbleDrift 2.7s ease-in-out .7s infinite; }
.coffee-bubble-three { width: 6px; height: 6px; left: 72%; top: 55%; animation: bubbleDrift 3.6s ease-in-out 1.15s infinite; }
.cup-handle {
    position: absolute;
    z-index: 2;
    right: -2px;
    top: 92px;
    width: 83px;
    height: 95px;
    border: 20px solid var(--kk-cream-deep);
    border-left: 0;
    border-radius: 0 48px 48px 0;
    box-shadow: inset -8px -4px 13px rgba(116,105,45,.16), 8px 8px 18px rgba(0,0,0,.13);
}
.cup-saucer {
    position: absolute;
    z-index: 1;
    left: 22px;
    bottom: 29px;
    width: 240px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(180deg, #fff, var(--kk-cream-deep));
    box-shadow: inset 0 -8px 14px rgba(116,105,45,.13), 0 14px 20px rgba(0,0,0,.18);
}
.cup-shadow {
    position: absolute;
    z-index: 0;
    left: 37px;
    bottom: 15px;
    width: 225px;
    height: 34px;
    border-radius: 50%;
    background: rgba(0,0,0,.32);
    filter: blur(8px);
    animation: cupShadowPulse 5.4s ease-in-out infinite;
}
.steam {
    position: absolute;
    z-index: 4;
    top: 68px;
    width: 25px;
    height: 92px;
    border: 4px solid rgba(255,255,255,.68);
    border-color: rgba(255,255,255,.68) transparent transparent transparent;
    border-radius: 52% 48% 46% 54%;
    opacity: 0;
    filter: blur(.35px);
    transform-origin: 50% 100%;
}
.steam::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 54px;
    left: -7px;
    top: 15px;
    border: 3px solid rgba(255,255,255,.28);
    border-color: rgba(255,255,255,.28) transparent transparent transparent;
    border-radius: 50%;
}
.steam-one { left: 42%; animation: steamRise 3.7s ease-in-out infinite; }
.steam-two { left: 50%; top: 55px; animation: steamRise 4.2s ease-in-out .9s infinite; }
.steam-three { left: 58%; animation: steamRise 3.45s ease-in-out 1.75s infinite; }

@keyframes cupHover {
    0%, 100% { transform: translateX(-50%) translateY(0) scale(var(--cup-scale)) rotate(-.4deg); }
    50% { transform: translateX(-50%) translateY(-10px) scale(var(--cup-scale)) rotate(.55deg); }
}
@keyframes cupShadowPulse {
    0%, 100% { transform: scaleX(1); opacity: .78; }
    50% { transform: scaleX(.88); opacity: .54; }
}
@keyframes coffeeTilt {
    0%, 100% { transform: rotate(-1.2deg) scale(1.02); }
    50% { transform: rotate(1.2deg) scale(1); }
}
@keyframes coffeeStir {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes coffeeStirReverse {
    to { transform: translate(-50%, -50%) rotate(-360deg); }
}
@keyframes coffeeRing {
    0%, 100% { transform: scale(.94); opacity: .36; }
    50% { transform: scale(1.04); opacity: .72; }
}
@keyframes coffeeHighlight {
    0%, 100% { transform: translateX(0) rotate(-6deg); opacity: .28; }
    50% { transform: translateX(17px) rotate(-2deg); opacity: .52; }
}
@keyframes bubbleDrift {
    0%, 100% { transform: translate(0, 0) scale(.75); opacity: .18; }
    35% { opacity: .82; }
    65% { transform: translate(9px, -5px) scale(1.18); opacity: .58; }
}
@keyframes steamRise {
    0% { opacity: 0; transform: translateY(28px) translateX(0) scale(.72) rotate(-5deg); }
    22% { opacity: .72; }
    58% { opacity: .48; transform: translateY(-8px) translateX(7px) scale(1) rotate(7deg); }
    100% { opacity: 0; transform: translateY(-48px) translateX(-8px) scale(1.18) rotate(-8deg); }
}
@keyframes cupShine {
    0%, 56% { transform: translateX(-140%); opacity: 0; }
    67% { opacity: .8; }
    82%, 100% { transform: translateX(150%); opacity: 0; }
}
@keyframes heroOrbPulse {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.035); }
}
@keyframes heroAccentFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}
.hero-card-copy { position: absolute; z-index: 3; left: 30px; right: 30px; bottom: 27px; color: #fff; }
.hero-card-copy span { display: block; margin-bottom: .35rem; color: #bdbdbd; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; }
.hero-card-copy strong { display: block; max-width: 360px; font-size: 1.18rem; line-height: 1.45; }

.outlet-section { position: relative; z-index: 5; padding: 85px 0 55px; background: #fff; }
.outlet-panel {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(1.5rem, 4vw, 3.25rem);
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 32px;
    color: #fff;
    background:
        radial-gradient(circle at 85% 16%, rgba(235,202,97,.19), transparent 25%),
        radial-gradient(circle at 8% 88%, rgba(32,150,83,.25), transparent 30%),
        linear-gradient(132deg, rgba(24,24,24,.98) 0%, rgba(70,20,22,.96) 51%, rgba(9,61,33,.94) 100%);
    box-shadow: 0 30px 80px rgba(24,24,24,.2);
}
.outlet-panel::before {
    content: "";
    position: absolute;
    z-index: -2;
    inset: -40px;
    opacity: .12;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='150' viewBox='0 0 150 150'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round'%3E%3Cg transform='translate(20 18) rotate(-28 26 34)'%3E%3Cpath d='M26 4C11 4 2 16 2 32c0 19 11 33 25 33 16 0 27-15 27-34C54 15 42 4 26 4Z'/%3E%3Cpath d='M28 7c6 13-8 20-2 32 5 10 1 18-4 24'/%3E%3C/g%3E%3Cg transform='translate(86 80) rotate(35 22 29)'%3E%3Cpath d='M22 3C10 3 2 14 2 27c0 17 9 29 22 29 14 0 24-13 24-29C48 13 37 3 22 3Z'/%3E%3Cpath d='M24 6c5 11-7 17-2 28 4 8 1 15-4 21'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-size: 150px 150px;
    transform: rotate(-6deg) scale(1.08);
    pointer-events: none;
}
.outlet-panel::after {
    content: "";
    position: absolute;
    z-index: -1;
    width: 420px;
    height: 420px;
    right: -155px;
    top: -190px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 0 0 55px rgba(255,255,255,.025), 0 0 0 112px rgba(255,255,255,.018);
    pointer-events: none;
}
.outlet-panel > * { position: relative; z-index: 2; }
.outlet-panel h2 { max-width: 520px; margin: .75rem 0 1rem; font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 800; letter-spacing: -.045em; }
.outlet-panel > .row > div:first-child > p { max-width: 520px; color: #bdbdbd; line-height: 1.75; }
.outlet-panel .section-kicker { color: var(--kk-gold-soft); }
.service-note { display: flex; align-items: flex-start; gap: .75rem; margin-top: 1.3rem; padding: .9rem 1rem; border: 1px solid rgba(255,255,255,.11); border-radius: 15px; color: #dedede; background: rgba(255,255,255,.055); font-size: .82rem; line-height: 1.55; }
.service-note i { color: var(--kk-gold-soft); }
.outlet-search-card { padding: 1.4rem; border: 1px solid rgba(255,255,255,.62); border-radius: 22px; color: var(--kk-black); background: rgba(255,255,255,.92); box-shadow: 0 24px 55px rgba(0,0,0,.18); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
.outlet-search-wrap { position: relative; }
.outlet-search-wrap > i { position: absolute; z-index: 2; left: 16px; top: 50%; transform: translateY(-50%); color: var(--kk-gray); }
.outlet-search-wrap .form-control { padding-left: 2.65rem; padding-right: 2.7rem; }
.outlet-clear { position: absolute; right: 8px; top: 50%; transform: translateY(-50%); width: 34px; height: 34px; display: none; place-items: center; border: 0; border-radius: 50%; color: var(--kk-gray); background: transparent; }
.outlet-clear.show { display: grid; }
.outlet-clear:hover { color: var(--kk-black); background: var(--kk-surface); }
.outlet-results { max-height: 360px; overflow-y: auto; display: grid; gap: .55rem; }
.outlet-result {
    width: 100%;
    display: grid;
    grid-template-columns: 42px 1fr auto;
    align-items: center;
    gap: .8rem;
    padding: .8rem;
    border: 1px solid var(--border);
    border-radius: 15px;
    color: var(--kk-black);
    background: #fff;
    text-align: left;
    transition: .16s ease;
}
.outlet-result:hover { border-color: var(--kk-green-soft); background: var(--kk-green-pale); }
.outlet-result-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; color: var(--kk-red); background: var(--kk-red-pale); }
.outlet-result strong { display: block; font-size: .88rem; }
.outlet-result .outlet-address { display: block; margin-top: .17rem; color: var(--muted); font-size: .72rem; line-height: 1.4; }
.outlet-status { display: inline-flex; align-items: center; gap: .32rem; white-space: nowrap; font-size: .7rem; font-weight: 800; }
.outlet-status::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.outlet-status.open { color: var(--kk-green); }
.outlet-status.closed { color: var(--kk-gray); }
.outlet-empty { padding: 1.5rem; border: 1px dashed #d8d8d8; border-radius: 15px; color: var(--muted); text-align: center; font-size: .86rem; }
.selected-outlet-card { align-items: center; gap: .85rem; padding: .95rem; border: 1px solid #b8dfc7; border-radius: 16px; background: var(--kk-green-pale); }
.selected-outlet-card:not(.d-none) { display: flex; }
.selected-outlet-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; color: #fff; background: var(--kk-green); }
.selected-outlet-card small, .selected-outlet-card strong, .selected-outlet-card span { display: block; }
.selected-outlet-card small { color: var(--kk-green-dark); font-size: .66rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.selected-outlet-card strong { margin-top: .12rem; font-size: .88rem; }
.selected-outlet-card span { margin-top: .15rem; color: #4e6255; font-size: .72rem; }

.menu-section { padding: 80px 0 100px; background: #fff; }
.menu-heading { margin-bottom: 1.6rem; }
.menu-heading h2 { max-width: 680px; margin: .65rem 0 .55rem; font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 800; letter-spacing: -.05em; }
.menu-heading p { max-width: 670px; margin: 0; color: var(--muted); line-height: 1.7; }
.search-box { max-width: 390px; }
.search-box .input-group-text { border-color: var(--border); border-right: 0; background: #fff; }
.search-box .form-control { border-left: 0; }
.form-control, .form-select { min-height: 48px; border-radius: 13px; border-color: #d9d7d1; }
.form-control:focus, .form-select:focus { border-color: var(--kk-green); box-shadow: 0 0 0 .22rem rgba(32,150,83,.13); }
.category-scroller { display: flex; gap: .65rem; overflow-x: auto; padding: .3rem 0 1.4rem; scrollbar-width: thin; }
.category-pill { flex: 0 0 auto; display: inline-flex; align-items: center; gap: .5rem; padding: .7rem 1rem; border: 1px solid #ddddda; border-radius: 999px; color: var(--kk-charcoal); background: #fff; font-size: .82rem; font-weight: 800; transition: .16s ease; }
.category-pill:hover, .category-pill.active { color: #fff; border-color: var(--kk-black); background: var(--kk-black); }
.menu-card { height: 100%; overflow: hidden; border: 1px solid var(--border); border-radius: 23px; background: #fff; box-shadow: 0 7px 24px rgba(24,24,24,.045); cursor: pointer; transition: .22s ease; }
.menu-card:hover { transform: translateY(-6px); border-color: #cfcac0; box-shadow: var(--shadow); }
.menu-card-image { position: relative; aspect-ratio: 1 / .82; overflow: hidden; background: var(--kk-cream); }
.menu-card-image img { width: 100%; height: 100%; object-fit: cover; transition: .38s ease; }
.menu-card:hover .menu-card-image img { transform: scale(1.045); }
.menu-badge { position: absolute; top: 13px; left: 13px; padding: .4rem .65rem; border-radius: 999px; color: #fff; background: var(--kk-red); font-size: .67rem; font-weight: 900; }
.menu-card-body { padding: 1.15rem; }
.menu-category, .modal-category { color: var(--kk-red); font-size: .66rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.menu-card h3 { min-height: 2.7rem; margin: .48rem 0 .6rem; font-size: 1.02rem; font-weight: 750; line-height: 1.35; }
.menu-card-description { min-height: 2.45rem; overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; color: var(--muted); font-size: .8rem; line-height: 1.55; }
.menu-price { display: flex; align-items: center; gap: .5rem; margin-top: .9rem; }
.menu-price strong, .price-line strong { color: var(--kk-black); font-size: 1.05rem; }
.old-price { color: #9b9b96; text-decoration: line-through; font-size: .78rem; }
.menu-add { margin-left: auto; width: 38px; height: 38px; display: grid; place-items: center; border: 0; border-radius: 50%; color: #fff; background: var(--kk-red); }
.menu-state { padding: 4rem 1rem; color: var(--muted); text-align: center; }
.menu-state p { margin-top: .9rem; }

.feature-section { padding: 95px 0; color: #fff; background: var(--kk-black); }
.feature-heading { margin-bottom: 2.5rem; }
.feature-heading .section-kicker { color: var(--kk-gold-soft); }
.feature-heading h2 { margin-top: .65rem; font-size: clamp(2rem, 4vw, 3.3rem); font-weight: 800; letter-spacing: -.045em; }
.feature-card { position: relative; height: 100%; padding: 2rem; overflow: hidden; border: 1px solid rgba(255,255,255,.1); border-radius: 23px; background: rgba(255,255,255,.045); }
.feature-card > i { width: 53px; height: 53px; display: grid; place-items: center; border-radius: 16px; color: #fff; background: var(--kk-red); font-size: 1.25rem; }
.feature-card h3 { margin: 1.25rem 0 .65rem; font-size: 1.15rem; }
.feature-card p { margin: 0; color: #bdbdbd; line-height: 1.7; }
.step-number { position: absolute; top: 18px; right: 20px; color: rgba(255,255,255,.11); font-size: 2.9rem; font-weight: 900; line-height: 1; }
.coffee-footer { padding: 34px 0; color: #aaa; background: #111; font-size: .82rem; }
.coffee-footer strong { color: #fff; font-size: .94rem; }
.coffee-footer p { max-width: 760px; line-height: 1.55; }
.footer-link { color: var(--kk-gold-soft); font-weight: 750; text-decoration: none; }
.footer-link:hover { color: #fff; }

.product-modal-content, .checkout-modal { overflow: hidden; border: 0; border-radius: 27px; box-shadow: 0 40px 110px rgba(24,24,24,.3); }
.modal-close { position: absolute; z-index: 5; top: 17px; right: 17px; padding: .72rem; border-radius: 50%; background-color: rgba(255,255,255,.9); }
.product-modal-media { min-height: 540px; background: var(--kk-cream); }
.product-modal-media img { width: 100%; height: 100%; object-fit: contain; }
.product-modal-content .modal-title, .checkout-modal .modal-title { font-size: 2.15rem; font-weight: 800; letter-spacing: -.04em; }
.modal-description { color: var(--muted); line-height: 1.65; }
.price-line { display: flex; align-items: center; gap: .7rem; }
.price-line strong { font-size: 1.5rem; }
.option-group { margin-bottom: 1.3rem; }
.option-group-title { display: flex; align-items: center; justify-content: space-between; margin-bottom: .62rem; font-size: .86rem; font-weight: 800; }
.option-pills { display: flex; flex-wrap: wrap; gap: .5rem; }
.option-pill { position: relative; }
.option-pill input { position: absolute; opacity: 0; pointer-events: none; }
.option-pill label { cursor: pointer; padding: .62rem .78rem; border: 1px solid #d9d7d1; border-radius: 12px; background: #fff; font-size: .8rem; font-weight: 720; transition: .15s ease; }
.option-pill input:checked + label { color: #fff; border-color: var(--kk-green); background: var(--kk-green); box-shadow: 0 7px 15px rgba(32,150,83,.18); }
.option-price { opacity: .78; margin-left: .22rem; }
.quantity-control { display: inline-flex; align-items: center; gap: .75rem; padding: .36rem; border: 1px solid #dedbd5; border-radius: 14px; background: #fff; }
.quantity-control button { width: 36px; height: 36px; border: 0; border-radius: 10px; color: var(--kk-black); background: var(--kk-surface); }
.quantity-control span { min-width: 24px; text-align: center; font-weight: 900; }
#addToCartButton { display: flex; justify-content: space-between; gap: 1rem; }

.cart-canvas { width: min(480px, 100vw) !important; background: #fbfaf5; }
.cart-canvas .offcanvas-header { padding: 1.4rem; border-bottom: 1px solid var(--border); }
.cart-canvas .offcanvas-body { padding: 1.15rem; }
.cart-outlet-box { display: grid; grid-template-columns: 36px 1fr auto; align-items: center; gap: .7rem; padding: .8rem; border: 1px solid #b8dfc7; border-radius: 15px; background: var(--kk-green-pale); }
.cart-outlet-box > i { color: var(--kk-green); font-size: 1.2rem; }
.cart-outlet-box small, .cart-outlet-box strong { display: block; }
.cart-outlet-box small { color: var(--kk-green-dark); font-size: .66rem; }
.cart-outlet-box strong { font-size: .82rem; }
.cart-outlet-box a { color: var(--kk-green-dark); font-size: .74rem; font-weight: 800; }
.cart-item { display: grid; grid-template-columns: 80px 1fr; gap: .9rem; margin-bottom: .85rem; padding: .8rem; border: 1px solid var(--border); border-radius: 17px; background: #fff; }
.cart-item img { width: 80px; height: 80px; object-fit: cover; border-radius: 13px; }
.cart-item h4 { margin: 0 0 .24rem; font-size: .91rem; }
.cart-item-options { color: var(--muted); font-size: .73rem; line-height: 1.45; }
.cart-item-footer { display: flex; align-items: center; justify-content: space-between; gap: .7rem; margin-top: .62rem; }
.cart-mini-qty { display: flex; align-items: center; gap: .48rem; }
.cart-mini-qty button { width: 28px; height: 28px; border: 0; border-radius: 9px; color: var(--kk-black); background: var(--kk-surface); }
.cart-remove { border: 0; color: var(--kk-red); background: transparent; }
.empty-cart { padding: 3.5rem 1rem; color: var(--muted); text-align: center; }
.empty-cart i { display: block; color: #d5d5d0; font-size: 4rem; }
.cart-summary-panel { padding: 1.15rem; border-radius: 19px; color: #fff; background: var(--kk-black); }
.cart-summary-panel > div strong { color: var(--kk-gold-soft); font-size: 1.25rem; }
.cart-summary-panel small { color: #bdbdbd; line-height: 1.45; }
.checkout-outlet-summary { padding: .9rem; border: 1px solid #b8dfc7; border-radius: 15px; background: var(--kk-green-pale); }
.checkout-outlet-summary small, .checkout-outlet-summary strong, .checkout-outlet-summary span { display: block; }
.checkout-outlet-summary small { color: var(--kk-green-dark); font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; }
.checkout-outlet-summary strong { margin-top: .18rem; }
.checkout-outlet-summary span { margin-top: .15rem; color: #4e6255; font-size: .75rem; }


@media (prefers-reduced-motion: reduce) {
    .hero-cup-card::before,
    .hero-cup-card::after,
    .cup-illustration,
    .cup-body::before,
    .coffee-surface,
    .coffee-surface::before,
    .coffee-swirl,
    .coffee-highlight,
    .coffee-bubble,
    .cup-shadow,
    .steam { animation: none !important; }
    .steam { opacity: .34; }
}

@media (max-width: 991.98px) {
    .hero-section { min-height: auto; padding: 130px 0 78px; }
    .hero-cup-card { min-height: 455px; }
    .search-box { width: 100%; max-width: none; }
    .outlet-section { padding-top: 65px; }
}
@media (max-width: 767.98px) {
    .coffee-navbar { min-height: 68px; }
    .service-closed-banner { top: 68px; }
    .hero-section h1 { font-size: clamp(3rem, 15vw, 4.55rem); }
    .hero-cup-card { min-height: 415px; border-radius: 29px; }
    .hero-cup-card::before { width: 280px; height: 280px; }
    .cup-illustration { --cup-scale: .88; top: 95px; }
    .outlet-panel { border-radius: 25px; }
    .outlet-result { grid-template-columns: 38px 1fr; }
    .outlet-result .outlet-status { grid-column: 2; justify-self: start; }
    .selected-outlet-card { align-items: flex-start; }
    .menu-section { padding: 65px 0 80px; }
    .feature-section { padding: 72px 0; }
    .product-modal-media { min-height: 275px; height: 275px; }
    .product-modal-content .modal-title { font-size: 1.7rem; }
}

.wifi-nav-button {
    align-items: center;
    border-radius: 999px;
    font-weight: 800;
}

.cup-body span {
    max-width: 170px;
    padding-right: .08em;
    color: var(--kk-red);
    font-family: "Pacifico", cursive;
    font-size: 2.65rem;
    font-weight: 400;
    letter-spacing: .01em;
    line-height: 1;
    text-shadow: 0 3px 0 rgba(255,255,255,.65);
    transform: rotate(-5deg);
}

.footer-link-button {
    padding: 0;
    border: 0;
    background: transparent;
}

.cart-outlet-box {
    cursor: pointer;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.cart-outlet-box:hover,
.cart-outlet-box:focus-visible {
    border-color: var(--kk-green);
    background: #d8eee1;
    box-shadow: 0 10px 24px rgba(11, 76, 40, .12);
    outline: 0;
    transform: translateY(-1px);
}

.cart-outlet-action {
    color: var(--kk-green-dark);
    font-size: .74rem;
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.wifi-modal-content {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 30px;
    color: #fff;
    background:
        radial-gradient(circle at 82% 14%, rgba(235,202,97,.22), transparent 26%),
        radial-gradient(circle at 10% 92%, rgba(32,150,83,.28), transparent 33%),
        linear-gradient(145deg, #262626 0%, #181818 53%, #0d0d0d 100%);
    box-shadow: 0 42px 110px rgba(0,0,0,.42);
}

.wifi-modal-content::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .22;
    background-image: radial-gradient(rgba(255,255,255,.5) .55px, transparent .55px);
    background-size: 17px 17px;
    mask-image: linear-gradient(135deg, #000, transparent 72%);
}

.wifi-modal-close {
    position: absolute;
    z-index: 5;
    top: 18px;
    right: 18px;
    padding: .72rem;
    border-radius: 50%;
    background-color: rgba(255,255,255,.92);
}

.wifi-modal-visual {
    position: relative;
    width: 132px;
    height: 132px;
    display: grid;
    place-items: center;
    margin: 36px auto 0;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(145deg, var(--kk-red), var(--kk-red-dark));
    box-shadow: 0 22px 50px rgba(185,33,39,.28);
}

.wifi-modal-visual > i {
    position: relative;
    z-index: 3;
    font-size: 2.9rem;
}

.wifi-ring {
    position: absolute;
    inset: 50%;
    width: 48px;
    height: 48px;
    border: 2px solid rgba(255,255,255,.38);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: wifiPulse 3.4s ease-out infinite;
}

.wifi-ring-two { animation-delay: 1.05s; }
.wifi-ring-three { animation-delay: 2.1s; }

.wifi-modal-content .modal-body {
    position: relative;
    z-index: 2;
    text-align: center;
}

.wifi-modal-content .section-kicker { color: var(--kk-gold-soft); }

.wifi-modal-title {
    max-width: 390px;
    margin: .75rem auto .55rem;
    font-size: clamp(1.8rem, 5vw, 2.55rem);
    font-weight: 850;
    letter-spacing: -.045em;
}

.wifi-date {
    margin-bottom: 1.35rem;
    color: #bdbdbd;
    font-size: .86rem;
}

.wifi-password-box {
    padding: 1.1rem;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 20px;
    background: rgba(255,255,255,.065);
    backdrop-filter: blur(12px);
}

.wifi-password-box small,
.wifi-password-box strong {
    display: block;
}

.wifi-password-box small {
    color: #c9c9c9;
    font-size: .72rem;
    font-weight: 700;
}

.wifi-password-box strong {
    margin: .5rem 0 1rem;
    overflow-wrap: anywhere;
    color: var(--kk-gold-soft);
    font-size: clamp(1.45rem, 5vw, 2.15rem);
    letter-spacing: .015em;
}

.wifi-copy-button {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    padding: .8rem 1rem;
    border: 0;
    border-radius: 13px;
    color: #fff;
    background: var(--kk-red);
    font-weight: 850;
    transition: transform .18s ease, background .18s ease;
}

.wifi-copy-button:hover {
    background: var(--kk-red-dark);
    transform: translateY(-1px);
}

.wifi-note {
    display: flex;
    align-items: flex-start;
    gap: .55rem;
    margin-top: 1rem;
    color: #bdbdbd;
    font-size: .75rem;
    line-height: 1.55;
    text-align: left;
}

.wifi-note i {
    flex: 0 0 auto;
    margin-top: .12rem;
    color: var(--kk-green-soft);
}

@keyframes wifiPulse {
    0% { opacity: .68; transform: translate(-50%, -50%) scale(.65); }
    75%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(2.55); }
}

@media (prefers-reduced-motion: reduce) {
    .wifi-ring { animation: none !important; opacity: .18; }
}

/* Caca V5: responsive product modal and outlet photography */
.product-modal-dialog {
    width: min(1180px, calc(100vw - 2rem));
    max-width: none;
    margin-right: auto;
    margin-left: auto;
}
.product-modal-content {
    max-height: min(92dvh, 860px);
    min-height: 0;
}
.product-modal-layout {
    display: grid;
    grid-template-columns: minmax(290px, 36%) minmax(0, 1fr);
    height: min(88dvh, 820px);
    min-height: 560px;
}
.product-modal-media {
    position: relative;
    min-width: 0;
    min-height: 0;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: .9rem;
    padding: clamp(1.25rem, 3vw, 2.5rem);
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 15%, rgba(255,255,255,.75), transparent 28%),
        linear-gradient(145deg, #ead3b6 0%, #c79a68 100%);
}
.product-modal-media::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -120px;
    top: -90px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
}
.product-modal-image-frame {
    position: relative;
    z-index: 1;
    min-height: 0;
    flex: 1 1 auto;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(93,62,39,.12);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 24px 55px rgba(74,42,20,.14), inset 0 0 0 1px rgba(255,255,255,.9);
}
.product-modal-media img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    padding: clamp(.7rem, 2vw, 1.35rem);
    object-fit: contain;
    object-position: center;
}
.product-modal-media-caption {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    color: rgba(54,31,16,.72);
    font-size: .72rem;
    font-weight: 750;
    text-align: center;
}
.product-modal-panel {
    min-width: 0;
    min-height: 0;
    display: flex;
    flex-direction: column;
    background: #fff;
}
.product-modal-scroll {
    min-height: 0;
    flex: 1 1 auto;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: clamp(1.45rem, 3vw, 2.65rem);
    padding-right: clamp(1.55rem, 3.6vw, 3.2rem);
    scrollbar-width: thin;
    scrollbar-color: #c9c5bb transparent;
}
.product-modal-scroll::-webkit-scrollbar { width: 8px; }
.product-modal-scroll::-webkit-scrollbar-thumb { border-radius: 20px; background: #c9c5bb; }
.product-modal-content .modal-title {
    max-width: calc(100% - 52px);
    margin-bottom: .45rem;
    font-size: clamp(1.65rem, 3vw, 2.45rem);
}
.product-modal-content .modal-description {
    max-width: 720px;
    margin-bottom: .75rem;
}
.product-options-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .8rem;
    margin-bottom: 1rem;
}
.product-options-grid > input[type="hidden"] { display: none; }
.product-options-grid .option-group {
    min-width: 0;
    margin: 0;
    padding: .85rem;
    border: 1px solid #e7e3dc;
    border-radius: 16px;
    background: #fbfaf7;
}
.product-options-grid .option-group-title {
    margin-bottom: .55rem;
    font-size: .79rem;
}
.product-options-grid .option-group-title small {
    color: #8b887f;
    font-size: .65rem;
}
.product-options-grid .option-pills { gap: .42rem; }
.product-options-grid .option-pill label {
    padding: .52rem .68rem;
    border-radius: 10px;
    font-size: .73rem;
    line-height: 1.25;
}
.product-options-grid .option-price {
    display: block;
    margin: .12rem 0 0;
    font-size: .63rem;
}
.product-no-options { grid-column: 1 / -1; }
.product-note-field { margin-top: .2rem; }
.product-modal-actions {
    flex: 0 0 auto;
    display: grid;
    grid-template-columns: auto minmax(220px, 1fr);
    align-items: center;
    gap: .9rem;
    padding: .9rem clamp(1.35rem, 3vw, 2.65rem);
    border-top: 1px solid #ece9e2;
    background: rgba(255,255,255,.96);
    box-shadow: 0 -12px 30px rgba(24,24,24,.045);
}
.product-modal-actions #addToCartButton {
    min-height: 50px;
    align-items: center;
}
.modal-close {
    top: 14px;
    right: 14px;
    box-shadow: 0 8px 22px rgba(24,24,24,.14);
}

.outlet-result {
    grid-template-columns: 56px minmax(0, 1fr) auto;
}
.outlet-result-photo {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border: 1px solid #e5e1d8;
    border-radius: 14px;
    background: var(--kk-cream);
}
.outlet-result-copy { min-width: 0; }
.outlet-result .outlet-hours {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    margin-top: .3rem;
    color: #766f63;
    font-size: .67rem;
    font-weight: 700;
}
.selected-outlet-icon {
    position: relative;
    overflow: hidden;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
}
.selected-outlet-icon img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.selected-outlet-icon img:not([src]),
.selected-outlet-icon img[src=""] { display: none; }
.selected-outlet-icon i { position: relative; z-index: 0; }

@media (max-height: 720px) and (min-width: 768px) {
    .product-modal-layout {
        height: 90dvh;
        min-height: 0;
    }
    .product-modal-scroll { padding-top: 1.35rem; padding-bottom: 1rem; }
    .product-modal-media-caption { display: none; }
}

@media (max-width: 991.98px) {
    .product-modal-dialog { width: min(940px, calc(100vw - 1.25rem)); }
    .product-modal-layout { grid-template-columns: minmax(240px, 34%) minmax(0, 1fr); }
    .product-options-grid { grid-template-columns: 1fr; }
}

@media (max-width: 767.98px) {
    .product-modal-dialog { width: 100%; margin: 0; }
    .product-modal-content {
        max-height: 100dvh;
        height: 100dvh;
        border-radius: 0;
    }
    .product-modal-layout {
        grid-template-columns: 1fr;
        grid-template-rows: minmax(170px, 29dvh) minmax(0, 1fr);
        height: 100dvh;
        min-height: 0;
    }
    .product-modal-media {
        min-height: 0;
        height: auto;
        padding: .85rem;
    }
    .product-modal-image-frame { border-radius: 17px; }
    .product-modal-media img { padding: .5rem; }
    .product-modal-media-caption { display: none; }
    .product-modal-scroll { padding: 1.1rem 1rem .8rem; }
    .product-modal-content .modal-title { max-width: calc(100% - 45px); }
    .product-options-grid { grid-template-columns: 1fr; gap: .65rem; }
    .product-modal-actions {
        grid-template-columns: 1fr;
        gap: .65rem;
        padding: .75rem 1rem max(.75rem, env(safe-area-inset-bottom));
    }
    .product-modal-actions .quantity-control { justify-self: stretch; justify-content: space-between; }
    .product-modal-actions #addToCartButton { width: 100%; }
    .outlet-result { grid-template-columns: 48px minmax(0, 1fr); }
    .outlet-result-photo { width: 48px; height: 48px; }
    .outlet-result .outlet-status { grid-column: 2; justify-self: start; }
}

@media (max-width: 420px) {
    .product-modal-layout { grid-template-rows: minmax(145px, 25dvh) minmax(0, 1fr); }
    .product-options-grid .option-group { padding: .72rem; }
    .product-options-grid .option-pill label { padding: .48rem .58rem; }
}

/* Caca V6: mobile application shell, fitted product media, and quick navigation */
.wifi-mobile-button {
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(255,255,255,.26);
    border-radius: 999px;
    color: #fff;
    background: rgba(255,255,255,.06);
    font-size: 1.15rem;
}
.wifi-mobile-button:hover,
.wifi-mobile-button:focus-visible {
    color: var(--kk-gold-soft);
    border-color: rgba(235,202,97,.6);
    background: rgba(255,255,255,.11);
}

.scroll-top-button {
    position: fixed;
    z-index: 1020;
    right: max(1rem, env(safe-area-inset-right));
    bottom: max(1rem, env(safe-area-inset-bottom));
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(145deg, var(--kk-red) 0%, var(--kk-red-dark) 100%);
    box-shadow: 0 16px 38px rgba(98,18,20,.32);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(16px) scale(.86);
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease, box-shadow .22s ease;
}
.scroll-top-button.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}
.scroll-top-button:hover,
.scroll-top-button:focus-visible {
    color: #fff;
    box-shadow: 0 20px 46px rgba(98,18,20,.42);
    transform: translateY(-2px) scale(1.02);
}
body.modal-open .scroll-top-button { opacity: 0; visibility: hidden; pointer-events: none; }

@media (max-width: 767.98px) {
    html,
    body {
        width: 100%;
        min-width: 320px;
        overflow-x: hidden;
        overscroll-behavior-x: none;
        touch-action: manipulation;
    }
    body { min-height: 100svh; }
    input,
    select,
    textarea { font-size: 16px !important; }

    .coffee-navbar .container {
        flex-wrap: nowrap;
        gap: .55rem;
    }
    .coffee-navbar .navbar-brand {
        min-width: 0;
        margin-right: auto;
    }
    .coffee-navbar .navbar-brand > span:last-child { min-width: 0; }
    .brand-name {
        max-width: 128px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .product-modal-dialog {
        width: 100vw;
        max-width: 100vw;
        height: 100svh;
        min-height: 100svh;
        margin: 0;
    }
    .product-modal-content {
        width: 100vw;
        max-width: 100vw;
        height: 100svh;
        min-height: 100svh;
        max-height: 100svh;
        border-radius: 0;
    }
    .product-modal-layout {
        width: 100%;
        height: 100svh;
        min-height: 0;
        grid-template-columns: minmax(0, 1fr);
        grid-template-rows: clamp(165px, 27svh, 235px) minmax(0, 1fr);
        overflow: hidden;
    }
    .product-modal-media {
        width: 100%;
        min-width: 0;
        min-height: 0;
        height: 100%;
        padding: .72rem;
        overflow: hidden;
    }
    .product-modal-image-frame {
        position: relative;
        width: 100%;
        height: 100%;
        min-width: 0;
        min-height: 0;
        flex: none;
        border: 1px solid rgba(93,62,39,.1);
        border-radius: 18px;
        overflow: hidden;
        background: #fff;
        box-shadow: 0 12px 28px rgba(74,42,20,.12);
    }
    .product-modal-media img {
        position: absolute;
        inset: 0;
        display: block;
        width: 100%;
        height: 100%;
        min-width: 0;
        min-height: 0;
        max-width: none;
        max-height: none;
        padding: .45rem;
        object-fit: contain;
        object-position: center;
    }
    .product-modal-panel {
        width: 100%;
        min-width: 0;
        min-height: 0;
        overflow: hidden;
    }
    .product-modal-scroll {
        min-height: 0;
        padding: 1rem 1rem .85rem;
        -webkit-overflow-scrolling: touch;
    }
    .product-modal-actions {
        padding: .72rem 1rem max(.72rem, env(safe-area-inset-bottom));
    }
    .modal-close {
        position: fixed;
        top: max(.75rem, env(safe-area-inset-top));
        right: max(.75rem, env(safe-area-inset-right));
    }
    .scroll-top-button {
        right: max(.85rem, env(safe-area-inset-right));
        bottom: max(.85rem, env(safe-area-inset-bottom));
        width: 46px;
        height: 46px;
    }
}

@media (max-width: 575.98px) {
    .brand-mark {
        width: 38px;
        height: 38px;
        box-shadow: 0 0 0 4px rgba(185,33,39,.15);
    }
    .brand-name { max-width: 105px; font-size: .82rem; }
    .brand-mini { display: none; }
    .coffee-navbar .d-flex.align-items-center.gap-2 { gap: .42rem !important; }
    .wifi-mobile-button { width: 40px; height: 40px; }
    .cart-button {
        min-width: 62px;
        min-height: 40px;
        justify-content: center;
        gap: .38rem;
        padding: .5rem .55rem;
    }
    .cart-count {
        min-width: 1.45rem;
        height: 1.45rem;
        font-size: .68rem;
    }
    .product-modal-layout { grid-template-rows: clamp(155px, 25svh, 210px) minmax(0, 1fr); }
}

@media (max-height: 640px) and (max-width: 767.98px) {
    .product-modal-layout { grid-template-rows: 145px minmax(0, 1fr); }
    .product-modal-scroll { padding-top: .85rem; }
    .product-modal-content .modal-description { margin-bottom: .55rem; font-size: .88rem; line-height: 1.45; }
}

/* Caca V7.1: compact outlet search */
.outlet-panel {
    padding: clamp(1.4rem, 3vw, 2.35rem);
}
.outlet-panel .row {
    align-items: center;
}
.outlet-panel h2 {
    font-size: clamp(1.85rem, 3.4vw, 3rem);
}
.outlet-search-card-compact {
    padding: 1rem;
    overflow: visible;
}
.outlet-search-shell {
    position: relative;
    z-index: 30;
}
.outlet-search-wrap .form-control {
    min-height: 52px;
    border-radius: 15px;
    box-shadow: none;
}
.outlet-search-wrap .form-control:focus {
    border-color: rgba(32,150,83,.58);
    box-shadow: 0 0 0 .22rem rgba(32,150,83,.12);
}
.outlet-results {
    position: absolute;
    z-index: 60;
    top: calc(100% + .55rem);
    left: 0;
    right: 0;
    max-height: min(360px, 48vh);
    display: none;
    gap: .45rem;
    padding: .5rem;
    overflow-y: auto;
    border: 1px solid #e5e1d8;
    border-radius: 17px;
    background: rgba(255,255,255,.98);
    box-shadow: 0 24px 60px rgba(24,24,24,.2);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}
.outlet-results.show {
    display: grid;
}
.outlet-result {
    padding: .68rem;
    border-radius: 13px;
}
.outlet-empty {
    padding: .95rem;
    border: 0;
    border-radius: 12px;
    background: var(--kk-surface);
    text-align: left;
}
.selected-outlet-card {
    margin-top: .85rem;
}

@media (max-width: 991.98px) {
    .outlet-panel {
        padding: 1.35rem;
    }
    .outlet-panel > .row > div:first-child > p,
    .service-note {
        max-width: none;
    }
}

@media (max-width: 575.98px) {
    .outlet-section {
        padding-top: 52px;
        padding-bottom: 38px;
    }
    .outlet-panel {
        padding: 1rem;
        border-radius: 22px;
    }
    .outlet-panel h2 {
        margin-bottom: .65rem;
        font-size: 1.75rem;
    }
    .outlet-panel > .row > div:first-child > p {
        margin-bottom: .8rem;
        font-size: .88rem;
        line-height: 1.55;
    }
    .service-note {
        margin-top: .8rem;
        padding: .72rem .8rem;
        font-size: .75rem;
    }
    .outlet-search-card-compact {
        padding: .75rem;
        border-radius: 17px;
    }
    .outlet-results {
        left: -.1rem;
        right: -.1rem;
        max-height: min(330px, 52svh);
    }
    .outlet-result {
        grid-template-columns: 44px minmax(0, 1fr);
    }
    .outlet-result-photo {
        width: 44px;
        height: 44px;
    }
    .outlet-result .outlet-status {
        grid-column: 2;
        justify-self: start;
    }
    .selected-outlet-card {
        margin-top: .7rem;
        padding: .75rem;
    }
}

.outlet-panel {
    overflow: visible;
}
.outlet-panel::before {
    inset: 0;
    border-radius: inherit;
    transform: none;
}
.outlet-panel::after {
    display: none;
}


/* Caca V7.3: compact two-column mobile product grid */
.menu-card-body {
    display: flex;
    flex-direction: column;
}
.menu-card-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: .6rem;
    margin-top: auto;
}
.menu-card-footer > div {
    min-width: 0;
}
.menu-card-footer strong {
    display: block;
    line-height: 1.15;
}

@media (max-width: 767.98px) {
    #menuGrid {
        --bs-gutter-x: .78rem;
        --bs-gutter-y: .78rem;
    }
    .menu-section {
        padding-top: 54px;
        padding-bottom: 74px;
    }
    .menu-heading {
        margin-bottom: 1.1rem;
    }
    .menu-heading h2 {
        font-size: clamp(1.72rem, 8vw, 2.25rem);
    }
    .category-scroller {
        padding-bottom: 1rem;
    }
    .menu-card {
        border-radius: 17px;
        box-shadow: 0 6px 18px rgba(24,24,24,.055);
        transform: none !important;
    }
    .menu-card:hover {
        transform: none;
        box-shadow: 0 6px 18px rgba(24,24,24,.075);
    }
    .menu-card-image {
        height: clamp(122px, 36vw, 172px);
        aspect-ratio: auto;
        border-bottom: 1px solid #eeeae2;
        background: #fff;
    }
    .menu-card-image img {
        width: 100%;
        height: 100%;
        padding: clamp(.45rem, 2.2vw, .72rem);
        object-fit: contain;
        object-position: center;
        transform: none !important;
    }
    .menu-card:hover .menu-card-image img {
        transform: none;
    }
    .menu-badge {
        top: 8px;
        left: 8px;
        max-width: calc(100% - 16px);
        overflow: hidden;
        padding: .28rem .48rem;
        font-size: .56rem;
        white-space: nowrap;
        text-overflow: ellipsis;
    }
    .menu-card-body {
        min-height: 154px;
        padding: .72rem;
    }
    .menu-category {
        overflow: hidden;
        font-size: .55rem;
        letter-spacing: .085em;
        white-space: nowrap;
        text-overflow: ellipsis;
    }
    .menu-card h3 {
        min-height: 2.42rem;
        margin: .34rem 0 .38rem;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        font-size: .82rem;
        line-height: 1.43;
    }
    .menu-card-description {
        min-height: 1.95rem;
        margin: 0 0 .48rem;
        -webkit-line-clamp: 2;
        font-size: .66rem;
        line-height: 1.45;
    }
    .menu-card-footer {
        gap: .38rem;
    }
    .menu-card-footer .old-price {
        margin-bottom: .12rem;
        font-size: .61rem;
    }
    .menu-card-footer strong,
    .menu-price strong {
        font-size: .82rem;
        white-space: nowrap;
    }
    .menu-add {
        flex: 0 0 31px;
        width: 31px;
        height: 31px;
        font-size: .8rem;
    }
}

@media (max-width: 380px) {
    #menuGrid {
        --bs-gutter-x: .62rem;
        --bs-gutter-y: .62rem;
    }
    .menu-card-image {
        height: 116px;
    }
    .menu-card-image img {
        padding: .42rem;
    }
    .menu-card-body {
        min-height: 146px;
        padding: .62rem;
    }
    .menu-card h3 {
        min-height: 2.28rem;
        font-size: .76rem;
    }
    .menu-card-description {
        font-size: .62rem;
    }
    .menu-card-footer strong,
    .menu-price strong {
        font-size: .75rem;
    }
    .menu-add {
        flex-basis: 29px;
        width: 29px;
        height: 29px;
    }
}

/* V7.5 - WhatsApp group and order guide */
.whatsapp-group-link i { color: #66d18f; }
.whatsapp-group-link.is-disabled {
    cursor: not-allowed;
    opacity: .48;
    user-select: none;
}

.btn-order-guide {
    border: 1px solid rgba(11, 76, 40, .2);
    border-radius: 14px;
    color: var(--kk-green-dark);
    background: var(--kk-green-pale);
    font-weight: 800;
    padding: .82rem 1.2rem;
}
.btn-order-guide:hover,
.btn-order-guide:focus {
    color: #fff;
    border-color: var(--kk-green-dark);
    background: var(--kk-green-dark);
}

.footer-link-disabled {
    cursor: not-allowed;
    opacity: .45;
}

.order-guide-modal-content {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(24, 24, 24, .08);
    border-radius: 30px;
    background:
        radial-gradient(circle at 88% 0%, rgba(201, 165, 54, .2), transparent 32%),
        radial-gradient(circle at 0% 100%, rgba(32, 150, 83, .14), transparent 36%),
        #fff;
    box-shadow: 0 42px 110px rgba(24, 24, 24, .22);
}
.order-guide-modal-content::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .22;
    background-image: radial-gradient(rgba(98, 18, 20, .35) .55px, transparent .55px);
    background-size: 18px 18px;
    mask-image: linear-gradient(135deg, #000, transparent 70%);
}
.order-guide-modal-close {
    position: absolute;
    z-index: 5;
    top: 18px;
    right: 18px;
    padding: .72rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, .95);
    box-shadow: 0 8px 24px rgba(24, 24, 24, .1);
}
.order-guide-icon {
    position: relative;
    z-index: 2;
    width: 92px;
    height: 92px;
    display: grid;
    place-items: center;
    margin: 34px auto 0;
    border-radius: 28px;
    color: #fff;
    background: linear-gradient(145deg, var(--kk-green), var(--kk-green-dark));
    box-shadow: 0 20px 44px rgba(11, 76, 40, .22);
    transform: rotate(-4deg);
}
.order-guide-icon i {
    font-size: 2.4rem;
    transform: rotate(4deg);
}
.order-guide-modal-content .modal-body {
    position: relative;
    z-index: 2;
    text-align: center;
}
.order-guide-title {
    margin: .7rem auto .9rem;
    font-size: clamp(1.75rem, 5vw, 2.35rem);
    font-weight: 850;
    letter-spacing: -.045em;
}
.order-guide-message {
    padding: 1.1rem 1.2rem;
    border: 1px solid rgba(24, 24, 24, .08);
    border-radius: 18px;
    color: #4b4b47;
    background: rgba(249, 245, 228, .72);
    font-size: .92rem;
    line-height: 1.75;
    text-align: left;
    white-space: pre-line;
}

@media (max-width: 575.98px) {
    .hero-actions > * { flex: 1 1 calc(50% - .75rem); }
    .hero-actions .btn-coffee { flex-basis: 100%; }
    .order-guide-modal-content { border-radius: 24px; }
    .order-guide-icon { width: 78px; height: 78px; border-radius: 23px; }
    .order-guide-icon i { font-size: 2rem; }
}
