/* ==========================================================================
   Pizza Addiction - addictionpizza.site
   Single stylesheet. No frameworks.

   1.  Tokens
   2.  Reset & base
   3.  Typography & sections
   4.  Buttons, badges, pills
   5.  Header & navigation
   6.  Hero
   7.  Category cards
   8.  Product grid & cards
   9.  Promo banner
   10. Features
   11. Branches
   12. About
   13. Contact CTA
   14. Footer
   15. Cart drawer & mobile cart bar
   16. Floating WhatsApp
   17. Menu page
   18. Checkout
   19. Order success / 404
   20. Toasts & reveal animation
   21. Responsive
   ========================================================================== */

/* 1. Tokens ---------------------------------------------------------------- */

:root {
    --bg: #0D0D0D;
    --surface: #171717;
    --card: #202020;
    --red: #D62828;
    --orange: #F77F00;
    --yellow: #FCBF49;
    --cream: #FFF7EA;
    --muted: #B7B7B7;
    --white: #FFFFFF;

    --line: rgba(255, 247, 234, .10);
    --line-strong: rgba(255, 247, 234, .18);
    --card-2: #262626;
    --ink-dim: rgba(255, 247, 234, .62);

    --grad-hot: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%);
    --grad-gold: linear-gradient(135deg, var(--orange) 0%, var(--yellow) 100%);
    --grad-card: linear-gradient(180deg, #232323 0%, #191919 100%);

    --font-display: "Bebas Neue", "Arial Narrow", Impact, sans-serif;
    --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 22px;
    --r-pill: 999px;

    --shadow-sm: 0 4px 14px rgba(0, 0, 0, .35);
    --shadow-md: 0 18px 40px rgba(0, 0, 0, .45);
    --shadow-hot: 0 12px 30px rgba(214, 40, 40, .30);

    --wrap: 1240px;
    --gutter: 20px;
    --header-h: 74px;

    --ease: cubic-bezier(.2, .7, .3, 1);
    --t-fast: .18s var(--ease);
    --t: .3s var(--ease);
}

/* 2. Reset & base --------------------------------------------------------- */

*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
    background: var(--bg);
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    font-weight: 400;
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.is-locked {
    overflow: hidden;
}

img,
picture,
svg,
video {
    display: block;
    max-width: 100%;
}

img {
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
    color: inherit;
}

button {
    background: none;
    border: 0;
    cursor: pointer;
}

ul,
ol {
    list-style: none;
}

svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

:focus-visible {
    outline: 3px solid var(--yellow);
    outline-offset: 3px;
    border-radius: 4px;
}

::selection {
    background: var(--red);
    color: var(--white);
}

.skip-link {
    position: absolute;
    left: 50%;
    top: -100px;
    z-index: 200;
    transform: translateX(-50%);
    background: var(--yellow);
    color: #1a1200;
    padding: 12px 22px;
    border-radius: 0 0 var(--r-sm) var(--r-sm);
    font-weight: 700;
    transition: top var(--t-fast);
}

.skip-link:focus {
    top: 0;
}

.sr-only {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* 3. Typography & sections ------------------------------------------------ */

.wrap {
    width: 100%;
    max-width: var(--wrap);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.section {
    position: relative;
    padding: clamp(56px, 8vw, 104px) 0;
}

.section--surface {
    background: var(--surface);
}

.section--tight {
    padding-top: clamp(34px, 5vw, 56px);
}

h1,
h2,
h3,
.display {
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: .02em;
    line-height: .95;
    text-transform: uppercase;
    color: var(--white);
}

h1 {
    font-size: clamp(2.9rem, 7.4vw, 5.4rem);
}

h2 {
    font-size: clamp(2.1rem, 4.6vw, 3.4rem);
}

h3 {
    font-size: clamp(1.25rem, 2.2vw, 1.6rem);
}

p {
    color: var(--ink-dim);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 14px;
}

.eyebrow::before {
    content: "";
    width: 26px;
    height: 2px;
    background: var(--grad-hot);
    border-radius: 2px;
}

.section-head {
    max-width: 720px;
    margin-bottom: clamp(28px, 4vw, 46px);
}

.section-head--center {
    margin-inline: auto;
    text-align: center;
}

.section-head--center .eyebrow::before {
    display: none;
}

.section-head p {
    margin-top: 14px;
    font-size: 1.02rem;
}

.section-head--split {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    max-width: none;
}

.section-head--split > div {
    max-width: 620px;
}

.text-hot {
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--orange);
}

.lead {
    font-size: clamp(1rem, 1.4vw, 1.12rem);
    color: var(--muted);
}

.note {
    font-size: .84rem;
    line-height: 1.55;
    color: rgba(255, 247, 234, .5);
}

/* Soft radial glow used behind several sections. */
.glow {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.glow::before,
.glow::after {
    content: "";
    position: absolute;
    width: 46vw;
    height: 46vw;
    max-width: 620px;
    max-height: 620px;
    border-radius: 50%;
    filter: blur(90px);
    opacity: .16;
}

.glow::before {
    top: -14%;
    right: -8%;
    background: var(--orange);
}

.glow::after {
    bottom: -18%;
    left: -10%;
    background: var(--red);
    opacity: .13;
}

/* 4. Buttons, badges, pills ---------------------------------------------- */

.btn {
    --btn-bg: var(--grad-hot);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 28px;
    border-radius: var(--r-pill);
    background: var(--btn-bg);
    color: var(--white);
    font-family: var(--font-body);
    font-size: .86rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: var(--shadow-hot);
    transition: transform var(--t-fast), box-shadow var(--t-fast), filter var(--t-fast), background var(--t-fast);
}

.btn svg {
    width: 18px;
    height: 18px;
    flex: none;
}

.btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.07);
    box-shadow: 0 16px 34px rgba(214, 40, 40, .4);
}

.btn:active {
    transform: translateY(0);
}

.btn--ghost {
    --btn-bg: transparent;
    color: var(--cream);
    border: 1.5px solid var(--line-strong);
    box-shadow: none;
}

.btn--ghost:hover {
    border-color: var(--yellow);
    color: var(--yellow);
    box-shadow: none;
    filter: none;
}

.btn--gold {
    --btn-bg: var(--grad-gold);
    color: #1d1400;
    box-shadow: 0 12px 30px rgba(247, 127, 0, .28);
}

.btn--gold:hover {
    box-shadow: 0 16px 34px rgba(247, 127, 0, .38);
}

.btn--wa {
    --btn-bg: #1FA855;
    box-shadow: 0 12px 30px rgba(31, 168, 85, .26);
}

.btn--wa:hover {
    box-shadow: 0 16px 34px rgba(31, 168, 85, .36);
}

.btn--sm {
    padding: 11px 18px;
    font-size: .74rem;
}

.btn--lg {
    padding: 18px 36px;
    font-size: .95rem;
}

.btn--block {
    width: 100%;
}

.btn[disabled],
.btn[aria-disabled="true"] {
    opacity: .55;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.link-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--yellow);
    padding-bottom: 3px;
    border-bottom: 2px solid transparent;
    transition: gap var(--t-fast), border-color var(--t-fast);
}

.link-more:hover {
    gap: 14px;
    border-color: var(--yellow);
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: var(--r-pill);
    background: rgba(255, 247, 234, .06);
    border: 1px solid var(--line);
    font-size: .76rem;
    font-weight: 600;
    letter-spacing: .06em;
    color: var(--cream);
}

.pill svg {
    width: 15px;
    height: 15px;
    color: var(--yellow);
}

.tag {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 6px 13px;
    border-radius: var(--r-pill);
    background: var(--grad-hot);
    color: var(--white);
    font-size: .66rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
}

/* 5. Header & navigation -------------------------------------------------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 90;
    background: rgba(13, 13, 13, .82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: background var(--t-fast), border-color var(--t-fast);
}

.site-header.is-stuck {
    background: rgba(13, 13, 13, .95);
    border-bottom-color: var(--line);
}

.header-inner {
    height: var(--header-h);
    display: flex;
    align-items: center;
    gap: 18px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    flex: none;
}

.logo-mark {
    width: 40px;
    height: 40px;
    flex: none;
    border-radius: 12px;
    background: var(--grad-hot);
    display: grid;
    place-items: center;
    box-shadow: var(--shadow-hot);
}

.logo-mark svg {
    width: 22px;
    height: 22px;
    color: var(--white);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text b {
    font-family: var(--font-display);
    font-size: 1.42rem;
    font-weight: 400;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--white);
}

.logo-text span {
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--orange);
}

.nav {
    margin-inline: auto;
}

.nav ul {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav a {
    display: block;
    position: relative;
    padding: 9px 13px;
    border-radius: var(--r-sm);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .04em;
    color: var(--muted);
    transition: color var(--t-fast), background var(--t-fast);
}

.nav a:hover {
    color: var(--white);
    background: rgba(255, 247, 234, .05);
}

.nav a.is-active {
    color: var(--white);
}

.nav a.is-active::after {
    content: "";
    position: absolute;
    left: 13px;
    right: 13px;
    bottom: 3px;
    height: 2px;
    border-radius: 2px;
    background: var(--grad-hot);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: none;
}

.icon-btn {
    position: relative;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: rgba(255, 247, 234, .04);
    color: var(--cream);
    transition: border-color var(--t-fast), color var(--t-fast), background var(--t-fast);
}

.icon-btn svg {
    width: 20px;
    height: 20px;
}

.icon-btn:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 21px;
    height: 21px;
    padding: 0 5px;
    border-radius: var(--r-pill);
    background: var(--red);
    color: var(--white);
    font-size: .68rem;
    font-weight: 800;
    line-height: 21px;
    text-align: center;
    border: 2px solid var(--bg);
    transform: scale(0);
    transition: transform .22s var(--ease);
}

.cart-badge.is-visible {
    transform: scale(1);
}

.cart-badge.is-bump {
    animation: badge-bump .4s var(--ease);
}

@keyframes badge-bump {
    0%   { transform: scale(1); }
    40%  { transform: scale(1.45); }
    100% { transform: scale(1); }
}

.burger {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: rgba(255, 247, 234, .04);
    position: relative;
}

.burger span {
    position: absolute;
    left: 11px;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: var(--cream);
    transition: transform var(--t-fast), opacity var(--t-fast);
}

.burger span:nth-child(1) { top: 14px; }
.burger span:nth-child(2) { top: 20px; }
.burger span:nth-child(3) { top: 26px; }

.burger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.burger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.burger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    z-index: 89;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    padding: 12px var(--gutter) 26px;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
    transform: translateY(-14px);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--t), opacity var(--t), visibility var(--t);
}

.mobile-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-display);
    font-size: 1.35rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--cream);
}

.mobile-nav a::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--orange);
    border-top: 2px solid var(--orange);
    transform: rotate(45deg);
}

.mobile-nav .btn {
    margin-top: 20px;
}

.mobile-nav .mobile-call {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    font-size: .9rem;
    font-family: var(--font-body);
    letter-spacing: normal;
    text-transform: none;
    border: 0;
    color: var(--muted);
}

.mobile-nav .mobile-call::after {
    display: none;
}

/* 6. Hero ---------------------------------------------------------------- */

.hero {
    position: relative;
    overflow: hidden;
    padding: clamp(40px, 6vw, 76px) 0 clamp(56px, 7vw, 96px);
    background:
        radial-gradient(1000px 520px at 78% 22%, rgba(247, 127, 0, .17), transparent 62%),
        radial-gradient(760px 420px at 8% 82%, rgba(214, 40, 40, .16), transparent 60%),
        var(--bg);
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 140px;
    background: linear-gradient(to bottom, transparent, var(--bg));
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    align-items: center;
    gap: clamp(24px, 5vw, 56px);
}

.hero h1 {
    margin-bottom: 18px;
}

.hero h1 em {
    display: block;
    font-style: normal;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2.3vw, 1.6rem);
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 12px;
}

.hero-copy {
    max-width: 460px;
    font-size: 1.03rem;
    margin-bottom: 28px;
}

.hero .btn-row {
    margin-bottom: 26px;
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-media {
    position: relative;
}

.hero-media__frame {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--line);
}

.hero-media__frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(190deg, transparent 45%, rgba(13, 13, 13, .55) 100%);
}

.hero-media img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.hero-media__ring {
    position: absolute;
    inset: -22px;
    border-radius: calc(var(--r-lg) + 22px);
    border: 1px dashed rgba(252, 191, 73, .22);
    pointer-events: none;
}

.float-badge {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 17px;
    border-radius: var(--r-pill);
    background: rgba(23, 23, 23, .92);
    border: 1px solid var(--line-strong);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .04em;
    color: var(--cream);
    animation: float-soft 5.5s ease-in-out infinite;
}

.float-badge svg {
    width: 16px;
    height: 16px;
    color: var(--yellow);
}

.float-badge--1 {
    top: 8%;
    left: -18px;
}

.float-badge--2 {
    bottom: 16%;
    right: -14px;
    animation-delay: 1.4s;
}

.float-badge--3 {
    bottom: -14px;
    left: 12%;
    animation-delay: 2.6s;
}

@keyframes float-soft {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}

/* 7. Category cards ------------------------------------------------------- */

.cat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(16px, 2.4vw, 26px);
}

.cat-card {
    position: relative;
    display: block;
    min-height: 300px;
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--card);
    isolation: isolate;
}

.cat-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    transition: transform .6s var(--ease);
}

.cat-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(13, 13, 13, .25) 0%, rgba(13, 13, 13, .82) 62%, rgba(13, 13, 13, .95) 100%);
}

.cat-card:hover img {
    transform: scale(1.06);
}

.cat-card__body {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 8px;
    padding: clamp(22px, 3vw, 34px);
    min-height: 300px;
}

.cat-card__body h3 {
    font-size: clamp(1.8rem, 3.6vw, 2.6rem);
}

.cat-card__body p {
    max-width: 34ch;
    color: var(--muted);
}

.cat-card .link-more {
    margin-top: 8px;
    align-self: flex-start;
}

.cat-card__count {
    position: absolute;
    top: clamp(22px, 3vw, 34px);
    right: clamp(22px, 3vw, 34px);
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: .12em;
    color: var(--yellow);
}

/* 8. Product grid & cards ------------------------------------------------- */

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(14px, 2vw, 24px);
}

.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--grad-card);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    overflow: hidden;
    scroll-margin-top: calc(var(--header-h) + 20px);
    transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(247, 127, 0, .45);
    box-shadow: var(--shadow-md);
}

.product-card__media {
    position: relative;
    overflow: hidden;
    background: #141414;
}

.product-card__media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform .55s var(--ease);
}

.product-card:hover .product-card__media img {
    transform: scale(1.07);
}

.product-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 8px;
    padding: 18px 18px 20px;
}

.product-card__body h3 {
    font-size: 1.3rem;
    letter-spacing: .03em;
}

.product-card__desc {
    font-size: .88rem;
    line-height: 1.55;
    color: var(--muted);
    flex: 1;
}

.product-card__price {
    display: flex;
    align-items: baseline;
    gap: 7px;
    padding-top: 4px;
}

.product-card__price small {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
}

.product-card__price b {
    font-family: var(--font-display);
    font-size: 1.62rem;
    font-weight: 400;
    letter-spacing: .02em;
    color: var(--yellow);
}

.product-card__option {
    width: 100%;
    margin-top: 8px;
    padding: 10px 12px;
    border-radius: var(--r-sm);
    border: 1px solid var(--line-strong);
    background-color: rgba(0, 0, 0, .35);
    color: var(--cream);
}

.product-card__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
}

.product-card__actions .btn {
    flex: 1;
    padding-inline: 14px;
}

.qty {
    display: inline-flex;
    align-items: center;
    flex: none;
    border: 1px solid var(--line-strong);
    border-radius: var(--r-pill);
    background: rgba(0, 0, 0, .3);
    overflow: hidden;
}

.qty button {
    width: 34px;
    height: 40px;
    display: grid;
    place-items: center;
    color: var(--cream);
    font-size: 1.15rem;
    line-height: 1;
    transition: color var(--t-fast), background var(--t-fast);
}

.qty button:hover {
    color: var(--orange);
    background: rgba(255, 247, 234, .06);
}

.qty output,
.qty .qty-value {
    min-width: 24px;
    text-align: center;
    font-size: .95rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: var(--white);
}

.qty--sm button {
    width: 30px;
    height: 32px;
    font-size: 1rem;
}

.product-card__ask {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .8rem;
    color: var(--muted);
}

.product-card__ask svg {
    width: 15px;
    height: 15px;
    color: var(--yellow);
    flex: none;
}

/* 9. Promo banner -------------------------------------------------------- */

.promo {
    position: relative;
    overflow: hidden;
    border-radius: var(--r-lg);
    border: 1px solid var(--line);
    background: var(--card);
    isolation: isolate;
}

.promo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.promo::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(95deg, rgba(13, 13, 13, .96) 0%, rgba(13, 13, 13, .84) 42%, rgba(13, 13, 13, .3) 100%);
}

.promo__body {
    max-width: 620px;
    padding: clamp(34px, 6vw, 76px) clamp(22px, 4vw, 60px);
}

.promo__body h2 {
    margin-bottom: 14px;
}

.promo__body p {
    font-size: 1.05rem;
    margin-bottom: 26px;
}

/* 10. Features ----------------------------------------------------------- */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(14px, 2vw, 22px);
}

.feature {
    position: relative;
    padding: clamp(24px, 3vw, 34px);
    border-radius: var(--r-md);
    background: var(--card);
    border: 1px solid var(--line);
    overflow: hidden;
    transition: border-color var(--t), transform var(--t);
}

.feature:hover {
    border-color: rgba(252, 191, 73, .4);
    transform: translateY(-4px);
}

.feature::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--grad-hot);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t);
}

.feature:hover::after {
    transform: scaleX(1);
}

.feature__icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    margin-bottom: 18px;
    background: rgba(247, 127, 0, .12);
    border: 1px solid rgba(247, 127, 0, .3);
    color: var(--orange);
}

.feature__icon svg {
    width: 25px;
    height: 25px;
}

.feature h3 {
    margin-bottom: 8px;
    font-size: 1.28rem;
}

.feature p {
    font-size: .92rem;
}

/* 11. Branches ----------------------------------------------------------- */

.branch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: clamp(16px, 2.4vw, 26px);
}

.branch {
    display: flex;
    flex-direction: column;
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--card);
    border: 1px solid var(--line);
    transition: border-color var(--t), transform var(--t);
}

.branch:hover {
    border-color: rgba(247, 127, 0, .4);
    transform: translateY(-4px);
}

.branch__media {
    position: relative;
    overflow: hidden;
}

.branch__media img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    opacity: .8;
    transition: transform .55s var(--ease), opacity var(--t);
}

.branch:hover .branch__media img {
    transform: scale(1.05);
    opacity: 1;
}

.branch__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 13, 13, .1), rgba(13, 13, 13, .8));
}

.branch__body {
    padding: clamp(20px, 3vw, 28px);
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

.branch__body h3 {
    font-size: 1.55rem;
}

.branch__meta {
    display: flex;
    flex-direction: column;
    gap: 9px;
    font-size: .92rem;
    color: var(--muted);
}

.branch__meta span {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.branch__meta svg {
    width: 17px;
    height: 17px;
    flex: none;
    margin-top: 3px;
    color: var(--orange);
}

.branch__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: auto;
}

/* 12. About -------------------------------------------------------------- */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(26px, 5vw, 60px);
}

.about-media {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--line);
}

.about-media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.about-stack p + p {
    margin-top: 14px;
}

.about-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

/* 13. Contact CTA -------------------------------------------------------- */

.contact-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(24px, 4vw, 50px);
    align-items: start;
}

.contact-card {
    padding: clamp(24px, 3.4vw, 38px);
    border-radius: var(--r-lg);
    background: var(--card);
    border: 1px solid var(--line);
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 22px 0 26px;
}

.contact-list li {
    display: flex;
    gap: 14px;
}

.contact-list .ico {
    width: 42px;
    height: 42px;
    flex: none;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(214, 40, 40, .14);
    border: 1px solid rgba(214, 40, 40, .3);
    color: var(--red);
}

.contact-list .ico svg {
    width: 19px;
    height: 19px;
}

.contact-list b {
    display: block;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 2px;
}

.contact-list a,
.contact-list p {
    font-size: 1.02rem;
    color: var(--cream);
}

.contact-list a:hover {
    color: var(--yellow);
}

/* 14. Footer ------------------------------------------------------------- */

.site-footer {
    position: relative;
    background: var(--surface);
    border-top: 1px solid var(--line);
    padding-top: clamp(44px, 6vw, 70px);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: clamp(24px, 4vw, 44px);
    padding-bottom: clamp(34px, 4vw, 50px);
}

.footer-brand p {
    max-width: 34ch;
    margin-top: 16px;
    font-size: .93rem;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 1.12rem;
    font-weight: 400;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-col a,
.footer-col li {
    font-size: .92rem;
    color: var(--muted);
    transition: color var(--t-fast);
}

.footer-col a:hover {
    color: var(--yellow);
}

.footer-col .btn {
    margin-top: 18px;
}

.footer-bottom {
    border-top: 1px solid var(--line);
    padding: 22px 0 26px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: .84rem;
    color: rgba(255, 247, 234, .48);
}

.footer-bottom a:hover {
    color: var(--yellow);
}

.socials {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

/* 15. Cart drawer & mobile cart bar -------------------------------------- */

.overlay {
    position: fixed;
    inset: 0;
    z-index: 95;
    background: rgba(5, 5, 5, .65);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--t), visibility var(--t);
}

.overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 96;
    width: min(420px, 100%);
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border-left: 1px solid var(--line);
    box-shadow: -20px 0 60px rgba(0, 0, 0, .55);
    transform: translateX(102%);
    transition: transform .34s var(--ease);
    visibility: hidden;
}

.cart-drawer.is-open {
    transform: translateX(0);
    visibility: visible;
}

.cart-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 20px 22px;
    border-bottom: 1px solid var(--line);
}

.cart-drawer__head h2 {
    font-size: 1.6rem;
}

.cart-drawer__head p {
    font-size: .76rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
}

.cart-drawer__body {
    flex: 1;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 8px 22px 22px;
}

.cart-drawer__foot {
    padding: 18px 22px calc(18px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: var(--card);
}

.cart-line {
    display: grid;
    grid-template-columns: 66px 1fr;
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

.cart-line img {
    width: 66px;
    height: 66px;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid var(--line);
}

.cart-line__info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.cart-line__info h3 {
    font-family: var(--font-body);
    font-size: .96rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
    line-height: 1.35;
    color: var(--white);
}

.cart-line__price {
    font-size: .82rem;
    color: var(--muted);
}

.cart-line__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 6px;
}

.cart-line__total {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--yellow);
}

.cart-remove {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .76rem;
    font-weight: 600;
    color: var(--muted);
    transition: color var(--t-fast);
}

.cart-remove svg {
    width: 14px;
    height: 14px;
}

.cart-remove:hover {
    color: var(--red);
}

.cart-summary {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 6px;
}

.cart-summary span {
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--muted);
}

.cart-summary b {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--yellow);
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 54px 10px;
}

.cart-empty__icon {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 247, 234, .05);
    border: 1px dashed var(--line-strong);
    color: var(--orange);
}

.cart-empty__icon svg {
    width: 34px;
    height: 34px;
}

.cart-empty h3 {
    font-size: 1.5rem;
}

.cart-empty p {
    max-width: 30ch;
    font-size: .92rem;
}

.cart-empty .btn {
    margin-top: 8px;
}

.mobile-cart-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 88;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 20px;
    border-radius: var(--r-pill);
    background: var(--grad-hot);
    color: var(--white);
    font-size: .86rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    box-shadow: 0 14px 34px rgba(214, 40, 40, .45);
    transform: translateY(140%);
    transition: transform .32s var(--ease);
}

.mobile-cart-bar svg {
    width: 18px;
    height: 18px;
}

.mobile-cart-bar.is-visible {
    transform: translateY(0);
}

/* 16. Floating WhatsApp -------------------------------------------------- */

.wa-float {
    position: fixed;
    right: 18px;
    bottom: 22px;
    z-index: 87;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #1FA855;
    color: var(--white);
    box-shadow: 0 12px 30px rgba(31, 168, 85, .42);
    transition: transform var(--t-fast), bottom var(--t);
}

.wa-float svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
    stroke: none;
}

.wa-float:hover {
    transform: scale(1.08);
}

.wa-float::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(31, 168, 85, .55);
    animation: wa-ping 2.6s ease-out infinite;
}

@keyframes wa-ping {
    0%   { transform: scale(1); opacity: .8; }
    70%  { transform: scale(1.55); opacity: 0; }
    100% { transform: scale(1.55); opacity: 0; }
}

/* 17. Menu page ---------------------------------------------------------- */

.page-head {
    position: relative;
    overflow: hidden;
    padding: clamp(38px, 6vw, 72px) 0 clamp(30px, 4vw, 48px);
    background:
        radial-gradient(760px 400px at 82% 10%, rgba(247, 127, 0, .16), transparent 60%),
        var(--bg);
    border-bottom: 1px solid var(--line);
}

.crumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .78rem;
    color: var(--muted);
    margin-bottom: 14px;
}

.crumbs a:hover {
    color: var(--yellow);
}

.crumbs span {
    opacity: .5;
}

.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: clamp(24px, 3vw, 36px);
}

.tab {
    padding: 12px 24px;
    border-radius: var(--r-pill);
    border: 1px solid var(--line-strong);
    background: rgba(255, 247, 234, .03);
    color: var(--muted);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    transition: color var(--t-fast), border-color var(--t-fast), background var(--t-fast);
}

.tab:hover {
    color: var(--white);
    border-color: var(--orange);
}

.tab[aria-selected="true"] {
    background: var(--grad-hot);
    border-color: transparent;
    color: var(--white);
    box-shadow: var(--shadow-hot);
}

.menu-block + .menu-block {
    margin-top: clamp(40px, 6vw, 72px);
}

.menu-block__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 16px;
    margin-bottom: clamp(20px, 3vw, 30px);
    border-bottom: 1px solid var(--line);
}

.menu-block__head h2 {
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
}

.menu-block__head p {
    font-size: .9rem;
    margin-top: 6px;
}

.menu-block__count {
    font-family: var(--font-display);
    font-size: 1.05rem;
    letter-spacing: .1em;
    color: var(--yellow);
    white-space: nowrap;
}

/* 18. Checkout ----------------------------------------------------------- */

.checkout-grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    align-items: start;
    gap: clamp(20px, 3vw, 36px);
}

.panel {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: clamp(22px, 3vw, 34px);
}

.panel + .panel {
    margin-top: 20px;
}

.panel h2 {
    font-size: 1.6rem;
    margin-bottom: 6px;
}

.panel__note {
    font-size: .88rem;
    margin-bottom: 24px;
}

.panel--sticky {
    position: sticky;
    top: calc(var(--header-h) + 20px);
}

.field-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field--full {
    grid-column: 1 / -1;
}

.field label {
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
}

.field label .req {
    color: var(--red);
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: var(--r-sm);
    border: 1.5px solid var(--line-strong);
    background: rgba(0, 0, 0, .32);
    color: var(--white);
    font-size: .98rem;
    transition: border-color var(--t-fast), background var(--t-fast);
}

.field textarea {
    min-height: 104px;
    resize: vertical;
}

.field select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--orange) 50%), linear-gradient(135deg, var(--orange) 50%, transparent 50%);
    background-position: calc(100% - 22px) 50%, calc(100% - 16px) 50%;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 44px;
}

.field input::placeholder,
.field textarea::placeholder {
    color: rgba(255, 247, 234, .32);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--orange);
    background: rgba(0, 0, 0, .5);
}

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
    outline: 3px solid rgba(252, 191, 73, .5);
    outline-offset: 1px;
}

.field .hint {
    font-size: .78rem;
    color: rgba(255, 247, 234, .45);
}

.field .error {
    font-size: .8rem;
    font-weight: 600;
    color: #FF8A8A;
    min-height: 0;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
    border-color: var(--red);
}

.choice-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.choice {
    position: relative;
    flex: 1 1 190px;
    cursor: pointer;
}

.choice input {
    position: absolute;
    opacity: 0;
    inset: 0;
    cursor: pointer;
}

.choice__box {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 100%;
    padding: 15px 18px;
    border-radius: var(--r-sm);
    border: 1.5px solid var(--line-strong);
    background: rgba(0, 0, 0, .28);
    transition: border-color var(--t-fast), background var(--t-fast);
}

.choice__box::before {
    content: "";
    width: 18px;
    height: 18px;
    flex: none;
    border-radius: 50%;
    border: 2px solid var(--line-strong);
    transition: border-color var(--t-fast), box-shadow var(--t-fast);
}

.choice input:checked + .choice__box {
    border-color: var(--orange);
    background: rgba(247, 127, 0, .1);
}

.choice input:checked + .choice__box::before {
    border-color: var(--orange);
    box-shadow: inset 0 0 0 4px var(--orange);
}

.choice input:focus-visible + .choice__box {
    outline: 3px solid var(--yellow);
    outline-offset: 2px;
}

.choice__box b {
    display: block;
    font-size: .98rem;
    color: var(--white);
}

.choice__box small {
    display: block;
    font-size: .78rem;
    color: var(--muted);
}

.alert {
    display: flex;
    gap: 12px;
    padding: 16px 18px;
    border-radius: var(--r-sm);
    margin-bottom: 22px;
    font-size: .92rem;
    border: 1px solid;
}

.alert svg {
    width: 19px;
    height: 19px;
    flex: none;
    margin-top: 2px;
}

.alert--error {
    background: rgba(214, 40, 40, .12);
    border-color: rgba(214, 40, 40, .45);
    color: #FFD3D3;
}

.alert--info {
    background: rgba(252, 191, 73, .1);
    border-color: rgba(252, 191, 73, .32);
    color: var(--cream);
}

.alert ul {
    margin-top: 6px;
    padding-left: 16px;
    list-style: disc;
}

.summary-lines {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}

.summary-line {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    font-size: .92rem;
}

.summary-line b {
    display: block;
    color: var(--white);
    font-weight: 600;
}

.summary-line small {
    color: var(--muted);
}

.summary-line span {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--yellow);
    white-space: nowrap;
}

.summary-total {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding-top: 6px;
    margin-bottom: 16px;
}

.summary-total span {
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--muted);
}

.summary-total b {
    font-family: var(--font-display);
    font-size: 2.1rem;
    font-weight: 400;
    color: var(--yellow);
}

/* 19. Order success / 404 ------------------------------------------------ */

.state-page {
    display: grid;
    place-items: center;
    text-align: center;
    padding: clamp(56px, 10vw, 120px) 0;
    position: relative;
    overflow: hidden;
}

.state-page__inner {
    position: relative;
    z-index: 1;
    max-width: 640px;
}

.state-icon {
    width: 92px;
    height: 92px;
    margin: 0 auto 26px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(31, 168, 85, .12);
    border: 1px solid rgba(31, 168, 85, .4);
    color: #35D07F;
}

.state-icon svg {
    width: 42px;
    height: 42px;
}

.state-icon--miss {
    background: rgba(214, 40, 40, .12);
    border-color: rgba(214, 40, 40, .4);
    color: var(--red);
}

.state-page h1 {
    margin-bottom: 14px;
}

.state-page p {
    font-size: 1.05rem;
}

.state-page .btn-row {
    justify-content: center;
    margin-top: 30px;
}

.receipt {
    margin-top: 34px;
    text-align: left;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    overflow: hidden;
}

.receipt__head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 20px clamp(20px, 3vw, 28px);
    border-bottom: 1px dashed var(--line-strong);
    background: rgba(0, 0, 0, .25);
}

.receipt__head b {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: .06em;
    color: var(--yellow);
}

.receipt__head small {
    display: block;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--muted);
}

.receipt__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
    padding: clamp(20px, 3vw, 28px);
}

.receipt__grid div small {
    display: block;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 4px;
}

.receipt__grid div p {
    color: var(--cream);
    font-size: .98rem;
}

.receipt__items {
    padding: 0 clamp(20px, 3vw, 28px) clamp(20px, 3vw, 28px);
}

/* 20. Toasts & reveal animation ------------------------------------------ */

.toast-stack {
    position: fixed;
    left: 50%;
    bottom: 96px;
    z-index: 120;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: min(420px, calc(100% - 32px));
    pointer-events: none;
}

.toast {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 14px 18px;
    border-radius: var(--r-pill);
    background: var(--card-2);
    border: 1px solid var(--line-strong);
    box-shadow: var(--shadow-md);
    color: var(--cream);
    font-size: .9rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .25s var(--ease), transform .25s var(--ease);
}

.toast.is-in {
    opacity: 1;
    transform: translateY(0);
}

.toast svg {
    width: 18px;
    height: 18px;
    flex: none;
    color: #35D07F;
}

.toast--error svg {
    color: var(--red);
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .6s var(--ease), transform .6s var(--ease);
}

.reveal.is-in {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* 21. Responsive --------------------------------------------------------- */

@media (max-width: 1280px) {
    .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1120px) {
    .nav a {
        padding: 9px 10px;
        font-size: .78rem;
    }

    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr;
    }

    .footer-col--contact {
        grid-column: 1 / -1;
    }
}

@media (max-width: 1000px) {
    .nav,
    .header-actions .btn,
    .header-actions .icon-btn--phone {
        display: none;
    }

    .burger {
        display: block;
        order: 3;
    }

    .header-inner {
        justify-content: space-between;
    }

    .header-actions {
        margin-left: auto;
    }

    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .panel--sticky {
        position: static;
    }

    .hero-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 38px;
    }

    .hero-media {
        order: -1;
    }

    .hero-copy {
        max-width: none;
    }

    .float-badge--1 {
        left: 10px;
    }

    .float-badge--2 {
        right: 10px;
    }
}

@media (max-width: 860px) {
    :root {
        --gutter: 16px;
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 680px) {
    body.has-cart {
        padding-bottom: 88px;
    }

    body.has-cart .wa-float {
        bottom: 86px;
    }

    body.has-cart .toast-stack {
        bottom: 150px;
    }

    .mobile-cart-bar {
        display: flex;
    }

    .cat-grid {
        grid-template-columns: 1fr;
    }

    .cat-card,
    .cat-card__body {
        min-height: 262px;
    }

    .field-grid {
        grid-template-columns: 1fr;
    }

    .section-head--split {
        flex-direction: column;
        align-items: flex-start;
    }

    .promo__body {
        padding-block: 40px;
    }

    .promo::before {
        background: linear-gradient(180deg, rgba(13, 13, 13, .72) 0%, rgba(13, 13, 13, .95) 70%);
    }

    .branch__actions .btn {
        flex: 1 1 100%;
    }
}

@media (max-width: 560px) {
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .product-card__body {
        padding: 14px 13px 16px;
        gap: 6px;
    }

    .product-card__body h3 {
        font-size: 1.08rem;
        line-height: 1.05;
    }

    .product-card__desc {
        font-size: .8rem;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .product-card__price b {
        font-size: 1.34rem;
    }

    .product-card__actions {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .product-card__actions .qty {
        justify-content: center;
        width: 100%;
    }

    .product-card__actions .btn {
        width: 100%;
        padding: 12px 10px;
        font-size: .72rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .btn-row .btn {
        flex: 1 1 100%;
    }

    .cart-drawer__head,
    .cart-drawer__body,
    .cart-drawer__foot {
        padding-inline: 16px;
    }
}

@media (max-width: 380px) {
    :root {
        --header-h: 66px;
    }

    .logo-text b {
        font-size: 1.25rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-card__desc {
        -webkit-line-clamp: 2;
    }

    .tab {
        flex: 1;
        padding-inline: 14px;
        text-align: center;
    }
}
