/*
Theme Name: Belle Nove
Theme URI: https://www.bellenove.com
Description: Belle Nove — botanical beauty WooCommerce theme. Clean ingredients, editorial polish, affiliate-ready.
Author: Belle Nove
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GPL-2.0-or-later
Text Domain: beauty-empire
*/

:root {
  --be-bg: #fdf6f3;          /* warm blush ivory */
  --be-surface: #ffffff;
  --be-ink: #2a1820;         /* warm charcoal with plum undertone */
  --be-muted: #8a6c75;
  --be-line: #f1dee2;        /* soft pink line */
  /* Variable names kept (--be-gold / --be-leaf-soft) so existing rules keep working;
     values are now rose-family for the girly palette. */
  --be-gold: #c47189;        /* dusty rose — primary accent */
  --be-gold-dark: #8b3e57;   /* mulberry — hover */
  --be-leaf-soft: #f2c8d0;   /* soft blush highlight */
  --be-cream: #fce5e3;       /* peach cream */
  --be-accent: #d4889d;      /* romantic rose — sale + alerts */
  --be-shadow: 0 8px 32px rgba(42, 24, 32, 0.08);
  --be-shadow-lg: 0 24px 64px rgba(42, 24, 32, 0.12);
  --be-radius: 4px;
  --be-radius-lg: 12px;
  --be-serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --be-sans: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --be-container: 1320px;
  --be-gutter: clamp(1rem, 4vw, 2.5rem);
  --be-ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; }

/* ============== SCROLL REVEAL ==============
   Targets observed by JS (.be-section, .be-hero, .be-card, .be-cat,
   .be-testimonial, .be-ig, .be-faq__item, .be-blog-card, .be-related-posts).
   Reduced-motion users skip animation entirely. */
.be-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--be-ease), transform .9s var(--be-ease);
  will-change: opacity, transform;
}
.be-reveal.is-visible {
  opacity: 1;
  transform: none;
}
/* stagger children inside a revealed grid */
.be-reveal.is-visible > .be-reveal-child { animation: beRevealUp .8s var(--be-ease) both; }
.be-reveal.is-visible > .be-reveal-child:nth-child(2) { animation-delay: .08s; }
.be-reveal.is-visible > .be-reveal-child:nth-child(3) { animation-delay: .16s; }
.be-reveal.is-visible > .be-reveal-child:nth-child(4) { animation-delay: .24s; }
.be-reveal.is-visible > .be-reveal-child:nth-child(5) { animation-delay: .32s; }
.be-reveal.is-visible > .be-reveal-child:nth-child(6) { animation-delay: .40s; }
@keyframes beRevealUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .be-reveal, .be-reveal.is-visible > .be-reveal-child {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--be-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--be-ink);
  background: var(--be-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--be-gold-dark); }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--be-serif);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 .5em;
}

.be-container {
  max-width: var(--be-container);
  margin: 0 auto;
  padding-inline: var(--be-gutter);
}

.be-eyebrow {
  display: inline-block;
  font-family: var(--be-sans);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--be-gold-dark);
  margin-bottom: 1rem;
}

.be-section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  text-align: center;
  margin-bottom: .5rem;
}

.be-section-sub {
  text-align: center;
  color: var(--be-muted);
  max-width: 560px;
  margin: 0 auto 3rem;
}

.be-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .95rem 2.25rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  border: 1px solid var(--be-ink);
  border-radius: var(--be-radius);
  background: var(--be-ink);
  color: var(--be-bg);
  transition: all .25s ease;
}
.be-btn:hover { background: var(--be-gold-dark); border-color: var(--be-gold-dark); color: #fff; }
.be-btn--ghost { background: transparent; color: var(--be-ink); }
.be-btn--ghost:hover { background: var(--be-ink); color: var(--be-bg); }
.be-btn--gold { background: var(--be-gold); border-color: var(--be-gold); color: #fff; }
.be-btn--gold:hover { background: var(--be-gold-dark); border-color: var(--be-gold-dark); }

/* ===== HEADER ===== */
.be-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, .92);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--be-line);
}
.be-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1.1rem;
}
.be-logo {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--be-serif);
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: .005em;
  text-transform: none;
  font-style: italic;
  line-height: 1;
}
.be-logo span { color: inherit; font-weight: inherit; font-style: inherit; letter-spacing: inherit; text-transform: none; font-size: inherit; margin-left: .22em; }
.be-logo__mark { color: var(--be-gold); flex-shrink: 0; height: 1.55em; width: auto; transition: transform .5s var(--be-ease); }
.be-logo:hover .be-logo__mark { transform: rotate(-8deg) scale(1.05); }
.be-footer .be-logo { color: #fff; }
.be-footer .be-logo__mark { color: var(--be-leaf-soft); }
.be-footer .be-logo span { color: inherit; }
.be-nav {
  display: none;
  gap: 2.25rem;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.be-nav a { position: relative; padding-block: .25rem; }
.be-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px;
  background: var(--be-gold); transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.be-nav a:hover::after { transform: scaleX(1); }
.be-nav a.is-active { color: var(--be-gold); }
.be-nav a.is-active::after { transform: scaleX(1); background: var(--be-gold); }
.be-header__actions { display: flex; gap: .5rem; align-items: center; margin-left: auto; }
@media (min-width: 900px) { .be-header__actions { gap: 1rem; margin-left: 0; } }
.be-hide-sm { display: none; }
@media (min-width: 900px) { .be-hide-sm { display: inline-flex; } }

/* hamburger button — only shown below 900px */
.be-nav-toggle { display: inline-flex; }
@media (min-width: 900px) { .be-nav-toggle { display: none; } }
.be-icon-btn {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: 0; color: var(--be-ink);
  border-radius: 50%; transition: background .2s ease;
}
.be-icon-btn:hover { background: var(--be-line); }
.be-cart-count {
  position: absolute; top: -2px; right: -2px;
  min-width: 18px; height: 18px; padding: 0 5px;
  background: var(--be-gold); color: #fff;
  font-size: .65rem; font-weight: 700;
  border-radius: 9px;
  display: inline-flex; align-items: center; justify-content: center;
}
.be-icon-wrap { position: relative; display: inline-block; }

@media (min-width: 900px) {
  .be-nav { display: flex; }
}

/* ============== MOBILE NAV DRAWER ============== */
.be-mobile-nav {
  position: fixed; inset: 0;
  z-index: 100;
  visibility: hidden;
  pointer-events: none;
}
.be-mobile-nav.is-open { visibility: visible; pointer-events: auto; }
.be-mobile-nav__overlay {
  position: absolute; inset: 0;
  background: rgba(28, 34, 24, 0.55);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity .35s var(--be-ease);
}
.be-mobile-nav.is-open .be-mobile-nav__overlay { opacity: 1; }

.be-mobile-nav__panel {
  position: absolute; top: 0; left: 0; bottom: 0;
  width: min(86vw, 360px);
  background: var(--be-bg);
  display: flex; flex-direction: column;
  padding: 1.5rem 1.5rem 2rem;
  transform: translateX(-100%);
  transition: transform .4s var(--be-ease);
  box-shadow: 8px 0 32px rgba(28, 34, 24, .12);
}
.be-mobile-nav.is-open .be-mobile-nav__panel { transform: translateX(0); }

.be-mobile-nav__head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 1.5rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--be-line);
}
.be-mobile-nav__links {
  display: flex; flex-direction: column;
  gap: .25rem;
}
.be-mobile-nav__links a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem .25rem;
  font-family: var(--be-serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--be-ink);
  border-bottom: 1px solid rgba(28, 34, 24, .06);
  transition: color .2s ease, padding .25s var(--be-ease);
}
.be-mobile-nav__links a:hover { color: var(--be-gold); padding-left: .5rem; }
.be-mobile-nav__links a.is-active { color: var(--be-gold); }
.be-mobile-nav__links a svg { opacity: .4; transition: opacity .2s ease, transform .25s var(--be-ease); }
.be-mobile-nav__links a:hover svg { opacity: 1; transform: translateX(3px); }

.be-mobile-nav__account {
  display: inline-flex; align-items: center; gap: .55rem;
  width: auto; height: auto;
  padding: .75rem 1.25rem;
  margin-top: auto;
  font-size: .75rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase;
  background: var(--be-ink); color: #fff;
  border-radius: var(--be-radius);
}
.be-mobile-nav__account:hover { background: var(--be-gold); color: #fff; }

/* lock body scroll when drawer is open */
body.be-nav-open { overflow: hidden; }

/* ===== HERO ===== */
.be-hero {
  position: relative;
  min-height: clamp(560px, 82vh, 780px);
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  /* layered: deep mulberry overlay (left, where text sits) fading to transparent over a soft pink floral image */
  background:
    linear-gradient(100deg,
      rgba(42, 16, 27, 0.78) 0%,
      rgba(80, 30, 50, 0.62) 32%,
      rgba(139, 62, 87, 0.30) 58%,
      rgba(196, 113, 137, 0.08) 80%,
      transparent 100%),
    url('https://images.unsplash.com/photo-1522338242992-e1a54906a8da?auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
  color: #fff;
}
/* subtle warm glow at top-left where headline lands */
.be-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse at 22% 30%, rgba(255, 222, 230, 0.12) 0%, transparent 55%);
  pointer-events: none;
}
.be-hero__inner {
  max-width: 640px;
  padding: 4rem var(--be-gutter);
  text-align: left;
  width: 100%;
  position: relative;
}
.be-hero .be-eyebrow {
  color: var(--be-cream);
  letter-spacing: .3em;
  opacity: .85;
}
.be-hero__title {
  font-size: clamp(2.75rem, 6.5vw, 5rem);
  color: #fff;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 24px rgba(0,0,0,.25);
  line-height: 1.05;
}
.be-hero__title em {
  font-style: italic;
  color: var(--be-leaf-soft);
  display: inline-block;
}
.be-hero__lede {
  font-size: clamp(1.05rem, 1.45vw, 1.2rem);
  max-width: 460px;
  margin-bottom: 2.25rem;
  color: rgba(255,255,255,.92);
  line-height: 1.65;
}
.be-hero__cta { display: flex; flex-wrap: wrap; gap: .85rem; }
.be-hero .be-btn { background: var(--be-cream); color: var(--be-ink); border-color: var(--be-cream); }
.be-hero .be-btn:hover { background: #fff; border-color: #fff; color: var(--be-gold-dark); }
.be-hero .be-btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.be-hero .be-btn--ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; color: #fff; }

/* ===== SECTIONS ===== */
.be-section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.be-section--alt { background: var(--be-surface); }
.be-section--dark { background: var(--be-ink); color: var(--be-bg); }
.be-section--dark .be-section-sub { color: rgba(250,247,242,.7); }

/* ===== PRODUCT GRID ===== */
.be-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.be-card {
  background: var(--be-surface);
  border-radius: var(--be-radius-lg);
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
  position: relative;
}
.be-card:hover { transform: translateY(-4px); box-shadow: var(--be-shadow-lg); }
.be-card__media {
  aspect-ratio: 4 / 5;
  background: var(--be-line);
  overflow: hidden;
  position: relative;
}
.be-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.be-card:hover .be-card__media img { transform: scale(1.04); }
.be-card__badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--be-ink); color: #fff;
  padding: .35rem .75rem; font-size: .65rem;
  letter-spacing: .15em; text-transform: uppercase;
  border-radius: 999px;
}
.be-card__badge--sale { background: var(--be-accent); }
.be-card__body { padding: 1.25rem 1.25rem 1.5rem; text-align: center; }
.be-card__cat {
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--be-muted); margin-bottom: .35rem;
}
.be-card__title {
  font-family: var(--be-serif); font-size: 1.15rem; font-weight: 500;
  margin: 0 0 .5rem;
}
.be-card__price {
  font-size: 1rem; color: var(--be-ink); font-weight: 500;
}
.be-card__price del { color: var(--be-muted); font-weight: 400; margin-right: .5rem; }
.be-card__price ins { text-decoration: none; color: var(--be-accent); }

/* ===== TESTIMONIALS ===== */
.be-testimonials {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.be-testimonial {
  background: var(--be-bg);
  padding: 2.25rem 1.75rem;
  border-radius: var(--be-radius-lg);
  border: 1px solid var(--be-line);
  display: flex; flex-direction: column; gap: 1rem;
}
.be-section--dark .be-testimonial {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.08);
}
.be-testimonial__stars { color: var(--be-gold); letter-spacing: 2px; font-size: 1rem; }
.be-testimonial__quote {
  font-family: var(--be-serif); font-size: 1.1rem; line-height: 1.55;
  font-style: italic; margin: 0; flex: 1;
}
.be-testimonial__author { display: flex; align-items: center; gap: .75rem; }
.be-testimonial__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--be-gold); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: .9rem;
}
.be-testimonial__name { font-weight: 600; font-size: .9rem; line-height: 1.2; }
.be-testimonial__meta { font-size: .75rem; color: var(--be-muted); }
.be-section--dark .be-testimonial__meta { color: rgba(250,247,242,.6); }

/* ===== AFFILIATE CTA ===== */
.be-affiliate-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #1a1410 0%, #2a1f17 50%, #3a2a1f 100%);
  color: #fff;
  border-radius: var(--be-radius-lg);
  padding: clamp(2.5rem, 6vw, 4.5rem);
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  align-items: center;
}
.be-affiliate-cta::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(74,111,78,.25) 0%, transparent 50%),
    radial-gradient(circle at 15% 80%, rgba(176,117,105,.15) 0%, transparent 50%);
  pointer-events: none;
}
.be-affiliate-cta__content { position: relative; z-index: 1; }
.be-affiliate-cta .be-eyebrow { color: var(--be-gold); }
.be-affiliate-cta h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 1rem;
}
.be-affiliate-cta p {
  color: rgba(255,255,255,.8);
  max-width: 540px;
  margin-bottom: 2rem;
}
.be-affiliate-stats {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.be-affiliate-stat {
  text-align: center;
  padding: 1.25rem .75rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--be-radius);
}
.be-affiliate-stat__num {
  font-family: var(--be-serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--be-gold);
  display: block;
  line-height: 1;
}
.be-affiliate-stat__label {
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-top: .5rem;
  display: block;
}

@media (min-width: 860px) {
  .be-affiliate-cta { grid-template-columns: 1.4fr 1fr; }
}

/* ===== FOOTER ===== */
.be-footer {
  background: #1a0e14;             /* deep wine/aubergine to match the rose palette */
  color: rgba(253, 246, 243, .78);
  padding-block: 4rem 1.5rem;
}
.be-footer__grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  margin-bottom: 3rem;
}
@media (min-width: 720px) { .be-footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }
.be-footer h4 {
  font-family: var(--be-sans);
  font-size: .75rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--be-gold);
  margin-bottom: 1.25rem;
}
.be-footer ul { list-style: none; margin: 0; padding: 0; }
.be-footer li { margin-bottom: .65rem; font-size: .9rem; }
.be-footer a:hover { color: var(--be-gold); }
.be-footer .be-logo { color: #fff; display: block; margin-bottom: 1rem; }
.be-footer__about { font-size: .9rem; line-height: 1.7; max-width: 320px; }

.be-affiliate-portal {
  background: linear-gradient(135deg, rgba(74,111,78,.08), rgba(74,111,78,.02));
  border: 1px solid rgba(74,111,78,.2);
  border-radius: var(--be-radius-lg);
  padding: 1.5rem;
}
.be-affiliate-portal h4 { color: var(--be-gold); margin-bottom: .5rem; }
.be-affiliate-portal p { font-size: .85rem; margin: 0 0 1rem; color: rgba(250,247,242,.7); }
.be-affiliate-portal__form { display: flex; gap: .5rem; }
.be-affiliate-portal input {
  flex: 1; min-width: 0;
  padding: .65rem .9rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--be-radius);
  color: #fff;
  font-size: .85rem;
}
.be-affiliate-portal input::placeholder { color: rgba(255,255,255,.4); }
.be-affiliate-portal input:focus { outline: 2px solid var(--be-gold); outline-offset: -1px; }
.be-affiliate-portal__form .be-btn { padding: .65rem 1.1rem; font-size: .7rem; }

.be-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  font-size: .8rem;
  color: rgba(250,247,242,.5);
}
@media (min-width: 720px) { .be-footer__bottom { flex-direction: row; } }
.be-socials { display: flex; gap: .75rem; }
.be-socials a {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  transition: all .2s ease;
}
.be-socials a:hover { background: var(--be-gold); border-color: var(--be-gold); color: #fff; }

/* ===== FLASH DEALS ===== */
.be-flash {
  background: linear-gradient(120deg, #2a1015 0%, #4a1d2a 50%, #2a1015 100%);
  color: #fff;
  border-radius: var(--be-radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem);
  position: relative;
  overflow: hidden;
}
.be-flash::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 90% 10%, rgba(176,117,105,.3) 0%, transparent 50%);
  pointer-events: none;
}
.be-flash__head {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 1rem;
  align-items: center; text-align: center;
  margin-bottom: 2.5rem;
}
@media (min-width: 760px) {
  .be-flash__head { flex-direction: row; justify-content: space-between; text-align: left; align-items: flex-end; }
}
.be-flash__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: #fff; margin: 0;
}
.be-flash__title em { font-style: italic; color: #d9b2a8; }
.be-flash__sub { color: rgba(255,255,255,.7); margin: .5rem 0 0; font-size: .95rem; }
.be-countdown {
  display: flex; gap: .5rem;
}
.be-countdown__unit {
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--be-radius);
  padding: .65rem .85rem;
  min-width: 60px;
  text-align: center;
}
.be-countdown__num {
  font-family: var(--be-serif);
  font-size: 1.5rem; font-weight: 600; line-height: 1;
  color: #fff; display: block;
}
.be-countdown__label {
  font-size: .6rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.6); margin-top: .35rem; display: block;
}
.be-flash .be-grid { position: relative; z-index: 1; }
.be-flash .be-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); }
.be-flash .be-card__body { color: #fff; }
.be-flash .be-card__cat { color: rgba(255,255,255,.6); }
.be-flash .be-card__price ins { color: #d9b2a8; }
.be-flash .be-card__price del { color: rgba(255,255,255,.45); }

/* ===== CATEGORIES ===== */
.be-cats {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.be-cat {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--be-radius-lg);
  overflow: hidden;
  display: flex; align-items: flex-end;
  isolation: isolate;
}
.be-cat img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  z-index: -2;
  transition: transform .6s ease;
}
.be-cat::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.75) 100%);
}
.be-cat:hover img { transform: scale(1.06); }
.be-cat__label {
  width: 100%;
  padding: 1.5rem 1.25rem;
  color: #fff;
  display: flex; align-items: center; justify-content: space-between;
}
.be-cat__name {
  font-family: var(--be-serif); font-size: 1.35rem; font-weight: 500;
  margin: 0;
}
.be-cat__count {
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
  opacity: .8;
}
.be-cat__arrow {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--be-gold); border-radius: 50%;
  transition: transform .3s ease;
}
.be-cat:hover .be-cat__arrow { transform: translateX(4px); }

/* ===== INSTAGRAM ===== */
.be-ig-handle {
  text-align: center;
  font-family: var(--be-serif);
  font-size: 1.05rem;
  color: var(--be-gold-dark);
  margin-top: -2rem; margin-bottom: 2.5rem;
}
.be-ig-grid {
  display: grid;
  gap: .5rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px) { .be-ig-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px) { .be-ig-grid { grid-template-columns: repeat(6, 1fr); } }
.be-ig {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--be-radius);
  display: block;
}
.be-ig img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.be-ig::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(74,111,78,.85), rgba(176,117,105,.85));
  opacity: 0; transition: opacity .3s ease;
  display: flex; align-items: center; justify-content: center;
}
.be-ig:hover img { transform: scale(1.08); }
.be-ig:hover::after { opacity: 1; }
.be-ig__icon {
  position: absolute; inset: 0; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  color: #fff; opacity: 0; transition: opacity .3s ease;
  pointer-events: none;
}
.be-ig:hover .be-ig__icon { opacity: 1; }

/* ===== NEWSLETTER ===== */
.be-newsletter {
  background: var(--be-surface);
  border-radius: var(--be-radius-lg);
  padding: clamp(2.5rem, 6vw, 4.5rem);
  text-align: center;
  border: 1px solid var(--be-line);
  background-image:
    radial-gradient(circle at 0% 0%, rgba(74,111,78,.08) 0%, transparent 40%),
    radial-gradient(circle at 100% 100%, rgba(176,117,105,.06) 0%, transparent 40%);
}
.be-newsletter h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: .75rem;
}
.be-newsletter p {
  color: var(--be-muted);
  max-width: 520px;
  margin: 0 auto 2rem;
}
.be-newsletter__form {
  display: flex;
  gap: .5rem;
  max-width: 480px;
  margin: 0 auto;
  flex-direction: column;
}
@media (min-width: 560px) { .be-newsletter__form { flex-direction: row; } }
.be-newsletter input {
  flex: 1;
  padding: 1rem 1.25rem;
  background: #fff;
  border: 1px solid var(--be-line);
  border-radius: var(--be-radius);
  font-size: .95rem;
  font-family: inherit;
}
.be-newsletter input:focus { outline: 2px solid var(--be-gold); outline-offset: 1px; border-color: var(--be-gold); }
.be-newsletter__perks {
  display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center;
  margin-top: 1.75rem;
  font-size: .8rem; color: var(--be-muted);
  letter-spacing: .05em;
}
.be-newsletter__perks span::before { content: "âœ¦ "; color: var(--be-gold); }

/* ===== SINGLE PRODUCT ===== */
.be-product {
  padding-block: clamp(2rem, 5vw, 4rem);
  background: var(--be-bg);
}
.be-breadcrumb {
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--be-muted);
  margin-bottom: 2rem;
}
.be-breadcrumb a { color: var(--be-muted); }
.be-breadcrumb a:hover { color: var(--be-ink); }
.be-breadcrumb__sep { margin: 0 .5rem; opacity: .5; }

.be-product__layout {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .be-product__layout { grid-template-columns: 1.1fr 1fr; gap: 4rem; }
}

/* Gallery */
.be-gallery { position: sticky; top: 100px; align-self: start; }
@media (max-width: 899px) { .be-gallery { position: static; } }

.be-gallery__main {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--be-surface);
  border-radius: var(--be-radius-lg);
  overflow: hidden;
  cursor: zoom-in;
}
.be-gallery__main img {
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity .3s ease;
}
.be-gallery__zoom-lens {
  position: absolute; inset: 0;
  background-repeat: no-repeat;
  background-size: 200%;
  opacity: 0;
  transition: opacity .2s ease;
  pointer-events: none;
}
.be-gallery__main:hover .be-gallery__zoom-lens { opacity: 1; }
@media (hover: none) {
  .be-gallery__zoom-lens { display: none; }
  .be-gallery__main { cursor: default; }
}

.be-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .65rem;
  margin-top: .75rem;
}
.be-gallery__thumb {
  aspect-ratio: 1 / 1;
  background: var(--be-surface);
  border: 2px solid transparent;
  border-radius: var(--be-radius);
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  transition: border-color .2s ease;
}
.be-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.be-gallery__thumb.is-active { border-color: var(--be-gold); }
.be-gallery__thumb:hover { border-color: var(--be-gold); }

/* Summary */
.be-summary__cat {
  font-size: .75rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--be-gold-dark); margin-bottom: .75rem;
}
.be-summary__title {
  font-family: var(--be-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 1rem;
}
.be-summary__rating {
  display: flex; align-items: center; gap: .65rem;
  margin-bottom: 1.5rem;
}
.be-summary__stars { color: var(--be-gold); letter-spacing: 2px; font-size: 1rem; }
.be-summary__rating-count {
  font-size: .85rem; color: var(--be-muted);
}
.be-summary__rating-count a { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }

.be-summary__price {
  font-family: var(--be-serif);
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  font-weight: 500;
  margin-bottom: 1.75rem;
}
.be-summary__price del { color: var(--be-muted); margin-right: .75rem; font-weight: 400; }
.be-summary__price ins { text-decoration: none; color: var(--be-accent); }
.be-summary__price .be-savings {
  display: inline-block;
  margin-left: .75rem;
  padding: .25rem .75rem;
  background: rgba(176,117,105,.1);
  color: var(--be-accent);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 999px;
  vertical-align: middle;
}

.be-summary__desc {
  color: var(--be-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
  font-size: .95rem;
}

.be-summary__option { margin-bottom: 1.5rem; }
.be-summary__option-label {
  display: block;
  font-size: .75rem; letter-spacing: .15em; text-transform: uppercase;
  font-weight: 600; margin-bottom: .65rem;
}

/* Add to cart */
.be-cart-form {
  display: flex;
  gap: .75rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.be-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--be-line);
  border-radius: var(--be-radius);
  background: #fff;
  overflow: hidden;
}
.be-qty button {
  width: 44px; height: 52px;
  background: transparent;
  border: 0;
  font-size: 1.25rem;
  color: var(--be-ink);
  cursor: pointer;
  transition: background .2s ease;
}
.be-qty button:hover { background: var(--be-line); }
.be-qty input {
  width: 48px; height: 52px;
  text-align: center;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--be-ink);
  -moz-appearance: textfield;
}
.be-qty input::-webkit-outer-spin-button,
.be-qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.be-cart-form .be-btn {
  flex: 1; min-width: 200px;
  height: 52px;
  padding: 0 2rem;
  letter-spacing: .15em;
}
.be-wishlist-btn {
  width: 52px; height: 52px;
  background: #fff;
  border: 1px solid var(--be-line);
  border-radius: var(--be-radius);
  color: var(--be-ink);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all .2s ease;
}
.be-wishlist-btn:hover { color: var(--be-accent); border-color: var(--be-accent); }

.be-stock {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .85rem; color: var(--be-muted);
  margin-bottom: 2rem;
}
.be-stock__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #2ecc71;
}
.be-stock--out .be-stock__dot { background: #e74c3c; }

.be-perks {
  display: grid;
  grid-template-columns: 1fr;
  gap: .75rem;
  padding: 1.25rem;
  background: var(--be-surface);
  border-radius: var(--be-radius-lg);
  border: 1px solid var(--be-line);
}
@media (min-width: 520px) { .be-perks { grid-template-columns: repeat(3, 1fr); } }
.be-perk {
  display: flex; align-items: center; gap: .65rem;
  font-size: .8rem; color: var(--be-ink);
}
.be-perk svg { color: var(--be-gold-dark); flex-shrink: 0; }

/* Tabs */
.be-tabs {
  margin-top: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid var(--be-line);
}
.be-tabs__nav {
  display: flex;
  gap: 0;
  list-style: none;
  margin: 0; padding: 0;
  border-bottom: 1px solid var(--be-line);
  overflow-x: auto;
  scrollbar-width: none;
}
.be-tabs__nav::-webkit-scrollbar { display: none; }
.be-tabs__nav button {
  background: transparent;
  border: 0;
  padding: 1.25rem 1.5rem;
  font-family: inherit;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--be-muted);
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  transition: color .2s ease;
}
.be-tabs__nav button:hover { color: var(--be-ink); }
.be-tabs__nav button.is-active { color: var(--be-ink); }
.be-tabs__nav button.is-active::after {
  content: ""; position: absolute; left: 1.5rem; right: 1.5rem; bottom: -1px; height: 2px;
  background: var(--be-gold);
}
.be-tabs__panel {
  display: none;
  padding-block: 2.5rem;
  max-width: 760px;
}
.be-tabs__panel.is-active { display: block; }
.be-tabs__panel h3 {
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: .75rem;
}
.be-tabs__panel p, .be-tabs__panel li {
  line-height: 1.75;
  color: var(--be-ink);
}
.be-tabs__panel ul { padding-left: 1.25rem; }
.be-tabs__panel li { margin-bottom: .5rem; }

.be-ingredient-list {
  list-style: none; padding: 0; margin: 1rem 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .be-ingredient-list { grid-template-columns: 1fr 1fr; } }
.be-ingredient {
  padding: 1rem 1.25rem;
  background: var(--be-surface);
  border-radius: var(--be-radius);
  border-left: 3px solid var(--be-gold);
}
.be-ingredient strong { display: block; font-size: .95rem; margin-bottom: .25rem; }
.be-ingredient span { font-size: .85rem; color: var(--be-muted); }

.be-ship-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
@media (min-width: 640px) { .be-ship-grid { grid-template-columns: 1fr 1fr; } }
.be-ship-card {
  padding: 1.25rem;
  background: var(--be-surface);
  border: 1px solid var(--be-line);
  border-radius: var(--be-radius-lg);
}
.be-ship-card h4 {
  font-family: var(--be-sans);
  font-size: .75rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--be-gold-dark);
  margin: 0 0 .5rem;
}
.be-ship-card p { margin: 0; font-size: .9rem; color: var(--be-muted); }

/* FAQ accordion */
.be-faq { margin-top: 1rem; }
.be-faq__item { border-bottom: 1px solid var(--be-line); }
.be-faq__item:first-child { border-top: 1px solid var(--be-line); }
.be-faq__q {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 1.25rem 0;
  font-family: var(--be-serif);
  font-size: 1.05rem;
  font-weight: 500;
  text-align: left;
  color: var(--be-ink);
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
}
.be-faq__icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  position: relative;
}
.be-faq__icon::before,
.be-faq__icon::after {
  content: ""; position: absolute;
  background: var(--be-gold-dark);
  border-radius: 1px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.be-faq__icon::before { width: 14px; height: 1.5px; }
.be-faq__icon::after { width: 1.5px; height: 14px; transition: transform .3s ease; }
.be-faq__item.is-open .be-faq__icon::after { transform: translate(-50%, -50%) scaleY(0); }
.be-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  color: var(--be-muted);
  line-height: 1.7;
  font-size: .95rem;
}
.be-faq__a-inner { padding: 0 0 1.5rem; }

/* Reviews */
.be-reviews-summary {
  display: flex; flex-direction: column; gap: 1.5rem;
  padding: 1.5rem;
  background: var(--be-surface);
  border-radius: var(--be-radius-lg);
  margin-bottom: 2rem;
}
@media (min-width: 640px) { .be-reviews-summary { flex-direction: row; align-items: center; } }
.be-reviews-summary__score {
  text-align: center; padding-right: 1.5rem;
  border-right: 1px solid var(--be-line);
}
@media (max-width: 639px) {
  .be-reviews-summary__score { border-right: 0; border-bottom: 1px solid var(--be-line); padding-right: 0; padding-bottom: 1rem; }
}
.be-reviews-summary__num {
  font-family: var(--be-serif);
  font-size: 2.75rem; line-height: 1;
  color: var(--be-ink);
}
.be-reviews-summary__stars { color: var(--be-gold); font-size: 1.15rem; letter-spacing: 3px; margin: .5rem 0 .25rem; }
.be-reviews-summary__count { font-size: .8rem; color: var(--be-muted); }
.be-reviews-summary__bars { flex: 1; }
.be-rev-bar { display: grid; grid-template-columns: 32px 1fr 36px; align-items: center; gap: .65rem; margin-bottom: .35rem; font-size: .8rem; color: var(--be-muted); }
.be-rev-bar__track { background: var(--be-line); height: 6px; border-radius: 3px; overflow: hidden; }
.be-rev-bar__fill { background: var(--be-gold); height: 100%; }

.be-related { margin-top: clamp(3rem, 6vw, 5rem); padding-top: clamp(3rem, 6vw, 5rem); border-top: 1px solid var(--be-line); }

/* ===== DEALS PAGE ===== */
.be-deals-hero {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) var(--be-gutter);
  background:
    radial-gradient(circle at 20% 30%, rgba(176,117,105,.35) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(74,111,78,.35) 0%, transparent 50%),
    linear-gradient(135deg, #1a0a10 0%, #2d0f1a 50%, #1a0a10 100%);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.be-deals-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent 0 20px, rgba(255,255,255,.015) 20px 21px);
  pointer-events: none;
}
.be-deals-hero__inner { position: relative; z-index: 1; max-width: 880px; margin: 0 auto; }
.be-deals-hero__tag {
  display: inline-block;
  padding: .4rem 1.1rem;
  background: var(--be-accent);
  color: #fff;
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 999px;
  margin-bottom: 1.5rem;
  animation: be-pulse 2s ease-in-out infinite;
}
@keyframes be-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(176,117,105,.5); }
  50%      { box-shadow: 0 0 0 12px rgba(176,117,105,0); }
}
.be-deals-hero__title {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  color: #fff;
  margin-bottom: 1rem;
  line-height: .95;
}
.be-deals-hero__title em {
  font-style: italic;
  background: linear-gradient(135deg, #d9b2a8 0%, #c8b88a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.be-deals-hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,.8);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}
.be-deals-hero .be-countdown { justify-content: center; gap: .75rem; }
.be-deals-hero .be-countdown__unit {
  min-width: 84px;
  padding: 1rem 1.1rem;
  background: rgba(0,0,0,.4);
  border: 1px solid rgba(255,255,255,.15);
}
.be-deals-hero .be-countdown__num { font-size: 2.5rem; }
.be-deals-hero .be-countdown__label { color: rgba(255,255,255,.7); }

/* Big discount badge */
.be-badge-disc {
  position: absolute; top: 14px; right: 14px;
  z-index: 2;
  width: 64px; height: 64px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: var(--be-accent);
  color: #fff;
  border-radius: 50%;
  font-family: var(--be-serif);
  font-weight: 600;
  line-height: 1;
  box-shadow: 0 6px 20px rgba(176,117,105,.4);
  transform: rotate(-8deg);
}
.be-badge-disc__num { font-size: 1.4rem; }
.be-badge-disc__off { font-size: .55rem; letter-spacing: .15em; margin-top: 2px; }

/* Flash card extends .be-card with extras */
.be-deal-card { position: relative; }
.be-deal-card .be-card__media { aspect-ratio: 1 / 1; }
.be-deal-timer {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .35rem .65rem;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: .7rem; font-weight: 600;
  letter-spacing: .05em;
  border-radius: 999px;
  font-variant-numeric: tabular-nums;
}
.be-deal-timer svg { color: #d9b2a8; }

/* Stock alert bar */
.be-stock-bar {
  padding: 0 1.25rem 1.25rem;
  margin-top: -.5rem;
}
.be-stock-bar__head {
  display: flex; justify-content: space-between;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--be-muted);
  margin-bottom: .4rem;
}
.be-stock-bar__urgent { color: var(--be-accent); }
.be-stock-bar__track {
  height: 5px;
  background: var(--be-line);
  border-radius: 999px;
  overflow: hidden;
}
.be-stock-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, #2ecc71, #f5b500, var(--be-accent));
  border-radius: 999px;
  transition: width .6s ease;
}

/* Sections */
.be-deals-section {
  padding-block: clamp(3rem, 7vw, 5.5rem);
}
.be-deals-section--alt { background: var(--be-surface); }

/* Section heading with side accent */
.be-deals-head {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  margin-bottom: 3rem; gap: .25rem;
}
@media (min-width: 720px) {
  .be-deals-head { flex-direction: row; justify-content: space-between; text-align: left; align-items: flex-end; gap: 1rem; }
}
.be-deals-head__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin: 0;
}
.be-deals-head__title em { font-style: italic; color: var(--be-accent); }
.be-deals-head__sub {
  color: var(--be-muted);
  font-size: .95rem;
  margin: .25rem 0 0;
}
.be-deals-head__link {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--be-gold-dark);
  border-bottom: 1px solid var(--be-gold-dark);
  padding-bottom: 2px;
}

/* ===== BUNDLES ===== */
.be-bundles {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .be-bundles { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .be-bundles { grid-template-columns: repeat(3, 1fr); } }

.be-bundle {
  display: flex; flex-direction: column;
  background: #fff;
  border-radius: var(--be-radius-lg);
  overflow: hidden;
  border: 1px solid var(--be-line);
  transition: transform .35s ease, box-shadow .35s ease;
  position: relative;
}
.be-bundle:hover { transform: translateY(-4px); box-shadow: var(--be-shadow-lg); }
.be-bundle__ribbon {
  position: absolute; top: 0; left: 0;
  background: linear-gradient(135deg, var(--be-gold) 0%, var(--be-gold-dark) 100%);
  color: #fff;
  padding: .4rem 1.25rem .4rem 1rem;
  font-size: .7rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  border-bottom-right-radius: var(--be-radius-lg);
  z-index: 2;
}
.be-bundle__images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--be-line);
  padding: 2px;
  aspect-ratio: 3 / 1.8;
}
.be-bundle__img {
  background: var(--be-bg);
  overflow: hidden;
  position: relative;
}
.be-bundle__img img { width: 100%; height: 100%; object-fit: cover; }
.be-bundle__plus {
  position: absolute;
  width: 36px; height: 36px;
  background: var(--be-ink); color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; font-weight: 300;
  top: 50%; right: -20px;
  transform: translateY(-50%);
  z-index: 1;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
.be-bundle__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.be-bundle__name {
  font-family: var(--be-serif);
  font-size: 1.35rem;
  font-weight: 500;
  margin: 0 0 .5rem;
}
.be-bundle__items {
  list-style: none; margin: 0 0 1.25rem; padding: 0;
  font-size: .85rem; color: var(--be-muted);
}
.be-bundle__items li {
  padding: .35rem 0;
  border-bottom: 1px dashed var(--be-line);
  display: flex; justify-content: space-between;
}
.be-bundle__items li:last-child { border-bottom: 0; }
.be-bundle__price-row {
  display: flex; align-items: baseline; gap: .75rem;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--be-line);
}
.be-bundle__price {
  font-family: var(--be-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--be-accent);
}
.be-bundle__was {
  color: var(--be-muted);
  text-decoration: line-through;
  font-size: .95rem;
}
.be-bundle__save {
  margin-left: auto;
  background: rgba(46,204,113,.12);
  color: #1f8c4f;
  padding: .25rem .65rem;
  font-size: .7rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  border-radius: 999px;
}
.be-bundle__cta {
  display: block;
  text-align: center;
  margin-top: 1.25rem;
  padding: .85rem 1rem;
  background: var(--be-ink);
  color: #fff;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  border-radius: var(--be-radius);
  transition: background .2s ease;
}
.be-bundle__cta:hover { background: var(--be-accent); color: #fff; }

/* Mini "deal of the day" feature card */
.be-deal-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: linear-gradient(135deg, #1a1410 0%, #2a1f17 100%);
  border-radius: var(--be-radius-lg);
  overflow: hidden;
  color: #fff;
  margin-bottom: 3rem;
}
@media (min-width: 800px) { .be-deal-feature { grid-template-columns: 1fr 1fr; } }
.be-deal-feature__media {
  aspect-ratio: 4 / 3;
  background: var(--be-line);
  overflow: hidden;
  position: relative;
}
.be-deal-feature__media img { width: 100%; height: 100%; object-fit: cover; }
.be-deal-feature__body {
  padding: clamp(1.75rem, 4vw, 3rem);
  display: flex; flex-direction: column; justify-content: center;
}
.be-deal-feature__tag {
  display: inline-block;
  background: var(--be-accent);
  color: #fff;
  padding: .35rem 1rem;
  font-size: .7rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 1rem;
  align-self: flex-start;
}
.be-deal-feature__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: #fff;
  margin: 0 0 1rem;
}
.be-deal-feature__price {
  display: flex; align-items: baseline; gap: 1rem;
  margin-bottom: 1.5rem;
}
.be-deal-feature__price-now {
  font-family: var(--be-serif);
  font-size: 2rem; font-weight: 600;
  color: #d9b2a8;
}
.be-deal-feature__price-was {
  color: rgba(255,255,255,.5);
  text-decoration: line-through;
  font-size: 1.1rem;
}
.be-deal-feature__countdown { margin-bottom: 1.5rem; }
.be-deal-feature__countdown .be-countdown__unit { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.12); }
.be-deal-feature__countdown .be-countdown__label { color: rgba(255,255,255,.7); }

/* ===== BLOG ===== */
.be-blog-hero {
  padding: clamp(3rem, 7vw, 5.5rem) var(--be-gutter) clamp(2rem, 4vw, 3rem);
  background: linear-gradient(180deg, var(--be-surface) 0%, var(--be-bg) 100%);
  text-align: center;
}
.be-blog-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}
.be-blog-hero h1 em { font-style: italic; color: var(--be-gold-dark); }
.be-blog-hero p {
  color: var(--be-muted);
  max-width: 580px;
  margin: 0 auto 2rem;
  font-size: clamp(1rem, 1.4vw, 1.1rem);
}

/* Search bar */
.be-search {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--be-line);
  border-radius: 999px;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.be-search:focus-within {
  border-color: var(--be-gold);
  box-shadow: 0 4px 24px rgba(74,111,78,.18);
}
.be-search input {
  flex: 1; min-width: 0;
  padding: .9rem 1.25rem;
  background: transparent;
  border: 0;
  font-family: inherit;
  font-size: .95rem;
  color: var(--be-ink);
}
.be-search input:focus { outline: none; }
.be-search button {
  width: 48px;
  background: transparent;
  border: 0;
  color: var(--be-ink);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: color .2s ease;
}
.be-search button:hover { color: var(--be-gold-dark); }

/* Category pills */
.be-cat-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
  margin: 2.5rem 0 1rem;
  padding-inline: var(--be-gutter);
}
.be-cat-pill {
  padding: .55rem 1.1rem;
  background: #fff;
  border: 1px solid var(--be-line);
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .05em;
  color: var(--be-ink);
  transition: all .2s ease;
}
.be-cat-pill:hover { border-color: var(--be-gold); color: var(--be-gold-dark); }
.be-cat-pill.is-active {
  background: var(--be-ink);
  color: #fff;
  border-color: var(--be-ink);
}
.be-cat-pill__count {
  margin-left: .35rem;
  font-size: .7rem;
  opacity: .6;
}

/* Blog grid */
.be-blog-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .be-blog-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .be-blog-grid { grid-template-columns: repeat(3, 1fr); } }

.be-post-card {
  display: flex;
  flex-direction: column;
  background: var(--be-surface);
  border-radius: var(--be-radius-lg);
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
  height: 100%;
}
.be-post-card:hover { transform: translateY(-4px); box-shadow: var(--be-shadow-lg); }
.be-post-card__media {
  aspect-ratio: 16 / 10;
  background: var(--be-line);
  overflow: hidden;
  position: relative;
}
.be-post-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.be-post-card:hover .be-post-card__media img { transform: scale(1.04); }
.be-post-card__cat {
  position: absolute;
  top: 1rem; left: 1rem;
  background: rgba(26,20,16,.85);
  backdrop-filter: blur(6px);
  color: #fff;
  padding: .35rem .85rem;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  border-radius: 999px;
  z-index: 1;
}
.be-post-card__body {
  padding: 1.5rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.be-post-card__title {
  font-family: var(--be-serif);
  font-size: 1.35rem;
  line-height: 1.25;
  font-weight: 500;
  margin: 0 0 .75rem;
  letter-spacing: -0.01em;
}
.be-post-card__title a { color: var(--be-ink); }
.be-post-card__title a:hover { color: var(--be-gold-dark); }
.be-post-card__excerpt {
  color: var(--be-muted);
  font-size: .9rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  flex: 1;
}
.be-post-card__meta {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .75rem;
  color: var(--be-muted);
  padding-top: 1rem;
  border-top: 1px solid var(--be-line);
}
.be-post-card__avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--be-gold);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 600;
  font-size: .7rem;
  flex-shrink: 0;
}
.be-post-card__author { color: var(--be-ink); font-weight: 600; font-size: .8rem; }
.be-post-card__sep { opacity: .4; }

/* Featured post (first card spans wider on desktop) */
.be-post-card--featured { grid-column: 1 / -1; }
@media (min-width: 900px) {
  .be-post-card--featured {
    grid-column: span 2;
    flex-direction: row;
  }
  .be-post-card--featured .be-post-card__media { aspect-ratio: auto; min-height: 360px; flex: 1; }
  .be-post-card--featured .be-post-card__body { flex: 1; justify-content: center; padding: 2.5rem; }
  .be-post-card--featured .be-post-card__title { font-size: clamp(1.5rem, 2vw, 2rem); }
  .be-post-card--featured .be-post-card__excerpt { font-size: 1rem; }
}

/* Pagination */
.be-pagination {
  margin: 3.5rem 0 0;
  display: flex;
  justify-content: center;
  gap: .5rem;
}
.be-pagination a, .be-pagination span {
  padding: .65rem 1rem;
  background: #fff;
  border: 1px solid var(--be-line);
  border-radius: var(--be-radius);
  font-size: .85rem;
  font-weight: 600;
  color: var(--be-ink);
  transition: all .2s ease;
}
.be-pagination a:hover { border-color: var(--be-gold); color: var(--be-gold-dark); }
.be-pagination .current {
  background: var(--be-ink);
  color: #fff;
  border-color: var(--be-ink);
}

/* ===== SINGLE ARTICLE ===== */
.be-article {
  padding-block: clamp(2rem, 5vw, 4rem);
}
.be-article__head {
  max-width: 780px;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.be-article__cat {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--be-gold-dark);
  margin-bottom: 1rem;
}
.be-article__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.015em;
}
.be-article__lede {
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  color: var(--be-muted);
  line-height: 1.55;
  margin-bottom: 2rem;
  font-family: var(--be-serif);
  font-style: italic;
}
.be-article__byline {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  padding: .65rem 1.25rem;
  background: var(--be-surface);
  border-radius: 999px;
  border: 1px solid var(--be-line);
  font-size: .85rem;
}
.be-article__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--be-gold);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 600;
  font-size: .8rem;
  flex-shrink: 0;
}
.be-article__byline-name { font-weight: 600; color: var(--be-ink); }
.be-article__byline-meta { color: var(--be-muted); }

.be-article__hero {
  max-width: 1100px;
  margin: 0 auto 3rem;
  border-radius: var(--be-radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--be-line);
}
.be-article__hero img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}

/* Article body typography */
.be-article__body {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.075rem;
  line-height: 1.85;
  color: var(--be-ink);
}
.be-article__body > * + * { margin-top: 1.5em; }
.be-article__body h2 {
  font-family: var(--be-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-top: 2.5em;
  margin-bottom: .65em;
  letter-spacing: -0.01em;
}
.be-article__body h3 {
  font-family: var(--be-serif);
  font-size: 1.35rem;
  margin-top: 2em;
  margin-bottom: .5em;
}
.be-article__body a {
  color: var(--be-gold-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
.be-article__body a:hover { color: var(--be-accent); }
.be-article__body blockquote {
  border-left: 3px solid var(--be-gold);
  padding: .5rem 0 .5rem 1.75rem;
  margin: 2em 0;
  font-family: var(--be-serif);
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.5;
  color: var(--be-ink);
}
.be-article__body ul, .be-article__body ol { padding-left: 1.5rem; }
.be-article__body li + li { margin-top: .35em; }
.be-article__body img { border-radius: var(--be-radius); }
.be-article__body figure { margin: 2em 0; }
.be-article__body figcaption {
  margin-top: .65em;
  font-size: .85rem;
  color: var(--be-muted);
  text-align: center;
  font-style: italic;
}
.be-article__body code {
  background: var(--be-surface);
  padding: .15em .4em;
  border-radius: 3px;
  font-size: .9em;
}

/* Tags + share */
.be-article__footer {
  max-width: 720px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--be-line);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 720px) {
  .be-article__footer { flex-direction: row; align-items: center; justify-content: space-between; }
}
.be-tag-list { display: flex; flex-wrap: wrap; gap: .5rem; }
.be-tag {
  font-size: .75rem;
  letter-spacing: .05em;
  padding: .35rem .85rem;
  background: var(--be-surface);
  border: 1px solid var(--be-line);
  border-radius: 999px;
  color: var(--be-muted);
}
.be-tag:hover { color: var(--be-gold-dark); border-color: var(--be-gold); }
.be-share {
  display: flex; align-items: center; gap: .75rem;
  font-size: .8rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--be-muted);
}
.be-share-btn {
  width: 38px; height: 38px;
  background: var(--be-surface);
  border: 1px solid var(--be-line);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--be-ink);
  transition: all .2s ease;
}
.be-share-btn:hover { background: var(--be-gold); color: #fff; border-color: var(--be-gold); }

/* Author bio card */
.be-author-card {
  max-width: 720px;
  margin: 3rem auto 0;
  padding: 2rem;
  background: var(--be-surface);
  border-radius: var(--be-radius-lg);
  border: 1px solid var(--be-line);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (min-width: 640px) { .be-author-card { flex-direction: row; align-items: center; } }
.be-author-card__avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--be-gold) 0%, var(--be-gold-dark) 100%);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--be-serif);
  font-size: 1.75rem;
  font-weight: 600;
  flex-shrink: 0;
}
.be-author-card__name { font-family: var(--be-serif); font-size: 1.25rem; margin: 0 0 .25rem; }
.be-author-card__role {
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--be-gold-dark);
  margin-bottom: .5rem;
}
.be-author-card__bio { color: var(--be-muted); font-size: .9rem; line-height: 1.65; margin: 0; }

/* Related posts */
.be-related-posts {
  margin-top: clamp(3rem, 6vw, 5rem);
  padding-top: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid var(--be-line);
}
.be-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--be-muted);
}

/* ===== CONTACT PAGE ===== */
.be-contact-hero {
  padding: clamp(3rem, 7vw, 5.5rem) var(--be-gutter) clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  background:
    radial-gradient(circle at 80% 20%, rgba(74,111,78,.18) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(176,117,105,.10) 0%, transparent 50%),
    linear-gradient(180deg, var(--be-surface) 0%, var(--be-bg) 100%);
}
.be-contact-hero h1 {
  font-size: clamp(2rem, 5vw, 3.75rem);
  margin-bottom: 1rem;
}
.be-contact-hero h1 em { font-style: italic; color: var(--be-gold-dark); }
.be-contact-hero p {
  color: var(--be-muted);
  max-width: 560px;
  margin: 0 auto;
  font-size: clamp(1rem, 1.4vw, 1.1rem);
}

/* Layout: form + sidebar */
.be-contact-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 960px) {
  .be-contact-grid { grid-template-columns: 1.4fr 1fr; gap: 3.5rem; }
}

/* Form card */
.be-contact-form {
  padding: clamp(1.75rem, 3vw, 2.75rem);
  background: var(--be-surface);
  border-radius: var(--be-radius-lg);
  border: 1px solid var(--be-line);
}
.be-contact-form h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: .5rem;
}
.be-contact-form > p {
  color: var(--be-muted);
  margin-bottom: 1.75rem;
  font-size: .95rem;
}
.be-form-row {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  margin-bottom: 1.25rem;
}
@media (min-width: 640px) { .be-form-row--2 { grid-template-columns: 1fr 1fr; } }

.be-field { display: flex; flex-direction: column; gap: .4rem; }
.be-field label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--be-ink);
}
.be-field label .req { color: var(--be-accent); margin-left: .15em; }
.be-field input,
.be-field select,
.be-field textarea {
  width: 100%;
  padding: .9rem 1rem;
  background: var(--be-bg);
  border: 1px solid var(--be-line);
  border-radius: var(--be-radius);
  font-family: inherit;
  font-size: .95rem;
  color: var(--be-ink);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.be-field input:focus,
.be-field select:focus,
.be-field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--be-gold);
  box-shadow: 0 0 0 3px rgba(74,111,78,.15);
}
.be-field textarea { min-height: 150px; resize: vertical; line-height: 1.6; }
.be-field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%231a1410' stroke-width='1.5' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.be-form-check {
  display: flex; gap: .65rem; align-items: flex-start;
  margin: 1.25rem 0 1.5rem;
  font-size: .85rem;
  color: var(--be-muted);
}
.be-form-check input { margin-top: .15rem; accent-color: var(--be-gold); }
.be-form-check a { color: var(--be-gold-dark); text-decoration: underline; text-underline-offset: 3px; }

.be-form-notice {
  padding: .9rem 1.1rem;
  border-radius: var(--be-radius);
  font-size: .9rem;
  margin-bottom: 1.5rem;
}
.be-form-notice--ok  { background: rgba(46,204,113,.1); color: #1f8c4f; border: 1px solid rgba(46,204,113,.25); }
.be-form-notice--err { background: rgba(176,117,105,.08); color: var(--be-accent); border: 1px solid rgba(176,117,105,.2); }

/* Sidebar info */
.be-contact-side { display: flex; flex-direction: column; gap: 1.25rem; }
.be-info-card {
  padding: 1.5rem;
  background: var(--be-surface);
  border: 1px solid var(--be-line);
  border-radius: var(--be-radius-lg);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.be-info-card__icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(74,111,78,.12);
  color: var(--be-gold-dark);
  display: inline-flex; align-items: center; justify-content: center;
}
.be-info-card__label {
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--be-muted);
  font-weight: 600;
  margin: 0 0 .25rem;
}
.be-info-card__value {
  font-family: var(--be-serif);
  font-size: 1.1rem;
  margin: 0 0 .25rem;
  color: var(--be-ink);
}
.be-info-card__sub {
  font-size: .8rem;
  color: var(--be-muted);
  margin: 0;
}
.be-info-card a:hover { color: var(--be-gold-dark); }

/* WhatsApp inline CTA */
.be-whatsapp-cta {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
  color: #fff;
  border-radius: var(--be-radius-lg);
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
}
.be-whatsapp-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37,211,102,.35);
  color: #fff;
}
.be-whatsapp-cta__icon {
  width: 52px; height: 52px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  display: inline-flex; align-items: center; justify-content: center;
}
.be-whatsapp-cta h3 {
  font-family: var(--be-sans);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 .15rem;
  letter-spacing: .02em;
}
.be-whatsapp-cta p { margin: 0; font-size: .85rem; opacity: .9; }

/* Floating WhatsApp button (site-wide) */
.be-wa-float {
  position: fixed;
  right: clamp(1rem, 3vw, 1.75rem);
  bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: 50;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
  transition: transform .25s ease;
}
.be-wa-float:hover { transform: scale(1.08); color: #fff; }
.be-wa-float::before {
  content: ""; position: absolute; inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37,211,102,.5);
  animation: be-wa-pulse 2.4s ease-out infinite;
}
@keyframes be-wa-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,.45); }
  70%  { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* Social row */
.be-social-row {
  display: flex; gap: .65rem; flex-wrap: wrap;
}
.be-social-row a {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--be-surface);
  border: 1px solid var(--be-line);
  color: var(--be-ink);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all .2s ease;
}
.be-social-row a:hover {
  background: var(--be-ink); color: #fff; border-color: var(--be-ink);
  transform: translateY(-2px);
}

/* Customer support cards */
.be-support-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .be-support-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .be-support-grid { grid-template-columns: repeat(4, 1fr); } }
.be-support {
  padding: 2rem 1.5rem;
  background: var(--be-surface);
  border: 1px solid var(--be-line);
  border-radius: var(--be-radius-lg);
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.be-support:hover {
  transform: translateY(-3px);
  border-color: var(--be-gold);
  box-shadow: var(--be-shadow);
}
.be-support__icon {
  width: 56px; height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--be-gold) 0%, var(--be-gold-dark) 100%);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
}
.be-support h3 {
  font-family: var(--be-serif);
  font-size: 1.15rem;
  margin: 0 0 .35rem;
}
.be-support p { color: var(--be-muted); font-size: .85rem; margin: 0 0 1rem; line-height: 1.6; }
.be-support__link {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--be-gold-dark);
  border-bottom: 1px solid var(--be-gold-dark);
  padding-bottom: 2px;
}

/* Map */
.be-map {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--be-radius-lg);
  overflow: hidden;
  border: 1px solid var(--be-line);
  background: var(--be-line);
}
.be-map iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(0.3) contrast(1.05); }

.be-map-bar {
  margin-top: 1rem;
  display: flex; flex-direction: column; gap: .75rem;
  padding: 1.25rem 1.5rem;
  background: var(--be-surface);
  border-radius: var(--be-radius-lg);
  border: 1px solid var(--be-line);
}
@media (min-width: 640px) { .be-map-bar { flex-direction: row; align-items: center; justify-content: space-between; } }
.be-map-bar__address { font-size: .9rem; color: var(--be-ink); }
.be-map-bar__address strong { display: block; font-family: var(--be-serif); font-size: 1.05rem; font-weight: 500; margin-bottom: .25rem; }
.be-map-bar__hours { font-size: .8rem; color: var(--be-muted); }

/* ===== ACCESSIBILITY ===== */
:focus-visible { outline: 2px solid var(--be-gold); outline-offset: 3px; border-radius: 2px; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
