/*
Theme Name: Lagerfeuer Feinkost
Theme URI: https://lagerfeuerfeinkost.com
Author: Lagerfeuer Feinkost
Description: Campfire-themed WordPress-ready theme for Lagerfeuer Feinkost butchery & delicatessen
Version: 1.0
License: Private
*/

/* ═══════════════════════════════════════════
   CSS CUSTOM PROPERTIES
   ═══════════════════════════════════════════ */

:root {
  /* Campfire Palette */
  --charcoal: #1a1a1a;
  --charcoal-light: #2a2a2a;
  --ember: #d4731a;
  --ember-light: #f5a623;
  --ember-glow: #ff8c00;
  --flame-red: #c0392b;
  --cream: #faf3e0;
  --cream-dark: #f0e6cc;
  --smoky: #3d2b1f;
  --smoky-light: #5a4235;
  --ash: #8c7b6b;
  --warm-white: #fff8f0;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Lato', 'Segoe UI', Roboto, sans-serif;

  /* Spacing */
  --section-padding: 6rem 2rem;
  --container-max: 1200px;

  /* Transitions */
  --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ═══════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  /* Offset for fixed navbar (~70px) + fixed delivery bar (~36px) */
  scroll-padding-top: 115px;
}

body {
  font-family: var(--font-body);
  color: var(--cream);
  background: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--ember-light);
  text-decoration: none;
  transition: color var(--transition-smooth);
}

a:hover {
  color: var(--ember);
}

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

/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition-smooth), padding var(--transition-smooth);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.6rem 2rem;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.nav-logo img {
  height: 48px;
  transition: height var(--transition-smooth);
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.7));
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.12em;
  line-height: 1;
  text-shadow:
    0 1px 6px rgba(0,0,0,0.9),
    0 0 20px rgba(212,115,26,0.4);
  transition: color var(--transition-smooth);
}

.nav-logo:hover .nav-logo-text {
  color: var(--ember-light);
}

.navbar.scrolled .nav-logo img {
  height: 38px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.8rem;
  align-items: center;
}

.nav-links a {
  color: var(--cream);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--ember);
  transition: width var(--transition-smooth);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Nav right group */
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  gap: 0.4rem;
}

.lang-btn {
  background: transparent;
  border: 1.5px solid rgba(250, 243, 224, 0.3);
  color: var(--cream);
  padding: 0.25rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 3px;
  cursor: pointer;
  transition: all var(--transition-smooth);
  font-family: var(--font-body);
}

.lang-btn:hover {
  border-color: var(--ember-light);
  color: var(--ember-light);
}

.lang-btn.active {
  background: var(--ember);
  border-color: var(--ember);
  color: var(--cream);
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  margin: 5px 0;
  transition: all var(--transition-smooth);
}

/* ═══════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-canvas-front {
  z-index: 4;
}

.hero-canvas-burn {
  z-index: 5;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Layered overlay: warm cutout where fire is + dark vignette edges */
  background:
    radial-gradient(ellipse 30% 45% at 50% 68%, rgba(255, 120, 20, 0.06) 0%, transparent 100%),
    radial-gradient(ellipse 38% 50% at 50% 68%, transparent 0%, rgba(26, 26, 26, 0.12) 50%, rgba(26, 26, 26, 0.48) 100%),
    radial-gradient(ellipse 120% 100% at 50% 100%, rgba(26, 26, 26, 0.18) 0%, rgba(26, 26, 26, 0.50) 50%, rgba(26, 26, 26, 0.70) 100%),
    radial-gradient(ellipse at 50% 50%, transparent 35%, rgba(10, 8, 5, 0.40) 100%);
  z-index: 2;
}

/* Subtle warm glow — very slow breathing, barely perceptible */
.hero::after {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 45%;
  height: 65%;
  background: radial-gradient(
    ellipse 45% 55% at 50% 72%,
    rgba(255, 130, 25, 0.07) 0%,
    rgba(200, 100, 20, 0.03) 35%,
    transparent 70%
  );
  z-index: 1;
  pointer-events: none;
  animation: heroFireGlow 12s ease-in-out infinite alternate;
}

@keyframes heroFireGlow {
  0%   { opacity: 0.7; }
  100% { opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  padding: 3rem 3.5rem;
  background: rgba(8, 5, 2, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(212, 115, 26, 0.2);
  border-top: 2px solid rgba(212, 115, 26, 0.55);
  border-radius: 6px;
}

.hero-logo {
  width: 280px;
  margin: 0 auto 2rem;
  filter: drop-shadow(0 0 40px rgba(212, 115, 26, 0.4));
  animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
  from { filter: drop-shadow(0 0 30px rgba(212, 115, 26, 0.2)); }
  to { filter: drop-shadow(0 0 50px rgba(212, 115, 26, 0.4)); }
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0;
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-shadow:
    0 2px 6px rgba(0, 0, 0, 0.95),
    0 4px 24px rgba(0, 0, 0, 0.7),
    0 0 60px rgba(212, 115, 26, 0.35);
}

.hero-divider {
  width: 52px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--ember-light), transparent);
  border: none;
  margin: 1.4rem auto 1.4rem;
}

.hero p {
  font-size: 1.15rem;
  color: rgba(250, 243, 224, 0.92);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.85);
}

.btn-primary {
  display: inline-block;
  padding: 1rem 2.8rem;
  background: linear-gradient(135deg, var(--ember), var(--ember-light));
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1.5px solid rgba(245, 166, 35, 0.45);
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-smooth);
  box-shadow:
    0 4px 20px rgba(212, 115, 26, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 32px rgba(212, 115, 26, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  color: var(--cream);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--ember-light);
  stroke-width: 2;
  opacity: 0.6;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* Sound toggle button */
.sound-toggle {
  position: absolute;
  bottom: 1.8rem;
  left: 2rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.9rem 0.45rem 0.7rem;
  background: rgba(20, 12, 6, 0.65);
  border: 1px solid rgba(212, 115, 26, 0.30);
  border-radius: 50px;
  color: rgba(250, 243, 224, 0.65);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: border-color 0.3s, color 0.3s, background 0.3s, box-shadow 0.3s;
}
.sound-toggle:hover {
  border-color: rgba(212, 115, 26, 0.65);
  color: var(--cream);
  background: rgba(212, 115, 26, 0.15);
}
.sound-toggle.sound-active {
  border-color: var(--ember);
  color: var(--ember-light);
  box-shadow: 0 0 10px rgba(212, 115, 26, 0.25);
}
.sound-toggle .sound-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}
/* Show muted icon by default; swap to speaker-with-waves when active */
.sound-toggle .icon-on    { display: none; }
.sound-toggle .icon-muted { display: block; }
.sound-toggle.sound-active .icon-on    { display: block; }
.sound-toggle.sound-active .icon-muted { display: none; }

/* ═══════════════════════════════════════════
   SECTION COMMON STYLES
   ═══════════════════════════════════════════ */

.section {
  padding: var(--section-padding);
  scroll-margin-top: 115px;
}

.section-dark {
  background: var(--charcoal);
}

.section-warm {
  background: linear-gradient(180deg,
    var(--smoky-light) 0%,
    var(--smoky)       40%,
    var(--charcoal)    100%
  );
}

.section-accent {
  background: linear-gradient(180deg, #252320 0%, var(--charcoal) 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 1rem;
  position: relative;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--ember), var(--ember-light));
  margin: 1rem auto 0;
  border-radius: 2px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--ash);
  max-width: 600px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════ */

/* Subtle radial glow behind the section */
#about {
  position: relative;
  overflow: hidden;
}
#about::before {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 55%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(192, 57, 43, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* About heading already has the origin stamp as separator — hide the generic underline */
#about .section-header h2::after { display: none; }

/* Origin stamp */
.about-origin {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: -1.5rem;
  margin-bottom: 3.5rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ash);
}
.origin-flag  { font-size: 1.15rem; line-height: 1; }
.origin-flame { font-size: 1.4rem; line-height: 1; }
.origin-label { opacity: 0.7; }

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

/* Large decorative opening quote */
.about-text {
  position: relative;
}
.about-text::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 9rem;
  line-height: 0.8;
  color: var(--ember);
  opacity: 0.1;
  position: absolute;
  top: -1rem;
  left: -1.5rem;
  pointer-events: none;
  user-select: none;
}

.about-text p {
  color: rgba(250, 243, 224, 0.82);
  margin-bottom: 1.4rem;
  font-size: 1.05rem;
  line-height: 1.8;
}
.about-text p:first-child {
  font-size: 1.12rem;
  color: rgba(250, 243, 224, 0.92);
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

/* Horizontal icon + text card */
.value-card {
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 115, 26, 0.12);
  border-left: 3px solid var(--ember);
  border-radius: 0 8px 8px 0;
  padding: 1.4rem 1.6rem;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.value-card:hover {
  background: rgba(212, 115, 26, 0.07);
  border-color: rgba(212, 115, 26, 0.35);
  border-left-color: var(--ember-light);
  transform: translateX(4px);
}

.value-card .icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  color: var(--ember-light);
  margin-top: 2px;
  opacity: 0.9;
}
.value-card .icon svg {
  display: block;
}

.value-body h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--ember-light);
  margin-bottom: 0.35rem;
}
.value-body p {
  color: var(--ash);
  font-size: 0.93rem;
  line-height: 1.6;
  margin: 0;
}

/* ═══════════════════════════════════════════
   PRODUCTS SECTION
   ═══════════════════════════════════════════ */

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

/* Ćevapi — signature product — spans two columns */
.product-card:nth-child(1) {
  grid-column: span 2;
}

.product-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  overflow: hidden;
  transition: all var(--transition-smooth);
  cursor: default;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 115, 26, 0.62);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.45),          /* depth */
    0 0 0 1px rgba(212, 115, 26, 0.16),        /* second border ring */
    0 0 40px rgba(212, 115, 26, 0.20),         /* ember halo */
    inset 0 1px 0 rgba(212, 115, 26, 0.32);    /* firelight on top edge */
}

.product-card-image {
  position: relative;
  height: 250px;
  overflow: hidden;
  background: var(--smoky);
  display: flex;
  align-items: flex-end;
  padding: 1.1rem 1.3rem;
}

/* Featured Ćevapi card gets taller photo */
.product-card:nth-child(1) .product-card-image {
  height: 300px;
}

.product-card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.product-card:hover .product-card-image img {
  transform: scale(1.08);
}

/* Warm ember gradient over photo */
.product-card-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(212, 115, 26, 0.04) 50%,
    rgba(212, 115, 26, 0.1) 70%,
    rgba(10, 5, 2, 0.88) 100%
  );
  z-index: 1;
  transition: background var(--transition-smooth);
}

.product-card:hover .product-card-image::before {
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(212, 115, 26, 0.06) 45%,
    rgba(212, 115, 26, 0.16) 68%,
    rgba(10, 5, 2, 0.93) 100%
  );
}

/* Product name overlaid on photo */
.product-card-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cream);
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.9);
  line-height: 1.2;
  transition: color var(--transition-smooth);
}

.product-card:hover .product-card-title {
  color: var(--ember-light);
}

/* Featured card title larger */
.product-card:nth-child(1) .product-card-title {
  font-size: 1.7rem;
}

/* Card body */
.product-card-body {
  padding: 1.3rem 1.5rem 1.7rem;
  flex: 1;
  border-top: 1px solid rgba(212, 115, 26, 0.1);
  transition: background 0.4s ease, border-color 0.4s ease;
}
.product-card:hover .product-card-body {
  background: rgba(212, 115, 26, 0.025);
  border-top-color: rgba(212, 115, 26, 0.28);
}

.product-card-body p {
  color: var(--ash);
  font-size: 0.9rem;
  line-height: 1.75;
  max-height: 6.3em; /* ~4 lines collapsed */
  overflow: hidden;
  transition: max-height 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-mask-image: linear-gradient(180deg, #000 40%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 40%, transparent 100%);
}

.product-card:hover .product-card-body p {
  max-height: 30em;
  -webkit-mask-image: none;
  mask-image: none;
}

/* ═══════════════════════════════════════════
   DELICATESSEN SECTION
   ═══════════════════════════════════════════ */

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

/* Featured cards span 2 columns:
   Olive (1), Beer (6), Prosciutto (7), Gifts (8) */
.deli-card:nth-child(1) { grid-column: span 2; }
.deli-card:nth-child(6) { grid-column: span 2; }
.deli-card:nth-child(7) { grid-column: span 2; }
.deli-card:nth-child(8) { grid-column: span 2; }

.deli-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  overflow: hidden;
  transition: all var(--transition-smooth);
  position: relative;
}

/* Ember shimmer line across top on hover */
.deli-card::before {
  content: '';
  position: absolute;
  top: 0; left: 15%; right: 15%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--ember-light), transparent);
  opacity: 0;
  transition: opacity var(--transition-smooth);
  z-index: 5;
}

.deli-card:hover::before {
  opacity: 1;
}

.deli-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 115, 26, 0.28);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.45),
    0 0 40px rgba(212, 115, 26, 0.1);
}

/* Image header area */
.deli-card-img {
  position: relative;
  height: 170px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 1.1rem 1.3rem;
}

/* Featured cards get taller headers */
.deli-card:nth-child(1) .deli-card-img,
.deli-card:nth-child(6) .deli-card-img,
.deli-card:nth-child(7) .deli-card-img,
.deli-card:nth-child(8) .deli-card-img {
  height: 195px;
}

/* Emoji as large atmospheric watermark */
.deli-card-emoji {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-55%) rotate(-8deg);
  font-size: 7rem;
  line-height: 1;
  opacity: 0.13;
  filter: saturate(0.6);
  pointer-events: none;
  z-index: 1;
  transition: opacity var(--transition-smooth), transform var(--transition-smooth);
}

.deli-card:hover .deli-card-emoji {
  opacity: 0.22;
  transform: translateY(-50%) rotate(-3deg) scale(1.1);
}

/* Featured card emoji larger */
.deli-card:nth-child(1) .deli-card-emoji,
.deli-card:nth-child(6) .deli-card-emoji,
.deli-card:nth-child(7) .deli-card-emoji,
.deli-card:nth-child(8) .deli-card-emoji {
  font-size: 9rem;
  right: 1.5rem;
}

/* Deep gradient fade at bottom of image area — behind the title */
.deli-card-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80%;
  background: linear-gradient(to top, rgba(12, 6, 3, 0.95) 0%, rgba(12, 6, 3, 0.5) 50%, transparent 100%);
  z-index: 2;
}

/* Product title overlaid on image */
.deli-card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
  position: relative;
  z-index: 3;
  line-height: 1.25;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.9);
  transition: color var(--transition-smooth);
}

.deli-card:hover .deli-card-title {
  color: var(--ember-light);
}

/* Featured card titles bigger */
.deli-card:nth-child(1) .deli-card-title,
.deli-card:nth-child(6) .deli-card-title,
.deli-card:nth-child(7) .deli-card-title,
.deli-card:nth-child(8) .deli-card-title {
  font-size: 1.55rem;
}

/* Card body */
.deli-card-body {
  padding: 1.1rem 1.3rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.deli-card-body p {
  color: rgba(140, 123, 107, 0.92);
  font-size: 0.875rem;
  line-height: 1.75;
}

/* ── Thematic gradient backgrounds (richer, deeper) ── */
.deli-img-olive      { background: linear-gradient(150deg, #0b1f09 0%, #1a4a12 45%, #2d7020 80%, #163810 100%); }
.deli-img-cheese     { background: linear-gradient(150deg, #2a1004 0%, #6a380c 45%, #9e5a18 80%, #3e1e08 100%); }
.deli-img-chocolate  { background: linear-gradient(150deg, #0e0402 0%, #341006 45%, #621c10 80%, #200804 100%); }
.deli-img-wine       { background: linear-gradient(150deg, #14020a 0%, #4e0c24 45%, #861438 80%, #2c0814 100%); }
.deli-img-coffee     { background: linear-gradient(150deg, #0a0502 0%, #321806 45%, #5e3010 80%, #1e0e04 100%); }
.deli-img-beer       { background: linear-gradient(150deg, #1c0e02 0%, #5c3008 45%, #8c5014 80%, #2e1804 100%); }
.deli-img-prosciutto { background: linear-gradient(150deg, #180604 0%, #5e1c14 45%, #96302a 80%, #2a0e0a 100%); }
.deli-img-gifts      { background: linear-gradient(150deg, #160a02 0%, #4e2808 45%, #7e4812 80%, #261406 100%); }

/* Coming later notice strip */
.deli-coming-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 0 0 2.5rem;
  padding: 1rem 1.5rem;
  background: rgba(212, 115, 26, 0.06);
  border: 1px solid rgba(212, 115, 26, 0.22);
  border-radius: 8px;
  color: var(--ash);
  font-size: 0.92rem;
  line-height: 1.6;
}

.deli-coming-icon {
  flex-shrink: 0;
  font-size: 1.1rem;
  margin-top: 0.1rem;
  opacity: 0.75;
}

/* Coming soon badge */
.deli-badge {
  display: inline-block;
  margin-top: 3rem;
  padding: 0.8rem 2.2rem;
  border: 1.5px solid var(--ember);
  border-radius: 50px;
  color: var(--ember-light);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 115, 26, 0.3); }
  50%       { box-shadow: 0 0 0 12px rgba(212, 115, 26, 0); }
}

/* ═══════════════════════════════════════════
   GALLERY SECTION
   ═══════════════════════════════════════════ */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(212, 115, 26, 0);
  transition: background var(--transition-smooth);
}

.gallery-item:hover::after {
  background: rgba(212, 115, 26, 0.15);
}

/* Lightbox — full-screen viewer with thumbnail strip */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  background: rgba(10, 10, 10, 0.0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, background 0.35s ease,
              backdrop-filter 0.35s ease, -webkit-backdrop-filter 0.35s ease,
              visibility 0s 0.35s;
  cursor: pointer;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
  background:
    radial-gradient(ellipse at center 45%, rgba(212, 115, 26, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse at center, rgba(10, 10, 10, 0.0) 30%, rgba(5, 5, 5, 0.35) 100%),
    rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: opacity 0.35s ease, background 0.35s ease,
              backdrop-filter 0.35s ease, -webkit-backdrop-filter 0.35s ease,
              visibility 0s 0s;
}

/* Stage — holds the main image + arrows */
.lightbox-stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 0;
  padding: 3rem 4rem 1rem;
}

.lightbox-stage img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 6px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5),
              0 0 0px rgba(212, 115, 26, 0);
  transform: scale(0.55) rotate(-1.5deg);
  opacity: 0;
  filter: brightness(1.3) saturate(1.4);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.4s ease,
              box-shadow 0.8s ease,
              filter 0.8s ease;
  cursor: default;
  user-select: none;
  -webkit-user-select: none;
  object-fit: contain;
}

.lightbox.active .lightbox-stage img {
  transform: scale(1) rotate(0deg);
  opacity: 1;
  filter: brightness(1) saturate(1);
  box-shadow: 0 8px 60px rgba(0, 0, 0, 0.6),
              0 0 60px rgba(212, 115, 26, 0.15),
              0 0 120px rgba(212, 115, 26, 0.06);
  animation: lb-ember-arrive 1.2s ease-out 0.15s both;
}

/* Fire glow flare on open — flares bright then settles */
@keyframes lb-ember-arrive {
  0% {
    box-shadow: 0 0 30px rgba(255, 140, 20, 0.6),
                0 0 80px rgba(212, 115, 26, 0.4),
                0 0 160px rgba(192, 57, 43, 0.2);
  }
  40% {
    box-shadow: 0 0 50px rgba(255, 160, 40, 0.5),
                0 0 100px rgba(212, 115, 26, 0.3),
                0 0 180px rgba(192, 57, 43, 0.12);
  }
  100% {
    box-shadow: 0 8px 60px rgba(0, 0, 0, 0.6),
                0 0 40px rgba(212, 115, 26, 0.1),
                0 0 80px rgba(212, 115, 26, 0.04);
  }
}

/* Close button */
.lightbox-close {
  position: absolute;
  top: 0.8rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--cream);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  z-index: 3;
}

.lightbox-close:hover {
  color: var(--ember-light);
  background: rgba(212, 115, 26, 0.18);
  transform: scale(1.1);
}

/* Navigation arrows — inside stage */
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--cream);
  font-size: 1.3rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  z-index: 2;
  user-select: none;
  -webkit-user-select: none;
}

.lightbox-nav:hover {
  background: rgba(212, 115, 26, 0.2);
  color: var(--ember-light);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev { left: 0.6rem; }
.lightbox-next { right: 0.6rem; }

/* Thumbnail strip */
.lightbox-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1rem 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  flex-shrink: 0;
}

.lightbox-strip::-webkit-scrollbar { display: none; }

.lightbox-thumb {
  width: 64px;
  height: 44px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  border: 2px solid transparent;
  opacity: 0.4;
  transition: opacity 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.lightbox-thumb:hover {
  opacity: 0.75;
  transform: scale(1.08);
}

.lightbox-thumb.active {
  opacity: 1;
  border-color: var(--ember);
  box-shadow: 0 0 12px rgba(212, 115, 26, 0.35);
}

.lightbox-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

/* Mobile lightbox adjustments */
@media (max-width: 768px) {
  .lightbox-stage {
    padding: 2.5rem 2.5rem 0.5rem;
  }

  .lightbox-nav {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .lightbox-prev { left: 0.3rem; }
  .lightbox-next { right: 0.3rem; }

  .lightbox-close {
    top: 0.5rem;
    right: 0.5rem;
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
  }

  .lightbox-thumb {
    width: 48px;
    height: 34px;
  }

  .lightbox-strip {
    gap: 0.35rem;
    padding: 0.5rem 0.5rem 0.7rem;
  }
}

/* ═══════════════════════════════════════════
   TESTIMONIALS SECTION
   ═══════════════════════════════════════════ */

.testimonials-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 2rem;
  position: relative;
  transition: all var(--transition-smooth);
}

.testimonial-card:hover {
  border-color: rgba(212, 115, 26, 0.2);
  transform: translateY(-3px);
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--ember);
  opacity: 0.3;
  position: absolute;
  top: 0.5rem;
  left: 1.2rem;
  line-height: 1;
}

.testimonial-card .stars {
  color: var(--ember-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-card .quote {
  color: rgba(250, 243, 224, 0.85);
  font-size: 0.98rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.testimonial-author .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ember), var(--ember-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--cream);
}

.testimonial-author .name {
  font-weight: 600;
  color: var(--cream);
  font-size: 0.95rem;
}

.testimonial-author .location {
  color: var(--ash);
  font-size: 0.85rem;
}

/* ═══════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--ember);
  box-shadow: 0 0 0 3px rgba(212, 115, 26, 0.15);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--ash);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-info-item .info-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(212, 115, 26, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.contact-info-item h4 {
  font-family: var(--font-heading);
  color: var(--ember-light);
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.contact-info-item p {
  color: var(--ash);
  font-size: 0.92rem;
  line-height: 1.6;
}

.map-container {
  margin-top: 1rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  aspect-ratio: 16/10;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(50%) contrast(1.1);
}

/* Form success message */
.form-success {
  display: none;
  background: rgba(39, 174, 96, 0.15);
  border: 1px solid rgba(39, 174, 96, 0.3);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  color: #27ae60;
  font-weight: 600;
}

.form-success.show {
  display: block;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */

.footer {
  background: #111;
  padding: 2.5rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer p {
  color: var(--ash);
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.footer .footer-tagline {
  color: var(--ember);
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.95rem;
}

.footer-legal {
  margin-top: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.footer-legal a {
  color: var(--ash);
  font-size: 0.82rem;
  transition: color var(--transition-smooth);
}

.footer-legal a:hover {
  color: var(--ember-light);
}

.footer-sep {
  color: rgba(140, 123, 107, 0.4);
  font-size: 0.82rem;
  user-select: none;
}

/* ═══════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════
   RESPONSIVE DESIGN
   ═══════════════════════════════════════════ */

@media (max-width: 968px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

  /* Products: 2-col, remove Ćevapi span */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-card:nth-child(1) {
    grid-column: span 1;
  }

  /* Deli: collapse to 2-col, remove featured spans */
  .deli-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .deli-card:nth-child(1),
  .deli-card:nth-child(6),
  .deli-card:nth-child(7),
  .deli-card:nth-child(8) {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 4rem 0.85rem;
  }

  /* Remove double-padding: .container adds its own 1.5rem which stacks with section padding */
  .container {
    padding-left: 0;
    padding-right: 0;
  }

  .navbar {
    padding: 0.75rem 1rem;
  }

  /* Shrink logo text on mobile — keep it visible but compact */
  .nav-logo-text {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
  }

  /* Right-side group: tighter gap, ensure buttons stay above the logo link */
  .nav-right {
    gap: 0.5rem;
    position: relative;
    z-index: 1001;
  }

  /* Slightly more compact lang buttons */
  .lang-btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.72rem;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 998;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1.3rem;
  }

  .nav-toggle {
    display: block;
    z-index: 999;
  }

  .nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .lang-switcher {
    margin-left: 0;
  }

  .hero-logo {
    width: 200px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-content {
    padding: 2rem 1.75rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .testimonials-carousel {
    grid-template-columns: 1fr;
  }
}

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

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 1.7rem;
  }

  .hero-logo {
    width: 160px;
  }
}

@media (max-width: 480px) {
  /* ── Shop controls: larger tap targets on small phones ── */
  .shop-qty-btn {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }

  .shop-qty-input {
    width: 60px;
    height: 38px;
    font-size: 1rem;
  }

  .shop-qty-row {
    gap: 8px;
  }

  .shop-add-btn {
    width: 100%;
    padding: 11px;
    font-size: 0.9rem;
  }

  .shop-line-price {
    font-size: 0.82rem;
    text-align: center;
  }
}


/* ═══ MOBILE — product grid, expand, nav, sound, general UX ═══ */
.mobile-lang-row { display: none; }
.mobile-close-btn {
  display: inline-flex; align-items: center; gap: 0.3rem;
  background: rgba(212,115,26,0.08); border: 1px solid rgba(212,115,26,0.28);
  border-radius: 20px; color: var(--ash); font-size: 0.78rem; font-family: inherit;
  letter-spacing: 0.04em; padding: 0.4rem 0.9rem; margin-bottom: 1rem;
  cursor: pointer; transition: background 0.2s, color 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.mobile-close-btn:active { background: rgba(212,115,26,0.22); color: var(--cream); }

@media (max-width: 768px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 0.65rem; padding: 0 0.1rem; }
  .product-card { cursor: pointer; -webkit-tap-highlight-color: transparent; border-radius: 8px; }
  .product-card-image { height: 150px; }
  .product-card:nth-child(1) .product-card-image { height: 150px; }
  .product-card-title { font-size: 0.82rem; line-height: 1.25; }
  .product-card:nth-child(1) .product-card-title { font-size: 0.82rem; }
  .product-card-body { display: none; }
  .product-card.mobile-expanded .product-card-body p { max-height: none; -webkit-mask-image: none; mask-image: none; }
  .product-card.mobile-expanded { grid-column: 1 / -1; cursor: default; }
  .product-card.mobile-expanded .product-card-image { height: 240px; }
  .product-card.mobile-expanded .product-card-title { font-size: 1.3rem; line-height: 1.2; }
  .product-card.mobile-expanded .product-card-body { display: block; }
}

@media (max-width: 480px) {
  .nav-right > .lang-switcher { display: none; }
  .mobile-lang-row { display: flex; justify-content: center; padding: 0.5rem 0 1.2rem; width: 100%; }
  .mobile-lang-row .lang-switcher { gap: 0.75rem; }
  .mobile-lang-row .lang-btn { font-size: 0.9rem; padding: 0.4rem 0.9rem; min-width: 52px; }
  .sound-toggle { bottom: 1rem; left: 0.8rem; padding: 0.5rem 0.65rem; }
  .sound-toggle .sound-label { display: none; }
  .hero-content { padding: 1.5rem 1.25rem; margin: 0 0.5rem; max-width: calc(100% - 1rem); }
  .hero h1 { font-size: 1.55rem; line-height: 1.25; }
  .hero p { font-size: 0.9rem; line-height: 1.6; }
  .delivery-banner { padding: 0.4rem 0.75rem; }
  .delivery-chip { padding: 0.25rem 0.55rem; }
  .delivery-chip-date { font-size: 0.74rem; }
  .delivery-chip-towns { font-size: 0.68rem; }
  .delivery-chip-deadline { font-size: 0.62rem; }
  :root { --section-padding: 3rem 0.75rem; }
  .section-header { margin-bottom: 2rem; }
  .section-header h2 { font-size: 1.55rem; line-height: 1.25; }
  .section-header p { font-size: 0.88rem; line-height: 1.65; }
}

/* ═══════════════════════════════════════════════════════════
   SHOP — price badge, quantity controls, cart, order modal
   ═══════════════════════════════════════════════════════════ */

/* ── Price badge ─────────────────────────────────────────── */
.price-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 4px 10px 4px 8px;
  border-radius: 3px 3px 3px 3px;
  clip-path: polygon(8px 0%, 100% 0%, 100% 100%, 8px 100%, 0% 50%);
  box-shadow: 0 2px 8px rgba(0,0,0,0.35);
  z-index: 4;
  white-space: nowrap;
  pointer-events: none;
}

/* ── Quantity controls ───────────────────────────────────── */
.shop-controls {
  margin-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 12px;
}

.shop-qty-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.shop-qty-btn {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 4px;
  background: rgba(255,255,255,0.07);
  color: #e8d5b0;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.shop-qty-btn:hover {
  background: rgba(192,57,43,0.35);
  border-color: #c0392b;
}

.shop-qty-input {
  width: 56px;
  height: 30px;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 4px;
  color: #f0e6d0;
  font-size: 0.9rem;
  font-family: 'Lato', sans-serif;
  text-align: center;
  -moz-appearance: textfield;
}
.shop-qty-input::-webkit-outer-spin-button,
.shop-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.shop-qty-input:focus {
  outline: none;
  border-color: #c0392b;
}

.shop-qty-unit {
  color: #b0a090;
  font-size: 0.82rem;
  font-family: 'Lato', sans-serif;
}

.shop-line-price {
  font-size: 0.78rem;
  color: #c9a96e;
  font-family: 'Lato', sans-serif;
  min-height: 1.1em;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.shop-add-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  padding: 8px 14px;
  background: linear-gradient(135deg, #8b1a1a 0%, #c0392b 100%);
  color: #f5e6c8;
  border: none;
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
}
.shop-add-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.shop-add-btn:active { transform: translateY(0); }
.shop-add-btn.in-cart {
  background: #3d6b4a;
  box-shadow: 0 0 0 2px #3d6b4a44;
}
.shop-add-btn.in-cart:hover { background: #4a7c59; opacity: 1; transform: translateY(-1px); }

/* ── Cart feedback flash ─────────────────────────────────── */
.cart-feedback {
  position: absolute;
  bottom: 60px;
  right: 16px;
  background: #c0392b;
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s, transform 0.25s;
  pointer-events: none;
  z-index: 10;
  box-shadow: 0 3px 10px rgba(0,0,0,0.4);
}
.cart-feedback--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Floating cart button ────────────────────────────────── */
#lf-cart-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2c1810 0%, #4a2010 100%);
  border: 2px solid rgba(192,57,43,0.5);
  color: #e8d5b0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(0,0,0,0.5);
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
}
#lf-cart-btn:hover { transform: scale(1.08); border-color: #c0392b; }
#lf-cart-btn.has-items {
  background: linear-gradient(135deg, #8b1a1a 0%, #c0392b 100%);
  border-color: #e74c3c;
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #c0392b;
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* ── Cart overlay ────────────────────────────────────────── */
#lf-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
#lf-cart-overlay.open { opacity: 1; pointer-events: all; }

/* ── Cart panel ──────────────────────────────────────────── */
#lf-cart-panel {
  position: fixed;
  top: 0;
  right: -400px;
  width: 380px;
  max-width: 95vw;
  height: 100vh;
  background: #1a0f08;
  border-left: 1px solid rgba(192,57,43,0.3);
  z-index: 1110;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(.4,0,.2,1);
  box-shadow: -8px 0 30px rgba(0,0,0,0.6);
}
#lf-cart-panel.open { right: 0; }

.cart-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.cart-panel-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #f0e6d0;
  margin: 0;
}

.cart-close-btn,
.order-close-btn {
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  color: #b0a090;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.cart-close-btn:hover,
.order-close-btn:hover { background: rgba(192,57,43,0.3); color: #fff; }

.cart-items-list {
  flex: 1;
  overflow-y: auto;
  padding: 14px 18px;
}
.cart-empty {
  color: #7a6a5a;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  text-align: center;
  margin-top: 40px;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cart-item-name {
  font-family: 'Lato', sans-serif;
  font-size: 0.88rem;
  color: #e0d0b8;
  grid-column: 1 / -1;
}
.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 6px;
}
.cart-item-qty {
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  color: #c9a96e;
  min-width: 48px;
  text-align: center;
}
.cart-item-price {
  font-family: 'Lato', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #f0e6d0;
  white-space: nowrap;
}
.cart-item-remove {
  background: none;
  border: none;
  color: #7a6a5a;
  cursor: pointer;
  font-size: 0.8rem;
  padding: 2px 4px;
  border-radius: 3px;
  transition: color 0.2s, background 0.2s;
}
.cart-item-remove:hover { color: #c0392b; background: rgba(192,57,43,0.15); }

.cart-panel-footer {
  padding: 16px 18px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: #b0a090;
  margin-bottom: 14px;
}
.cart-total-row strong { color: #f0e6d0; font-size: 1.1rem; }

.cart-order-btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #8b1a1a 0%, #c0392b 100%);
  color: #f5e6c8;
  border: none;
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s;
}
.cart-order-btn:hover { opacity: 0.88; }

.cart-clear-btn {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 8px;
  background: none;
  border: 1px solid rgba(140, 123, 107, 0.4);
  border-radius: 6px;
  color: var(--ash);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.cart-clear-btn:hover {
  border-color: var(--flame-red);
  color: var(--flame-red);
}

.cart-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 10px;
  padding: 11px;
  background: #25d366;
  border: none;
  border-radius: 8px;
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.cart-wa-btn:hover  { background: #1ebe5a; transform: translateY(-1px); }
.cart-wa-btn:active { transform: translateY(0); }

/* ── Toast notifications ─────────────────────────────────── */
#lf-toast-container {
  position: fixed;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  pointer-events: none;
}
.lf-toast {
  padding: 0.75rem 1.6rem;
  border-radius: 8px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  opacity: 0;
  transform: translateY(0.75rem);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  max-width: 90vw;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
}
.lf-toast.visible { opacity: 1; transform: translateY(0); }
.lf-toast-success { background: #3d6b4a; }
.lf-toast-error   { background: var(--flame-red); }

/* ── Order modal backdrop ────────────────────────────────── */
#lf-order-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1120;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
#lf-order-backdrop.open { opacity: 1; pointer-events: all; }

/* ── Order modal ─────────────────────────────────────────── */
#lf-order-modal {
  position: fixed;
  inset: 0;
  z-index: 1130;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
  padding: 16px;
}
#lf-order-modal.open { opacity: 1; pointer-events: all; }

.order-modal-box {
  background: #1e1008;
  border: 1px solid rgba(192,57,43,0.35);
  border-radius: 8px;
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 16px 48px rgba(0,0,0,0.7);
  display: flex;
  flex-direction: column;
}

.order-modal-header {
  position: sticky;
  top: 0;
  background: #1e1008;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  z-index: 2;
}
.order-modal-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: #f0e6d0;
  margin: 0;
}

/* ── Order summary table ─────────────────────────────────── */
.order-summary-wrap {
  padding: 0 24px 6px;
  overflow-x: auto;
}

.order-summary-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  margin: 14px 0;
}
.order-summary-table th {
  text-align: left;
  color: #9a8a7a;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.72rem;
  padding: 4px 8px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.order-summary-table td {
  padding: 7px 8px;
  color: #d0c0a8;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.order-summary-table td:last-child { color: #f0e6d0; font-weight: 600; }

/* ── Customer form ───────────────────────────────────────── */
#lf-order-form {
  padding: 6px 24px 24px;
}

.order-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
  margin-bottom: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.form-group--full { grid-column: 1 / -1; }

.form-group label {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: #9a8a7a;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 4px;
  color: #e8d5b0;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  padding: 8px 11px;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #c0392b;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #5a4a3a; }

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%239a8a7a'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 28px;
  background-color: rgba(0,0,0,0.3);
}
.form-group select option { background: #1e1008; }

.form-group textarea { resize: vertical; min-height: 70px; }

.order-grand-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 16px;
  font-family: 'Lato', sans-serif;
  color: #b0a090;
  font-size: 0.95rem;
}
.order-grand-total strong { color: #f0e6d0; font-size: 1.15rem; }

.order-submit-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #8b1a1a 0%, #c0392b 100%);
  color: #f5e6c8;
  border: none;
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
}
.order-submit-btn:hover { opacity: 0.88; transform: translateY(-1px); }

/* ── Order confirmation screen ───────────────────────────── */
.order-confirmation {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 32px;
  text-align: center;
  gap: 16px;
}
.confirm-icon { font-size: 3.5rem; line-height: 1; }
.order-confirmation h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #f0e6d0;
  margin: 0;
}
.order-confirmation p {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: #b0a090;
  margin: 0;
  max-width: 340px;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 600px) {
  .order-form-grid { grid-template-columns: 1fr; }
  .form-group--full { grid-column: 1; }
  #lf-cart-btn { bottom: 18px; right: 18px; width: 52px; height: 52px; }
}

/* ═══════════════════════════════════════════════════════════
   SHOP MODAL — updated selectors to match revised JS structure
   ═══════════════════════════════════════════════════════════ */

#lf-order-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1010;      /* above navbar (1000) and delivery banner (999) */
  overflow-y: auto;   /* overlay scrolls — dialog can be any height */
}
#lf-order-modal.open {
  display: block;     /* block, NOT flex — avoids vertical-centering overflow */
}

#lf-order-modal .modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 0;
}

#lf-order-modal .modal-dialog {
  position: relative;
  z-index: 1;
  background: #1e1008;
  border: 1px solid rgba(192, 57, 43, 0.4);
  border-radius: 8px;
  width: calc(100% - 32px);  /* 16px gutter each side */
  max-width: 600px;
  margin: 24px auto;          /* centres horizontally, breathing room top/bottom */
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.7);
}

.modal-header {
  position: sticky;
  top: 0;
  background: #1e1008;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 2;
}
.modal-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #f0e6d0;
  margin: 0;
}

.modal-close-btn {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #b0a090;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.modal-close-btn:hover { background: rgba(192, 57, 43, 0.3); color: #fff; }

.modal-body {
  padding: 18px 22px 24px;
}

/* Form labels */
#lf-order-form label {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px;
}
#lf-order-form label span {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: #9a8a7a;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
#lf-order-form input,
#lf-order-form select,
#lf-order-form textarea {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  color: #e8d5b0;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  padding: 8px 11px;
  transition: border-color 0.2s;
}
#lf-order-form input:focus,
#lf-order-form select:focus,
#lf-order-form textarea:focus {
  outline: none;
  border-color: #c0392b;
}
#lf-order-form select {
  background-color: rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
#lf-order-form select option { background: #1e1008; }
#lf-order-form textarea { resize: vertical; min-height: 64px; }

/* Order summary inside modal */
.order-summary {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  padding: 14px 16px;
  margin: 16px 0;
}
.order-summary h3 {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: #c9a96e;
  margin: 0 0 10px;
}
.order-item {
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  color: #d0c0a8;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.order-total {
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: #b0a090;
}
.order-total strong { color: #f0e6d0; font-size: 1.05rem; }

/* Consent checkbox */
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin: 4px 0 14px;
  cursor: pointer;
}

.consent-label input[type="checkbox"] {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 3px;
  accent-color: var(--ember);
  cursor: pointer;
}

.consent-label span {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  color: #9a8a7a;
  line-height: 1.6;
}

.consent-label span a {
  color: var(--ember-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.consent-label span a:hover {
  color: var(--ember);
}

/* Submit button */
.submit-btn {
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, #8b1a1a 0%, #c0392b 100%);
  color: #f5e6c8;
  border: none;
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s;
  margin-top: 6px;
}
.submit-btn:hover { opacity: 0.88; }

/* Cart item — updated structure */
.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.cart-item-info {
  flex: 1;
  min-width: 0;
}
.cart-item-info strong {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  color: #e0d0b8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}
.cart-item-qty {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  color: #c9a96e;
  min-width: 44px;
  text-align: center;
}
.cart-item-price {
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #f0e6d0;
  min-width: 52px;
  text-align: right;
}
.cart-item-remove {
  background: none;
  border: none;
  color: #7a6a5a;
  cursor: pointer;
  font-size: 0.75rem;
  padding: 3px 5px;
  border-radius: 3px;
  transition: color 0.2s, background 0.2s;
  margin-left: 2px;
}
.cart-item-remove:hover { color: #c0392b; background: rgba(192,57,43,0.15); }

/* ════════════════════════════════════════════════════════
   DELIVERY BANNER & MODAL INFO
   ════════════════════════════════════════════════════════ */

/* ─── Sticky delivery bar — fixed below the navbar ────── */
.delivery-banner {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.6rem 1rem;
  background: rgba(22, 14, 8, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--ember);
  padding: 0.45rem 1.2rem;
  font-size: 0.8rem;
  color: var(--ash);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  transition: top 0.3s ease;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  white-space: nowrap;
}
.delivery-banner::-webkit-scrollbar { display: none; }

/* Left label: truck + "Liefertermine" */
.delivery-banner-label {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
  padding-right: 0.6rem;
  border-right: 1px solid rgba(212, 115, 26, 0.3);
}
.delivery-banner .delivery-icon { font-size: 1rem; }
.delivery-banner .delivery-label {
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ember-light);
  white-space: nowrap;
}

/* Scrollable chips row */
.delivery-chips {
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
  flex-shrink: 0;
}

/* Individual date chip */
.delivery-chip {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.1rem;
  background: rgba(212, 115, 26, 0.1);
  border: 1px solid rgba(212, 115, 26, 0.25);
  border-radius: 5px;
  padding: 0.3rem 0.7rem;
  white-space: nowrap;
  line-height: 1.35;
  transition: background 0.18s, border-color 0.18s, transform 0.12s;
}
.delivery-chip[data-slot-idx] {
  cursor: pointer;
}
.delivery-chip[data-slot-idx]:hover {
  background: rgba(212, 115, 26, 0.22);
  border-color: rgba(212, 115, 26, 0.55);
  transform: translateY(-1px);
}
.delivery-chip[data-slot-idx]:active {
  transform: translateY(0);
}
/* Today's delivery — ember glow pulse */
.delivery-chip.lf-chip-today {
  background: rgba(212, 115, 26, 0.25);
  border-color: rgba(255, 140, 20, 0.7);
  animation: ember-pulse 1.8s ease-in-out infinite;
  position: relative;
}
.delivery-chip.lf-chip-today:hover {
  animation-play-state: paused;
  background: rgba(212, 115, 26, 0.35);
  border-color: rgba(255, 160, 40, 0.9);
}
.delivery-chip-today-badge {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  background: var(--ember);
  padding: 0.08rem 0.4rem;
  border-radius: 3px;
  align-self: flex-start;
}
@keyframes ember-pulse {
  0%, 100% {
    box-shadow: 0 0 4px rgba(212, 115, 26, 0.3), 0 0 8px rgba(212, 115, 26, 0.15);
    border-color: rgba(255, 140, 20, 0.5);
  }
  50% {
    box-shadow: 0 0 10px rgba(212, 115, 26, 0.6), 0 0 22px rgba(212, 115, 26, 0.25);
    border-color: rgba(255, 160, 40, 0.85);
  }
}

.delivery-chip.lf-chip-expired {
  opacity: 0.38;
  cursor: default;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}
.delivery-chip.lf-chip-expired .delivery-chip-deadline {
  text-decoration: line-through;
  text-decoration-color: rgba(255, 255, 255, 0.35);
}
.delivery-chip-date {
  font-weight: 700;
  color: var(--cream);
  font-size: 0.8rem;
}
.delivery-chip-towns {
  color: var(--ember-light);
  font-size: 0.76rem;
}
.delivery-chip-deadline {
  color: var(--ash);
  font-size: 0.7rem;
  opacity: 0.85;
}

/* ─── Info box in the order modal (delivery only) ─────── */
.delivery-modal-info {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.3rem 0.6rem;
  background: rgba(200, 100, 30, 0.08);
  border-left: 3px solid var(--ember);
  border-radius: 0 4px 4px 0;
  padding: 0.55rem 0.85rem;
  margin-top: -0.4rem;
  margin-bottom: 0.9rem;
  font-size: 0.82rem;
  color: var(--ash);
  line-height: 1.6;
}
.delivery-modal-info .delivery-info-icon {
  flex-shrink: 0;
}
.delivery-modal-info .delivery-info-note {
  font-weight: 600;
  color: var(--ember-light);
  white-space: nowrap;
}
.delivery-modal-info .delivery-town-pill {
  white-space: nowrap;
}
.delivery-modal-info .delivery-town-pill strong {
  color: var(--cream);
}
.delivery-modal-info .delivery-town-pill em {
  font-style: normal;
  color: var(--ash);
}

/* ════════════════════════════════════════════════════════
   OUT-OF-STOCK
   ════════════════════════════════════════════════════════ */

.product-card.out-of-stock {
  opacity: 0.72;
  filter: grayscale(35%);
}

.out-of-stock-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--flame-red);
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  pointer-events: none;
  z-index: 2;
}

.lf-oos-notice {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  color: var(--flame-red);
  font-style: italic;
  margin-top: 0.5rem;
  padding: 0 1rem 1rem;
}

/* ════════════════════════════════════════════════════════
   STORIES / BLOG SECTION
   ════════════════════════════════════════════════════════ */

/* ─── Grid layout ─────────────────────────────────────── */
.stories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

/* Featured card spans full width, others form a 3-col grid */
@media (min-width: 700px) {
  .stories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .story-card--featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 420px;
  }
  .story-card--featured .story-cover {
    border-radius: 6px 0 0 6px;
    min-height: 0;
  }
  .story-card--featured .story-body {
    border-radius: 0 6px 6px 0;
    padding: 2.5rem 2.2rem;
  }
  .story-card--featured .story-title {
    font-size: 1.7rem;
  }
  .story-card--featured .story-intro {
    font-size: 1rem;
  }
}

/* ─── Individual card ─────────────────────────────────── */
.story-card {
  background: var(--charcoal-light);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.story-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

/* ─── Cover image ─────────────────────────────────────── */
.story-cover {
  background-size: cover;
  background-position: center;
  background-color: var(--smoky);
  min-height: 220px;
  flex-shrink: 0;
  position: relative;
}
.story-card--featured .story-cover {
  min-height: 340px;
}
.story-cover--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}
.story-cover-icon {
  font-size: 3rem;
  opacity: 0.35;
}

/* ─── Body ────────────────────────────────────────────── */
.story-body {
  padding: 1.5rem 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* ─── Meta row (tag + date) ───────────────────────────── */
.story-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.7rem;
  flex-wrap: wrap;
}
.story-tag {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--ember);
  color: var(--charcoal);
  padding: 2px 9px;
  border-radius: 3px;
}
.story-date {
  font-size: 0.78rem;
  color: var(--ash);
  white-space: nowrap;
}

/* ─── Title & intro ───────────────────────────────────── */
.story-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.3;
  margin-bottom: 0.6rem;
}
.story-intro {
  font-size: 0.9rem;
  color: var(--ash);
  line-height: 1.6;
  flex: 1;
}

/* ─── Expanded full text ──────────────────────────────── */
.story-full {
  margin-top: 1rem;
}
.story-full p {
  font-size: 0.92rem;
  color: var(--cream);
  line-height: 1.75;
  margin-bottom: 0.9rem;
}
.story-full p:last-of-type {
  margin-bottom: 0;
}

/* ─── Extra photos in expanded view ──────────────────── */
.story-extra-imgs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.2rem;
}
.story-extra-img {
  border-radius: 4px;
  max-height: 220px;
  object-fit: cover;
  flex: 1 1 calc(50% - 0.3rem);
}

/* ─── Read more / less button ─────────────────────────── */
.btn-ghost {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.45rem 1.1rem;
  border: 1.5px solid var(--ember);
  border-radius: 4px;
  background: transparent;
  color: var(--ember-light);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background var(--transition-smooth), color var(--transition-smooth);
  align-self: flex-start;
}
.btn-ghost:hover {
  background: var(--ember);
  color: var(--charcoal);
}

/* ─── Responsive tweaks ───────────────────────────────── */
@media (max-width: 699px) {
  .story-card--featured .story-cover {
    min-height: 240px;
  }
}

/* ═══ CUSTOM CURSOR — ember dot + lagging ring ═══════════════
   Only activates on real pointer devices. Touch is unaffected.
   ══════════════════════════════════════════════════════════ */

@media (hover: hover) and (pointer: fine) {
  *, *::before, *::after { cursor: none !important; }
}

#lf-cursor-dot,
#lf-cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 999999;
  opacity: 0; /* hidden until first mousemove */
}

#lf-cursor-dot {
  width: 7px;
  height: 7px;
  background: #f5ede0;
  /* Dark outline ensures visibility on any background — dark photos, orange glows, light areas */
  box-shadow:
    0 0 0 1.5px rgba(0, 0, 0, 0.45),
    0 0 8px 2px rgba(212, 115, 26, 0.50);
  transition: opacity 0.25s,
              background 0.15s,
              box-shadow 0.15s,
              width 0.12s ease,
              height 0.12s ease;
}

#lf-cursor-ring {
  width: 28px;
  height: 28px;
  border: 1.5px solid rgba(212, 115, 26, 0.42);
  background: transparent;
  /* Dark edges on both sides of the border line — like a text-shadow,
     this ensures the ring reads against any background: dark photos,
     bright areas, or mid-tones. */
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(0, 0, 0, 0.40);
  transition: opacity 0.25s,
              width 0.20s ease,
              height 0.20s ease,
              border-color 0.20s,
              border-width 0.20s,
              box-shadow 0.20s;
}

/* Hovering an interactive element —
   dot stays bright white/cream (NOT orange) so it contrasts
   against the orange card glow; ring gets a double glow so
   it reads clearly against dark product photos */
body.lf-cursor-hover #lf-cursor-dot {
  width: 8px;
  height: 8px;
  background: #fff8f2;
  box-shadow:
    0 0 0 1.5px rgba(0, 0, 0, 0.40),
    0 0 12px 4px rgba(232, 148, 58, 0.65);
}
body.lf-cursor-hover #lf-cursor-ring {
  width: 38px;
  height: 38px;
  border-width: 2px;
  /* border-color, border-radius, box-shadow driven by animations below */
  animation:
    lf-ring-morph 3.2s ease-in-out infinite,   /* shape — drifts, never repeats obviously */
    lf-ring-glow  1.9s ease-in-out infinite;   /* glow — different period = organic phase drift */
}

/* Shape morphing — subtle border-radius shifts suggest heat distortion / fire silhouette.
   Stays close to circular (±5%) so it reads as "shimmer", not "blob". */
@keyframes lf-ring-morph {
  0%   { border-radius: 50%; }
  20%  { border-radius: 48% 52% 54% 46% / 52% 46% 54% 48%; }
  45%  { border-radius: 53% 47% 47% 53% / 47% 55% 45% 53%; }
  70%  { border-radius: 46% 54% 52% 48% / 55% 45% 52% 48%; }
  90%  { border-radius: 51% 49% 48% 52% / 48% 52% 50% 50%; }
  100% { border-radius: 50%; }
}

/* Glow breathing — border brightens and deepens like embers catching air.
   Occasional flare (35%) mimics a log shifting in the fire. */
@keyframes lf-ring-glow {
  0% {
    border-color: rgba(232, 148, 58, 0.88);
    box-shadow:
      0 0 0 1px rgba(0, 0, 0, 0.45),
      inset 0 0 0 1px rgba(0, 0, 0, 0.40),
      0 0 9px 2px rgba(212, 115, 26, 0.38),
      inset 0 0 6px 0px rgba(212, 115, 26, 0.14);
  }
  35% {
    border-color: rgba(255, 168, 65, 1.00);
    box-shadow:
      0 0 0 1px rgba(0, 0, 0, 0.45),
      inset 0 0 0 1px rgba(0, 0, 0, 0.40),
      0 0 20px 5px rgba(232, 148, 58, 0.62),
      inset 0 0 12px 2px rgba(212, 115, 26, 0.30);
  }
  60% {
    border-color: rgba(212, 115, 26, 0.85);
    box-shadow:
      0 0 0 1px rgba(0, 0, 0, 0.45),
      inset 0 0 0 1px rgba(0, 0, 0, 0.40),
      0 0 10px 2px rgba(212, 115, 26, 0.40),
      inset 0 0 7px 0px rgba(212, 115, 26, 0.16);
  }
  82% {
    border-color: rgba(242, 158, 55, 0.95);
    box-shadow:
      0 0 0 1px rgba(0, 0, 0, 0.45),
      inset 0 0 0 1px rgba(0, 0, 0, 0.40),
      0 0 15px 3px rgba(232, 148, 58, 0.52),
      inset 0 0 9px 1px rgba(212, 115, 26, 0.22);
  }
  100% {
    border-color: rgba(232, 148, 58, 0.88);
    box-shadow:
      0 0 0 1px rgba(0, 0, 0, 0.45),
      inset 0 0 0 1px rgba(0, 0, 0, 0.40),
      0 0 9px 2px rgba(212, 115, 26, 0.38),
      inset 0 0 6px 0px rgba(212, 115, 26, 0.14);
  }
}

/* Clicking */
body.lf-cursor-click #lf-cursor-dot {
  width: 4px;
  height: 4px;
  background: #ffffff;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.30),
    0 0 16px 5px rgba(232, 148, 58, 0.70);
}
body.lf-cursor-click #lf-cursor-ring {
  width: 18px;
  height: 18px;
  border-color: rgba(212, 115, 26, 0.85);
}

/* ─── Pricing notice in order modal ──────────────────────── */
.order-pricing-notice {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  background: rgba(212, 115, 26, 0.08);
  border-left: 3px solid var(--ember);
  border-radius: 0 4px 4px 0;
  padding: 0.85rem 1rem;
  margin-bottom: 1.2rem;
  font-size: 0.82rem;
  color: var(--ash);
  line-height: 1.6;
}
.order-pricing-notice-icon {
  flex-shrink: 0;
  font-size: 1rem;
  margin-top: 0.05rem;
}


/* ═══════════════════════════════════════════════════════════
   VISUAL ENHANCEMENTS
   ═══════════════════════════════════════════════════════════ */

/* ── 1. Film-grain texture ────────────────────────────────
   A fixed SVG noise overlay that removes the flat "solid black"
   look and gives every section a subtle smoky, tactile depth.
   z-index:3 — above bare background, below all content.       */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
}

/* ── 2. Flame dividers ────────────────────────────────────
   Injected by JS between every pair of adjacent .section
   elements. Two overlapping wave paths give an organic
   heat-shimmer / ember-glow look at section boundaries.     */
.lf-divider {
  display: block;
  width: 100%;
  height: 44px;
  overflow: hidden;
  pointer-events: none;
  margin: -1px 0;
  flex-shrink: 0;
  position: relative;
  z-index: 4; /* just above the grain layer */
}
.lf-divider svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ═══════════════════════════════════════════
   EASTER EGG — CARD ON FIRE
   ═══════════════════════════════════════════ */

@keyframes lf-card-fire-glow {
  0%, 100% {
    box-shadow:
      0 0 14px  rgba(212, 115,  26, 0.75),
      0 0 35px  rgba(192,  57,  43, 0.50),
      0 0 70px  rgba(212, 115,  26, 0.22),
      0 24px 60px rgba(0, 0, 0, 0.50),
      inset 0 1px 0 rgba(245, 166, 35, 0.40);
    border-color: rgba(192, 57, 43, 0.90);
  }
  38% {
    box-shadow:
      0 0 22px  rgba(245, 166,  35, 0.90),
      0 0 55px  rgba(212, 115,  26, 0.60),
      0 0 95px  rgba(192,  57,  43, 0.22),
      0 24px 60px rgba(0, 0, 0, 0.50),
      inset 0 1px 0 rgba(255, 200, 80, 0.55);
    border-color: rgba(245, 166, 35, 1.00);
  }
  68% {
    box-shadow:
      0 0 17px  rgba(192,  57,  43, 0.80),
      0 0 44px  rgba(212, 115,  26, 0.52),
      0 0 78px  rgba(245, 166,  35, 0.18),
      0 24px 60px rgba(0, 0, 0, 0.50),
      inset 0 1px 0 rgba(212, 115,  26, 0.38);
    border-color: rgba(255, 140, 0, 0.95);
  }
}

.product-card.lf-on-fire {
  animation: lf-card-fire-glow 1.9s ease-in-out infinite !important;
  border-color: rgba(192, 57, 43, 0.90) !important;
  transform: translateY(-6px);
}

body.lf-no-select { user-select: none; -webkit-user-select: none; }
