@font-face {
  font-family: 'PF Centro Slab Pro';
  src: url('PFCentroSlabPro-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'PF Centro Slab Pro';
  src: url('PF Centro Slab Pro Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sans';
  src: url('OpenSans-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sans';
  src: url('OpenSans-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sans';
  src: url('OpenSans-LightItalic.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Geometria';
  src: url('Geometria.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #FBF6EC;
  --brown: #3F2021;
  --copper: #D76018;
  --copper-light: #ED8B00;
  --green: #046A38;
  --sand: #CEB888;
  --cream: #F5E1A4;
  --white: #ffffff;
  --text: #3F2021;
  --text-light: #7a5f50;
  --card-bg: #ffffff;
  --shadow: 0 4px 24px rgba(63,32,33,0.08);
  --shadow-hover: 0 8px 32px rgba(63,32,33,0.14);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-display: 'PF Centro Slab Pro', Georgia, serif;
  --font-body: 'Open Sans', -apple-system, sans-serif;
  --font-geo: 'Geometria', 'Open Sans', sans-serif;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-overflow-scrolling: touch;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; font-family: inherit; }
ul { list-style: none; }

/* ─── HEADER ─── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(251,246,236,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 100;
  border-bottom: 1px solid rgba(63,32,33,0.06);
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(251,246,236,0.97);
  box-shadow: 0 2px 20px rgba(63,32,33,0.06);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: -0.02em;
}
.logo img { height: 46px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-light);
  transition: var(--transition);
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--copper); }
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
}
.lang-btn {
  width: 28px; height: 20px;
  border-radius: 3px;
  overflow: hidden;
  opacity: 0.5;
  transition: var(--transition);
  background: none;
  padding: 0;
  border: 2px solid transparent;
}
.lang-btn:hover, .lang-btn.active {
  opacity: 1;
  border-color: var(--copper);
}
.lang-btn img { width: 100%; height: 100%; object-fit: cover; }
.cart-btn-header {
  position: relative;
  background: var(--green);
  color: var(--white);
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}
.cart-btn-header:hover { background: var(--copper); }
.cart-badge {
  position: absolute;
  top: -4px; right: -4px;
  background: #e74c3c;
  color: white;
  font-family: var(--font-geo);
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: var(--transition);
}
.cart-badge.show { opacity: 1; transform: scale(1); animation: badgePulse 2s 1s ease infinite; }
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(231,76,60,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(231,76,60,0); }
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}
.burger span {
  width: 22px; height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: var(--transition);
}
.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Mobile lang row in burger menu */
.mobile-lang-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0 4px;
  border-top: 1px solid rgba(61,43,31,0.08);
  margin-top: 4px;
}
.mobile-lang-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
}
.mobile-lang-row .lang-switcher { gap: 8px; }
.mobile-lang-row .lang-btn { width: 32px; height: 22px; }

/* ─── HERO / PROMO SLIDER ─── */
.hero {
  margin-top: var(--header-h);
  position: relative;
  overflow: hidden;
  background: var(--brown);
}
.slider {
  position: relative;
  width: 100%;
  aspect-ratio: 2.4 / 1;
  overflow: hidden;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.slide.active { opacity: 1; }
.slide.active img {
  animation: kenBurns 6s ease-in-out forwards;
}
@keyframes kenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61,43,31,0.7) 0%, rgba(61,43,31,0.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
}
.slide-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 8px;
}
.slide-desc {
  font-size: clamp(0.9rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.85);
  font-weight: 300;
}
.slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}
.slider-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: var(--transition);
  border: none;
  padding: 0;
}
.slider-dot.active { background: var(--white); width: 28px; border-radius: 5px; transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s ease; }

/* ─── MENU SECTION ─── */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}
/* Animate section titles on scroll */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 32px;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.section-title.visible {
  opacity: 1;
  transform: translateY(0);
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--copper);
  margin: 12px auto 0;
  border-radius: 2px;
}

/* Category Tabs — sticky */
.category-tabs-sticky {
  position: sticky;
  top: var(--header-h);
  z-index: 50;
  background: var(--bg);
  margin-left: -20px;
  margin-right: -20px;
  padding: 0 20px;
  box-shadow: 0 2px 8px rgba(63,32,33,0);
  transition: box-shadow 0.3s;
}
.category-tabs-sticky.stuck {
  box-shadow: 0 2px 12px rgba(63,32,33,0.08);
}
.category-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px 0;
  margin-bottom: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
}
.category-tabs::-webkit-scrollbar { display: none; }
.tab-btn {
  flex-shrink: 0;
  padding: 10px 24px;
  border-radius: 50px;
  background: var(--white);
  color: var(--text-light);
  font-size: 0.92rem;
  font-weight: 600;
  border: 1.5px solid rgba(61,43,31,0.1);
  transition: var(--transition);
  white-space: nowrap;
  scroll-snap-align: start;
}
.tab-btn:hover { border-color: var(--copper); color: var(--copper); }
.tab-btn.active {
  background: var(--copper);
  color: var(--white);
  border-color: var(--copper);
}

/* Product Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  padding-top: 24px;
  min-height: 100vh;
}
.product-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.product-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img { transform: scale(1.04); }
.product-img-wrap { overflow: hidden; position: relative; }
.product-info {
  padding: 16px 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-name {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 400;
  color: var(--brown);
  margin-bottom: 4px;
}
.product-desc {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 14px;
  flex: 1;
  line-height: 1.5;
}
.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-price {
  font-family: var(--font-geo);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brown);
}
.product-price span {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-light);
}
.add-btn {
  background: var(--green);
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
  padding: 0;
}
.add-btn:hover { background: var(--brown); }
.add-btn.added {
  background: #27ae60;
  animation: addPulse 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes addPulse {
  0% { transform: scale(1) rotate(0); }
  20% { transform: scale(1.4) rotate(-15deg); }
  40% { transform: scale(0.85) rotate(8deg); }
  60% { transform: scale(1.15) rotate(-3deg); }
  80% { transform: scale(0.95); }
  100% { transform: scale(1) rotate(0); }
}

/* ─── ABOUT ─── */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.about-img {
  border-radius: var(--radius);
  width: 50%;
  height: auto;
  object-fit: contain;
  box-shadow: var(--shadow);
  margin-left: 130px;
}
.about-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-light);
}

/* ─── ATMOSPHERE GALLERY ─── */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery img {
  border-radius: var(--radius-sm);
  width: 100%;
  height: auto;
  aspect-ratio: unset;
  object-fit: contain;
  transition: var(--transition);
  cursor: pointer;
}
.gallery img:hover { transform: scale(1.03); opacity: 0.9; }

/* ─── CONTACTS ─── */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
}
.contact-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.contact-map iframe {
  width: 100%;
  height: 320px;
  border: none;
}
.socials {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.social-link {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1.5px solid rgba(61,43,31,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
}
.social-link:hover {
  background: var(--copper);
  color: var(--white);
  border-color: var(--copper);
}

/* ─── FOOTER ─── */
.footer {
  background: var(--brown);
  color: rgba(255,255,255,0.7);
  padding: 40px 20px;
  margin-top: 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 0.88rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--cream); }
.footer-copy {
  font-size: 0.82rem;
}

/* ─── CART PANEL ─── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-panel {
  position: fixed;
  top: 0; right: -400px;
  width: 380px;
  max-width: 90vw;
  height: 100vh;
  background: var(--bg);
  z-index: 201;
  transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,0.15);
}
.cart-panel.open { right: 0; }
.cart-header {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(61,43,31,0.08);
}
.cart-header h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
}
.cart-close {
  background: none;
  font-size: 1.5rem;
  color: var(--text-light);
  transition: var(--transition);
}
.cart-close:hover { color: var(--brown); }
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px;
}
.cart-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(61,43,31,0.06);
}
.cart-item-img {
  width: 60px; height: 60px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}
.cart-item-info { flex: 1; }
.cart-item-name {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.cart-item-price {
  font-size: 0.82rem;
  color: var(--text-light);
}
.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}
.qty-btn {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(61,43,31,0.15);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.qty-btn:hover { background: var(--copper); color: var(--white); border-color: var(--copper); }
.cart-item-qty {
  font-size: 0.95rem;
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}
.cart-empty-msg {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-light);
  font-size: 0.95rem;
}
.cart-footer {
  padding: 20px;
  border-top: 1px solid rgba(61,43,31,0.08);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-geo);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.whatsapp-btn {
  width: 100%;
  padding: 14px;
  background: #25d366;
  color: var(--white);
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
}
.whatsapp-btn:hover { background: #1ea952; }

/* ─── MOBILE NAV ─── */
.mobile-nav {
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--bg);
  padding: 20px;
  transform: translateY(-120%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  z-index: 99;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  top: var(--header-h);
  background: rgba(0,0,0,0.3);
  z-index: 98;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-nav-backdrop.open { opacity: 1; visibility: visible; }
.mobile-nav a {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--brown);
  padding: 8px 0;
  border-bottom: 1px solid rgba(61,43,31,0.06);
}

/* ═══ MOBILE — PRIMARY EXPERIENCE ═══ */
@media (max-width: 768px) {
  :root { --header-h: 58px; }
  html { scroll-padding-top: calc(var(--header-h) + env(safe-area-inset-top) + 50px); }
  .nav-links { display: none; }
  .burger { display: flex; }
  .desktop-only { display: none !important; }

  /* ── Header — clean & prominent ── */
  .header-inner { padding: 0 14px; }
  .logo { font-size: 1.1rem; gap: 8px; }
  .logo img { height: 36px; }
  .header-right { gap: 10px; }
  .cart-btn-header { width: 38px; height: 38px; font-size: 1.05rem; }

  /* ── Hero — taller, immersive ── */
  .slider { aspect-ratio: 16/9; min-height: 260px; }
  .slide-overlay { padding: 24px 20px; }
  .slide-title { font-size: 1.4rem; line-height: 1.3; }
  .slide-desc { font-size: 0.88rem; }
  .slider-dots { bottom: 12px; }
  .slider-dot { width: 8px; height: 8px; }
  .slider-dot.active { width: 24px; }

  /* ── Sections — tighter spacing ── */
  .section { padding: 36px 16px; }
  .section-title { font-size: 1.35rem; margin-bottom: 24px; }
  .section-title::after { margin: 10px auto 0; }

  /* ── Sticky tabs — full bleed, bigger touch ── */
  .category-tabs-sticky {
    margin-left: -16px;
    margin-right: -16px;
    padding: 0 12px;
  }
  .category-tabs { padding: 10px 0; gap: 6px; }
  .tab-btn {
    padding: 10px 18px;
    font-size: 0.84rem;
    border-radius: 40px;
  }

  /* ── Products — optimized cards ── */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding-top: 18px;
  }
  .product-card { border-radius: 14px; }
  .product-img-wrap { border-radius: 14px 14px 0 0; }
  .product-img { aspect-ratio: 1/1; }
  .product-info { padding: 10px 12px 14px; }
  .product-name { font-size: 0.88rem; margin-bottom: 2px; line-height: 1.3; }
  .product-desc { font-size: 0.72rem; margin-bottom: 8px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .product-bottom { gap: 6px; }
  .product-price { font-size: 0.92rem; }
  .product-price span { font-size: 0.7rem; }
  .add-btn { width: 34px; height: 34px; font-size: 1.15rem; }
  .add-btn-disabled { width: 34px; height: 34px; }

  /* ── Out of stock badge — smaller on mobile ── */
  .oos-badge { padding: 5px 10px; font-size: 0.68rem; }

  /* ── About — stacked, big image ── */
  .about-content { grid-template-columns: 1fr; gap: 20px; }
  .about-img { aspect-ratio: 16/10; border-radius: 14px; }
  .about-text { font-size: 0.92rem; line-height: 1.7; }

  /* ── Gallery — 2 columns, tight ── */
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .gallery img { border-radius: 12px; aspect-ratio: unset; height: auto; }

  /* ── Contacts — stacked ── */
  .contacts-grid { grid-template-columns: 1fr; gap: 20px; }
  .contact-item { padding: 12px 0; font-size: 0.9rem; }
  .contact-icon { width: 40px; height: 40px; font-size: 1rem; }
  .contact-map { border-radius: 14px; }
  .contact-map iframe { height: 240px; }
  .socials { gap: 10px; }
  .social-link { width: 42px; height: 42px; }

  /* ── Footer — compact ── */
  .footer { padding: 28px 16px; margin-top: 24px; }
  .footer-inner { flex-direction: column; gap: 14px; text-align: center; }
  .footer-copy { font-size: 0.78rem; }
  .footer-links { gap: 20px; }
  .footer-links a { font-size: 0.82rem; }

  /* ── Cart panel — full screen on mobile ── */
  .cart-panel {
    width: 100vw;
    max-width: 100vw;
    right: -100vw;
    border-radius: 0;
  }
  .cart-header { padding: 16px; }
  .cart-header h3 { font-size: 1.15rem; }
  .cart-items { padding: 12px 16px; }
  .cart-item { padding: 10px 0; gap: 12px; }
  .cart-item-img { width: 52px; height: 52px; border-radius: 10px; }
  .cart-item-name { font-size: 0.85rem; }
  .cart-item-price { font-size: 0.78rem; }
  .qty-btn { width: 32px; height: 32px; font-size: 1.1rem; }
  .cart-item-qty { font-size: 0.95rem; min-width: 24px; }
  .cart-footer { padding: 16px; }
  .cart-total { font-size: 1.05rem; margin-bottom: 12px; }
  .whatsapp-btn { padding: 14px; font-size: 0.92rem; border-radius: 14px; }
  .cart-empty-msg { padding: 50px 16px; font-size: 0.9rem; }

  /* ── WhatsApp float — bigger touch target ── */
  .wa-float { width: 52px; height: 52px; font-size: 1.4rem; bottom: 20px; right: 16px; }

  /* ── Mobile nav — polished ── */
  .mobile-nav {
    padding: 16px 20px;
    gap: 0;
    border-radius: 0 0 16px 16px;
  }
  .mobile-nav a {
    padding: 14px 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(61,43,31,0.06);
  }
  .mobile-lang-row { padding: 14px 0 8px; }
  .mobile-lang-row .lang-btn { width: 34px; height: 24px; }

  /* ── Safe areas for notched phones ── */
  .header { padding-top: env(safe-area-inset-top); height: calc(var(--header-h) + env(safe-area-inset-top)); }
  .footer { padding-bottom: calc(28px + env(safe-area-inset-bottom)); }
  .cart-panel { padding-bottom: env(safe-area-inset-bottom); }
  .wa-float { bottom: calc(20px + env(safe-area-inset-bottom)); }

  /* ── Intro — adjust for mobile ── */
  .intro-logo img { width: 64px; height: 64px; }
  .intro-logo span { font-size: 1.2rem; }
  .intro-plane { width: 80px; height: 100px; filter:  drop-shadow(0 2px 6px rgba(63,32,33,0.4));}
}

/* ═══ SMALL PHONES (< 380px) ═══ */
@media (max-width: 380px) {
  :root { --header-h: 54px; }
  .logo { font-size: 0.95rem; gap: 6px; }
  .logo img { height: 30px; }
  .section { padding: 28px 12px; }
  .section-title { font-size: 1.2rem; }
  .products-grid { gap: 8px; }
  .product-info { padding: 8px 10px 12px; }
  .product-name { font-size: 0.82rem; }
  .product-price { font-size: 0.85rem; }
  .tab-btn { padding: 8px 14px; font-size: 0.78rem; }
  .slider { aspect-ratio: 3/2; }
  .gallery { gap: 8px; }
}

/* ═══ TOUCH IMPROVEMENTS ═══ */
@media (hover: none) and (pointer: coarse) {
  /* Bigger touch targets */
  .add-btn { width: 38px; height: 38px; }
  .qty-btn { width: 34px; height: 34px; }
  .tab-btn { min-height: 44px; }
  .social-link { width: 46px; height: 46px; }
  .cart-close { font-size: 1.8rem; padding: 4px; }
  .burger { padding: 8px; }
  .burger span { width: 24px; height: 2.5px; }

  /* Remove hover effects on touch */
  .product-card:hover { transform: none; box-shadow: var(--shadow); }
  .gallery img:hover { transform: none; filter: none; }
  .tab-btn:hover { transform: none; box-shadow: none; }

  /* Active states instead */
  .product-card:active { transform: scale(0.97); }
  .add-btn:active { transform: scale(0.85); }
  .tab-btn:active { transform: scale(0.95); }
  .social-link:active { transform: scale(0.9); }
  .gallery img:active { transform: scale(0.95); }
}

/* ═══ INTRO ANIMATION ═══ */
.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  pointer-events: none;
}
.intro-bg {
  position: absolute;
  inset: 0;
  background: #FBF6EC;
  z-index: 1;
}
.intro-reveal {
  position: absolute;
  inset: 0;
  background: var(--copper);
  z-index: 2;
  transform: translateX(-100%);
}
.intro-plane {
  position: absolute;
  width: 50px; height: 50px;
  z-index: 4;
  top: 50%; left: -60px;
  transform: translateY(-50%) rotate(-15deg);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
}
.intro-logo {
  position: absolute;
  z-index: 3;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
}
.intro-logo img {
  width: 80px; height: 80px;
}
.intro-logo span {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: #3F2021;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* Intro states */
.intro-overlay.phase-plane .intro-plane {
  animation: planefly 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.intro-overlay.phase-plane .intro-reveal {
  animation: revealsweep 0.8s 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.intro-overlay.phase-logo .intro-logo {
  animation: logopop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.intro-overlay.phase-out {
  animation: overlayout 0.7s 0.1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.intro-overlay.done { display: none; }

@keyframes planefly {
  0% { left: -60px; top: 55%; transform: translateY(-50%) rotate(-15deg); }
  40% { top: 45%; transform: translateY(-50%) rotate(-5deg); }
  100% { left: calc(100% + 60px); top: 40%; transform: translateY(-50%) rotate(-10deg); }
}
@keyframes revealsweep {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(0); }
}
@keyframes logopop {
  0% { transform: translate(-50%, -50%) scale(0); opacity: 0; }
  100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}
@keyframes overlayout {
  0% { opacity: 1; }
  100% { opacity: 0; }
}

/* Hide site content during intro */
body.intro-active .header,
body.intro-active .hero,
body.intro-active .section,
body.intro-active .footer,
body.intro-active .wa-float { opacity: 0; }

/* ─── SCROLL ANIMATIONS ─── */

/* Base: fade up */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered product cards */
.product-card {
  opacity: 0;
  transform: translateY(40px) scale(0.92);
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
  transition-delay: calc(var(--i, 0) * 0.1s);
}
.product-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.product-card:nth-child(even) {
  transform: translateY(50px) scale(0.92);
}
.product-card:nth-child(even).visible {
  transform: translateY(0) scale(1);
}

/* Slide from left */
.slide-in-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Slide from right */
.slide-in-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Scale pop — bouncy */
.pop-in {
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.pop-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Blur reveal — appears from blurred state */
.blur-in {
  opacity: 0;
  filter: blur(12px);
  transform: scale(1.05);
  transition: opacity 0.8s ease, filter 0.8s ease, transform 0.8s ease;
}
.blur-in.visible {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
}

/* Rotate in — slight twist on entry */
.rotate-in {
  opacity: 0;
  transform: rotate(-5deg) translateY(30px);
  transition: opacity 0.7s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.rotate-in.visible {
  opacity: 1;
  transform: rotate(0) translateY(0);
}

/* Zoom out reveal — starts bigger */
.zoom-out-in {
  opacity: 0;
  transform: scale(1.15);
  transition: opacity 0.8s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.zoom-out-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Flip in — card flip effect */
.flip-in {
  opacity: 0;
  transform: perspective(600px) rotateY(25deg);
  transition: opacity 0.7s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.flip-in.visible {
  opacity: 1;
  transform: perspective(600px) rotateY(0);
}

/* Section title — animated underline */
.section-title::after {
  width: 0;
  transition: width 0.6s 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.section-title.visible::after {
  width: 60px;
}

/* Category tabs slide in */
.category-tabs-sticky {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.5s 0.2s ease, transform 0.5s 0.2s ease;
}
.category-tabs-sticky.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Contact items staggered */
.contact-item {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.contact-item.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Social links bounce in */
.social-link {
  opacity: 0;
  transform: scale(0) rotate(-20deg);
  transition: opacity 0.3s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.social-link.visible {
  opacity: 1;
  transform: scale(1) rotate(0);
}

/* Footer slide up */
.footer {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.footer.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hover enhancements */
.product-card { transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, opacity 0.6s ease; }
.product-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-hover);
}
.gallery img {
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease, filter 0.3s ease;
}
.gallery img:hover {
  transform: scale(1.06) rotate(1deg);
  filter: brightness(1.05) saturate(1.1);
}
.contact-icon {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease;
}
.contact-item:hover .contact-icon {
  transform: scale(1.15) rotate(-5deg);
  background: var(--copper);
}
.tab-btn {
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.tab-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(63,32,33,0.1);
}

/* ── Hero slide text reveal ── */
.slide-text-reveal {
  opacity: 0;
  transform: translateY(25px);
  animation: slideTextIn 0.9s 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.slide-text-reveal.delay-2 {
  animation-delay: 0.8s;
}
@keyframes slideTextIn {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Slide change — text re-animates ── */
.slide.active .slide-text-reveal {
  animation: slideTextPulse 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes slideTextPulse {
  0% { opacity: 0; transform: translateY(15px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ── Smooth line drawing on section titles ── */
.section-title::after {
  width: 0;
  transition: width 0.8s 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.section-title.visible::after {
  width: 60px;
}

/* ── Product add button ripple ── */
.add-btn {
  position: relative;
  overflow: hidden;
}
.add-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.4s ease;
}
.add-btn:active::after {
  transform: scale(2.5);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.3s 0.1s ease;
}

/* ── WhatsApp button pulse ── */
.wa-float {
  animation: waPulse 2s infinite;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.35); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.55), 0 0 0 8px rgba(37,211,102,0.1); }
}

/* ── Cart panel items slide in ── */
.cart-item {
  animation: cartItemIn 0.3s ease both;
}
@keyframes cartItemIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ── Logo subtle float on desktop ── */
@media (min-width: 769px) {
  .logo img {
    animation: logoFloat 3s ease-in-out infinite;
  }
  @keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
  }
}

/* ── Smooth category tab switch ── */
.tab-btn.active {
  animation: tabActivate 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes tabActivate {
  0% { transform: scale(0.95); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Site entrance after intro */
body.site-enter .header {
  animation: slideDown 0.6s 0.1s ease both;
}
body.site-enter .hero {
  animation: zoomReveal 1s 0.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes zoomReveal {
  from { opacity: 0; transform: scale(1.08); }
  to { opacity: 1; transform: scale(1); }
}

/* WhatsApp floating */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  z-index: 50;
  transition: var(--transition);
  animation: waBounceIn 0.8s 2.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.wa-float:hover { transform: scale(1.1); }
@keyframes waBounceIn {
  from { opacity: 0; transform: scale(0) rotate(-30deg); }
  to { opacity: 1; transform: scale(1) rotate(0); }
}

/* ─── OUT OF STOCK ─── */
.product-card.out-of-stock {
  position: relative;
}
.product-card.out-of-stock .product-img {
  filter: grayscale(70%) brightness(0.85);
  transition: filter 0.3s;
}
.product-card.out-of-stock .product-info {
  opacity: 0.5;
}
.oos-overlay {
  position: absolute;
  inset: 0;
  background: rgba(61, 43, 31, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: inherit;
}
.oos-badge {
  background: rgba(255, 255, 255, 0.95);
  color: #c0392b;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.add-btn-disabled {
  background: #e0dbd6 !important;
  color: #999 !important;
  cursor: not-allowed !important;
  font-size: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  pointer-events: none;
}
/* ═══════════════════════════════════════════
   НОВЫЕ ФИЧИ — добавить в конец style.css
   ═══════════════════════════════════════════ */

/* ═══════════════════════════════════════════
   НОВЫЕ ФИЧИ — добавить в конец style.css
   ═══════════════════════════════════════════ */

/* ─── 1. СТАТУС ОТКРЫТО/ЗАКРЫТО ─── */
.status-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  transition: var(--transition);
  border: 1.5px solid transparent;
  cursor: default;
}
.status-badge.open {
  background: rgba(4, 106, 56, 0.08);
  color: var(--green);
  border-color: rgba(4, 106, 56, 0.2);
}
.status-badge.closed {
  background: rgba(196, 48, 43, 0.08);
  color: #c4302b;
  border-color: rgba(196, 48, 43, 0.2);
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.status-badge.open .status-dot {
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(4, 106, 56, 0.4);
  animation: statusPulse 2s infinite;
}
.status-badge.closed .status-dot {
  background: #c4302b;
}
@keyframes statusPulse {
  0%   { box-shadow: 0 0 0 0 rgba(4,106,56,0.4); }
  70%  { box-shadow: 0 0 0 6px rgba(4,106,56,0); }
  100% { box-shadow: 0 0 0 0 rgba(4,106,56,0); }
}
/* Desktop: между nav-links и header-right */
@media (max-width: 768px) {
  .status-badge { display: none; } /* на мобиле — в mobile-nav */
  .status-badge-mobile {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 0 0;
    font-size: 0.82rem;
    font-weight: 600;
  }
  .status-badge-mobile .status-dot {
    width: 7px; height: 7px;
    border-radius: 50%; flex-shrink: 0;
  }
  .status-badge-mobile.open { color: var(--green); }
  .status-badge-mobile.open .status-dot { background: var(--green); animation: statusPulse 2s infinite; }
  .status-badge-mobile.closed { color: #c4302b; }
  .status-badge-mobile.closed .status-dot { background: #c4302b; }
}
@media (min-width: 769px) {
  .status-badge-mobile { display: none; }
}

/* ─── 2. ПОИСК ПО МЕНЮ ─── */
.search-wrap {
  padding: 12px 0 4px;
  margin-bottom: 0;
}
.search-inner {
  position: relative;
  display: flex;
  align-items: center;
}
.search-icon-svg {
  position: absolute;
  left: 12px;
  color: var(--text-light);
  pointer-events: none;
  flex-shrink: 0;
}
.search-input {
  width: 100%;
  padding: 10px 40px 10px 38px;
  border: 1.5px solid rgba(61,43,31,0.12);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: var(--white);
  color: var(--text);
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.search-input:focus {
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(200,149,108,0.15);
}
.search-input::placeholder { color: var(--text-light); }
.search-clear {
  position: absolute;
  right: 10px;
  background: rgba(61,43,31,0.1);
  border: none;
  border-radius: 50%;
  width: 24px; height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.search-clear:hover { background: var(--copper); color: var(--white); }
.search-results-label {
  font-size: 0.82rem;
  color: var(--text-light);
  padding: 8px 0 0;
  text-align: center;
}
.search-results-label span { color: var(--copper); font-weight: 600; }
.product-cat-pill {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 50px;
  background: rgba(200,149,108,0.12);
  color: var(--copper);
  margin-bottom: 4px;
}

/* ─── 3. САМОВЫВОЗ / ДОСТАВКА ─── */
.delivery-toggle {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.delivery-btn {
  flex: 1;
  padding: 10px 8px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--font-body);
  border: 1.5px solid rgba(61,43,31,0.12);
  background: var(--white);
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
}
.delivery-btn:hover { border-color: var(--copper); color: var(--copper); }
.delivery-btn.active {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.delivery-address {
  margin-bottom: 12px;
  animation: slideDown 0.25s ease;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.delivery-input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid rgba(61,43,31,0.12);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  background: var(--white);
  color: var(--text);
  outline: none;
  transition: var(--transition);
}
.delivery-input:focus {
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(200,149,108,0.12);
}



/* ─── 7. УЛУЧШЕННЫЙ МОРФИНГ КНОПКИ ─── */
.add-btn {
  transition: background 0.25s ease, transform 0.2s ease, width 0.3s cubic-bezier(0.34,1.56,0.64,1);
  overflow: hidden;
  white-space: nowrap;
}
.add-btn.added {
  background: #27ae60 !important;
  width: 80px !important;
  border-radius: 50px !important;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  animation: morphBtn 0.4s cubic-bezier(0.34,1.56,0.64,1) forwards;
}
@keyframes morphBtn {
  0%   { transform: scale(0.85); }
  50%  { transform: scale(1.1); }
  100% { transform: scale(1); }
}
/* Сброс обратно */
.add-btn.reverting {
  animation: revertBtn 0.25s ease forwards;
}
@keyframes revertBtn {
  0%   { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* ─── 8. ВИДЕО HERO + СЛАЙДЕР НИЖЕ ─── */
.hero-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  background: var(--brown);
}
@media (max-width: 768px) {
  .hero-video-wrap { aspect-ratio: 4 / 3; }
}
.hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-video-content {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61,32,21,0.72) 0%, rgba(61,32,21,0.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  z-index: 2;
}
@media (max-width: 768px) {
  .hero-video-content { padding: 24px 20px; }
}
.hero-tagline {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  color: var(--white);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--copper);
  color: var(--white);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  align-self: flex-start;
  transition: var(--transition);
  text-decoration: none;
}
.hero-cta:hover { background: var(--brown); transform: translateY(-2px); }

/* Подзаголовок слайдера акций */
.promo-section-label {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--brown);
  padding: 20px 20px 0;
  letter-spacing: 0.02em;
}
.promo-section-label::before, .promo-section-label::after {
  content: '—';
  margin: 0 10px;
  color: var(--copper);
}

/* ─── 9. ЧАСТИЦЫ НА HERO (только мобиль) ─── */
#hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  display: none;
}
@media (max-width: 768px) {
  #hero-particles { display: block; }
}

/* ─── Пустой поиск ─── */
.search-empty {
  text-align: center;
  padding: 48px 20px;
  color: var(--text-light);
}
.search-empty-icon { font-size: 2.5rem; margin-bottom: 12px; }
.search-empty-text { font-size: 0.95rem; margin-bottom: 6px; color: var(--text); font-weight: 600; }
.search-empty-sub  { font-size: 0.82rem; }
@media (max-width: 768px) {
  /* 1. Лечим прыжки при скролле: фиксируем высоту слайдера */
  .slider, .hero {
    height: 80svh !important; /* svh не реагирует на скрытие панели браузера */
    min-height: 400px;
  }

  /* 2. Лечим зум: вписываем картинку целиком */
  .slide img {
    object-fit: contain !important; /* Картинка влезает полностью */
    background: #3D2B1F !important; /* Заливаем пустые края фирменным фоном */
  }
}