:root {
    --bg: #fffaf1;
    --bg-soft: #eef7ee;
    --surface: rgba(255, 251, 241, 0.92);
    --surface-strong: #ffffff;
    --text: #20352f;
    --muted: #53655f;
    --primary: #1f7f76;
    --primary-dark: #155c56;
    --accent: #f2c866;
    --accent-soft: #fff0bf;
    --danger: #df5b4f;
    --line: rgba(32, 53, 47, 0.12);
    --shadow: 0 22px 50px rgba(27, 60, 52, 0.12);
    --radius-lg: 30px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --container: min(1180px, calc(100vw - 32px));
    --header-height: 88px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", system-ui, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(242, 200, 102, 0.18), transparent 28%),
        radial-gradient(circle at bottom right, rgba(31, 127, 118, 0.08), transparent 24%),
        var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

button {
    cursor: pointer;
}

button:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

:focus-visible {
    outline: 3px solid rgba(223, 91, 79, 0.4);
    outline-offset: 3px;
}

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

.skip-link {
    position: absolute;
    left: 12px;
    top: -50px;
    background: var(--primary-dark);
    color: #fff;
    padding: 10px 16px;
    border-radius: 999px;
    z-index: 1000;
}

.skip-link:focus {
    top: 12px;
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.section {
    padding: 88px 0;
}

.section--tint {
    background: linear-gradient(180deg, rgba(238, 247, 238, 0.75), rgba(255, 250, 241, 0.95));
}

.menu-section {
    background:
        radial-gradient(circle at 15% 0%, rgba(255, 255, 255, 0.7), transparent 32%),
        radial-gradient(circle at 85% 12%, rgba(31, 127, 118, 0.08), transparent 30%),
        linear-gradient(180deg, #f3ebde 0%, #efe5d5 100%);
}

.menu-section > .container {
    padding: 28px;
    border-radius: 48px;
    background: linear-gradient(145deg, #f8f2e8 0%, #e7dbc9 100%);
    border: 1px solid rgba(224, 210, 190, 0.92);
    box-shadow:
        18px 18px 30px rgba(108, 84, 55, 0.12),
        -12px -12px 20px rgba(255, 255, 255, 0.86);
}

.menu-section .section-heading {
    margin-bottom: 26px;
}

.how-order,
.quick-links {
    position: relative;
    isolation: isolate;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.72), transparent 36%),
        radial-gradient(circle at bottom right, rgba(31, 127, 118, 0.08), transparent 34%),
        linear-gradient(180deg, #f5efe4 0%, #ebe1d2 100%);
}

.how-order::before,
.quick-links::before {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 36px;
    pointer-events: none;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.02)),
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.28), transparent 28%);
    box-shadow:
        inset 10px 10px 18px rgba(112, 86, 54, 0.08),
        inset -10px -10px 18px rgba(255, 255, 255, 0.7);
    z-index: 0;
}

.how-order > .container,
.quick-links > .container {
    position: relative;
    z-index: 1;
}

.section-heading {
    max-width: 780px;
    margin-bottom: 34px;
}

.section-heading__eyebrow,
.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(31, 127, 118, 0.12);
    color: var(--primary-dark);
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0 0 14px;
    font-family: "Baloo 2", "Trebuchet MS", cursive;
    line-height: 1.05;
}

h1 {
    font-size: clamp(2.8rem, 8vw, 5.4rem);
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h3 {
    font-size: clamp(1.3rem, 3vw, 1.75rem);
}

p {
    margin: 0 0 1rem;
    color: var(--muted);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 20px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 800;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, filter 0.25s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
    filter: brightness(1.02) saturate(1.04);
}

.button::before,
.button::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
}

.button::before {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0) 55%);
    opacity: 0.85;
}

.button::after {
    inset: 2px;
    opacity: 0.9;
    background: linear-gradient(
        130deg,
        rgba(255, 255, 255, 0.16) 0%,
        rgba(255, 255, 255, 0.08) 28%,
        rgba(255, 255, 255, 0) 55%,
        rgba(0, 0, 0, 0.06) 100%
    );
    mix-blend-mode: soft-light;
    transform: translateX(-18%);
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.button > * {
    position: relative;
    z-index: 1;
}

.button:hover::after,
.button:focus-visible::after {
    transform: translateX(0);
}

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

.button:active::after {
    transform: translateX(0) scale(0.98);
}

.add-to-cart {
    --white: #fffaf1;
    --cream-100: #f6efe1;
    --cream-200: #e3d7c3;
    --cream-300: #d7c5ab;
    --green-400: #1f7f76;
    --green-500: #155c56;
    --radius: 18px;
    position: relative;
    width: min(320px, 100%);
    height: 80px;
    padding: 0;
    border: 0;
    outline: none;
    cursor: pointer;
    background: transparent;
    font-size: 23px;
    font-family: Arial, sans-serif;
    letter-spacing: -1px;
    border-radius: var(--radius);
    transform: rotate(357deg) skewX(-2deg);
    box-shadow: none;
    isolation: isolate;
}

.add-to-cart::before,
.add-to-cart::after {
    content: none;
}

.add-to-cart .bg {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    filter: blur(1px);
}

.add-to-cart .bg::before,
.add-to-cart .bg::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: calc(var(--radius) * 1.1);
    background: var(--green-500);
}

.add-to-cart .bg::before {
    filter: blur(5px);
    transition: all 0.3s ease;
    box-shadow:
        -7px 6px 0 0 rgb(21 92 86 / 40%),
        -14px 12px 0 0 rgb(21 92 86 / 30%),
        -21px 18px 4px 0 rgb(21 92 86 / 25%),
        -28px 24px 8px 0 rgb(21 92 86 / 15%),
        -35px 30px 12px 0 rgb(21 92 86 / 12%),
        -42px 36px 16px 0 rgb(21 92 86 / 8%),
        -56px 42px 20px 0 rgb(21 92 86 / 5%);
}

.add-to-cart .wrap {
    border-radius: inherit;
    overflow: hidden;
    height: 100%;
    transform: translate(6px, -6px);
    padding: 3px;
    background: linear-gradient(to bottom, var(--cream-100) 0%, var(--green-400) 100%);
    position: relative;
    transition: all 0.3s ease;
}

.add-to-cart .outline {
    position: absolute;
    overflow: hidden;
    inset: 0;
    opacity: 0;
    outline: none;
    border-radius: inherit;
    transition: all 0.4s ease;
}

.add-to-cart .outline::before {
    content: "";
    position: absolute;
    inset: 2px;
    width: 120px;
    height: 300px;
    margin: auto;
    background: linear-gradient(to right, transparent 0%, white 50%, transparent 100%);
    animation: spin 3s linear infinite;
    animation-play-state: paused;
}

.add-to-cart .content {
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    position: relative;
    height: 100%;
    width: 100%;
    gap: 16px;
    padding: 0 18px;
    border-radius: calc(var(--radius) * 0.85);
    font-weight: 600;
    transition: all 0.3s ease;
    background: linear-gradient(to bottom, var(--cream-200) 0%, var(--green-400) 100%);
    box-shadow:
        inset -2px 12px 11px -5px var(--cream-300),
        inset 1px -3px 11px 0 rgb(0 0 0 / 35%);
}

.add-to-cart .content::before {
    content: "";
    inset: 0;
    position: absolute;
    z-index: 10;
    width: 80%;
    top: 45%;
    bottom: 35%;
    opacity: 0.7;
    margin: auto;
    background: linear-gradient(to bottom, transparent, var(--green-400));
    filter: brightness(1.3) blur(5px);
}

.add-to-cart .char {
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.add-to-cart .char span {
    display: block;
    color: transparent;
    position: relative;
}

.add-to-cart .char span:nth-child(5) {
    margin-left: 1px;
}

.add-to-cart .char.state-1 span:nth-child(5) {
    margin-right: -1px;
}

.add-to-cart .char.state-1 span {
    animation: charAppear 1.2s ease backwards calc(var(--i) * 0.03s);
}

.add-to-cart .char.state-1 span::before,
.add-to-cart .char span::after {
    content: attr(data-label);
    position: absolute;
    color: var(--white);
    text-shadow: -1px 1px 2px var(--green-500);
    left: 0;
}

.add-to-cart .char span::before {
    opacity: 0;
    transform: translateY(-100%);
}

.add-to-cart .char.state-2 {
    position: absolute;
    left: 50%;
    opacity: 0;
    transform: translateX(-50%) translateY(18%);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.add-to-cart .char.state-2 span::after {
    opacity: 1;
}

.add-to-cart.is-added .char.state-1 {
    opacity: 0;
    transform: translateY(-18%);
}

.add-to-cart.is-added .char.state-2 {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.add-to-cart:not(.is-added) .char.state-1 {
    opacity: 1;
    transform: translateY(0);
}

.add-to-cart .icon {
    animation: resetArrow 0.8s cubic-bezier(0.7, -0.5, 0.3, 1.2) forwards;
    z-index: 10;
}

.add-to-cart .icon div,
.add-to-cart .icon div::before,
.add-to-cart .icon div::after {
    height: 3px;
    border-radius: 1px;
    background-color: var(--white);
}

.add-to-cart .icon div::before,
.add-to-cart .icon div::after {
    content: "";
    position: absolute;
    right: 0;
    transform-origin: center right;
    width: 14px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.add-to-cart .icon div {
    position: relative;
    width: 24px;
    box-shadow: -2px 2px 5px var(--green-400);
    transform: scale(0.9);
    background: linear-gradient(to bottom, var(--white), var(--cream-100));
    animation: swingArrow 1s ease-in-out infinite;
    animation-play-state: paused;
}

.add-to-cart .icon div::before {
    transform: rotate(44deg);
    top: 1px;
    box-shadow: 1px -2px 3px -1px var(--green-400);
    animation: rotateArrowLine 1s linear infinite;
    animation-play-state: paused;
}

.add-to-cart .icon div::after {
    bottom: 1px;
    transform: rotate(316deg);
    box-shadow: -2px 2px 3px 0 var(--green-400);
    background: linear-gradient(200deg, var(--white), var(--cream-100));
    animation: rotateArrowLine2 1s linear infinite;
    animation-play-state: paused;
}

.add-to-cart .path {
    position: absolute;
    z-index: 12;
    bottom: 0;
    left: 0;
    right: 0;
    stroke-dasharray: 150 480;
    stroke-dashoffset: 150;
    pointer-events: none;
}

.add-to-cart .splash {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    stroke-dasharray: 60 60;
    stroke-dashoffset: 60;
    transform: translate(-15%, -33%);
    stroke: var(--cream-200);
}

.add-to-cart:hover .wrap {
    transform: translate(8px, -8px);
}

.add-to-cart:hover .outline {
    opacity: 1;
}

.add-to-cart:hover .outline::before,
.add-to-cart:hover .icon div::before,
.add-to-cart:hover .icon div::after,
.add-to-cart:hover .icon div {
    animation-play-state: running;
}

.add-to-cart:hover .char.state-1 span::before {
    animation: charAppear 0.7s ease calc(var(--i) * 0.03s);
}

.add-to-cart:hover .char.state-1 span::after {
    opacity: 1;
    animation: charDisappear 0.7s ease calc(var(--i) * 0.03s);
}

.add-to-cart:active .bg::before {
    filter: blur(5px);
    opacity: 0.7;
    box-shadow:
        -7px 6px 0 0 rgb(21 92 86 / 40%),
        -14px 12px 0 0 rgb(21 92 86 / 25%),
        -21px 18px 4px 0 rgb(21 92 86 / 15%);
}

.add-to-cart:active .content {
    box-shadow:
        inset -1px 12px 8px -5px rgba(255, 248, 222, 0.4),
        inset 0px -3px 8px 0px var(--cream-300);
}

.add-to-cart:active .outline {
    opacity: 0;
}

.add-to-cart:active .wrap {
    transform: translate(3px, -3px);
}

.add-to-cart:active .splash {
    animation: splash 0.8s cubic-bezier(0.3, 0, 0, 1) forwards 0.05s;
}

.add-to-cart:focus .path {
    animation: path 1.6s ease forwards 0.2s;
}

.add-to-cart:focus .icon {
    animation: arrow 1s cubic-bezier(0.7, -0.5, 0.3, 1.5) forwards;
}

.add-to-cart:focus .char.state-1 span,
.add-to-cart:focus .char.state-2 span::after {
    animation: charDisappear 0.5s ease forwards calc(var(--i) * 0.03s);
}

.add-to-cart:focus .char.state-2 span::after {
    animation: charAppear 1s ease backwards calc(var(--i) * 0.03s);
}

.add-to-cart:disabled {
    opacity: 0.55;
    transform: rotate(357deg) skewX(-2deg);
}

.add-to-cart:disabled .outline,
.add-to-cart:disabled .icon div,
.add-to-cart:disabled .icon div::before,
.add-to-cart:disabled .icon div::after,
.add-to-cart:disabled .outline::before {
    animation-play-state: paused;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes charAppear {
    0% {
        transform: translateY(50%);
        opacity: 0;
        filter: blur(20px);
    }
    20% {
        transform: translateY(70%);
        opacity: 1;
    }
    50% {
        transform: translateY(-15%);
        opacity: 1;
        filter: blur(0);
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes charDisappear {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(-70%);
        opacity: 0;
        filter: blur(3px);
    }
}

@keyframes arrow {
    0% {
        opacity: 1;
    }
    50% {
        transform: translateX(60px);
        opacity: 0;
    }
    51% {
        transform: translateX(-200px);
        opacity: 0;
    }
    100% {
        transform: translateX(-128px);
        opacity: 1;
    }
}

@keyframes swingArrow {
    50% {
        transform: translateX(5px) scale(0.9);
    }
}

@keyframes rotateArrowLine {
    50% {
        transform: rotate(30deg);
    }
    80% {
        transform: rotate(55deg);
    }
}

@keyframes rotateArrowLine2 {
    50% {
        transform: rotate(330deg);
    }
    80% {
        transform: rotate(300deg);
    }
}

@keyframes resetArrow {
    0% {
        transform: translateX(-128px);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes path {
    from {
        stroke: white;
    }
    to {
        stroke-dashoffset: -480;
        stroke: #c6e0fe;
    }
}

@keyframes splash {
    to {
        stroke-dasharray: 2 60;
        stroke-dashoffset: -60;
    }
}

.button--primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    box-shadow:
        7px 7px 9px rgba(21, 92, 86, 0.28),
        -7px -7px 9px rgba(255, 255, 255, 0.14);
}

.button--soft {
    background: var(--accent-soft);
    color: var(--text);
    border-color: rgba(242, 200, 102, 0.45);
    box-shadow:
        7px 7px 9px rgba(150, 117, 34, 0.18),
        -7px -7px 9px rgba(255, 255, 255, 0.45);
}

.button--ghost {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.38);
    backdrop-filter: blur(10px);
    box-shadow:
        7px 7px 9px rgba(10, 40, 36, 0.16),
        -7px -7px 9px rgba(255, 255, 255, 0.08);
}

[data-clear-cart].button--ghost {
    color: #000;
}

.button--small {
    min-height: 42px;
    padding-inline: 18px;
}

.icon-button {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: rgba(31, 127, 118, 0.12);
    color: var(--primary-dark);
    font-size: 1.7rem;
}

.topbar {
    background: var(--primary-dark);
    color: #fff;
    font-size: 0.92rem;
}

.topbar__inner,
.site-header__inner,
.hero__actions,
.menu-card__bottom,
.card-meta,
.menu-card__top,
.featured-grid,
.quick-links__grid,
.steps-grid,
.testimonial-grid,
.footer-grid,
.footer-bottom,
.form-grid,
.contact-form__actions,
.cart-drawer__header,
.cart-drawer__footer,
.hero__highlights,
.hero__content,
.split-layout,
.menu-toolbar,
.mobile-order-bar,
.hero__cards {
    display: flex;
    gap: 16px;
}

.topbar__inner,
.site-header__inner,
.footer-bottom,
.cart-drawer__header,
.cart-drawer__footer,
.menu-card__bottom,
.card-meta,
.menu-card__top,
.contact-form__actions {
    justify-content: space-between;
    align-items: center;
}

.menu-card__bottom {
    align-items: center;
}

.menu-card__bottom .add-to-cart {
    margin-left: auto;
    margin-right: auto;
}

.topbar__inner {
    padding: 10px 0;
    flex-wrap: wrap;
}

.topbar p,
.topbar a {
    color: #fff;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
    background: rgba(255, 250, 241, 0.92);
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 30px rgba(25, 62, 55, 0.12);
}

.site-header__inner {
    min-height: var(--header-height);
}

.site-brand img {
    width: 156px;
    height: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 14px;
}

.site-nav a {
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
    background: rgba(31, 127, 118, 0.12);
    color: var(--primary-dark);
}

.menu-toggle {
    display: none;
    align-items: center;
    gap: 10px;
    border: 0;
    background: transparent;
    color: var(--text);
}

.menu-toggle__icon,
.menu-toggle__icon::before,
.menu-toggle__icon::after {
    width: 24px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    display: block;
    position: relative;
}

.menu-toggle__icon::before,
.menu-toggle__icon::after {
    content: "";
    position: absolute;
    left: 0;
}

.menu-toggle__icon::before {
    top: -7px;
}

.menu-toggle__icon::after {
    top: 7px;
}

.hero {
    position: relative;
    min-height: calc(100vh - 36px);
    display: grid;
    place-items: center;
    color: #fff;
    overflow: clip;
}

.hero__media,
.hero__poster {
    position: absolute;
    inset: 0;
}

.hero__poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__poster--mobile {
    display: none;
}

.hero__content {
    position: relative;
    z-index: 2;
    justify-content: center;
    align-items: center;
    padding-top: 88px;
    padding-bottom: 56px;
}

.hero__copy {
    width: min(840px, 100%);
    text-align: center;
    margin-top: 88px;
    margin-inline: auto;
    position: relative;
    z-index: 3;
}

.hero__title {
    display: inline-grid;
    gap: 6px;
    transform: translateY(-300px);
    margin: 0 auto;
    color: #fffaf2;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.5),
        0 0 2px rgba(0, 0, 0, 0.7);
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.45);
    paint-order: stroke fill;
}

.hero__title span {
    display: block;
}

.hero__copy p {
    font-family: "Baloo 2", "Trebuchet MS", cursive;
    font-size: 1.32rem;
    font-weight: 900;
    color: #111;
    max-width: 52ch;
    margin-inline: auto;
    margin-top: 10px;
    line-height: 1.18;
    letter-spacing: 0.05em;
    text-shadow: none;
}

.hero__actions {
    justify-content: center;
}

.hero__ingredients {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    transform: translate3d(var(--parallax-x, 0px), var(--parallax-y, 0px), 0);
    transition: transform 120ms linear;
}

.hero-ingredient {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.96;
    filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.18)) saturate(1.04);
    transform: translate3d(var(--ix, 0px), var(--iy, 0px), 0) scale(var(--is, 1));
    transition: transform 180ms ease;
    will-change: transform;
}

.hero-ingredient--tomate { object-position: 88% 18%; }
.hero-ingredient--pepperoni { object-position: 20% 38%; }
.hero-ingredient--cebolla { object-position: 8% 58%; }
.hero-ingredient--champinon { object-position: 42% 18%; }
.hero-ingredient--tocineta { object-position: 20% 74%; }
.hero-ingredient--aceitunas { object-position: 78% 76%; }
.hero-ingredient--albahaca { object-position: 90% 42%; }

.hero__seal {
    display: inline-flex;
    margin-left: 12px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(223, 91, 79, 0.2);
    color: #fff5ef;
    font-weight: 800;
}

.hero__actions {
    flex-wrap: wrap;
    margin-block: 24px;
}

.hero__highlights {
    padding: 0;
    margin: 0;
    list-style: none;
    flex-wrap: wrap;
}

.hero__highlights li {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
}

.hero__cards {
    flex-direction: column;
    width: min(360px, 100%);
}

.hero-card,
.quick-link,
.featured-card,
.menu-card,
.step-card,
.testimonial,
.story-card,
.map-card,
.hours-card,
.contact-form,
.cart-drawer__dialog,
.hero-card--accent,
.legal-page__inner,
.page-hero,
.final-cta__inner {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: var(--shadow);
    border-radius: var(--radius-lg);
}

.featured-card,
.menu-card {
    border-radius: 45px;
    border: 1px solid rgba(223, 214, 195, 0.82);
    background: linear-gradient(145deg, #f6efe1, #e3d7c3);
    box-shadow:
        14px 14px 22px rgba(58, 42, 28, 0.38),
        -8px -8px 12px rgba(255, 255, 255, 0.82);
}

.hero-card,
.hero-card--accent {
    padding: 22px;
    color: var(--text);
    backdrop-filter: blur(16px);
}

.hero-card--accent {
    background: linear-gradient(135deg, var(--accent-soft), rgba(255, 250, 241, 0.9));
}

.hero__scroll {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-weight: 700;
}

.quick-links__grid,
.featured-grid,
.steps-grid,
.testimonial-grid,
.footer-grid,
.form-grid,
.split-layout,
.menu-grid {
    flex-wrap: wrap;
}

.quick-link {
    flex: 1 1 220px;
    padding: 28px 24px;
    text-align: center;
}

.quick-link,
.step-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(224, 210, 190, 0.95);
    border-radius: 34px;
    background: linear-gradient(145deg, #fdf8ef 0%, #e7dccb 100%);
    box-shadow:
        12px 12px 20px rgba(108, 84, 55, 0.16),
        -10px -10px 18px rgba(255, 255, 255, 0.76);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.quick-link::before,
.step-card::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.08));
    opacity: 0.7;
}

.quick-link:hover,
.step-card:hover {
    transform: translateY(-8px);
    box-shadow:
        16px 16px 24px rgba(108, 84, 55, 0.2),
        -12px -12px 20px rgba(255, 255, 255, 0.86);
}

.quick-link strong {
    display: block;
    font-size: clamp(1.15rem, 2.2vw, 1.5rem);
    line-height: 1.15;
    font-family: "Baloo 2", "Trebuchet MS", cursive;
    font-weight: 700;
}

.quick-link span {
    display: block;
    margin-top: 6px;
    font-size: 1rem;
    font-family: "Baloo 2", "Trebuchet MS", cursive;
    font-weight: 600;
}

.quick-link strong,
.quick-link span,
.step-card h3,
.step-card p,
.step-card span {
    position: relative;
    z-index: 1;
}

.featured-card,
.menu-card,
.testimonial,
.step-card,
.story-card,
.map-card {
    overflow: hidden;
}

.featured-grid,
.testimonial-grid,
.steps-grid {
    gap: 24px;
}

.featured-card {
    flex: 1 1 320px;
}

.featured-card img,
.story-card img,
.map-card img,
.menu-card__media img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.featured-card__body,
.menu-card__content,
.step-card,
.testimonial,
.story-card__content,
.map-card p,
.legal-page__inner,
.final-cta__inner,
.page-hero {
    padding: 24px;
}

.menu-toolbar {
    display: grid;
    gap: 16px;
    margin-bottom: 28px;
    padding: 20px;
    border-radius: 36px;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.72), transparent 34%),
        linear-gradient(145deg, #fdf8ef 0%, #e8dccd 100%);
    border: 1px solid rgba(224, 210, 190, 0.95);
    box-shadow:
        14px 14px 24px rgba(108, 84, 55, 0.12),
        -10px -10px 18px rgba(255, 255, 255, 0.82);
}

.menu-toolbar .search-input {
    display: block;
}

.search-input input,
.contact-form input,
.contact-form textarea,
.contact-form select,
.cart-form input,
.cart-form textarea,
.cart-form select {
    width: 100%;
    border: 1px solid rgba(224, 210, 190, 0.95);
    border-radius: 18px;
    background: linear-gradient(145deg, #fdf8ef 0%, #ece1d0 100%);
    color: var(--text);
    padding: 14px 16px;
    box-shadow:
        inset 5px 5px 10px rgba(108, 84, 55, 0.08),
        inset -5px -5px 10px rgba(255, 255, 255, 0.92);
}

.search-input input:focus,
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus,
.cart-form input:focus,
.cart-form textarea:focus,
.cart-form select:focus {
    outline: none;
    border-color: rgba(31, 127, 118, 0.42);
    box-shadow:
        inset 5px 5px 10px rgba(108, 84, 55, 0.08),
        inset -5px -5px 10px rgba(255, 255, 255, 0.92),
        0 0 0 4px rgba(31, 127, 118, 0.12);
}

.menu-category-scroller {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 12px;
    border-radius: 28px;
    background: linear-gradient(145deg, #ece1d0 0%, #f8f2e8 100%);
    border: 1px solid rgba(224, 210, 190, 0.82);
    box-shadow:
        inset 8px 8px 16px rgba(108, 84, 55, 0.08),
        inset -8px -8px 16px rgba(255, 255, 255, 0.88);
    scrollbar-width: thin;
}

.category-chip {
    flex: 0 0 auto;
    border: 1px solid rgba(224, 210, 190, 0.95);
    border-radius: 999px;
    background: linear-gradient(145deg, #fdf8ef 0%, #e8dccd 100%);
    padding: 11px 18px;
    font-weight: 700;
    box-shadow:
        8px 8px 14px rgba(108, 84, 55, 0.12),
        -8px -8px 14px rgba(255, 255, 255, 0.82);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.category-chip.is-active {
    background: linear-gradient(145deg, #1f7f76, #166961);
    color: #fff;
    border-color: rgba(22, 105, 97, 0.85);
    box-shadow:
        inset 4px 4px 10px rgba(0, 0, 0, 0.18),
        inset -4px -4px 10px rgba(255, 255, 255, 0.1);
}

.category-chip:hover {
    transform: translateY(-2px);
}

.menu-toolbar .search-input input:hover,
.category-chip:hover {
    box-shadow:
        10px 10px 16px rgba(108, 84, 55, 0.14),
        -10px -10px 16px rgba(255, 255, 255, 0.88);
}

.menu-grid {
    display: grid;
    gap: 22px;
    padding: 18px;
    border-radius: 40px;
    background: linear-gradient(145deg, #efe5d6 0%, #f8f1e7 100%);
    border: 1px solid rgba(224, 210, 190, 0.82);
    box-shadow:
        inset 10px 10px 18px rgba(108, 84, 55, 0.08),
        inset -10px -10px 18px rgba(255, 255, 255, 0.9);
}

.menu-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.menu-card {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    border-radius: 42px;
    border: 1px solid rgba(224, 210, 190, 0.95);
    background: linear-gradient(145deg, #fdf8ef 0%, #e7dccb 100%);
    box-shadow:
        14px 14px 24px rgba(108, 84, 55, 0.16),
        -10px -10px 18px rgba(255, 255, 255, 0.78);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.menu-card::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.05));
    opacity: 0.72;
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow:
        18px 18px 28px rgba(108, 84, 55, 0.2),
        -12px -12px 20px rgba(255, 255, 255, 0.86);
}

.menu-card:active,
.featured-card:active {
    transform: translateY(-2px);
    box-shadow:
        inset 5px 5px 10px rgba(94, 77, 58, 0.16),
        inset -5px -5px 10px rgba(255, 255, 255, 0.86);
}

.menu-card__media {
    position: relative;
    padding: 16px 16px 0;
}

.menu-card__media img {
    border-radius: 28px;
    box-shadow:
        10px 10px 18px rgba(108, 84, 55, 0.14),
        -8px -8px 14px rgba(255, 255, 255, 0.82);
}

.menu-card__content {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 18px 18px 20px;
    background: linear-gradient(180deg, rgba(255, 250, 241, 0.72), rgba(232, 222, 206, 0.96));
}

.menu-card__top,
.menu-card__bottom {
    padding: 10px 12px;
    border-radius: 22px;
    background: linear-gradient(145deg, #fdf8ef 0%, #ece0cf 100%);
    box-shadow:
        inset 6px 6px 12px rgba(108, 84, 55, 0.08),
        inset -6px -6px 12px rgba(255, 255, 255, 0.9);
}

.menu-card__category {
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: 0.02em;
}

.menu-card h3 {
    margin: 0;
}

.menu-card p {
    margin: 0;
    color: var(--muted);
}

.menu-card .ingredients-toggle {
    align-self: flex-start;
    padding: 10px 14px;
    border-radius: 999px;
    background: linear-gradient(145deg, #fdf8ef 0%, #e9ddcb 100%);
    border: 1px solid rgba(224, 210, 190, 0.92);
    box-shadow:
        8px 8px 14px rgba(108, 84, 55, 0.1),
        -8px -8px 14px rgba(255, 255, 255, 0.88);
}

.menu-card .ingredients-list {
    padding-left: 18px;
    margin: 0;
}

.menu-card__bottom {
    margin-top: auto;
    gap: 12px;
}

.menu-card .add-to-cart {
    width: 100%;
    max-width: none;
    height: 72px;
    border-radius: 24px;
    transform: none;
    background: linear-gradient(145deg, #fdf8ef 0%, #e7dccb 100%);
    box-shadow:
        10px 10px 18px rgba(108, 84, 55, 0.16),
        -10px -10px 18px rgba(255, 255, 255, 0.84);
}

.menu-card .add-to-cart .wrap {
    transform: translate(4px, -4px);
}

.menu-card .add-to-cart:hover {
    transform: none;
    box-shadow:
        12px 12px 22px rgba(108, 84, 55, 0.2),
        -12px -12px 20px rgba(255, 255, 255, 0.9);
}

.menu-card .add-to-cart:active {
    transform: none;
}

.badge-list {
    position: absolute;
    left: 16px;
    bottom: 16px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.badge,
.availability-tag {
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 0.82rem;
    font-weight: 800;
}

.badge {
    background: linear-gradient(145deg, #fdf8ef, #e7dccb);
    color: var(--primary-dark);
    box-shadow:
        5px 5px 10px rgba(108, 84, 55, 0.12),
        -5px -5px 10px rgba(255, 255, 255, 0.84);
}

.availability-tag {
    background: linear-gradient(145deg, #f7ddd8, #ecc3bb);
    color: #9c2e24;
    box-shadow:
        5px 5px 10px rgba(108, 84, 55, 0.1),
        -5px -5px 10px rgba(255, 255, 255, 0.78);
}

.ingredients-toggle {
    display: none;
    margin-bottom: 12px;
    border: 0;
    background: transparent;
    padding: 0;
    color: var(--primary-dark);
    font-weight: 800;
}

.ingredients-list,
.footer-list,
.info-list {
    margin: 0;
    padding-left: 18px;
}

.ingredients-list li,
.footer-list li,
.info-list li {
    margin-bottom: 8px;
}

.price-stack strong {
    font-size: 1.35rem;
}

.price-stack span {
    display: block;
    text-decoration: line-through;
    color: var(--muted);
}

.menu-empty {
    text-align: center;
    padding: 24px;
    background: linear-gradient(145deg, #fdf8ef 0%, #e8dccd 100%);
    border-radius: 28px;
    border: 1px solid rgba(224, 210, 190, 0.95);
    box-shadow:
        inset 8px 8px 16px rgba(108, 84, 55, 0.08),
        inset -8px -8px 16px rgba(255, 255, 255, 0.8);
}

.step-card {
    flex: 1 1 220px;
    padding-top: 28px;
}

.step-card span {
    display: inline-flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(145deg, #f7efe2, #d8ccbb);
    color: var(--primary-dark);
    font-weight: 800;
    margin-bottom: 12px;
    box-shadow:
        inset 6px 6px 10px rgba(115, 88, 56, 0.14),
        inset -6px -6px 10px rgba(255, 255, 255, 0.92);
}

.split-layout {
    align-items: center;
}

.split-layout > * {
    flex: 1 1 420px;
}

.story-card,
.map-card {
    position: relative;
}

.story-card {
    min-height: 420px;
}

.story-card img {
    aspect-ratio: auto;
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.map-card__frame {
    display: block;
    width: 100%;
    min-height: 320px;
}

.testimonial {
    flex: 1 1 260px;
}

.hours-card {
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    margin: 24px 0;
}

.hours-card div {
    display: flex;
    justify-content: space-between;
    gap: 14px;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-list details {
    padding: 20px 22px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--line);
}

.faq-list summary {
    cursor: pointer;
    font-weight: 800;
}

.contact-form {
    padding: 28px;
    margin-bottom: 56px;
}

.contact-form label,
.cart-form label {
    display: block;
}

.contact-form small,
.form-error {
    display: block;
    min-height: 20px;
    color: #9c2e24;
}

.checkbox {
    display: flex !important;
    gap: 10px;
    align-items: center;
}

.checkbox input {
    width: 20px;
    height: 20px;
    margin: 0;
}

.honeypot {
    position: absolute;
    left: -9999px;
}

.form-message {
    margin-bottom: 18px;
    padding: 16px 18px;
    border-radius: var(--radius-md);
}

.form-message--success {
    background: rgba(31, 127, 118, 0.12);
    color: var(--primary-dark);
}

.form-message--error {
    background: rgba(223, 91, 79, 0.12);
    color: #9c2e24;
}

.final-cta__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, rgba(31, 127, 118, 0.15), rgba(242, 200, 102, 0.22));
}

.site-footer {
    padding: 48px 0 120px;
    background: #113935;
    color: rgba(255, 255, 255, 0.84);
}

.site-footer p,
.site-footer a {
    color: rgba(255, 255, 255, 0.84);
}

.footer-brand img {
    display: block;
    width: min(240px, 100%);
    height: auto;
    margin-bottom: 14px;
}

.footer-grid {
    align-items: start;
}

.footer-grid > * {
    flex: 1 1 220px;
}

.footer-bottom {
    margin-top: 26px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-logo-bottom {
    display: flex;
    justify-content: center;
    padding-top: 22px;
}

.footer-logo-bottom img {
    display: block;
    width: min(300px, 100%);
    height: auto;
}

.floating-actions {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 75;
    display: flex;
    align-items: end;
    gap: 12px;
}

.floating-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 62px;
    min-height: 62px;
    padding: 0 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    box-shadow: 0 14px 30px rgba(18, 140, 126, 0.3);
    animation: pulse 2.4s ease-in-out infinite;
}

.floating-cart {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent-soft), #f3e1a8);
    color: var(--primary-dark);
    box-shadow: 0 14px 30px rgba(150, 117, 34, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.floating-cart:hover,
.floating-cart:focus-visible {
    transform: translateY(-2px);
    filter: brightness(1.02);
    box-shadow: 0 16px 34px rgba(150, 117, 34, 0.26);
}

.floating-cart__count {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--danger);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 20px;
    text-align: center;
    box-shadow: 0 6px 12px rgba(223, 91, 79, 0.28);
}

.mobile-order-bar {
    display: none;
    margin-top: 12px;
    background: rgba(255, 250, 241, 0.96);
    padding: 12px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.cart-live-region {
    position: fixed;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    background: var(--text);
    color: #fff;
    padding: 10px 18px;
    border-radius: 999px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 95;
}

.cart-live-region.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(-8px);
}

.cart-drawer {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(16, 28, 24, 0.52);
    z-index: 90;
    padding: 16px;
}

.cart-drawer.is-open {
    display: flex;
}

.cart-drawer__dialog {
    width: min(520px, 100%);
    max-height: calc(100vh - 32px);
    display: flex;
    flex-direction: column;
}

.cart-drawer__body {
    padding: 0 24px 24px;
    overflow: auto;
}

.cart-items {
    display: grid;
    gap: 14px;
    margin-bottom: 22px;
}

.cart-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px 12px;
    align-items: center;
    padding: 14px;
    border-radius: 18px;
    background: rgba(31, 127, 118, 0.06);
}

.cart-item__controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-item__controls button {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: #fff;
}

.cart-summary,
.cart-form {
    display: grid;
    gap: 16px;
}

.cart-summary {
    margin-bottom: 18px;
}

.cart-empty {
    text-align: center;
    margin-bottom: 24px;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

.page-hero {
    margin: 118px auto 36px;
    background: linear-gradient(135deg, rgba(31, 127, 118, 0.16), rgba(242, 200, 102, 0.18));
}

.page-layout {
    padding-bottom: 56px;
}

.legal-page {
    padding: 118px 0 72px;
}

.legal-page__inner {
    max-width: 820px;
}

@keyframes drift {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -10px, 0); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero__ingredients,
.hero-ingredient {
    animation: none;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    .hero__poster {
        display: block;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .hero__ingredients,
    .hero-ingredient {
        transition: none;
        transform: none;
    }
}
