@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;500;600;700;800;900&family=DM+Sans:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600;700;800;900&family=Josefin+Sans:wght@400;500;600;700&family=Lato:wght@400;700;900&family=Lexend:wght@400;500;600;700;800;900&family=Manrope:wght@400;500;600;700;800&family=Montserrat:wght@400;500;600;700;800;900&family=Mulish:wght@400;500;600;700;800;900&family=Nunito+Sans:wght@400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Poppins:wght@300;400;500;600;700;800;900&family=Quicksand:wght@400;500;600;700&family=Raleway:wght@400;500;600;700;800;900&family=Roboto:wght@400;500;700;900&family=Rubik:wght@400;500;600;700;800;900&family=Source+Sans+3:wght@400;500;600;700;800;900&family=Urbanist:wght@400;500;600;700;800;900&family=Work+Sans:wght@400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fredericka+the+Great&display=swap');

:root {
    --accent: #2d3142;
    --bg: #fff8ea;
    --bg-soft: #fffdf8;
    --bg-alt: #f5e2ad;
    --card: #ffffff;
    --text: #312617;
    --exterior: #2e0d00;
    --muted: #83653d;
    --border: rgba(43, 27, 23, 0.12);
    --footer: #18120c;
    --shadow: 0 18px 40px rgba(43, 27, 23, 0.10);
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 18px;
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --local-title-font: 'Fredericka the Great', cursive;
    --local-title-color: #ffe19a;
    --local-title-glow: rgba(255, 194, 82, .66);
    --page-gutter-total: clamp(40px, 10vw, 160px);
    --home-eyebrow-size: clamp(.9rem, 1.1vw, 1.12rem);
    --home-eyebrow-line-height: 1.35;
    --home-title-size: clamp(2rem, 4vw, 3.7rem);
    --home-title-line-height: 1.05;
    --home-title-letter-spacing: -.045em;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text);
    background: var(--bg-soft);
}

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

a {
    color: inherit;
}

p {
    color: var(--muted);
    line-height: 1.7;
}

button,
input,
textarea,
select {
    font: inherit;
}

.container {
    width: min(1280px, calc(100% - var(--page-gutter-total)));
    margin: 0 auto;
}

.section {
    padding: 84px 0;
}

.section-tight {
    padding: 42px 0;
}

.section-alt {
    background: var(--card);
}

.eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--primary);
    font-size: var(--home-eyebrow-size);
    line-height: var(--home-eyebrow-line-height);
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.section-heading h2 + p {
    margin-top: clamp(18px, 2.4vw, 30px);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 30px;
}

.section-heading--compact {
    margin-bottom: 18px;
}

.section-heading--featured {
    max-width: none;
}

.section-heading h2,
.points-copy h2,
.info-content h2,
.feedback-hero h1,
.faq-section h2,
.feedback-form-section h2 {
    color: var(--text);
    font-size: var(--home-title-size);
    line-height: var(--home-title-line-height);
    letter-spacing: var(--home-title-letter-spacing);
}

.section-heading--featured h2 {
    max-width: none;
    font-size: var(--home-title-size);
    white-space: nowrap;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(251, 247, 242, 0.97);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

.nav {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand img {
    width: 114px;
}

.nav-panel {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    flex: 1;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    font-weight: 700;
    color: var(--text);
}

.nav-links a:hover,
.site-footer a:hover {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-login,
.nav-cta,
.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--radius-sm);
    padding: 12px 18px;
    font-weight: 800;
    border: 1px solid transparent;
    transition: .2s ease;
}

.nav-login {
    background: transparent;
    color: var(--text);
    border-color: var(--border);
}

.nav-cta,
.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 10px 22px color-mix(in srgb, var(--primary) 22%, transparent);
}

.nav-cta:hover,
.btn-primary:hover {
    background: var(--primary-dark);
}

.nav-login:hover,
.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.nav-toggle,
.nav-toggle-label {
    display: none;
}

/* Promo hero */
.promo-hero {
    padding: 28px 0 24px;
    background:
        linear-gradient(rgba(251, 247, 242, 0.97) 0 28px, var(--bg) 28px 100%);
    overflow: hidden;
}

.promo-hero > .container {
    width: 100%;
}

.promo-shell {
    position: relative;
    background: #fff;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
}

.promo-topbar {
    display: none;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.promo-label {
    margin-bottom: 2px;
    color: var(--primary);
    font-size: .88rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.promo-topbar strong {
    color: var(--text);
}

.promo-counter {
    min-width: 76px;
    text-align: center;
    padding: 8px 10px;
    border-radius: 999px;
    background: var(--bg-soft);
    color: var(--text);
    border: 1px solid var(--border);
    font-weight: 700;
    font-size: .9rem;
}

.promo-stage {
    position: relative;
}

.promo-info-toggle {
    position: absolute;
    top: clamp(16px, 1.6vw, 24px);
    left: clamp(16px, 1.6vw, 24px);
    z-index: 8;
    display: inline-grid;
    place-items: center;
    width: clamp(42px, 3vw, 56px);
    height: clamp(42px, 3vw, 56px);
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 8px;
    background: rgba(255, 250, 242, .88);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
    cursor: pointer;
    transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.promo-info-toggle:hover {
    background: rgba(255, 250, 242, .98);
    box-shadow: 0 16px 36px rgba(0, 0, 0, .22);
    transform: translateY(-1px);
}

.promo-info-toggle__icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
}

.promo-info-toggle__icon--hidden {
    display: none;
}

.promo-shell.is-info-hidden .promo-info-toggle__icon--visible {
    display: none;
}

.promo-shell.is-info-hidden .promo-info-toggle__icon--hidden {
    display: block;
}

.promo-stage--wide {
    min-height: clamp(330px, 33.333vw, 620px);
}

.promo-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease;
}

.promo-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.promo-banner {
    position: relative;
    height: clamp(330px, 33.333vw, 620px);
    width: 100%;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    padding: 0;
    isolation: isolate;
}

.promo-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .26), rgba(0, 0, 0, .05) 48%, rgba(0, 0, 0, .32)),
        radial-gradient(circle at 78% 26%, rgba(255, 255, 255, .24), transparent 20%);
    z-index: -1;
}

.promo-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: .95;
}

.promo-banner--image {
    background: url("../img/banners/Banner1.png") center / cover no-repeat;
}

.promo-banner--image-two {
    background: url("../img/banners/Banner2.png") center / cover no-repeat;
}

.promo-banner--image-three {
    background: url("../img/banners/Banner3.png") center / cover no-repeat;
}

.promo-banner--image-four {
    background: url("../img/banners/Banner4.png") center / cover no-repeat;
}

.promo-banner--image-five {
    background: url("../img/banners/Banner5.png") center / cover no-repeat;
}

.promo-banner--image::after {
    display: none;
}

.promo-banner--image::before,
.promo-banner--image-two::before,
.promo-banner--image-three::before,
.promo-banner--image-four::before,
.promo-banner--image-five::before {
    z-index: -1;
}

.promo-banner--image-two::after,
.promo-banner--image-three::after,
.promo-banner--image-four::after,
.promo-banner--image-five::after {
    display: none;
}

.promo-banner--a {
    background:
        radial-gradient(circle at 27% 58%, rgba(255, 205, 88, .9) 0 14%, transparent 15%),
        linear-gradient(116deg, #c91e27 0 36%, #f4b63b 36% 48%, #16884a 48% 60%, #fff4de 60% 100%);
}

.promo-banner--a::after {
    background:
        url("../img/productos/pizza-1.png") left 4vw bottom -18px / min(34vw, 440px) auto no-repeat,
        url("../img/hero/pizza.png") right 2vw center / min(32vw, 430px) auto no-repeat;
}

.promo-banner--b {
    background:
        linear-gradient(105deg, #0f7a45 0 32%, #ffe3a1 32% 43%, #c3212b 43% 100%);
}

.promo-banner--b::after {
    background:
        url("../img/productos/pasta-1.png") left 7vw center / min(30vw, 390px) auto no-repeat,
        url("../img/hero/pasta.png") right 4vw bottom -12px / min(31vw, 410px) auto no-repeat;
}

.promo-banner--c {
    background:
        linear-gradient(115deg, #f6bd31 0 30%, #f16722 30% 58%, #7a1720 58% 100%);
}

.promo-banner--c::after {
    background:
        url("../img/productos/pizza-2.png") left 6vw bottom -18px / min(34vw, 430px) auto no-repeat,
        url("../img/productos/pizza-3.png") right 7vw center / min(29vw, 370px) auto no-repeat;
}

.promo-banner--d {
    background:
        linear-gradient(110deg, #17391f 0 32%, #f7e5be 32% 46%, #7f1420 46% 100%);
}

.promo-banner--d::after {
    background:
        url("../img/productos/ensalada-1.png") left 8vw bottom -16px / min(31vw, 390px) auto no-repeat,
        url("../img/hero/ensalada.png") right 6vw center / min(30vw, 390px) auto no-repeat;
}

.promo-banner-content {
    width: min(520px, calc(100% - 96px));
    margin: auto 9vw auto auto;
    padding: clamp(20px, 3vw, 42px);
    background: rgba(255, 250, 242, .92);
    border: 1px solid rgba(255, 255, 255, .72);
    color: var(--text);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .18);
    transition: opacity .24s ease, visibility .24s ease, transform .24s ease;
}

.promo-shell.is-info-hidden .promo-banner-content {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
}

.promo-banner--content-left .promo-banner-content {
    margin-right: auto;
    margin-left: 9vw;
}

.promo-banner--content-right .promo-banner-content {
    margin-right: 9vw;
    margin-left: auto;
}

.promo-banner-content,
.promo-banner-content p {
    position: relative;
    z-index: 1;
}

.promo-banner-content--panecillos {
    width: min(560px, calc(100% - 96px));
}

.promo-chip {
    display: inline-flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 8px 12px;
    border-radius: 6px;
    background: var(--primary);
    border: 1px solid transparent;
    color: #fff;
    font-weight: 800;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.promo-banner h2 {
    color: #14100f;
    font-size: clamp(1.6rem, 4.2vw, 4.5rem);
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
    margin-top: 8px;
}

.promo-banner p {
    margin-top: 10px;
    color: #33231d;
    font-size: 1.05rem;
    font-weight: 700;
}

.promo-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    position: absolute;
    inset: 0;
    left: 18px;
    right: 18px;
    z-index: 3;
    margin-top: 0;
    pointer-events: none;
}

.promo-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    padding: 0;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .72);
    background: rgba(255, 255, 255, .92);
    color: #201615;
    cursor: pointer;
    pointer-events: auto;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .2);
    font-size: 0;
    font-weight: 900;
    line-height: 1;
}

.promo-btn::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 9px;
    height: 9px;
    border-top: 3px solid #201615;
    border-right: 3px solid #201615;
}

.promo-btn[data-carousel-prev]::before {
    transform: translate(-40%, -50%) rotate(-135deg);
}

.promo-btn[data-carousel-next]::before {
    transform: translate(-60%, -50%) rotate(45deg);
}

.promo-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 50%;
    bottom: 18px;
    flex: none;
    transform: translateX(-50%);
    pointer-events: auto;
}

.promo-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    border: none;
    background: rgba(255, 255, 255, .72);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .18);
}

.promo-dot.is-active {
    width: 28px;
    background: #fff;
}

.craving-notice {
    position: relative;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    width: min(560px, calc(100% - 32px));
    min-height: 86px;
    margin: 96px 0 0;
    padding: 18px 28px;
    border-radius: 0 8px 8px 0;
    background: #8f552b;
    border: 1px solid rgba(255, 255, 255, .16);
    border-left: 5px solid var(--primary);
    color: var(--text);
    box-shadow: 0 18px 42px rgba(43, 27, 23, .12);
}

.craving-notice strong {
    color: #fff;
    font-size: clamp(1.15rem, 2vw, 1.65rem);
    font-weight: 900;
    line-height: 1.08;
}

.craving-loader {
    flex: 0 0 auto;
    display: inline-block;
    width: 42px;
    height: 42px;
    box-sizing: border-box;
    position: relative;
}

.craving-loader::before,
.craving-loader::after {
    position: absolute;
    content: "";
}

.craving-loader::before {
    width: 18px;
    height: 18px;
    top: 50%;
    left: 50%;
    margin-top: 12px;
    border-radius: 100% 100% 100% 0;
    box-shadow: 0 0 0 3px var(--primary, #e0a100);
    transform: translate(-50%, -50%) rotate(-46deg);
    box-sizing: border-box;
    animation: cravingMarkerDrop 1s ease-in-out infinite;
}

.craving-loader::after {
    width: 28px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-top: 16px;
    border-radius: 100%;
    background: rgba(255, 255, 255, .28);
    transform: translate(-50%, -50%);
}

@keyframes cravingMarkerDrop {
    0% {
        top: 0;
    }

    50% {
        top: -5px;
    }

    100% {
        top: 0;
    }
}

.menu-pdf-viewer {
    width: min(1180px, calc(100% - 32px));
    margin: clamp(42px, 5vw, 72px) auto clamp(72px, 8vw, 104px);
    padding: clamp(18px, 2.2vw, 28px);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--card);
    box-shadow: 0 18px 42px rgba(43, 27, 23, .08);
}

.menu-pdf-heading .eyebrow {
    font-size: var(--home-eyebrow-size);
    letter-spacing: .12em;
}

.menu-pdf-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 18px;
}

.menu-pdf-heading h2 {
    max-width: 720px;
    color: var(--text);
    font-size: var(--home-title-size);
    line-height: var(--home-title-line-height);
    letter-spacing: var(--home-title-letter-spacing);
}

.menu-pdf-open,
.menu-pdf-reset,
.menu-pdf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: #fff;
    color: var(--text);
    cursor: pointer;
    font-weight: 900;
}

.menu-pdf-open,
.menu-pdf-reset {
    padding: 10px 14px;
}

.menu-pdf-open {
    color: var(--primary);
    white-space: nowrap;
}

.menu-pdf-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border-radius: var(--radius-sm);
    background: var(--bg-soft);
    border: 1px solid var(--border);
}

.menu-pdf-btn {
    width: 40px;
    height: 40px;
    font-size: 1.12rem;
}

.menu-pdf-page,
.menu-pdf-zoom {
    min-width: 74px;
    color: var(--text);
    text-align: center;
    font-weight: 900;
}

.menu-pdf-divider {
    width: 1px;
    height: 28px;
    background: var(--border);
}

.menu-pdf-frame {
    position: relative;
    display: grid;
    justify-items: center;
    align-items: start;
    height: clamp(760px, 82vh, 940px);
    margin-top: 14px;
    padding: clamp(72px, 7vw, 118px) clamp(12px, 2vw, 24px);
    overflow: auto;
    border-radius: var(--radius-sm);
    background-color: #f8f2e8;
    background-image:
        linear-gradient(rgba(255, 255, 255, .76), rgba(255, 255, 255, .76)),
        url("../img/contenido/Fondo.png");
    background-repeat: repeat, repeat;
    background-size: auto, 520px 520px;
    background-position: center top;
    border: 1px solid var(--border);
}

.menu-pdf-frame img {
    display: block;
    width: min(100%, 760px);
    max-width: none;
    height: auto;
    background: #fff;
    box-shadow: 0 12px 34px rgba(43, 27, 23, .18);
    transform-origin: top center;
}

.menu-pdf-btn:disabled {
    opacity: .42;
    cursor: not-allowed;
}

.btn-secondary {
    background: var(--card);
    color: var(--primary);
    border-color: var(--border);
}

/* Featured */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(24px, 2.6vw, 34px);
}

.featured-card {
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--card);
    border: 1px solid var(--border);
    box-shadow: 0 14px 32px rgba(46, 27, 21, .08);
}

.featured-card[data-featured-target] {
    cursor: pointer;
}

.featured-card[data-featured-target]:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 5px;
}

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

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

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

.featured-card:nth-child(4) {
    order: 5;
}

.featured-card:nth-child(6) {
    order: 6;
}

.featured-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    height: auto;
    padding: clamp(8px, 1.2vw, 14px);
    object-fit: contain;
    object-position: center;
    background: #fff;
}

.featured-card--pizza img {
    aspect-ratio: 4 / 3;
    height: auto;
    object-fit: contain;
    background: #fff;
}

.featured-card div {
    padding: clamp(24px, 2.4vw, 32px);
}

.card-label {
    color: var(--primary);
    font-size: .88rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.featured-card h3 {
    margin: 6px 0 8px;
    color: var(--text);
    font-size: 1.35rem;
}

/* Points */
.points-section {
    padding: clamp(72px, 8vw, 104px) 0;
    background: var(--bg);
    overflow-x: clip;
}

.points-layout {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(320px, 1.08fr);
    gap: clamp(28px, 5vw, 64px);
    align-items: center;
}

.points-copy {
    max-width: 660px;
}

.points-copy .eyebrow {
    color: var(--primary);
}

.points-copy h2 {
    max-width: 620px;
    margin-bottom: clamp(22px, 3vw, 36px);
    color: var(--text);
}

.points-copy p:not(.eyebrow) {
    color: var(--muted);
    font-size: 1.12rem;
}

.points-copy p + p {
    margin-top: 14px;
}

.points-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.points-actions .btn-secondary {
    background: var(--card);
    color: var(--primary);
    border-color: var(--border);
}

.points-visual {
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: clamp(18px, 3vw, 30px);
    align-items: center;
    justify-items: center;
}

.ticket-preview,
.phone-area {
    display: flex;
    justify-content: center;
    align-items: center;
}

.receipt {
    position: relative;
    width: 240px;
    padding: 22px 18px;
    background: #f8f8f4;
    color: #333;
    font-family: "Courier New", monospace;
    font-size: 0.78rem;
    box-shadow:
        0 12px 20px rgba(0, 0, 0, 0.10),
        0 24px 40px rgba(0, 0, 0, 0.08);
}

.receipt::before,
.receipt::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 8px;
    background:
        linear-gradient(-45deg, #f8f8f4 4px, transparent 0),
        linear-gradient(45deg, #f8f8f4 4px, transparent 0);
    background-repeat: repeat-x;
    background-size: 8px 8px;
}

.receipt::before {
    top: -8px;
    background-position: 4px 0;
}

.receipt::after {
    bottom: -8px;
    background:
        linear-gradient(-225deg, #f8f8f4 4px, transparent 0),
        linear-gradient(225deg, #f8f8f4 4px, transparent 0);
    background-repeat: repeat-x;
    background-size: 8px 8px;
}

.receipt-header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #bdbdbd;
}

.receipt-subheader {
    padding: 10px 0;
    border-bottom: 1px dashed #bdbdbd;
    color: #555;
}

.receipt-table {
    width: 100%;
    margin: 12px 0;
    border-collapse: collapse;
    color: inherit;
    font: inherit;
}

.receipt-table th,
.receipt-table td {
    padding: 4px 0;
    text-align: left;
}

.receipt-table th:last-child,
.receipt-table td:last-child {
    text-align: right;
}

.receipt-total td {
    padding-top: 8px;
    border-top: 1px dashed #bdbdbd;
    font-weight: 700;
}

.receipt-qr {
    position: relative;
    display: grid;
    justify-items: center;
    gap: 16px;
    padding: 22px 0 18px;
    border-top: 1px dashed #bdbdbd;
    border-bottom: 1px dashed #bdbdbd;
    text-align: center;
    font-size: 0.7rem;
}

.qr-callout-target {
    position: relative;
    display: inline-grid;
}

.qr-box {
    width: 84px;
    height: 84px;
    object-fit: contain;
    background: #fff;
    border: 6px solid #fff;
    outline: 2px solid #111;
}

.step-callout {
    position: absolute;
    display: none !important;
    z-index: 6;
    pointer-events: none;
}

.step-callout-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.step-callout-line {
    display: none;
}

.step-callout-badge {
    display: none;
}

.step-callout--ticket {
    top: 10%;
    left: -8px;
    width: 260px;
    height: 260px;
    transform: translate(-83%, -72%);
}

.step-callout--phone {
    top: -2px;
    right: -155px;
    width: 260px;
    height: 260px;
}

.step-callout--redeem {
    top: 185px;
    right: -160px;
    width: 260px;
    height: 260px;
}

.step-callout.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.receipt-message {
    padding-top: 10px;
    text-align: center;
    font-weight: 700;
    color: var(--primary, #a1161a);
}

.phone-mockup {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 280px;
    height: 460px;
    padding: 22px 16px 16px;
    border: 4px solid var(--text);
    border-radius: 18px;
    background: #f9fafb;
    box-shadow:
        6px 6px 0 color-mix(in srgb, var(--muted) 20%, transparent),
        0 20px 40px rgba(0, 0, 0, .14);
}

.phone-notch {
    position: absolute;
    top: -4px;
    left: 50%;
    width: 112px;
    height: 14px;
    border: 1px solid var(--text);
    border-top: 0;
    border-radius: 0 0 14px 14px;
    background: var(--text);
    transform: translateX(-50%);
}

.phone-side-button {
    position: absolute;
    top: 82px;
    right: -9px;
    width: 8px;
    height: 40px;
    border: 4px solid var(--text);
    border-left: 0;
    border-radius: 0 6px 6px 0;
}

.phone-screen {
    position: relative;
    flex: 1;
    overflow: hidden;
    contain: paint;
    border-radius: 10px;
    background: #fff;
    border: 1px solid color-mix(in srgb, var(--border) 80%, transparent);
}

.phone-slide {
    position: absolute;
    inset: 0;
    display: grid;
    padding: 26px 18px 18px;
    opacity: 1;
    visibility: hidden;
    transform: translateX(100%);
    transition: transform .36s ease;
    pointer-events: none;
    will-change: transform;
    overflow: hidden;
}

.phone-slide.is-active {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
}

.points-phone-card,
.redeem-phone-card {
    position: relative;
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 8px;
    width: 100%;
    min-height: 100%;
    padding: 24px 18px;
    border-radius: var(--radius-sm);
    background: #fff;
    border: 1px solid var(--border);
}

.points-phone-card h3,
.points-phone-card strong,
.redeem-phone-card h3 {
    color: var(--text);
    font-family: var(--font-main);
    font-weight: 900;
    line-height: 1;
    text-align: center;
    -webkit-text-stroke: 0;
    text-shadow: none;
}

.points-phone-card h3 {
    font-size: 1.65rem;
}

.points-phone-card strong {
    display: block;
    font-size: 2rem;
}

.points-phone-card img {
    width: min(100%, 118px);
    margin-top: 18px;
    object-fit: contain;
}

.redeem-phone-card h3 {
    max-width: 180px;
    font-size: 1.65rem;
    line-height: 1.05;
}

.redeem-phone-card img {
    width: min(100%, 154px);
    max-height: 148px;
    margin-top: -2px;
    object-fit: contain;
}

.redeem-phone-card button {
    min-width: 142px;
    min-height: 54px;
    margin-top: -2px;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    background: var(--primary);
    color: #fff;
    box-shadow: 0 10px 22px color-mix(in srgb, var(--primary) 22%, transparent);
    cursor: pointer;
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1;
}

.redeem-phone-card button:hover {
    background: var(--primary-dark);
}

.phone-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 26px;
    margin-bottom: -8px;
}

.phone-controls button {
    display: grid;
    place-items: center;
    width: 22px;
    height: 26px;
    border: 0;
    background: transparent;
    color: var(--text);
    cursor: pointer;
    font-size: 1rem;
    font-weight: 900;
    transform: translateY(-16px);
}

.phone-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    transform: translateY(2px);
}

.phone-dot {
    width: 7px;
    height: 7px;
    min-width: 7px;
    min-height: 7px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: color-mix(in srgb, var(--muted) 32%, var(--card));
    cursor: pointer;
}

.phone-dot.is-active {
    width: 7px;
    height: 7px;
    background: var(--primary);
}

.points-steps {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 4px;
}

.points-mobile-step {
    display: none;
}

.points-steps article {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px 18px;
    padding: 22px;
    border-radius: var(--radius-sm);
    background: color-mix(in srgb, var(--card) 94%, transparent);
    border: 1px solid color-mix(in srgb, var(--primary) 22%, var(--border));
    box-shadow: 0 16px 34px rgba(0, 0, 0, .14);
}

.points-steps span {
    grid-row: span 2;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--primary);
    color: var(--card);
    font-weight: 900;
}

.points-steps h3 {
    color: var(--text);
}

.points-steps p {
    color: var(--muted);
}

/* Info */
.info-section {
    background:
        radial-gradient(circle at 2px 2px, rgba(255, 255, 255, .035) 1px, transparent 0),
        var(--footer);
    background-size: 38px 38px;
    color: #fff;
}

.info-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
    gap: clamp(34px, 5vw, 68px);
    align-items: start;
}

.info-image {
    position: relative;
    min-height: clamp(430px, 50vw, 640px);
    margin: 0;
    isolation: isolate;
}

.info-image::after {
    content: "";
    position: absolute;
    inset: 18px -16px -16px 18px;
    border: 1px solid color-mix(in srgb, var(--primary) 42%, transparent);
    z-index: -1;
}

.info-photo-frame {
    position: relative;
    height: clamp(430px, 50vw, 640px);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--primary) 28%, transparent);
    box-shadow: 0 26px 70px rgba(0, 0, 0, .34);
}

.info-local-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .36s ease, visibility .36s ease;
}

.info-local-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.info-local-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.info-local-controls {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(12px, 2vw, 22px);
    pointer-events: none;
}

.info-local-btn {
    position: relative;
    width: 30px;
    height: 42px;
    padding: 0;
    border: 0;
    background: transparent;
    color: transparent;
    cursor: pointer;
    pointer-events: auto;
    font-size: 0;
}

.info-local-btn::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 10px;
    height: 10px;
    border-top: 3px solid rgba(255, 255, 255, .96);
    border-right: 3px solid rgba(255, 255, 255, .96);
    filter:
        drop-shadow(0 0 3px rgba(255, 255, 255, .96))
        drop-shadow(0 0 9px rgba(255, 225, 160, .84));
    transition: transform .18s ease, filter .18s ease;
}

.info-local-btn[data-local-prev]::before {
    transform: translate(-35%, -50%) rotate(-135deg);
}

.info-local-btn[data-local-next]::before {
    transform: translate(-65%, -50%) rotate(45deg);
}

.info-local-btn:hover::before {
    filter:
        drop-shadow(0 0 5px rgba(255, 255, 255, 1))
        drop-shadow(0 0 14px rgba(255, 225, 160, .95));
}

.info-local-btn[data-local-prev]:hover::before {
    transform: translate(-45%, -50%) rotate(-135deg);
}

.info-local-btn[data-local-next]:hover::before {
    transform: translate(-55%, -50%) rotate(45deg);
}

.info-badge {
    position: absolute;
    top: -20px;
    left: -18px;
    z-index: 2;
    padding: 10px 18px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--footer) 78%, transparent);
    border: 1px solid color-mix(in srgb, var(--primary) 42%, transparent);
    color: var(--primary);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .24);
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.info-image figcaption {
    position: absolute;
    left: clamp(18px, 3vw, 34px);
    bottom: clamp(18px, 3vw, 34px);
    display: grid;
    gap: 8px;
    max-width: min(520px, calc(100% - 44px));
}

.info-image figcaption span {
    color: var(--local-title-color);
    font-family: var(--local-title-font);
    font-size: clamp(2.3rem, 5vw, 4.8rem);
    font-weight: 900;
    line-height: .9;
    text-shadow:
        0 0 3px rgba(255, 255, 255, .86),
        0 0 8px var(--local-title-glow),
        0 0 18px color-mix(in srgb, var(--local-title-color) 48%, transparent),
        0 6px 16px rgba(0, 0, 0, .36);
}

.info-image figcaption strong {
    color: rgba(255, 255, 255, .92);
    font-size: clamp(1rem, 1.6vw, 1.25rem);
    font-weight: 800;
    text-shadow: 0 10px 24px rgba(0, 0, 0, .5);
}

.info-content {
    display: grid;
    gap: 28px;
    max-width: none;
}

.info-block {
    padding: 0 0 28px;
    border-bottom: 1px solid rgba(255, 255, 255, .11);
}

.info-block h3 {
    position: relative;
    margin-bottom: 14px;
    padding-left: 16px;
    color: var(--primary);
    font-size: clamp(1.05rem, 1.8vw, 1.35rem);
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.info-block h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    bottom: 2px;
    width: 4px;
    background: var(--primary);
}

.info-block p {
    color: rgba(255, 255, 255, .76);
    font-size: 1rem;
    line-height: 1.55;
}

.info-main,
.info-phone {
    color: #fff !important;
    font-size: clamp(1.25rem, 2vw, 1.75rem) !important;
    font-weight: 900;
    line-height: 1.25 !important;
}

.info-hours {
    display: grid;
    gap: 10px;
}

.info-hours p {
    display: flex;
    justify-content: space-between;
    gap: 18px;
}

.info-hours span {
    color: rgba(255, 255, 255, .68);
}

.info-hours strong {
    color: #fff;
    text-align: right;
}

.map-section {
    background: var(--bg-alt);
}

.map {
    display: block;
}

/* Footer */
.site-footer {
    padding: 64px 0;
    background: var(--footer);
    color: #fff;
}

.site-footer .container {
    width: min(1480px, calc(100% - 80px));
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr .7fr 1fr .7fr;
    gap: 32px;
}

.footer-brand {
    text-align: left;
}

.footer-brand img {
    width: 130px;
    margin: 0 0 16px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    max-width: 380px;
}

.site-footer h3 {
    margin-bottom: 14px;
    color: #fff;
}

.site-footer a,
.site-footer p {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, .80);
}

.footer-small {
    margin-top: 18px;
    font-size: .86rem;
}

/* Feedback page */
.feedback-hero {
    padding: 84px 0 54px;
    background: var(--bg);
}

.feedback-hero p {
    max-width: 780px;
    margin-top: 16px;
}

.faq-section {
    padding: 68px 0 28px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
    gap: 16px;
    margin-top: 24px;
}

details {
    padding: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--card);
    border: 1px solid var(--border);
    box-shadow: 0 12px 28px rgba(46, 27, 21, .06);
}

summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 58px;
    padding: 20px 22px;
    cursor: pointer;
    color: var(--text);
    font-weight: 900;
    list-style: none;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: "+";
    flex: 0 0 auto;
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 900;
    line-height: 1;
}

details[open] summary::after {
    content: "-";
}

details p {
    padding: 0 22px 22px;
    margin: 0;
}

details:not([open]) p {
    display: none;
}

.feedback-form-section {
    padding: 40px 0 90px;
}

.feedback-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 34px;
    align-items: start;
}

.login-card,
.feedback-form {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: clamp(24px, 3vw, 36px);
    box-shadow: var(--shadow);
}

.login-card {
    display: grid;
    align-content: start;
    gap: 18px;
}

.login-card .eyebrow {
    margin-bottom: 0;
}

.login-card h2 {
    max-width: 520px;
}

.login-card p:not(.eyebrow) {
    max-width: 540px;
    margin: 0;
}

.feedback-form {
    display: grid;
    gap: 20px;
}

.feedback-alerts {
    display: grid;
    gap: 10px;
}

.feedback-alert {
    margin: 0;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--bg-soft);
    color: var(--text);
    font-weight: 800;
    line-height: 1.45;
}

.feedback-alert p {
    margin: 0;
    color: inherit;
}

.feedback-alert--success {
    border-color: color-mix(in srgb, #2f8f46 36%, var(--border));
    background: color-mix(in srgb, #2f8f46 12%, #fff);
    color: #205f31;
}

.feedback-alert--error {
    border-color: color-mix(in srgb, #b3261e 34%, var(--border));
    background: color-mix(in srgb, #b3261e 10%, #fff);
    color: #8a1c16;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.feedback-form label {
    display: grid;
    gap: 10px;
    color: var(--text);
    font-weight: 600;
}

.feedback-form input,
.feedback-form select,
.feedback-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: #fff;
    color: var(--text);
}

.feedback-form input:disabled,
.feedback-form select:disabled,
.feedback-form textarea:disabled,
.feedback-form button:disabled {
    background: #f3f0eb;
    color: #87766c;
    cursor: not-allowed;
}

.feedback-form textarea {
    resize: none;
}

.feedback-field-error {
    color: #8a1c16;
    font-size: .88rem;
    font-weight: 800;
    line-height: 1.35;
}

.feedback-attachments {
    display: grid;
    gap: 10px;
    margin-top: -4px;
}

.feedback-attachments-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 62px;
    padding: 12px 14px;
    border: 1px dashed var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg-soft);
}

.feedback-attachments-row span {
    display: block;
    color: var(--text);
    font-weight: 800;
}

.feedback-attachments-row small {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: .82rem;
    font-weight: 700;
}

.feedback-form .feedback-attach-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    flex: 0 0 auto;
    border: 0;
    border-radius: var(--radius-sm);
    background: var(--primary);
    color: #fff;
    box-shadow: 0 10px 22px rgba(224, 128, 71, .24);
    cursor: pointer;
    font-size: 1.7rem;
    font-weight: 900;
    line-height: 1;
}

.feedback-form .feedback-attach-button:hover {
    background: var(--primary-dark);
}

.feedback-form .feedback-attach-button span {
    position: relative;
    display: block;
    width: 18px;
    height: 18px;
    color: transparent;
    font-size: 0;
    line-height: 0;
}

.feedback-form .feedback-attach-button span::before,
.feedback-form .feedback-attach-button span::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 4px;
    border-radius: 999px;
    background: #fff;
    transform: translate(-50%, -50%);
}

.feedback-form .feedback-attach-button span::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.feedback-form .feedback-attach-button input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    border: 0;
    opacity: 0;
    pointer-events: none;
}

.feedback-attachments-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feedback-attachment-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    max-width: 100%;
    padding: 7px 8px 7px 10px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: #fff;
    color: var(--text);
    font-size: .86rem;
    font-weight: 800;
}

.feedback-attachment-chip span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.feedback-attachment-chip button {
    display: inline-grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border: 0;
    border-radius: 50%;
    background: rgba(224, 128, 71, .14);
    color: var(--primary-dark);
    cursor: pointer;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1;
}

.feedback-attachment-chip button:hover {
    background: var(--primary);
    color: #fff;
}

.form-note {
    font-size: .92rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .featured-grid,
    .footer-grid,
    .points-layout,
    .info-grid,
    .feedback-grid {
        grid-template-columns: 1fr 1fr;
    }

    .menu-pdf-heading {
        flex-direction: column;
    }

}

@media (max-width: 860px) {
    .nav-toggle-label {
        display: inline-flex;
        width: 42px;
        height: 42px;
        align-items: center;
        justify-content: center;
        border-radius: var(--radius-sm);
        border: 1px solid var(--border);
        cursor: pointer;
        font-size: 1.2rem;
    }

    .nav-panel {
        position: absolute;
        top: 86px;
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        border-radius: var(--radius-lg);
        background: var(--card);
        border: 1px solid var(--border);
        box-shadow: var(--shadow);
    }

    .nav-links,
    .nav-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .nav-links {
        gap: 14px;
    }

    #nav-toggle:checked ~ .nav-panel {
        display: flex;
    }

    .featured-grid,
    .footer-grid,
    .faq-grid,
    .feedback-grid,
    .form-row,
    .points-layout,
    .info-grid {
        grid-template-columns: 1fr;
    }

    .section-heading--featured h2 {
        white-space: normal;
    }

    .points-steps {
        grid-template-columns: 1fr;
    }

    .points-visual {
        grid-template-columns: 1fr;
    }

    .step-callout {
        display: none;
    }

    .info-image,
    .info-photo-frame {
        min-height: 360px;
        height: 360px;
    }

    .info-image::after {
        inset: 12px -8px -8px 12px;
    }

    .info-badge {
        left: 12px;
    }

    .info-content {
        position: static;
    }

    .info-hours p {
        flex-direction: column;
        gap: 2px;
    }

    .info-hours strong {
        text-align: left;
    }

    .menu-pdf-viewer {
        width: min(100% - 20px, 1180px);
        padding: 14px;
    }

    .craving-notice {
        width: min(100% - 20px, 560px);
        min-height: 76px;
        margin: 54px 0 0;
        padding: 14px 18px;
        gap: 16px;
    }

    .craving-loader {
        width: 34px;
        height: 34px;
    }

    .craving-loader::before {
        width: 15px;
        height: 15px;
        margin-top: 10px;
        box-shadow: 0 0 0 2px var(--primary);
    }

    .craving-loader::after {
        width: 22px;
        height: 13px;
        margin-top: 14px;
    }

    .menu-pdf-toolbar {
        gap: 8px;
    }

    .menu-pdf-divider {
        display: none;
    }

    .menu-pdf-frame {
        height: 620px;
        max-height: 72vh;
        padding: 56px 10px;
        overflow: auto;
    }

    .promo-stage--wide,
    .promo-banner {
        min-height: 320px;
        height: 320px;
    }

    .promo-banner {
        padding: 20px;
    }

    .promo-banner h2 {
        font-size: 2rem;
    }
}
