:root {
  --red: #c8102e;
  --red-dark: #9e0c24;
  --red-soft: #e11d38;
  --ink: #0e0e0e;
  --charcoal: #141414;
  --slate: #1c1c1c;
  --muted: #7a7a7a;
  --paper: #f2ebe1;
  --paper-deep: #ebe3d6;
  --cream: #f7f2ea;
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.1);
  --shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
  --font-display: "Bebas Neue", "Oswald", sans-serif;
  --font-script: "Great Vibes", cursive;
  --font-body: "Manrope", sans-serif;
  --container: 1140px;
  --header-h: 84px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.8rem 1.45rem;
  border: 0;
  border-radius: 3px;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.84rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 18px rgba(200, 16, 46, 0.28);
}

.btn:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  color: var(--white);
  box-shadow: none;
}

.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); }

.btn-dark {
  background: var(--ink);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  min-width: 280px;
  min-height: 54px;
  font-size: 0.9rem;
}

.btn-dark:hover { background: #000; }
.btn svg { width: 18px; height: 18px; fill: currentColor; }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(8, 8, 8, 0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.header-inner {
  height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--white);
}

.logo-mark {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #3a241c 0%, #140e0c 70%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 8px 18px rgba(0, 0, 0, 0.4);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.logo-mark img {
  width: 48px;
  height: 48px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  line-height: 1;
}

.logo-text em {
  font-family: var(--font-script);
  font-style: normal;
  font-size: 1.9rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.logo-text span {
  font-family: var(--font-display);
  font-size: 0.84rem;
  letter-spacing: 0.28em;
  margin-top: 0.14rem;
  margin-right: -0.28em; /* letter-spacing optikai középre igazítás */
  color: rgba(255, 255, 255, 0.92);
}

.nav {
  display: flex;
  justify-content: center;
  gap: 1.9rem;
}

.nav a {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.25s ease;
}

.nav a:hover::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}

.header-phone svg { width: 15px; height: 15px; fill: var(--red); }

.cart-toggle {
  position: relative;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 3px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.cart-toggle svg { width: 22px; height: 22px; fill: currentColor; }

.cart-count {
  position: absolute;
  top: 3px;
  right: 3px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-size: 0.66rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

/* Hero */
.hero {
  position: relative;
  min-height: 52vh;
  min-height: 52svh;
  color: var(--white);
  overflow: hidden;
  background: #090807;
}

.hero-slides { position: absolute; inset: 0; }

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  background-size: cover;
  background-position: 65% center;
}

.hero-slide.is-active { opacity: 1; }

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 4, 3, 0.92) 0%, rgba(5, 4, 3, 0.72) 34%, rgba(5, 4, 3, 0.28) 62%, rgba(5, 4, 3, 0.45) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, transparent 28%, rgba(0, 0, 0, 0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 52vh;
  min-height: 52svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: calc(var(--header-h) + 1.2rem) 0 3.2rem;
  max-width: min(100%, 52rem);
  margin-inline: auto;
}

.hero-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  animation: rise 0.85s ease both;
}

.hero-eyebrow {
  margin: 0;
  font-family: var(--font-script);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: #2f9e44;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45), 0 1px 2px rgba(0, 0, 0, 0.35);
}

.hero-title {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.05rem;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 0.92;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45), 0 1px 2px rgba(0, 0, 0, 0.35);
}

.hero-title-main { color: var(--white); }

.hero-title-accent { color: var(--red); }

.hero-subtitle {
  margin: 0.85rem 0 1.25rem;
  max-width: none;
  animation: rise 1s 0.15s ease both;
}

.hero-subtitle span {
  display: inline-block;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.82rem, 1.35vw, 0.98rem);
  line-height: 1.35;
  white-space: nowrap;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  animation: rise 1.05s 0.22s ease both;
}

.hero-actions .hero-btn {
  min-width: 168px;
  padding-inline: 1.35rem;
}

.hero-actions .hero-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

.hero-dots {
  position: absolute;
  left: max(1rem, calc((100% - var(--container)) / 2));
  bottom: 1.7rem;
  z-index: 3;
  display: flex;
  gap: 0.55rem;
}

.hero-dots button {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 0;
}

.hero-dots button.is-active {
  background: var(--red);
  transform: scale(1.2);
}

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Features */
.features {
  background: var(--charcoal);
  color: var(--white);
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
  justify-items: center;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
  padding: 0.2rem 0.3rem;
  max-width: 180px;
}

.feature-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  color: #ffffff;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(200, 16, 46, 0.12);
  box-shadow: inset 0 0 0 1px rgba(200, 16, 46, 0.3);
}

.feature-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  stroke: none;
}

.feature h3 {
  margin: 0;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  line-height: 1.2;
}

.feature p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.7rem;
  line-height: 1.3;
}

/* Menu */
.menu-section {
  position: relative;
  scroll-margin-top: var(--header-h);
  padding: 4.8rem 0 4.2rem;
  background:
    radial-gradient(circle at 12% 8%, rgba(200, 16, 46, 0.04), transparent 28%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(0, 0, 0, 0.01) 2px,
      rgba(0, 0, 0, 0.01) 3px
    ),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-deep) 100%);
}

.section-head {
  text-align: center;
  margin-bottom: 2.7rem;
  scroll-margin-top: calc(var(--header-h) + 0.75rem);
}

.section-head h2 {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.95rem;
  flex-wrap: wrap;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.3rem);
  letter-spacing: 0.04em;
  line-height: 1;
}

.section-head h2 em {
  font-family: var(--font-script);
  font-style: normal;
  font-size: 1em;
  color: var(--red);
  letter-spacing: 0;
  font-weight: 400;
  line-height: 1;
}

.section-head h2 span {
  color: var(--ink);
  line-height: 1;
}

.section-leaf {
  width: 26px;
  height: 26px;
  margin: 0.65rem auto 0;
  color: #2f6b3a;
}

.product-carousel {
  position: relative;
  --carousel-gap: 1.35rem;
  --carousel-cols: 3;
  overflow: hidden;
  padding: 0 0.15rem;
}

.product-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (var(--carousel-cols) - 1) * var(--carousel-gap)) / var(--carousel-cols));
  gap: var(--carousel-gap);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.5rem 0 0.35rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.product-track::-webkit-scrollbar {
  display: none;
}

.product-card {
  scroll-snap-align: start;
  text-align: center;
  padding: 0.35rem 0.25rem 0.85rem;
  transition: transform 0.25s ease;
  min-width: 0;
}

.product-card:hover { transform: translateY(-8px); }

.product-nav {
  position: absolute;
  top: 34%;
  z-index: 2;
  width: 48px;
  height: 48px;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  background-color: transparent;
  color: var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  transition: color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.product-nav svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
  display: block;
  filter: drop-shadow(0 1px 2px rgba(255, 255, 255, 0.9));
}

.product-nav:hover,
.product-nav:focus-visible {
  color: var(--red);
  transform: scale(1.08);
  background: transparent;
}

.product-nav.is-disabled,
.product-nav[aria-disabled="true"] {
  opacity: 0.3;
  pointer-events: none;
}

.product-nav-prev { left: 0.35rem; }
.product-nav-next { right: 0.35rem; }

.product-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.1rem;
  min-height: 1rem;
}

.product-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(26, 26, 26, 0.22);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, width 0.2s ease;
}

.product-dots button.is-active {
  width: 22px;
  border-radius: 999px;
  background: var(--red);
}

@media (max-width: 1100px) {
  .product-carousel { --carousel-cols: 2; }
}

.product-media {
  width: min(100%, 200px);
  aspect-ratio: 1;
  margin: 0 auto 1.05rem;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #2a1c14;
  border: 4px solid rgba(255, 255, 255, 0.65);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.product-card:hover .product-media img { transform: scale(1.06); }

.product-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 400;
}

.product-card .ingredients {
  margin: 0.35rem 0 0.65rem;
  color: var(--muted);
  font-size: 0.86rem;
  min-height: 2.5em;
  line-height: 1.35;
}

.product-card .price {
  margin: 0 0 0.85rem;
  color: var(--red);
  font-weight: 800;
  font-size: 1.2rem;
}

.menu-more {
  display: flex;
  justify-content: center;
  margin-top: 2.4rem;
}

.menu-full {
  display: none;
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.menu-full.is-open {
  display: block;
  animation: rise 0.35s ease both;
}

.menu-category + .menu-category { margin-top: 1.75rem; }

.menu-category h3 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  font-size: 1.4rem;
  font-weight: 400;
}

.menu-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1rem;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.menu-row strong {
  display: block;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  font-size: 1.15rem;
  font-weight: 400;
}

.menu-row span {
  color: var(--muted);
  font-size: 0.9rem;
}

.menu-row .price {
  color: var(--red);
  font-weight: 800;
  white-space: nowrap;
}

/* Promo */
.promo {
  position: relative;
  overflow: hidden;
  color: var(--white);
  padding: 3.6rem 0;
  background:
    linear-gradient(105deg, rgba(12, 12, 12, 0.94) 0%, rgba(20, 20, 20, 0.88) 48%, rgba(12, 12, 12, 0.92) 100%),
    url("/assets/img/promo-bg.jpg") center / cover no-repeat;
}

.promo-decor {
  position: absolute;
  width: 240px;
  height: 240px;
  pointer-events: none;
  opacity: 0.45;
  filter: blur(0.2px);
}

.promo-decor-left {
  left: -50px;
  top: -40px;
  background:
    radial-gradient(circle at 40% 40%, #2f6b3a 0%, transparent 55%),
    radial-gradient(circle at 70% 70%, #1b4d28 0%, transparent 50%);
}

.promo-decor-right {
  right: -40px;
  bottom: -60px;
  background:
    radial-gradient(circle at 50% 40%, #c8102e 0%, transparent 55%),
    radial-gradient(circle at 30% 70%, #8a1020 0%, transparent 50%);
}

.promo-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2.2rem;
  align-items: center;
}

.promo-badge {
  display: inline-block;
  max-width: 22rem;
  padding: 1.2rem 1.5rem;
  background: var(--red);
  clip-path: polygon(2% 14%, 97% 0, 100% 86%, 3% 100%);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  letter-spacing: 0.03em;
  line-height: 1.15;
  text-transform: uppercase;
  transform: rotate(-2.5deg);
  box-shadow: var(--shadow);
}

.promo-copy h2 {
  margin: 0 0 0.45rem;
  font-family: var(--font-script);
  font-size: clamp(2.6rem, 4.4vw, 3.6rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1;
}

.promo-copy p {
  margin: 0 0 1.2rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
}

/* About */
.about {
  padding: 3.8rem 0;
  background: var(--cream);
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.about-inner {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
}

.about-eyebrow {
  margin: 0 0 0.35rem;
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--red);
}

.about h2 {
  margin: 0 0 0.8rem;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 2.2rem;
  font-weight: 400;
}

.about p {
  margin: 0;
  color: #4a4a4a;
  font-size: 1.05rem;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.88);
  padding: 3.6rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer-col h3 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
}

.open-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.open-badge i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ecc71;
  box-shadow: 0 0 0 4px rgba(46, 204, 113, 0.18);
}

.open-badge.is-closed i {
  background: #e74c3c;
  box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.18);
}

.hours-list,
.contact-list,
.areas-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.28rem 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.areas-list li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
}

.areas-list li:last-child { border-bottom: 0; }

.areas-list li strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 700;
}

.areas-list li span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.85rem;
}

.areas-note {
  margin: 0.9rem 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-bottom: 0.55rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
}

.socials {
  display: flex;
  gap: 0.55rem;
  margin-top: 0.9rem;
}

.socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.socials a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  display: block;
}

.socials a:hover { background: var(--red); }

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.newsletter-form p {
  margin: 0 0 0.3rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.newsletter-form input {
  width: 100%;
  min-height: 46px;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 3px;
  background: #151515;
  color: var(--white);
}

.footer-bottom {
  margin-top: 2.5rem;
  padding: 1.1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.8rem;
}

.footer-bottom nav { display: flex; gap: 1rem; }

/* Cart drawer */
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
}

.cart-drawer.is-open { pointer-events: auto; }

.cart-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.cart-drawer.is-open .cart-backdrop { opacity: 1; }

.cart-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 400px);
  height: 100%;
  background: var(--white);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.25);
}

.cart-drawer.is-open .cart-panel { transform: translateX(0); }

.cart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.2rem;
  border-bottom: 1px solid #eee;
}

.cart-head h2 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 400;
}

.cart-close {
  border: 0;
  background: transparent;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}

.cart-items {
  flex: 1;
  overflow: auto;
  padding: 1rem 1.2rem;
}

.cart-empty {
  color: var(--muted);
  text-align: center;
  padding: 2rem 0;
}

.cart-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.4rem 0.8rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.cart-line strong { font-size: 0.95rem; }
.cart-line .meta { color: var(--muted); font-size: 0.85rem; }

.qty-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.qty-controls button {
  width: 28px;
  height: 28px;
  border: 1px solid #ddd;
  background: #fafafa;
  cursor: pointer;
  border-radius: 3px;
}

.cart-foot {
  padding: 1rem 1.2rem 1.3rem;
  border-top: 1px solid #eee;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.9rem;
  font-weight: 800;
  font-size: 1.05rem;
}

.cart-foot .btn { width: 100%; }

.toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%) translateY(120%);
  z-index: 300;
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1.2rem;
  border-radius: 3px;
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.toast.is-visible { transform: translateX(-50%) translateY(0); }

@media (max-width: 980px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem 0.5rem;
  }

  .feature {
    padding: 0.3rem 0.25rem;
  }

  .feature h3 {
    font-size: 0.58rem;
    letter-spacing: 0.06em;
  }

  .feature p {
    font-size: 0.66rem;
  }

  .promo-inner { grid-template-columns: 1fr; }
  .nav { display: none; }
  .menu-toggle { display: inline-block; }

  .site-header.is-open .nav {
    display: flex;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(8, 8, 8, 0.97);
    padding: 0.5rem 0 1rem;
  }

  .site-header.is-open .nav a { padding: 0.85rem 1.25rem; }
  .header-phone { display: none; }
  .hero-slide { background-position: center; }
}

@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }

  .features {
    padding: 0.7rem 0;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem 0.4rem;
  }

  .feature-icon {
    width: 34px;
    height: 34px;
  }

  .feature-icon svg {
    width: 16px;
    height: 16px;
  }

  .feature h3 {
    font-size: 0.55rem;
    letter-spacing: 0.04em;
  }

  .feature p {
    font-size: 0.64rem;
    line-height: 1.25;
  }

  .product-carousel { --carousel-cols: 1; }

  .menu-row { grid-template-columns: 1fr; gap: 0.35rem; }
  .hero-actions .btn { width: 100%; }
  .btn-dark { min-width: 0; width: 100%; }
  .hero-heading { flex-wrap: nowrap; }
  .hero-eyebrow { font-size: clamp(1.8rem, 8vw, 2.6rem); }
  .hero-title { font-size: clamp(2.4rem, 12vw, 3.4rem); }
  .hero-subtitle span { white-space: normal; font-size: 0.9rem; }
  .hero, .hero-content { min-height: 48vh; min-height: 48svh; }
}
