:root {
  --cream: #fbf3e4;
  --cream-soft: #fff9ef;
  --card: #fffdfa;
  --ink: #241610;
  --ink-80: rgba(36, 22, 16, .82);
  --ink-70: rgba(36, 22, 16, .7);
  --ink-50: rgba(36, 22, 16, .5);
  --ink-30: rgba(36, 22, 16, .3);
  --line: rgba(36, 22, 16, .13);
  --brick: #a8422a;
  --brick-dark: #7c2f1d;
  --brick-soft: rgba(168, 66, 42, .1);
  --honey: #d6922c;
  --honey-light: #f0c986;
  --shadow-sm: 0 8px 24px rgba(30, 16, 8, .1);
  --shadow-lg: 0 30px 70px rgba(30, 16, 8, .24);
  --section-pad: clamp(64px, 10vw, 140px);
  --container: 1240px;
  --edge: clamp(20px, 5vw, 64px);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: auto; overflow-x: hidden; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
h1, h2, h3, p, figure { margin: 0; }
::selection { background: var(--brick); color: var(--cream-soft); }
[hidden] { display: none !important; }

.container { max-width: var(--container); margin: 0 auto; padding-inline: var(--edge); }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brick);
  display: inline-flex;
  align-items: center;
  gap: .5em;
}
.eyebrow::before { content: '◆'; font-size: .7em; }
.on-dark.eyebrow { color: var(--honey); }

em { font-style: italic; color: var(--brick); }
.on-dark em { color: var(--honey); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  padding: 1em 1.7em;
  border-radius: 999px;
  white-space: nowrap;
  transition: transform .35s cubic-bezier(.2, .8, .2, 1), box-shadow .35s, background .3s, color .3s, border-color .3s;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn-primary { background: var(--brick); color: var(--cream-soft); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--brick-dark); box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.btn-ghost { border: 1.5px solid var(--ink-30); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--cream-soft); }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .45; pointer-events: none; }

.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 999;
  border-radius: 50%; transform: translate(-50%, -50%);
}
.cursor-dot { width: 6px; height: 6px; background: var(--brick); }
.cursor-ring {
  width: 40px; height: 40px; border: 1.5px solid var(--ink-50);
  transition: width .3s, height .3s, border-color .3s, background .3s;
}
.cursor-ring.is-active { width: 64px; height: 64px; border-color: var(--brick); background: var(--brick-soft); }
.has-cursor, .has-cursor * { cursor: none !important; }

.loader {
  position: fixed; inset: 0; background: var(--ink); z-index: 1000;
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 16px;
  transition: opacity .7s ease, visibility .7s ease;
}
.loader-mark { height: 56px; width: auto; filter: brightness(0) invert(1); opacity: .92; }
.loader-text { font-family: 'Inter', sans-serif; font-size: .74rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--honey); }
.loader.is-hidden { opacity: 0; visibility: hidden; }

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  padding-block: 22px;
  transition: padding .4s ease, background .4s ease, box-shadow .4s ease, border-color .4s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  padding-block: 14px;
  background: rgba(251, 243, 228, .85);
  backdrop-filter: blur(14px);
  border-color: var(--line);
  box-shadow: 0 10px 30px rgba(30, 16, 8, .06);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo { display: flex; align-items: center; }
.nav-logo-img { height: 42px; width: auto; display: block; }
.nav-links { display: flex; gap: 34px; }
.nav-links a { font-size: .92rem; font-weight: 600; position: relative; color: var(--ink); transition: color .3s ease; }
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -5px; height: 1.5px; background: var(--brick);
  transform: scaleX(0); transform-origin: right; transition: transform .35s ease;
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-links a.is-current { color: var(--brick); }
.nav-links a.is-current::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-call { padding: .85em 1.4em; font-size: .86rem; }
.cart-btn { position: relative; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; color: var(--ink); transition: background .3s, color .3s; }
.cart-btn:hover { background: var(--ink-30); }
.cart-btn svg { width: 20px; height: 20px; }
.cart-count {
  position: absolute; top: -2px; right: -2px; background: var(--brick); color: var(--cream-soft);
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: .62rem; width: 17px; height: 17px; border-radius: 50%;
  display: grid; place-items: center;
}
.hamburger { display: none; flex-direction: column; gap: 5px; width: 26px; }
.hamburger span { height: 1.5px; background: var(--ink); transition: transform .3s, opacity .3s, background .3s; }

/* Nav sits transparently over a dark hero (index.html only) until scrolled — flip to light text/icons so it's legible on the dark photo, then back to ink once .is-scrolled gives it a cream background. */
.nav-on-dark:not(.is-scrolled) .nav-links a:not(.is-current),
.nav-on-dark:not(.is-scrolled) .cart-btn,
.nav-on-dark:not(.is-scrolled) .nav-call {
  color: var(--cream-soft);
}
.nav-on-dark:not(.is-scrolled) .nav-call { border-color: rgba(255, 249, 239, .4); }
.nav-on-dark:not(.is-scrolled) .cart-btn:hover { background: rgba(255, 249, 239, .16); }
.nav-on-dark:not(.is-scrolled) .hamburger span { background: var(--cream-soft); }

.mobile-nav {
  position: fixed; inset: 0; background: var(--cream); z-index: 90;
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 28px;
  padding: var(--edge); transform: translateY(-100%); transition: transform .55s cubic-bezier(.2, .8, .2, 1);
}
.mobile-nav.is-open { transform: translateY(0); }
.mobile-nav-close { position: absolute; top: 22px; right: var(--edge); font-size: 2rem; line-height: 1; }
.mobile-nav nav { display: flex; flex-direction: column; gap: 14px; }
.mobile-nav-logo { height: 44px; width: auto; margin-bottom: 6px; }
.mobile-nav nav a { font-family: 'Fraunces', serif; font-size: 2.3rem; font-style: italic; }
.mobile-nav-contact { display: flex; flex-direction: column; gap: 8px; font-size: .85rem; color: var(--ink-70); }

.scrim { position: fixed; inset: 0; background: rgba(36, 22, 16, .45); backdrop-filter: blur(2px); z-index: 70; opacity: 0; pointer-events: none; transition: opacity .4s ease; }
.scrim.is-visible { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(420px, 100vw); background: var(--cream-soft); z-index: 80;
  display: flex; flex-direction: column; transform: translateX(100%); transition: transform .5s cubic-bezier(.2, .8, .2, 1);
  box-shadow: var(--shadow-lg);
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-head { display: flex; align-items: center; justify-content: space-between; padding: 26px var(--edge); border-bottom: 1px solid var(--line); }
.cart-head h3 { font-family: 'Fraunces', serif; font-size: 1.6rem; font-style: italic; }
.cart-head button { font-size: 1.7rem; }
.cart-items { flex: 1; overflow-y: auto; padding: 10px var(--edge); }
.cart-empty { color: var(--ink-50); font-size: .92rem; padding: 40px 0; text-align: center; }
.cart-row { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); align-items: center; }
.cart-row img { width: 56px; height: 56px; object-fit: cover; border-radius: 12px; flex-shrink: 0; }
.cart-row-info { flex: 1; min-width: 0; }
.cart-row-info h4 { font-size: .92rem; font-weight: 700; margin-bottom: 2px; }
.cart-row-info span { font-size: .76rem; color: var(--ink-50); }
.cart-stepper { display: flex; align-items: center; gap: 10px; }
.cart-stepper button { width: 24px; height: 24px; border: 1px solid var(--ink-30); border-radius: 50%; display: grid; place-items: center; font-size: .9rem; transition: background .2s, color .2s; }
.cart-stepper button:hover { background: var(--ink); color: var(--cream-soft); }
.cart-foot { padding: 20px var(--edge) var(--edge); border-top: 1px solid var(--line); }
.cart-subtotal { display: flex; justify-content: space-between; align-items: baseline; font-family: 'Fraunces', serif; font-size: 1.3rem; margin-bottom: 10px; }
.cart-note { font-size: .78rem; color: var(--ink-50); margin-bottom: 16px; line-height: 1.5; }
.cart-call { display: block; text-align: center; margin-top: 12px; font-size: .82rem; color: var(--ink-50); text-decoration: underline; text-underline-offset: 3px; }

/* HERO */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: flex-end; overflow: hidden; color: var(--cream-soft);
  padding-top: 120px; background: var(--ink);
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); }
.hero-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20, 11, 6, .4) 0%, rgba(20, 11, 6, .38) 32%, rgba(20, 11, 6, .86) 100%);
}
.hero-particles { position: absolute; inset: 0; z-index: 1; overflow: hidden; pointer-events: none; }
.hero-particles span { position: absolute; bottom: -10px; border-radius: 50%; background: rgba(240, 201, 134, .55); animation: drift linear infinite; }
@keyframes drift {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  8% { opacity: .8; }
  92% { opacity: .25; }
  100% { transform: translateY(-108vh) translateX(24px); opacity: 0; }
}
.hero-steam { position: absolute; inset: 0; z-index: 1; overflow: hidden; pointer-events: none; }
.hero-steam span {
  position: absolute; bottom: 6%; width: 90px; height: 160px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255, 249, 239, .16), rgba(255, 249, 239, 0));
  filter: blur(6px); animation: steam-rise 9s ease-in infinite;
}
@keyframes steam-rise {
  0% { transform: translateY(0) translateX(0) scale(.7); opacity: 0; }
  20% { opacity: .8; }
  100% { transform: translateY(-62vh) translateX(18px) scale(1.5); opacity: 0; }
}
.hero-inner { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(48px, 8vw, 96px); }
.hero-eyebrow { color: var(--honey); margin-bottom: 22px; }
.hero-eyebrow::before { color: var(--honey); }
.hero h1 {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: clamp(2.7rem, 6.4vw, 5.6rem); line-height: 1.02; letter-spacing: -.01em;
  max-width: 17ch;
}
.hero h1 em { color: var(--honey); font-style: italic; }
.hero-sub { font-size: clamp(1rem, 1.3vw, 1.15rem); max-width: 46ch; color: rgba(255, 249, 239, .82); margin-top: 26px; line-height: 1.6; }
.hero-cta { display: flex; gap: 16px; margin-top: 40px; flex-wrap: wrap; }
.hero .btn-ghost { border-color: rgba(255, 249, 239, .4); color: var(--cream-soft); }
.hero .btn-ghost:hover { background: var(--cream-soft); color: var(--ink); border-color: var(--cream-soft); }

.scroll-cue {
  position: absolute; right: var(--edge); bottom: 40px; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-size: .66rem; font-weight: 700; letter-spacing: .18em; color: rgba(255, 249, 239, .7);
  writing-mode: vertical-rl;
}
.scroll-cue-line { width: 1px; height: 46px; background: rgba(255, 249, 239, .35); position: relative; overflow: hidden; }
.scroll-cue-line::after { content: ''; position: absolute; top: -46px; left: 0; width: 100%; height: 46px; background: var(--honey); animation: cue 2.2s ease-in-out infinite; }
@keyframes cue { 0% { transform: translateY(0); } 100% { transform: translateY(92px); } }

.hero-badge {
  position: absolute; right: var(--edge); top: 132px; z-index: 2; text-align: right;
  background: rgba(255, 249, 239, .1); border: 1px solid rgba(255, 249, 239, .25); backdrop-filter: blur(10px);
  border-radius: 18px; padding: 16px 20px; display: none;
}
.hero-badge strong { font-family: 'Fraunces', serif; font-size: 1.5rem; display: block; color: var(--honey); }
.hero-badge span { font-size: .68rem; font-weight: 600; letter-spacing: .06em; color: rgba(255, 249, 239, .8); }

/* MARQUEE */
.marquee-wrap {
  position: relative; z-index: 3; margin-top: -34px; height: 58px; overflow: hidden;
  box-shadow: 0 -10px 30px rgba(30, 16, 8, .18);
}
.marquee {
  position: absolute; left: -8%; right: -8%; top: -45px; bottom: -45px;
  background: var(--ink); color: var(--cream-soft); overflow: hidden; white-space: nowrap;
  transform: rotate(-1.4deg); display: flex; align-items: center;
}
.marquee-track { display: inline-flex; animation: marquee 28s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee span {
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 1.05rem; text-transform: uppercase;
  letter-spacing: .04em; padding-inline: 1.2em; color: var(--honey-light);
}
.marquee span::before { content: '🥨'; margin-right: .6em; font-size: .9em; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

section { position: relative; }
.section-head { max-width: 720px; margin-bottom: clamp(40px, 6vw, 76px); }
.section-head h2 {
  font-family: 'Fraunces', serif; font-weight: 500; font-size: clamp(2.1rem, 4.4vw, 3.5rem); line-height: 1.08;
  margin-top: 18px;
}
.section-head p { margin-top: 18px; font-size: 1.02rem; color: var(--ink-70); max-width: 56ch; line-height: 1.65; }
.section-head.on-dark h2 { color: var(--cream-soft); }
.section-head.on-dark p { color: rgba(255, 249, 239, .68); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; width: 100%; }

/* PROCESS — cum funcționează, dark, brick texture, animated covrig */
.process {
  padding-block: var(--section-pad); background: var(--ink); color: var(--cream-soft);
  position: relative; overflow: hidden;
}
.process::before {
  content: ''; position: absolute; inset: 0; opacity: .5; pointer-events: none;
  background-image:
    linear-gradient(335deg, rgba(255, 249, 239, .035) 23px, transparent 23px),
    linear-gradient(155deg, rgba(255, 249, 239, .035) 23px, transparent 23px),
    linear-gradient(335deg, rgba(255, 249, 239, .035) 23px, transparent 23px),
    linear-gradient(155deg, rgba(255, 249, 239, .035) 23px, transparent 23px);
  background-size: 58px 58px;
  background-position: 0px 2px, 4px 35px, 29px 31px, 34px 6px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 40%, transparent 100%);
}
.covrig-mark { position: absolute; right: -40px; top: 50%; transform: translateY(-50%); width: clamp(220px, 26vw, 380px); height: auto; opacity: .9; pointer-events: none; z-index: 0; }
.covrig-mark path { fill: none; stroke: var(--honey); stroke-width: 3.2; stroke-linecap: round; stroke-linejoin: round; opacity: .55; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 12px; position: relative; z-index: 1; }
.process-track { position: absolute; left: 0; right: 0; top: 27px; height: 1px; background: rgba(255, 249, 239, .16); z-index: 0; }
.process-fill { position: absolute; left: 0; top: 27px; height: 1px; width: 0%; background: var(--honey); z-index: 0; }
.process-step { position: relative; z-index: 1; }
.process-num {
  font-family: 'Fraunces', serif; font-style: italic; font-size: 2.1rem; color: var(--ink);
  width: 54px; height: 54px; border-radius: 50%; background: var(--honey); display: grid; place-items: center;
  margin-bottom: 22px; transition: background .4s, color .4s;
}
.process-step.is-active .process-num { background: var(--brick); color: var(--cream-soft); }
.process-step h3 { font-family: 'Inter', sans-serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.process-step p { color: rgba(255, 249, 239, .68); line-height: 1.6; font-size: .92rem; }

/* INFO STRIP */
.info-strip { padding-block: clamp(50px, 7vw, 90px); }
.info-strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.info-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; box-shadow: var(--shadow-sm); }
.info-card-icon { font-size: 1.7rem; margin-bottom: 14px; display: block; }
.info-card strong { font-family: 'Fraunces', serif; font-size: 1.5rem; display: block; color: var(--brick); line-height: 1.15; }
.info-card span { font-size: .82rem; color: var(--ink-70); margin-top: 6px; display: block; line-height: 1.45; }

/* PRODUCT GRID */
.meniu { padding-block: var(--section-pad); }
.filter-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 44px; position: sticky; top: 84px; z-index: 20; background: var(--cream); padding-block: 10px; }
.filter-tabs button {
  padding: .7em 1.3em; border-radius: 999px; border: 1.5px solid var(--line); font-size: .86rem; font-weight: 600;
  transition: all .3s ease; background: var(--cream);
}
.filter-tabs button:hover { border-color: var(--ink-30); }
.filter-tabs button.is-active { background: var(--ink); color: var(--cream-soft); border-color: var(--ink); }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.product-card {
  background: var(--card); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; min-width: 0;
  transition: transform .4s cubic-bezier(.2, .8, .2, 1), box-shadow .4s;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-media { aspect-ratio: 4/3; overflow: hidden; position: relative; background: var(--cream-soft); }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2, .8, .2, 1); }
.product-card:hover .product-media img { transform: scale(1.08); }
.product-tag {
  position: absolute; top: 12px; left: 12px; background: rgba(255, 249, 239, .92); backdrop-filter: blur(6px);
  font-size: .66rem; font-weight: 700; letter-spacing: .04em; padding: .4em .8em; border-radius: 999px; color: var(--ink-70);
}
.product-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 6px; flex: 1; min-width: 0; }
.product-name { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 1rem; line-height: 1.3; }
.product-note { font-family: 'Fraunces', serif; font-style: italic; color: var(--ink-50); font-size: .88rem; min-height: 1.3em; }
.product-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; padding-top: 14px; }
.product-price { font-family: 'Fraunces', serif; font-size: 1.28rem; color: var(--brick); min-width: 0; }
.card-add {
  width: 38px; height: 38px; flex-shrink: 0; border-radius: 50%; background: var(--ink); color: var(--cream-soft); font-size: 1.2rem;
  display: grid; place-items: center; transition: background .3s, transform .3s;
}
.card-add:hover { background: var(--brick); transform: rotate(90deg); }
.card-add-block {
  width: 100%; height: auto; border-radius: 999px; padding: .8em 1em;
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: .84rem;
  display: flex; align-items: center; justify-content: center; gap: .4em;
}
.card-add-block:hover { background: var(--brick); transform: none; }
.card-stepper { display: flex; align-items: center; gap: 12px; font-weight: 700; }
.card-stepper button { width: 30px; height: 30px; flex-shrink: 0; border-radius: 50%; border: 1.5px solid var(--ink-30); display: grid; place-items: center; transition: background .2s, color .2s; }
.card-stepper button:hover { background: var(--ink); color: var(--cream-soft); }

.fly-dot { position: fixed; z-index: 95; border-radius: 50%; pointer-events: none; overflow: hidden; box-shadow: var(--shadow-sm); }
.fly-dot img { width: 100%; height: 100%; object-fit: cover; }

.grid-empty { grid-column: 1 / -1; text-align: center; padding: 60px 20px; color: var(--ink-50); font-size: .95rem; }

.meniu-note { text-align: center; margin-top: 50px; font-size: .88rem; color: var(--ink-50); }
.meniu-note a { color: var(--brick); text-decoration: underline; text-underline-offset: 3px; }
.meniu-cta { text-align: center; margin-top: 50px; }

/* GALLERY */
.gallery { padding-block: var(--section-pad); background: var(--cream-soft); }
.gallery-strip { display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x proximity; padding-bottom: 10px; padding-inline: var(--edge); }
.gallery-strip::-webkit-scrollbar { height: 6px; }
.gallery-strip::-webkit-scrollbar-thumb { background: var(--ink-30); border-radius: 999px; }
.gallery-item { flex: 0 0 auto; width: clamp(200px, 24vw, 300px); border-radius: var(--radius); overflow: hidden; scroll-snap-align: start; box-shadow: var(--shadow-sm); aspect-ratio: 4/5; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-item:nth-child(even) { margin-top: 40px; }

/* ZONES + PROGRAM */
.zones { padding-block: var(--section-pad); }
.zones-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.zone-card {
  background: var(--card); border-radius: var(--radius); padding: 28px 26px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 10px; min-width: 0;
}
.zone-icon { font-size: 1.7rem; }
.zone-name { font-family: 'Fraunces', serif; font-size: 1.25rem; }
.zone-min { display: inline-flex; width: fit-content; font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--brick); background: var(--brick-soft); padding: .4em .8em; border-radius: 999px; }
.zone-note { font-size: .88rem; color: var(--ink-70); line-height: 1.55; }

.program-strip {
  margin-top: 26px; background: var(--ink); color: var(--cream-soft); border-radius: var(--radius);
  padding: 30px clamp(24px, 4vw, 44px); display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
}
.program-item { display: flex; align-items: flex-start; gap: 14px; }
.program-item .pi-icon { font-size: 1.5rem; flex-shrink: 0; }
.program-item strong { font-family: 'Fraunces', serif; font-style: italic; font-size: 1.1rem; display: block; color: var(--honey); margin-bottom: 4px; }
.program-item span { font-size: .84rem; color: rgba(255, 249, 239, .72); line-height: 1.5; }

.cta { background: var(--ink); color: var(--cream-soft); padding-block: var(--section-pad); text-align: center; }
.cta h2 { font-family: 'Fraunces', serif; font-style: italic; font-weight: 500; font-size: clamp(2rem, 5vw, 3.6rem); max-width: 18ch; margin: 0 auto; line-height: 1.15; }
.cta h2 em { color: var(--honey); }
.cta-actions { display: flex; gap: 16px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.cta .btn-ghost { border-color: rgba(255, 249, 239, .3); color: var(--cream-soft); }
.cta .btn-ghost:hover { background: var(--cream-soft); color: var(--ink); }

footer { padding-block: 90px 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 60px; border-bottom: 1px solid var(--line); }
.footer-logo-img { height: 50px; width: auto; display: block; }
.footer-brand p { margin-top: 16px; color: var(--ink-70); font-size: .92rem; line-height: 1.6; max-width: 34ch; }
.footer-social { display: inline-flex; gap: 12px; margin-top: 20px; }
.footer-social a { width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; transition: background .3s, color .3s; }
.footer-social a:hover { background: var(--ink); color: var(--cream-soft); }
.footer-col h4 { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-50); margin-bottom: 18px; }
.footer-col a, .footer-col p { display: block; font-size: .92rem; margin-bottom: 11px; color: var(--ink-80); line-height: 1.5; }
.footer-col a:hover { color: var(--brick); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; font-size: .8rem; color: var(--ink-50); flex-wrap: wrap; gap: 10px; }

.vs-badge {
  position: fixed; left: 18px; bottom: 18px; z-index: 55;
  background: var(--ink); color: var(--cream-soft); font-size: .68rem; font-weight: 600;
  letter-spacing: .06em; padding: .8em 1.1em; border-radius: 999px; display: inline-flex; align-items: center; gap: 8px;
  box-shadow: var(--shadow-sm); transition: transform .3s, background .3s;
}
.vs-badge:hover { transform: translateY(-3px); background: var(--brick); }
.vs-badge span { color: var(--honey); }
.vs-badge:hover span { color: var(--cream-soft); }

[data-reveal] { opacity: 0; transform: translateY(26px); }
.reveal-ready { transition: opacity .8s cubic-bezier(.2, .8, .2, 1), transform .8s cubic-bezier(.2, .8, .2, 1) !important; }

@media (min-width: 641px) {
  .hero-badge { display: block; }
}

@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-call { display: none; }
  .hamburger { display: flex; }
  .process-grid { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .process-track, .process-fill { display: none; }
  .info-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .zones-grid { grid-template-columns: 1fr; }
  .program-strip { grid-template-columns: 1fr; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; row-gap: 40px; }
  .filter-tabs { top: 70px; }
  .covrig-mark { opacity: .35; }
}

@media (max-width: 640px) {
  .has-cursor, .has-cursor * { cursor: auto !important; }
  .cursor-dot, .cursor-ring { display: none; }
  .hero { padding-top: 100px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .scroll-cue { display: none; }
  .info-strip-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .info-card { padding: 20px 16px; }
  .info-card strong { font-size: 1.2rem; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .product-body { padding: 14px 14px 16px; gap: 4px; }
  .product-name { font-size: .84rem; line-height: 1.25; }
  .product-note { font-size: .74rem; min-height: 1.1em; }
  .product-price { font-size: 1.05rem; }
  .product-foot { flex-wrap: wrap; }
  .product-tag { font-size: .58rem; padding: .3em .6em; top: 8px; left: 8px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cart-drawer { width: 100vw; }
  .vs-badge { font-size: .62rem; padding: .7em .95em; }
  .marquee span { font-size: .92rem; }
  .gallery-item:nth-child(even) { margin-top: 0; }
  .covrig-mark { display: none; }
}

/* CHECKOUT */
.checkout-topbar { padding: 22px var(--edge); display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.checkout-section { padding: 40px 0 120px; }
.crumbs { font-size: .82rem; color: var(--ink-50); margin-bottom: 16px; }
.crumbs a { text-decoration: underline; text-underline-offset: 3px; }
.crumbs a:hover { color: var(--brick); }
.checkout-head { max-width: 640px; margin-bottom: 40px; }
.checkout-head h1 { font-family: 'Fraunces', serif; font-weight: 500; font-size: clamp(2rem, 4vw, 3rem); margin-top: 10px; }
.checkout-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: start; }

.co-block { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 30px; margin-bottom: 20px; }
.co-title { display: flex; align-items: center; gap: 14px; font-family: 'Fraunces', serif; font-style: italic; font-size: 1.35rem; margin-bottom: 20px; }
.co-step { display: flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; background: var(--ink); color: var(--cream-soft); font-family: 'Inter', sans-serif; font-size: .78rem; font-weight: 700; flex-shrink: 0; }

.co-items { display: flex; flex-direction: column; }
.co-item { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.co-item:last-child { border-bottom: none; }
.co-item-media { width: 56px; height: 56px; border-radius: 12px; overflow: hidden; flex-shrink: 0; }
.co-item-media img { width: 100%; height: 100%; object-fit: cover; }
.co-item-body { flex: 1; min-width: 0; }
.co-item-body h4 { font-size: .92rem; font-weight: 700; }
.co-item-body span { font-size: .74rem; color: var(--ink-50); }
.stepper { display: flex; align-items: center; border: 1.5px solid var(--line); border-radius: 20px; overflow: hidden; transform: scale(.92); transform-origin: left center; flex-shrink: 0; }
.stepper button { width: 26px; height: 26px; font-size: 1rem; font-weight: 700; }
.stepper button:hover { background: var(--cream-soft); }
.step-qty { width: 20px; text-align: center; font-size: .82rem; font-weight: 700; }
.co-item-price { font-family: 'Fraunces', serif; font-weight: 600; font-size: 1rem; color: var(--brick); white-space: nowrap; min-width: 60px; text-align: right; flex-shrink: 0; }
.co-item-remove { font-size: 1rem; color: var(--ink-50); flex-shrink: 0; }
.co-item-remove:hover { color: var(--brick); }

.mode-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mode-row.mode-row-3 { grid-template-columns: 1fr; }
.mode-btn { display: flex; align-items: center; gap: 12px; text-align: left; padding: 16px 18px; border: 1.5px solid var(--line); border-radius: 16px; background: var(--card); transition: border-color .25s, background .25s; min-width: 0; }
.mode-btn:hover { border-color: var(--brick); }
.mode-btn.is-active { border-color: var(--brick); background: var(--brick-soft); }
.mode-ico { font-size: 1.3rem; flex-shrink: 0; }
.mode-t { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.mode-t strong { font-family: 'Inter', sans-serif; font-size: .92rem; }
.mode-t small { font-size: .74rem; color: var(--ink-50); }

.co-label { font-size: .7rem; font-weight: 700; color: var(--ink-50); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 10px; }
.chip-row { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 20px; }
.chip-row:last-child { margin-bottom: 0; }
.chip { display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 10px 15px; border: 1.5px solid var(--line); border-radius: 14px; background: var(--card); font-size: .84rem; font-weight: 700; color: var(--ink-80); min-width: 64px; transition: all .25s; }
.chip span { font-size: .68rem; font-weight: 500; color: var(--ink-50); }
.chip:hover { border-color: var(--brick); }
.chip.is-active { background: var(--ink); border-color: var(--ink); color: var(--cream-soft); }
.chip.is-active span { color: rgba(255, 249, 239, .65); }
.chip-sm { flex-direction: row; min-width: 0; font-size: .8rem; padding: 9px 15px; }
.co-warn { font-size: .8rem; color: var(--brick); margin-top: 8px; font-weight: 500; }

.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
.field-grid > .field-full { grid-column: 1 / -1; }
.checkout-form { display: flex; flex-direction: column; gap: 16px; }
.checkout-form label { display: flex; flex-direction: column; gap: 8px; font-size: .84rem; font-weight: 700; color: var(--ink-80); }
.checkout-form input[type=text], .checkout-form input[type=tel], .checkout-form input[type=email], .checkout-form textarea {
  font: inherit; font-weight: 400; font-size: .95rem; padding: 13px 16px; border-radius: 14px; border: 1.5px solid var(--line); background: var(--card); color: var(--ink);
}
.checkout-form input:focus, .checkout-form textarea:focus { outline: none; border-color: var(--brick); }
.checkout-form textarea { resize: vertical; min-height: 70px; font-family: inherit; }
.checkout-required { color: var(--brick); }
.checkout-note { font-size: .78rem; color: var(--ink-50); text-align: center; margin-top: 14px; }

.gdpr { display: flex; align-items: flex-start; gap: 9px; font-size: .78rem; color: var(--ink-50); margin: 4px 0 20px; cursor: pointer; }
.gdpr input { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--brick); flex-shrink: 0; }

.checkout-summary { background: var(--cream-soft); border-radius: var(--radius); padding: 32px; position: sticky; top: 24px; }
.checkout-summary h3 { font-family: 'Fraunces', serif; font-style: italic; font-size: 1.35rem; margin-bottom: 20px; }
.checkout-line { display: flex; justify-content: space-between; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: .9rem; }
.checkout-total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 18px; margin-top: 6px; font-weight: 700; font-size: 1rem; }
.checkout-total strong { font-family: 'Fraunces', serif; font-size: 1.7rem; color: var(--brick); }
.sum-trust { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 9px; font-size: .8rem; color: var(--ink-70); }
.sum-trust a { color: var(--brick); text-decoration: underline; text-underline-offset: 3px; }
.sum-warn { margin-top: 14px; font-size: .8rem; color: var(--brick); background: var(--brick-soft); padding: 10px 14px; border-radius: 12px; line-height: 1.5; }

.order-ok { text-align: center; max-width: 560px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.ok-badge { width: 60px; height: 60px; border-radius: 50%; background: var(--ink); color: var(--honey); font-size: 1.6rem; display: flex; align-items: center; justify-content: center; }
.order-ok h2 { font-family: 'Fraunces', serif; font-weight: 500; font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.order-ok h2 em { color: var(--brick); font-style: italic; }
.order-ok .ok-sub { color: var(--ink-70); font-size: .95rem; margin-top: -6px; }
.ok-card { background: var(--cream-soft); border-radius: var(--radius); padding: 26px 28px; width: 100%; text-align: left; }
.ok-card p { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--line); font-size: .88rem; }
.ok-card p:last-child { border-bottom: none; }
.ok-card .ok-total { font-weight: 700; font-size: 1rem; }
.ok-card .ok-total strong { font-family: 'Fraunces', serif; font-size: 1.3rem; color: var(--brick); }
.ok-card .ok-meta { display: block; color: var(--ink-70); font-size: .84rem; line-height: 1.7; padding-top: 14px; border-bottom: none; }
.ok-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; width: 100%; }
.ok-wa { background: #25d366; color: #fff; box-shadow: 0 12px 26px -10px rgba(37, 211, 102, .55); }
.ok-wa:hover { background: #1ebe5a; color: #fff; }
.ok-note { font-size: .78rem; color: var(--ink-50); max-width: 420px; }
.checkout-empty { text-align: center; padding: 80px 20px; max-width: 480px; margin: 0 auto; }
.checkout-empty h2 { font-family: 'Fraunces', serif; font-weight: 500; font-size: 1.8rem; margin-top: 16px; }
.checkout-empty p { color: var(--ink-70); margin: 16px 0; }

@media (max-width: 860px) {
  .checkout-grid { grid-template-columns: 1fr; }
  .checkout-summary { position: static; }
  .mode-row { grid-template-columns: 1fr; }
  .field-grid { grid-template-columns: 1fr; }
}

/* MENIU + PRODUS PAGES */
.meniu-page { padding: 150px 0 var(--section-pad); }
.produs-page { padding: 150px 0 var(--section-pad); }

.menu-toolbar { display: flex; gap: 20px; flex-wrap: wrap; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.search-box {
  display: flex; align-items: center; gap: 10px; background: var(--card); border: 1.5px solid var(--line);
  border-radius: 999px; padding: .8em 1.2em; flex: 1; min-width: 240px; max-width: 380px; transition: border-color .3s;
}
.search-box:focus-within { border-color: var(--brick); }
.search-box svg { width: 17px; height: 17px; color: var(--ink-50); flex-shrink: 0; }
.search-box input { border: none; outline: none; background: none; font: inherit; font-size: .9rem; color: var(--ink); width: 100%; }
.search-box input::placeholder { color: var(--ink-50); }
.result-count { font-size: .76rem; color: var(--ink-50); margin-bottom: 20px; }
.result-count strong { color: var(--ink); }

.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-bottom: clamp(70px, 9vw, 120px); }
.pd-media { border-radius: var(--radius); overflow: hidden; aspect-ratio: 1/1; box-shadow: var(--shadow-lg); position: sticky; top: 110px; background: var(--cream-soft); }
.pd-media img { width: 100%; height: 100%; object-fit: cover; }
.pd-tags { display: flex; gap: 8px; margin-bottom: 18px; flex-wrap: wrap; }
.pd-tag {
  font-size: .68rem; font-weight: 600; letter-spacing: .05em; color: var(--ink-70);
  background: var(--cream-soft); border: 1px solid var(--line); padding: .4em .9em; border-radius: 999px;
}
.pd-info h1 { font-family: 'Fraunces', serif; font-weight: 500; font-size: clamp(2rem, 3.6vw, 2.9rem); line-height: 1.08; }
.pd-note { font-family: 'Fraunces', serif; font-style: italic; color: var(--ink-50); font-size: 1.05rem; margin-top: 10px; }
.pd-price { font-family: 'Fraunces', serif; font-size: 2rem; color: var(--brick); margin-top: 18px; }
.pd-desc { font-size: 1rem; color: var(--ink-70); line-height: 1.7; margin-top: 16px; max-width: 46ch; }
.pd-actions { display: flex; gap: 14px; align-items: center; margin-top: 32px; flex-wrap: wrap; }
.pd-qty {
  display: flex; align-items: center; gap: 18px; border: 1.5px solid var(--line); border-radius: 999px; padding: .5em 1.1em;
  font-weight: 700;
}
.pd-qty button { font-size: 1.1rem; width: 20px; }
.pd-buy-now {
  display: block; margin-top: 16px; font-size: .86rem; font-weight: 700;
  color: var(--brick); text-decoration: underline; text-underline-offset: 3px;
}
.pd-buy-now:hover { color: var(--brick-dark); }
.pd-trust { margin-top: 24px; font-size: .82rem; color: var(--ink-50); line-height: 1.6; padding-top: 20px; border-top: 1px dashed var(--line); }

.produs-not-found { text-align: center; padding: 80px 20px; max-width: 480px; margin: 0 auto clamp(70px, 9vw, 120px); }
.produs-not-found h2 { font-family: 'Fraunces', serif; font-weight: 500; font-size: 1.8rem; margin-top: 16px; }
.produs-not-found p { color: var(--ink-70); margin: 16px 0 24px; }

@media (max-width: 860px) {
  .product-detail { grid-template-columns: 1fr; gap: 32px; }
  .pd-media { position: static; aspect-ratio: 4/3; }
}

@media (max-width: 640px) {
  .meniu-page, .produs-page { padding-top: 120px; }
  .menu-toolbar { flex-direction: column; align-items: stretch; }
  .search-box { max-width: none; }
  .filter-tabs { top: 70px; }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .hero-media img { transform: none; }
  .hero-particles span, .hero-steam span { animation: none; display: none; }
}
