/* ═══════════════════════════════════════════════
   ЛЁД СУП — claude-v2
   Concept: Bold Editorial + 3D Interactions
   ═══════════════════════════════════════════════ */

@import url('fonts.css');
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,700;0,9..144,900;1,9..144,400;1,9..144,700&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  --bg:        #f5f0e6;
  --bg-warm:   #efe8d8;
  --bg-dark:   #1a1209;
  --green:     #243d28;
  --green-mid: #3a6142;
  --green-lt:  #5a8c63;
  --orange:    #e8721c;
  --orange-lt: #f5a045;
  --red:       #c93528;
  --cream:     #faf6ee;
  --ink:       #141210;
  --ink-soft:  #3d3528;
  --ink-muted: #7a7060;
  --ink-faint: #b5ac9c;
  --white:     #ffffff;

  --serif:   'Fraunces', Georgia, serif;
  --sans:    'Plus Jakarta Sans', system-ui, sans-serif;
  --visuelt: 'Visuelt Pro', 'Plus Jakarta Sans', system-ui, sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);

  --r-sm:   6px;
  --r:      14px;
  --r-lg:   24px;
  --r-xl:   36px;
  --r-pill: 999px;

  --sh-sm:  0 2px 8px rgba(20,18,9,.08);
  --sh:     0 8px 24px rgba(20,18,9,.12);
  --sh-lg:  0 20px 48px rgba(20,18,9,.16);
  --sh-xl:  0 40px 80px rgba(20,18,9,.2);
  --sh-card:
    0 2px 4px rgba(20,18,9,.04),
    0 8px 16px rgba(20,18,9,.08),
    0 20px 40px rgba(20,18,9,.1);
  --sh-card-hover:
    0 4px 8px rgba(20,18,9,.06),
    0 16px 32px rgba(20,18,9,.14),
    0 40px 70px rgba(20,18,9,.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--sans); cursor: pointer; }

/* ── Typography ── */
h1,h2,h3,h4 { font-family: var(--serif); line-height: 1.1; font-weight: 700; }
h1 { font-size: clamp(3.5rem, 7vw, 8rem); letter-spacing: -.03em; }
h2 { font-size: clamp(2.5rem, 4.5vw, 5rem); letter-spacing: -.02em; }
h3 { font-size: clamp(1.6rem, 2.5vw, 2.4rem); letter-spacing: -.01em; }

.label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
}

/* ── Container ── */
.container { max-width: 1380px; margin: 0 auto; padding: 0 2.5rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .9rem 2rem; border-radius: var(--r-pill);
  font-size: .9rem; font-weight: 600; border: none;
  transition: all .25s var(--ease); white-space: nowrap;
}
.btn-dark { background: var(--ink); color: var(--bg); }
.btn-dark:hover { background: var(--green); transform: translateY(-2px); box-shadow: var(--sh); }
.btn-orange { background: var(--orange); color: var(--white); }
.btn-orange:hover { background: var(--orange-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,114,28,.35); }
.btn-out-of-stock,
.btn-out-of-stock:disabled {
  opacity: 0.42;
  cursor: not-allowed;
  filter: grayscale(0.3);
  transform: none !important;
  box-shadow: none !important;
  pointer-events: none;
}
.btn-outline { background: transparent; color: var(--ink); border: 2px solid var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--bg); }
.btn-ghost-light { background: rgba(255,255,255,.12); color: var(--white); border: 1.5px solid rgba(255,255,255,.25); }
.btn-ghost-light:hover { background: rgba(255,255,255,.22); }
.btn-ghost {
  background: var(--white);
  color: var(--ink);
  border: 1.5px solid var(--bg-warm);
}
.btn-ghost:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--bg);
}
.btn-lg { padding: 1.15rem 2.6rem; font-size: 1rem; }
.btn-block { width: 100%; }

/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem;
  transition: background .3s, backdrop-filter .3s, box-shadow .3s;
  /* стабилизирует 3D-логотип при скролле (Firefox mobile) */
  transform: translateZ(0);
  backface-visibility: hidden;
}
.site-header.solid {
  background: rgba(245,240,230,.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(20,18,9,.07);
}
.site-header.on-dark { --nav-color: rgba(250,246,238,.8); }
.site-header.on-dark .nav-link { color: var(--nav-color); }
.site-header.on-dark .nav-link:hover { color: var(--white); }

.header-logo {
  display: flex; align-items: center; gap: .65rem;
  text-decoration: none; flex-shrink: 0;
}
.logo-text-block {
  display: flex; flex-direction: column; gap: .05rem;
}
.logo-brand-text {
  font-family: var(--serif); font-size: 1.45rem; font-weight: 700;
  color: var(--green); letter-spacing: -.02em; line-height: 1.1;
  display: flex; align-items: flex-start; gap: .28em;
  transition: color .3s;
}
.site-header.on-dark .logo-brand-text {
  color: var(--white);
}
.logo-eda-col {
  display: flex; flex-direction: column; align-items: flex-start;
  line-height: 1;
}
.logo-eda {
  font-weight: 700;
}
.logo-da {
  font-size: .42em;
  font-weight: 800;
  color: var(--orange-lt);
  margin-top: .08em;
  letter-spacing: .02em;
}
.logo-brand-rest {
  font-weight: 700;
}
.logo-slogan-text {
  font-size: .58rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--orange-lt); line-height: 1;
}

/* Mini 3D cube logo — same static 3D on desktop and mobile (no spin) */
.logo-cube-mini {
  width: 48px; height: 48px;
  perspective: 130px;
  flex-shrink: 0;
  /* отдельный слой — иначе в Firefox Android при скролле 3D «ездит» как вращение */
  transform: translateZ(0);
  isolation: isolate;
  contain: layout style;
}
.lcm-scene {
  width: 48px; height: 48px;
  perspective: 130px;
  transform: translateZ(0);
}
.lcm-cube {
  width: 48px; height: 48px;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(-22deg) rotateY(30deg) translateZ(0);
  animation: none !important;
  transition: none !important;
}
.lcm-face {
  position: absolute; width: 48px; height: 48px;
  background: var(--orange);
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  backface-visibility: hidden;
  overflow: hidden;
  animation: none !important;
  transition: none !important;
}
.lcm-face.lf  { transform: translateZ(24px); }
.lcm-face.lb  { transform: rotateY(180deg) translateZ(24px); background: #c4601a; }
.lcm-face.ll  { transform: rotateY(-90deg) translateZ(24px); background: #d46618; }
.lcm-face.lr  { transform: rotateY(90deg)  translateZ(24px); background: #d46618; }
.lcm-face.lt  { transform: rotateX(90deg)  translateZ(24px); background: var(--orange-lt); }
.lcm-face.lbt { transform: rotateX(-90deg) translateZ(24px); background: #a85416; }

.cube-e3 {
  font-family: var(--serif); font-weight: 900; line-height: 1;
  color: #fff; font-size: 1.05rem;
  display: inline-flex; align-items: flex-start;
}
.cube-e3 sup {
  font-size: .42em; font-weight: 700;
  margin-top: .08em; margin-left: .04em; line-height: 1;
}

/* Header cube mark: Еда³ */
.cube-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--serif);
  line-height: 1;
  text-align: center;
}
.cube-mark .cm-eda {
  font-weight: 900;
  font-size: 1.09rem; /* +40% от .78rem */
  letter-spacing: -.02em;
  display: inline-flex;
  align-items: flex-start;
}
.cube-mark .cm-eda sup {
  font-size: .42em;
  font-weight: 700;
  margin-top: .06em;
  margin-left: .02em;
  line-height: 1;
}

.header-nav { display: flex; align-items: center; gap: clamp(1rem, 1.6vw, 2rem); flex-shrink: 1; min-width: 0; }
.nav-link {
  font-size: 1.094rem; font-weight: 500; color: var(--ink-soft);
  transition: color .2s; position: relative;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1.5px; background: var(--orange);
  transform: scaleX(0); transform-origin: right;
  transition: transform .25s var(--ease);
}
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-link:hover { color: var(--ink); }

.header-geo {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink-soft);
  white-space: nowrap;
  text-decoration: none;
  transition: color .2s;
}
.header-geo svg {
  width: 15px;
  height: 18px;
  flex-shrink: 0;
  color: var(--orange);
}
.header-geo:hover { color: var(--ink); }
.site-header.on-dark .header-geo { color: rgba(250,246,238,.85); }
.site-header.on-dark .header-geo:hover { color: var(--white); }

.header-right { display: flex; align-items: center; gap: .75rem; }

.account-btn {
  position: relative; background: var(--bg-warm);
  border: none; width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s; color: var(--ink); cursor: pointer;
}
.account-btn svg { width: 20px; height: 20px; }
.site-header.on-dark .account-btn { background: rgba(255,255,255,.12); color: var(--white); }
.account-btn:hover { background: var(--ink); color: var(--bg); }

.header-account-wrap { position: relative; }
.account-btn.logged-in {
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
}
.site-header.on-dark .account-btn.logged-in {
  background: var(--orange);
  color: var(--white);
}
.account-initials {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1;
}
.account-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  background: var(--white);
  border: 1.5px solid var(--bg-warm);
  border-radius: var(--r);
  box-shadow: var(--sh-lg);
  padding: .4rem;
  z-index: 950;
}
.account-dropdown-link,
.account-dropdown-logout {
  display: block;
  width: 100%;
  text-align: left;
  padding: .65rem .85rem;
  border: none;
  background: none;
  font-family: var(--sans);
  font-size: .88rem;
  color: var(--ink);
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
}
.account-dropdown-link:hover,
.account-dropdown-logout:hover {
  background: var(--bg);
  color: var(--green);
}
.account-dropdown-logout { color: var(--red); }

.cart-btn {
  position: relative; background: var(--bg-warm);
  border: none; width: 42px; height: 42px; border-radius: 50%;
  font-size: 1rem; display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.site-header.on-dark .cart-btn { background: rgba(255,255,255,.12); color: var(--white); }
.cart-btn:hover { background: var(--ink); color: var(--bg); }
.cart-badge {
  position: absolute; top: -3px; right: -3px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--orange); color: var(--white);
  font-size: .62rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 6px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all .25s; }
.site-header.on-dark .hamburger span { background: var(--white); }
.hamburger.open span { background: var(--ink) !important; }
.site-header.on-dark.nav-open .hamburger.open span { background: var(--ink) !important; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 30, 22, .45);
  z-index: 898;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.nav-backdrop.show {
  opacity: 1;
  pointer-events: auto;
}
body.nav-menu-open { overflow: hidden; }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--green);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  position: relative;
}

.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px 3rem 80px 5rem;
  position: relative; z-index: 2;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(232,114,28,.2); border: 1px solid rgba(232,114,28,.4);
  color: var(--orange-lt); padding: .35rem 1rem;
  border-radius: var(--r-pill); font-size: .75rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 2rem;
}
.hero-badge-dot { width: 5px; height: 5px; background: var(--orange); border-radius: 50%; }

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  color: var(--cream);
  line-height: 1.05;
  letter-spacing: -.03em;
  margin-bottom: 1.5rem;
}
.hero-title em { font-style: italic; color: var(--orange-lt); font-weight: 400; }

.hero-sub {
  font-size: 1.1rem; color: rgba(250,246,238,.6);
  max-width: 440px; line-height: 1.7; margin-bottom: 2.5rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }

.hero-kpis {
  display: flex; gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(250,246,238,.12);
}
.kpi-val {
  font-family: var(--serif);
  font-size: 2.6rem; font-weight: 900;
  color: var(--cream); line-height: 1;
}
.kpi-label { font-size: .78rem; color: rgba(250,246,238,.45); margin-top: .25rem; }

/* Hero Right — Photo collage */
.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-right::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, var(--green) 0%, transparent 30%);
  z-index: 1; pointer-events: none;
}
.hero-photo-main {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .85;
}
.hero-float-card {
  position: absolute; z-index: 2;
  background: rgba(250,246,238,.1);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r-lg);
  padding: 1.2rem 1.5rem;
  color: var(--cream);
}
.hero-float-card:nth-child(2) {
  bottom: 15%; left: 10%;
  animation: floatA 5s ease-in-out infinite;
}
.hero-float-card:nth-child(3) {
  top: 25%; right: 8%;
  animation: floatB 6s ease-in-out infinite 1s;
}
@keyframes floatA { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes floatB { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.float-card-icon { font-size: 1.8rem; margin-bottom: .4rem; }
.float-card-name { font-family: var(--serif); font-size: 1rem; margin-bottom: .2rem; }
.float-card-price { color: var(--orange-lt); font-weight: 600; font-size: .95rem; }

/* ══════════════════════════════════════
   TICKER
══════════════════════════════════════ */
.ticker-section {
  background: var(--orange);
  overflow: hidden;
  padding: .9rem 0;
}
.ticker-track {
  display: flex; gap: 0;
  animation: tickerScroll 30s linear infinite;
  width: max-content;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  white-space: nowrap;
  padding: 0 2rem;
  font-size: .875rem; font-weight: 600;
  color: var(--white);
  letter-spacing: .04em;
}
.ticker-sep { color: rgba(255,255,255,.5); margin: 0 .5rem; }
@keyframes tickerScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ══════════════════════════════════════
   SECTION COMMONS
══════════════════════════════════════ */
.section { padding: 110px 0; }
.section-sm { padding: 72px 0; }

/* ══════════════════════════════════════
   CATEGORY SHOWCASE
══════════════════════════════════════ */
.categories-section { background: var(--bg); padding: 80px 0; }
.categories-section h2 { margin-bottom: .6rem; }
.categories-section .section-intro { color: var(--ink-muted); font-size: 1.05rem; margin-bottom: 2.5rem; }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 1rem;
}

.cat-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.cat-card:hover { transform: scale(1.025); box-shadow: var(--sh-lg); }
.cat-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.cat-card:hover img { transform: scale(1.08); }
.cat-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,18,9,.75) 0%, rgba(20,18,9,.1) 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.6rem;
}
.cat-card-num {
  font-family: var(--serif);
  font-size: 5rem; font-weight: 900;
  color: rgba(255,255,255,.12);
  line-height: 1; position: absolute;
  top: .5rem; right: 1rem;
  pointer-events: none;
}
.cat-card-label { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--orange-lt); margin-bottom: .3rem; }
.cat-card-title { font-family: var(--serif); font-size: 1.4rem; color: var(--white); line-height: 1.2; }
.cat-card-sub { font-size: .8rem; color: rgba(255,255,255,.55); margin-top: .3rem; }
.cat-card-hover-text {
  font-size: .8rem; color: rgba(255,255,255,.7); margin-top: .35rem; line-height: 1.4;
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height .4s var(--ease), opacity .3s;
}
.cat-card:hover .cat-card-hover-text { max-height: 48px; opacity: 1; }

/* ══════════════════════════════════════
   CATALOG
══════════════════════════════════════ */
.catalog-section { background: var(--bg-warm); }

.catalog-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
  align-items: start;
}

.catalog-sidebar {
  position: sticky;
  top: 86px;
}
.sidebar-title { font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 1rem; }
.sidebar-filters { display: flex; flex-direction: column; gap: .3rem; }
.sidebar-btn {
  padding: .75rem 1.1rem; border-radius: var(--r);
  background: transparent; border: none;
  text-align: left; font-size: .9rem; font-weight: 500;
  color: var(--ink-soft);
  display: flex; align-items: center; justify-content: space-between;
  transition: all .2s; cursor: pointer;
}
.sidebar-btn:hover { background: var(--bg); color: var(--ink); }
.sidebar-btn.active { background: var(--ink); color: var(--bg); font-weight: 600; }
.sidebar-count {
  font-size: .75rem; font-weight: 600;
  background: rgba(20,18,9,.08);
  padding: .15rem .55rem;
  border-radius: var(--r-pill);
  color: var(--ink-muted);
}
.sidebar-btn.active .sidebar-count { background: rgba(245,240,230,.15); color: rgba(245,240,230,.6); }

.products-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ── Product Card V2 ── */
.product-card-v2 {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-card);
  transition: box-shadow .35s var(--ease);
  transform-style: preserve-3d;
  will-change: transform;
  position: relative;
}
.product-card-v2:hover { box-shadow: var(--sh-card-hover); }

.pc-img {
  height: 220px;
  overflow: hidden;
  position: relative;
  background: var(--bg-warm);
}
.pc-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
  display: block;
}
.product-card-v2:hover .pc-img img { transform: scale(1.07); }

.pc-badge {
  position: absolute; top: 14px; left: 14px;
  padding: .3rem .85rem; border-radius: var(--r-pill);
  font-size: .68rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  z-index: 2;
}
.badge-hit  { background: var(--orange); color: var(--white); }
.badge-new  { background: var(--green-mid); color: var(--white); }
.badge-veg  { background: #4a7c59; color: var(--white); }
.badge-sale { background: var(--red); color: var(--white); }

.pc-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,18,9,.3) 0%, transparent 50%);
}

.pc-body { padding: 1.4rem 1.5rem 1.5rem; }
.pc-cat {
  font-size: .68rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--green-lt); margin-bottom: .5rem;
}
.pc-name {
  font-family: var(--serif); font-size: 1.2rem; font-weight: 700;
  color: var(--ink); line-height: 1.25; margin-bottom: .5rem;
}
.pc-desc { font-size: .83rem; color: var(--ink-muted); line-height: 1.6; margin-bottom: .9rem; }
.pc-meta { font-size: .75rem; color: var(--ink-faint); margin-bottom: 1.1rem; }

.pc-footer { display: flex; align-items: center; justify-content: space-between; gap: .75rem; }
.pc-price {
  font-family: var(--serif); font-size: 1.6rem; font-weight: 900; color: var(--ink);
}
.pc-price small { font-family: var(--sans); font-size: .8rem; font-weight: 400; color: var(--ink-muted); margin-left: .2rem; }

.pc-add {
  display: flex; align-items: center; gap: .4rem;
  background: var(--ink); color: var(--bg);
  border: none; border-radius: var(--r-pill);
  padding: .65rem 1.2rem;
  font-size: .8rem; font-weight: 600;
  transition: all .2s var(--ease-back);
}
.pc-add:hover { background: var(--orange); transform: scale(1.05); }
.pc-add-icon { font-size: 1rem; }

/* ══════════════════════════════════════
   STATS STRIP
══════════════════════════════════════ */
.stats-section { background: var(--ink); padding: 48px 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center; padding: 1.2rem 1.5rem;
  border-right: 1px solid rgba(245,240,230,.08);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 900; color: var(--orange);
  line-height: 1; margin-bottom: .25rem;
}
.stat-item:last-child .stat-num {
  white-space: nowrap;
  font-size: clamp(1.75rem, 3vw, 2.85rem);
}
.stat-unit { font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(245,240,230,.4); margin-bottom: .3rem; }
.stat-desc { font-size: .8rem; color: rgba(245,240,230,.55); line-height: 1.45; }

/* ══════════════════════════════════════
   BENEFITS
══════════════════════════════════════ */
.benefits-section { background: var(--bg); }
.benefits-header { max-width: 600px; margin-bottom: 3.5rem; }
.benefits-header h2 { margin-bottom: .8rem; }
.benefits-header p { color: var(--ink-muted); font-size: 1.05rem; line-height: 1.7; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(20,18,9,.08);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.benefit-item {
  background: var(--bg);
  padding: 2.5rem;
  transition: background .25s;
  position: relative;
}
.benefit-item:hover { background: var(--white); }
.benefit-num {
  font-family: var(--serif); font-size: 3.5rem; font-weight: 900;
  color: var(--orange); opacity: .18; line-height: 1;
  margin-bottom: .8rem;
}
.benefit-icon { font-size: 1.8rem; margin-bottom: 1rem; }
.benefit-title { font-family: var(--serif); font-size: 1.2rem; font-weight: 700; margin-bottom: .6rem; }
.benefit-text { font-size: .875rem; color: var(--ink-muted); line-height: 1.65; }

/* ══════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════ */
.how-section { background: var(--green); padding: 100px 0; }
.how-section .label { color: var(--orange-lt); }
.how-section h2 { color: var(--cream); margin-bottom: 3.5rem; margin-top: .6rem; }

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.how-step {
  background: rgba(250,246,238,.07);
  border: 1px solid rgba(250,246,238,.1);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  transition: background .3s;
}
.how-step:hover { background: rgba(250,246,238,.12); }
.step-num {
  font-family: var(--serif); font-size: 4rem; font-weight: 900;
  color: var(--orange); opacity: .4; line-height: 1; margin-bottom: 1rem;
}
.step-icon { font-size: 2rem; margin-bottom: 1rem; }
.step-title { font-family: var(--serif); font-size: 1.3rem; color: var(--cream); margin-bottom: .7rem; }
.step-text { font-size: .9rem; color: rgba(250,246,238,.55); line-height: 1.65; }

/* ══════════════════════════════════════
   REVIEWS
══════════════════════════════════════ */
.reviews-section { background: var(--bg-warm); }
.reviews-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.reviews-col { display: flex; flex-direction: column; gap: 1.5rem; }

.review-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 2rem;
  box-shadow: var(--sh-sm);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--sh); }
.review-card.lg { background: var(--green); color: var(--cream); }

.review-quote-mark {
  font-family: var(--serif); font-size: 4rem; font-weight: 900;
  color: var(--orange); line-height: .8; margin-bottom: .5rem; display: block;
}
.review-card.lg .review-quote-mark { color: var(--orange-lt); }
.review-stars { color: var(--orange); font-size: .95rem; letter-spacing: .08em; margin-bottom: .8rem; }
.review-text {
  font-size: .95rem; line-height: 1.7; color: var(--ink-soft);
  font-style: italic; margin-bottom: 1.2rem;
}
.review-card.lg .review-text { color: rgba(250,246,238,.8); }
.review-author { display: flex; align-items: center; gap: .8rem; }
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--bg-warm);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.1rem; font-weight: 700;
  color: var(--green); flex-shrink: 0;
}
.review-card.lg .review-avatar { background: rgba(255,255,255,.15); color: var(--cream); }
.review-name { font-size: .9rem; font-weight: 600; }
.review-role { font-size: .78rem; color: var(--ink-faint); }
.review-card.lg .review-role { color: rgba(250,246,238,.45); }

/* ══════════════════════════════════════
   DELIVERY
══════════════════════════════════════ */
.delivery-section { background: var(--bg); }
.delivery-layout { display: grid; grid-template-columns: 5fr 4fr; gap: 5rem; align-items: center; }

.delivery-info .label { margin-bottom: .75rem; display: block; }
.delivery-info h2 { margin-bottom: 1rem; }
.delivery-info > p { color: var(--ink-muted); font-size: 1.05rem; line-height: 1.7; margin-bottom: 2.5rem; }

.delivery-list { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 2.5rem; }
.delivery-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.1rem 1.3rem;
  background: var(--bg-warm);
  border-radius: var(--r);
  transition: transform .2s;
}
.delivery-item:hover { transform: translateX(4px); }
.di-icon { font-size: 1.4rem; flex-shrink: 0; }
.di-title { font-weight: 600; font-size: .9rem; }
.di-sub { font-size: .8rem; color: var(--ink-muted); margin-top: .1rem; }

.promo-stack { display: flex; flex-direction: column; gap: 1rem; }
.promo-item {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 1.6rem 2rem;
  display: flex; align-items: center; gap: 1.5rem;
  box-shadow: var(--sh-sm);
  border-left: 4px solid transparent;
  transition: all .25s;
}
.promo-item:hover { box-shadow: var(--sh); transform: translateX(4px); }
.promo-item.accent { border-left-color: var(--orange); }
.promo-item.green  { border-left-color: var(--green-mid); }
.promo-icon-box {
  width: 52px; height: 52px; border-radius: var(--r);
  background: var(--bg-warm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
}
.promo-val { font-family: var(--serif); font-size: 1.5rem; font-weight: 900; color: var(--ink); }
.promo-desc { font-size: .8rem; color: var(--ink-muted); margin-top: .15rem; line-height: 1.4; }

/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
.faq-section { background: var(--bg-warm); }
.faq-cols { display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem; align-items: start; }
.faq-left h2 { margin-bottom: 1rem; }
.faq-left p { color: var(--ink-muted); font-size: 1rem; line-height: 1.7; }

.faq-list { display: flex; flex-direction: column; gap: .5rem; }
.faq-item { background: var(--white); border-radius: var(--r-lg); overflow: hidden; }
.faq-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 1.5rem; background: none; border: none; text-align: left;
  font-size: .95rem; font-weight: 600; font-family: var(--sans); color: var(--ink);
  cursor: pointer; gap: 1rem;
  transition: background .2s;
}
.faq-trigger:hover { background: var(--bg); }
.faq-arrow {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg-warm); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--green);
  transition: all .3s var(--ease);
}
.faq-item.open .faq-arrow { background: var(--orange); color: var(--white); transform: rotate(45deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-item.open .faq-body { max-height: 300px; }
.faq-body p { padding: 0 1.5rem 1.3rem; color: var(--ink-soft); font-size: .9rem; line-height: 1.7; }

/* ══════════════════════════════════════
   CTA BANNER
══════════════════════════════════════ */
.cta-section {
  background: var(--green);
  padding: 100px 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: .18;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section .label { color: var(--orange-lt); margin-bottom: 1rem; display: block; }
.cta-section h2 { color: var(--cream); margin-bottom: 1rem; font-size: clamp(2.5rem, 5vw, 5rem); }
.cta-section p { color: rgba(250,246,238,.6); font-size: 1.1rem; max-width: 520px; margin: 0 auto 2.5rem; line-height: 1.65; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.site-footer { background: var(--bg-dark); color: rgba(245,240,230,.65); padding: 80px 0 40px; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr 1.4fr;
  gap: 2.5rem; margin-bottom: 3.5rem;
}
.footer-brand { display: flex; flex-direction: column; gap: 1rem; }
.footer-logo {
  display: flex; align-items: center; gap: .7rem;
}
.footer-logo-texts {
  display: flex; flex-direction: column; gap: .1rem;
}
.footer-brand-name {
  font-family: var(--serif); font-size: 1.4rem; color: var(--cream);
  font-weight: 700; letter-spacing: -.02em; line-height: 1.1;
}
.footer-brand-slogan {
  font-size: .58rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--orange-lt);
}
.footer-brand p { font-size: .85rem; line-height: 1.7; max-width: 270px; }

/* Footer cube = same mark as header (.logo-cube-mini) */

/* Social icons */
.footer-socials {
  display: flex; gap: .6rem; margin-top: 1rem;
}
.social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(245,240,230,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(245,240,230,.6); transition: all .2s;
  flex-shrink: 0;
}
.social-btn svg { width: 17px; height: 17px; }
.social-btn:hover { background: var(--orange); color: var(--white); transform: translateY(-2px); }

.footer-col h5 {
  font-size: .7rem; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: var(--cream); margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-col li a { font-size: .85rem; color: rgba(245,240,230,.5); transition: color .2s; }
.footer-col li a:hover { color: var(--cream); }
.footer-contact p { font-size: .85rem; line-height: 1.8; }
.footer-contact a { color: var(--orange-lt); }

.footer-bottom {
  border-top: 1px solid rgba(245,240,230,.07);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between;
  font-size: .78rem; color: rgba(245,240,230,.3);
}

/* ══════════════════════════════════════
   CART DRAWER
══════════════════════════════════════ */
.cart-overlay {
  position: fixed; inset: 0; z-index: 1099;
  background: rgba(20,18,9,.5); backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.cart-overlay.show { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed; top: 0; right: 0; height: 100vh; width: 420px; z-index: 1100;
  background: var(--white); box-shadow: var(--sh-xl);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .38s var(--ease);
}
.cart-drawer.open { transform: translateX(0); }

.cart-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 1.5rem;
  border-bottom: 1px solid var(--bg-warm);
}
.cart-head h3 { font-family: var(--serif); font-size: 1.5rem; }
.cart-close {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-warm); border: none; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.cart-close:hover { background: var(--ink); color: var(--bg); }

.cart-body { flex: 1; overflow-y: auto; padding: 1.5rem; }
.cart-empty { text-align: center; padding: 3rem 1rem; color: var(--ink-muted); }
.cart-empty p:first-child { font-size: 2.5rem; margin-bottom: .75rem; }

.cart-item { display: flex; gap: 1rem; padding: .8rem 0; border-bottom: 1px solid var(--bg-warm); }
.ci-img { width: 58px; height: 58px; border-radius: var(--r); background: var(--bg-warm); overflow: hidden; flex-shrink: 0; }
.ci-img img { width: 100%; height: 100%; object-fit: cover; }
.ci-info { flex: 1; }
.ci-name { font-weight: 600; font-size: .875rem; margin-bottom: .2rem; }
.ci-price { color: var(--green-mid); font-weight: 600; font-size: .875rem; }
.ci-actions { display: flex; align-items: center; gap: .45rem; margin-top: .4rem; }
.qty-btn { width: 26px; height: 26px; border-radius: 50%; background: var(--bg-warm); border: none; font-size: .85rem; display: flex; align-items: center; justify-content: center; transition: all .2s; }
.qty-btn:hover { background: var(--ink); color: var(--bg); }
.qty-val { font-size: .875rem; font-weight: 600; min-width: 20px; text-align: center; }
.ci-del { background: none; border: none; color: var(--ink-faint); font-size: 1rem; margin-left: auto; transition: color .2s; }
.ci-del:hover { color: var(--red); }

.cart-foot { padding: 1.4rem 1.5rem; border-top: 1px solid var(--bg-warm); background: var(--bg); }
.cart-total-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 1rem; }
.cart-total-label { font-size: .9rem; color: var(--ink-muted); }
.cart-total-val { font-family: var(--serif); font-size: 1.6rem; font-weight: 900; color: var(--ink); }

/* ══════════════════════════════════════
   ORDER MODAL
══════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1200;
  display: flex; align-items: center; justify-content: center;
  background: rgba(20,18,9,.6); backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal-box {
  position: relative; background: var(--white);
  border-radius: var(--r-xl); padding: 2.8rem;
  width: 90%; max-width: 500px; max-height: 90vh; overflow-y: auto;
  transform: translateY(16px) scale(.97); transition: transform .3s var(--ease);
  box-shadow: var(--sh-xl);
}
.modal-overlay.open .modal-box { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute; top: 1.2rem; right: 1.2rem;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--bg-warm); border: none; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.modal-close:hover { background: var(--ink); color: var(--bg); }
.modal-title { font-family: var(--serif); font-size: 2rem; margin-bottom: 1.8rem; }

.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.form-group label { font-size: .82rem; font-weight: 600; color: var(--ink-soft); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: .85rem 1rem; border: 1.5px solid var(--bg-warm);
  border-radius: var(--r); font-size: .9rem; font-family: var(--sans);
  color: var(--ink); background: var(--bg);
  transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--green-mid); background: var(--white); }
.form-group textarea { min-height: 85px; resize: vertical; }

/* ══════════════════════════════════════
   TOAST
══════════════════════════════════════ */
.toast {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 2000;
  background: var(--ink); color: var(--bg);
  padding: .9rem 1.5rem; border-radius: var(--r-pill);
  font-size: .875rem; font-weight: 500;
  display: flex; align-items: center; gap: .5rem;
  box-shadow: var(--sh-xl);
  transform: translateX(calc(100% + 2rem));
  transition: transform .35s var(--ease);
}
.toast.show { transform: translateX(0); }

/* ══════════════════════════════════════
   REVEAL
══════════════════════════════════════ */
[data-reveal] {
  opacity: 0; transform: translateY(30px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: .1s; }
[data-reveal-delay="2"] { transition-delay: .2s; }
[data-reveal-delay="3"] { transition-delay: .3s; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 120px 2.5rem 80px; text-align: center; }
  .hero-kpis { justify-content: center; }
  .hero-actions { justify-content: center; }
  .catalog-layout { grid-template-columns: 1fr; }
  .catalog-sidebar { position: static; display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.5rem; }
  .sidebar-filters { flex-direction: row; flex-wrap: wrap; }
  .sidebar-btn { padding: .5rem 1rem; border-radius: var(--r-pill); border: 1.5px solid var(--bg-dark); }
  .sidebar-btn.active { background: var(--ink); border-color: var(--ink); }
  .sidebar-title { width: 100%; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 190px); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(245,240,230,.08); }
  .delivery-layout { grid-template-columns: 1fr; gap: 3rem; }
  .faq-cols { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; gap: 2rem; }
}
@media (max-width: 1020px) {
  .header-nav { display: none; }
  .header-nav.mobile-open,
  .header-nav.open {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 1.25rem 1.5rem 1.5rem;
    box-shadow: 0 20px 48px rgba(0, 0, 0, .16);
    z-index: 899;
    gap: .15rem;
    border-bottom: 1px solid var(--bg-warm);
  }
  .header-nav.mobile-open .nav-link,
  .header-nav.open .nav-link,
  .site-header.on-dark .header-nav.mobile-open .nav-link,
  .site-header.on-dark .header-nav.open .nav-link {
    color: var(--ink) !important;
    font-size: 1.125rem;
    font-weight: 600;
    padding: .7rem 0;
    width: 100%;
  }
  .header-nav.mobile-open .nav-link:hover,
  .header-nav.open .nav-link:hover {
    color: var(--orange) !important;
  }
  .header-nav.mobile-open .nav-link::after,
  .header-nav.open .nav-link::after {
    display: none;
  }
  .header-nav.mobile-open .header-geo,
  .header-nav.open .header-geo {
    color: var(--ink) !important;
    font-size: 1.05rem;
    padding: .7rem 0 .3rem;
  }
  .hamburger { display: flex; }
}
@media (max-width: 860px) {
  .products-grid-v2 { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; }
  .reviews-layout { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: .4rem; text-align: center; }
  .cart-drawer { width: 100%; }
}
@media (max-width: 540px) {
  .container { padding: 0 1.25rem; }
  .products-grid-v2 { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .cat-grid .cat-card { height: 200px; }
  h1 { font-size: 3rem; }
  h2 { font-size: 2.2rem; }
  .section { padding: 72px 0; }
  .hero-kpis { flex-direction: column; gap: 1.5rem; align-items: center; }
}
