/* ==========================================================================
   LYUBOMIROFF — premium_additions.css
   Add @import or <link> for this file AFTER mystyle.css
   Contains styles for:
   - Shared buttons & labels
   - Homepage cinematic product section
   - Product listing page (warm texture, card interactions)
   - About page (zig-zag story chapters, cinematic opening)
   - Where to Buy (map/list split layout)
   ========================================================================== */

/* --------------------------------------------------------------------------
   Shared: eyebrow label
   -------------------------------------------------------------------------- */
.eyebrow-label {
  font-family: system-ui, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--lm-muted);
  display: block;
  margin-bottom: 0.5rem;
}

/* Footer links — prevent long emails/URLs from overflowing on mobile */
.footer-links a {
  word-break: break-word;
  overflow-wrap: break-word;
}

/* --------------------------------------------------------------------------
   Shared: button system
   -------------------------------------------------------------------------- */
.btn-lm-primary {
  display: inline-block;
  background: var(--lm-gold);
  color: var(--lm-black);
  border: 1px solid var(--lm-gold);
  border-radius: 999px;
  padding: 0.65rem 1.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: background 0.22s ease, transform 0.15s ease;
  cursor: none;
}

.btn-lm-primary:hover {
  background: #b07c2c;
  border-color: #b07c2c;
  color: var(--lm-black);
  transform: translateY(-1px);
}

.btn-lm-ghost {
  display: inline-block;
  background: transparent;
  color: var(--lm-cream);
  border: 1px solid rgba(245, 240, 232, 0.35);
  border-radius: 999px;
  padding: 0.65rem 1.75rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: background 0.22s, border-color 0.22s, transform 0.15s;
  cursor: none;
}

.btn-lm-ghost:hover {
  background: rgba(245, 240, 232, 0.1);
  border-color: rgba(245, 240, 232, 0.6);
  color: var(--lm-cream);
  transform: translateY(-1px);
}

.btn-lm-ghost-sm {
  display: inline-block;
  background: transparent;
  color: rgba(245, 240, 232, 0.7);
  border: 1px solid rgba(245, 240, 232, 0.2);
  border-radius: 999px;
  padding: 0.5rem 1.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: all 0.22s;
  cursor: none;
}

.btn-lm-ghost-sm:hover {
  color: var(--lm-cream);
  border-color: rgba(245, 240, 232, 0.5);
}

.btn-lm-outline {
  display: inline-block;
  background: transparent;
  color: var(--lm-slate);
  border: 1px solid rgba(28, 25, 23, 0.3);
  border-radius: 999px;
  padding: 0.65rem 1.75rem;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: all 0.22s;
  cursor: none;
}

.btn-lm-outline:hover {
  border-color: var(--lm-gold);
  color: var(--lm-gold);
}

/* --------------------------------------------------------------------------
   Homepage: cinematic products section
   -------------------------------------------------------------------------- */
.products-cinematic-section {
  position: relative;
  background: var(--lm-black);
  padding: 6rem 0 5rem;
  overflow: hidden;
}

/* Ambient video background */
.cinematic-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* Ensure video is never hidden by a parent .reveal class that starts at opacity:0 */
.cinematic-bg,
.cinematic-video,
.about-video-wrap,
.about-opening-video {
  opacity: revert;
}

.cinematic-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.45 !important;
  filter: saturate(0.5) brightness(0.55);
  z-index: 0;
}

.cinematic-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(13, 13, 13, 0.3) 0%,
    rgba(13, 13, 13, 0.15) 50%,
    rgba(13, 13, 13, 0.4) 100%
  );
}

/* CSS-only ambient gold particles — sit above overlay but below content */
.gold-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--lm-gold);
  border-radius: 50%;
  opacity: 0;
  animation: particle-float var(--dur, 8s) var(--delay, 0s) ease-in-out infinite;
}

.particle:nth-child(1)  { left: 8%;   top: 20%; --dur: 9s;  --delay: 0s;   }
.particle:nth-child(2)  { left: 18%;  top: 60%; --dur: 11s; --delay: 1.2s; }
.particle:nth-child(3)  { left: 32%;  top: 35%; --dur: 7s;  --delay: 2.4s; }
.particle:nth-child(4)  { left: 45%;  top: 70%; --dur: 13s; --delay: 0.6s; }
.particle:nth-child(5)  { left: 55%;  top: 25%; --dur: 8s;  --delay: 3.1s; }
.particle:nth-child(6)  { left: 68%;  top: 55%; --dur: 10s; --delay: 1.8s; }
.particle:nth-child(7)  { left: 78%;  top: 40%; --dur: 9s;  --delay: 4s;   }
.particle:nth-child(8)  { left: 88%;  top: 75%; --dur: 12s; --delay: 0.3s; }
.particle:nth-child(9)  { left: 22%;  top: 80%; --dur: 8s;  --delay: 2.8s; }
.particle:nth-child(10) { left: 62%;  top: 15%; --dur: 14s; --delay: 1s;   }
.particle:nth-child(11) { left: 5%;   top: 50%; --dur: 7s;  --delay: 3.7s; }
.particle:nth-child(12) { left: 92%;  top: 30%; --dur: 11s; --delay: 2.1s; }

@keyframes particle-float {
  0%, 100% { opacity: 0; transform: translateY(0) scale(1); }
  20%       { opacity: 0.45; }
  50%       { opacity: 0.25; transform: translateY(-40px) scale(1.4); }
  80%       { opacity: 0.35; }
}

@media (prefers-reduced-motion: reduce) {
  .particle { animation: none; opacity: 0; }
  /* Do NOT hide the video — it is a static background at this point.
     Pausing it is enough to respect the user preference. */
  .cinematic-video { animation-play-state: paused; }
}

/* Section title on dark */
.cinematic-section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--lm-cream);
  margin-bottom: 0.5rem;
}

.cinematic-section-sub {
  color: rgba(245, 240, 232, 0.6);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto;
}

/* Product cinema grid */
.product-cinema-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 992px) {
  .product-cinema-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 576px) {
  .product-cinema-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  /* Hide desktop grid on mobile, show carousel instead */
  .product-cinema-grid { display: none; }
  .product-cinema-carousel { display: block !important; }
}

.product-cinema-card {
  position: relative;
  text-decoration: none;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 145, 61, 0.1);
  transition: border-color 0.35s ease, background 0.35s ease, transform 0.35s ease;
  cursor: none;
}

.product-cinema-card:hover {
  border-color: rgba(201, 145, 61, 0.35);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-8px);
}

.product-cinema-image-wrap {
  position: relative;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-cinema-image {
  max-height: 240px;
  max-width: 80%;
  object-fit: contain;
  transition: transform 0.5s ease;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.7));
}

.product-cinema-card:hover .product-cinema-image {
  transform: translateY(-8px) scale(1.04);
}

/* Glow halo */
.product-cinema-glow {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(201, 145, 61, 0.18) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.product-cinema-card:hover .product-cinema-glow {
  transform: translate(-50%, -58%) scale(1.5);
  opacity: 1.5;
}

.product-cinema-info {
  padding: 1rem 1.25rem 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.product-cinema-name {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--lm-cream);
  letter-spacing: 0.04em;
  margin-bottom: 0.2rem;
}

.product-cinema-cap {
  font-size: 0.75rem;
  color: var(--lm-muted);
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
}

.product-cinema-cta {
  font-size: 0.72rem;
  color: var(--lm-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  display: block;
  transition: opacity 0.3s ease;
}

.product-cinema-card:hover .product-cinema-cta {
  opacity: 1;
}

/* --------------------------------------------------------------------------
   Product listing page: warm texture, enhanced cards
   -------------------------------------------------------------------------- */
.product-listing-section {
  position: relative;
  background: #faf7f2;
  padding: 4rem 0 5rem;
}

/* Warm grain texture overlay (CSS, no image needed) */
.product-listing-texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.6;
}

.product-listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 992px) { .product-listing-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }
@media (max-width: 576px) { .product-listing-grid { grid-template-columns: 1fr; gap: 1.25rem; } }

.product-listing-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(28, 25, 23, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.product-listing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.1);
  border-color: rgba(201, 145, 61, 0.25);
}

.product-listing-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: none;
}

/* Image zone */
.plc-image-zone {
  position: relative;
  height: 300px;
  background: #faf8f4;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.plc-image {
  max-height: 240px;
  max-width: 75%;
  object-fit: contain;
  transition: transform 0.45s ease;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.12));
}

.product-listing-card:hover .plc-image {
  transform: translateY(-6px) scale(1.03);
}

/* Subtle glow */
.plc-glow {
  position: absolute;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(201, 145, 61, 0.1) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: transform 0.45s ease;
}

.product-listing-card:hover .plc-glow {
  transform: translate(-50%, -55%) scale(1.6);
}

/* Hover overlay with quick tasting notes */
.plc-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 13, 0.82);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 2;
}

.product-listing-card:hover .plc-hover-overlay {
  opacity: 1;
}

.plc-quick-note {
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.85);
  margin: 0;
  text-align: center;
  line-height: 1.4;
}

.plc-quick-note span {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lm-gold);
  margin-bottom: 0.15rem;
}

.plc-cta-pill {
  display: inline-block;
  margin-top: 0.75rem;
  background: var(--lm-gold);
  color: var(--lm-black);
  border-radius: 999px;
  padding: 0.4rem 1.1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* Text zone */
.plc-text-zone {
  padding: 1rem 1.25rem 1.25rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.plc-category {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lm-gold);
  margin-bottom: 0.3rem;
}

.plc-name {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--lm-slate);
  margin-bottom: 0.2rem;
}

.plc-cap {
  font-size: 0.78rem;
  color: var(--lm-muted);
  margin-bottom: 0.4rem;
  letter-spacing: 0.06em;
}

.plc-slogan {
  font-size: 0.85rem;
  color: #777;
  font-style: italic;
  margin: 0;
  line-height: 1.45;
}

/* Craft strip below product grid */
.craft-strip { background: #fff; }

.craft-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) { .craft-strip-grid { grid-template-columns: 1fr; gap: 1.5rem; } }

.craft-strip-item {
  text-align: center;
  padding: 2rem 1rem;
  border-top: 2px solid var(--lm-gold);
}

.craft-strip-icon { margin-bottom: 1rem; height: 44px; display: flex; align-items: center; justify-content: center; }

.craft-strip-title {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--lm-slate);
  margin-bottom: 0.5rem;
}

.craft-strip-body { font-size: 0.9rem; color: #777; line-height: 1.6; margin: 0; }

/* --------------------------------------------------------------------------
   About page: cinematic opening + story chapters
   -------------------------------------------------------------------------- */
.about-cinematic-open {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--lm-black);
  margin-top: calc(-1 * var(--lm-nav-h));
  padding-top: var(--lm-nav-h);
}

.about-video-wrap {
  position: absolute;
  inset: 0;
}

.about-opening-video {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center center;
  opacity: 0.55 !important;
  filter: saturate(0.5) brightness(0.5);
}

@media (max-width: 768px) {
  .about-cinematic-open {
    min-height: 60vh;
  }
  .about-opening-video {
    object-position: center 30%;
  }
}

.about-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 13, 13, 0.25) 0%,
    rgba(13, 13, 13, 0.35) 60%,
    rgba(13, 13, 13, 0.55) 100%
  );
}

.about-opening-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 4rem 1.5rem 5rem;
  max-width: 680px;
}

.about-opening-title {
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 400;
  color: var(--lm-cream);
  line-height: 1.18;
  letter-spacing: 0.02em;
  margin: 0.75rem 0 2rem;
}

/* Scroll hint indicator */
.about-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--lm-gold), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

.scroll-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.4);
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.1); }
}

/* Story chapters — zig-zag layout */
.story-chapter { padding: 5rem 0; }

.story-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-row--reverse { direction: rtl; }
.story-row--reverse > * { direction: ltr; }

@media (max-width: 768px) {
  .story-row, .story-row--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 2.5rem;
  }
  .story-row--reverse { direction: ltr; }
}

/* Story image */
.story-image-col { position: relative; }

.story-image-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.story-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.6s ease;
  display: block;
}

.story-image-frame:hover .story-image { transform: scale(1.04); }

/* Gold accent bar on image */
.story-image-accent {
  position: absolute;
  left: -12px;
  top: 24px;
  width: 3px;
  height: 60px;
  background: var(--lm-gold);
  border-radius: 2px;
}

.story-image-accent--right {
  left: auto;
  right: -12px;
}

/* Large chapter number watermark */
.story-chapter-label {
  position: absolute;
  bottom: -24px;
  left: -16px;
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-size: 8rem;
  font-weight: 300;
  color: rgba(201, 145, 61, 0.08);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.story-chapter-label--right {
  left: auto;
  right: -16px;
}

/* Story text */
.story-text-col {}

.story-chapter-title {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  color: var(--lm-slate);
  margin-bottom: 1.25rem;
  margin-top: 0.5rem;
}

.story-body {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* About closing section */
.about-closing-section { padding: 5rem 0 4rem; }

.about-closing-quote {
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--lm-cream);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

/* --------------------------------------------------------------------------
   Where to Buy: map + list split layout
   -------------------------------------------------------------------------- */
.wtb-section { background: #faf7f2; }

.wtb-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  min-height: 620px;
}

@media (max-width: 992px) {
  .wtb-layout { grid-template-columns: 1fr; }
}

/* Map column */
.wtb-map-col {
  position: relative;
  background: var(--lm-black);
}

.wtb-map-wrap {
  position: relative;
  height: 100%;
  min-height: 520px;
}

.wtb-map-iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: none;
  display: block;
  filter: saturate(0.85) brightness(0.92);
}

.wtb-map-corner-label {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(13, 13, 13, 0.88);
  backdrop-filter: blur(8px);
  color: var(--lm-cream);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(201, 145, 61, 0.2);
  pointer-events: none;
}

.wtb-open-full-map {
  display: block;
  text-align: center;
  padding: 0.75rem;
  background: rgba(13, 13, 13, 0.9);
  color: var(--lm-gold);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  border-top: 1px solid rgba(201, 145, 61, 0.15);
}

.wtb-open-full-map:hover { background: rgba(201, 145, 61, 0.15); color: var(--lm-cream); }

/* List column */
.wtb-list-col {
  background: #fff;
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(0, 0, 0, 0.07);
  max-height: 720px;
  overflow: hidden;
}

.wtb-list-header {
  padding: 1.5rem 1.5rem 0.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
}

.wtb-list-title {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  color: var(--lm-slate);
  margin-bottom: 0.75rem;
}

.wtb-filter-form {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.wtb-filter-form select {
  flex: 1;
  min-width: 130px;
  font-size: 0.82rem;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 6px;
  padding: 0.35rem 0.6rem;
}

.wtb-filter-btn {
  background: var(--lm-gold);
  color: var(--lm-black);
  border: none;
  border-radius: 6px;
  padding: 0.35rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: none;
  transition: background 0.2s;
}

.wtb-filter-btn:hover { background: #b07c2c; }

.wtb-filter-clear {
  font-size: 0.78rem;
  color: var(--lm-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.wtb-filter-clear:hover { color: var(--lm-gold); }

/* Live search bar */
.wtb-search-wrap {
  padding: 0.75rem 1.5rem;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.wtb-search-input {
  width: 100%;
  font-size: 0.85rem;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  background: #faf8f4;
}

.wtb-search-input:focus {
  border-color: var(--lm-gold);
  box-shadow: 0 0 0 3px rgba(201, 145, 61, 0.1);
}

/* Retailer list */
.wtb-retailer-list {
  flex: 1;
  overflow-y: auto;
  padding: 0.5rem 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(201, 145, 61, 0.3) transparent;
}

.wtb-retailer-item {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: background 0.18s;
}

.wtb-retailer-item:hover { background: rgba(201, 145, 61, 0.04); }

.wtb-retailer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
}

.wtb-retailer-name {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--lm-slate);
  margin-bottom: 0.2rem;
}

.wtb-retailer-address {
  font-size: 0.8rem;
  color: #888;
  line-height: 1.4;
}

.wtb-map-pin {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  color: var(--lm-gold);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  border: 1px solid rgba(201, 145, 61, 0.3);
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
  transition: all 0.2s;
  margin-top: 2px;
}

.wtb-map-pin:hover {
  background: var(--lm-gold);
  color: var(--lm-black);
  border-color: var(--lm-gold);
}

.wtb-retailer-notice {
  font-size: 0.75rem;
  color: #aaa;
  font-style: italic;
  margin-top: 0.4rem;
}

.wtb-no-results {
  padding: 2rem 1.5rem;
  text-align: center;
  color: #aaa;
  font-size: 0.9rem;
}

@media (max-width: 992px) {
  .wtb-list-col { max-height: 480px; border-left: none; border-top: 1px solid rgba(0,0,0,0.07); }
  .wtb-map-wrap { min-height: 380px; }
  .wtb-map-iframe { min-height: 380px; }
}

/* --------------------------------------------------------------------------
   Mobile cinema carousel (replaces grid on small screens)
   Hidden on desktop, shown on mobile via JS Bootstrap carousel
   -------------------------------------------------------------------------- */
.product-cinema-carousel {
  display: none;
}

@media (max-width: 576px) {
  .product-cinema-carousel { display: block; }

  .product-cinema-carousel .carousel-item {
    padding: 0 0.25rem;
  }

  .product-cinema-carousel .carousel-control-prev,
  .product-cinema-carousel .carousel-control-next {
    width: 36px;
    height: 36px;
    background: rgba(201, 145, 61, 0.85);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
  }

  .product-cinema-carousel .carousel-control-prev { left: -4px; }
  .product-cinema-carousel .carousel-control-next { right: -4px; }

  .product-cinema-carousel .carousel-control-prev-icon,
  .product-cinema-carousel .carousel-control-next-icon {
    width: 16px;
    height: 16px;
  }

  .product-cinema-carousel .carousel-indicators {
    bottom: -28px;
  }

  .product-cinema-carousel .carousel-indicators [data-bs-target] {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(201, 145, 61, 0.4);
    border: none;
    margin: 0 3px;
    transition: background 0.2s;
  }

  .product-cinema-carousel .carousel-indicators .active {
    background: var(--lm-gold);
  }

  .product-cinema-carousel .product-cinema-card {
    margin: 0 auto;
    max-width: 280px;
  }
}