/* ============================================================
   VITNUA — main.css
   ============================================================ */

/* ---- Variables ------------------------------------------- */
:root {
  /* ── Primary — deep indigo ─────────────────────────────── */
  --clr-indigo:       #2e2a7e;   /* brand primary */
  --clr-indigo-mid:   #6656a4;   /* logo ring purple — hover / mid state */
  --clr-indigo-deep:  #5d007e;   /* gradient end, deepest purple */
  --clr-indigo-light: #eef2ff;   /* tinted lavender surface */

  /* ── Accent — Cyan / Teal (logo colour) ────────────────── */
  --clr-cyan:         #6fcbdc;   /* logo teal */
  --clr-cyan-dark:    #2896ae;   /* darkened for text / borders */
  --clr-cyan-light:   #d8f4f9;   /* tinted surface */

  /* ── Accent — Yellow / Gold (logo colour) ──────────────── */
  --clr-yellow:       #fdcd07;   /* logo gold */
  --clr-yellow-dark:  #a07a00;   /* darkened for text */
  --clr-yellow-light: #fff8d0;   /* tinted surface */

  /* ── Accent — Hot Pink / Magenta (logo colour) ─────────── */
  --clr-pink:         #ed2979;   /* logo hot pink */
  --clr-pink-dark:    #b01558;   /* darkened for text */
  --clr-pink-light:   #fce4ee;   /* tinted surface */

  /* ── Legacy aliases (keep existing HTML/CSS working) ───── */
  --clr-green:        var(--clr-indigo);
  --clr-green-mid:    var(--clr-indigo-mid);
  --clr-green-light:  var(--clr-indigo-light);
  --clr-gold:         #8b35a8;   /* purple-magenta CTA */
  --clr-gold-light:   #b06ec4;
  --clr-gold-social:  #b06ec4;

  /* ── Surfaces ───────────────────────────────────────────── */
  --clr-cream:        #f5f4fb;   /* subtle lavender off-white */
  --clr-cream-dark:   #ede9f5;   /* slightly deeper lavender */
  --clr-white:        #ffffff;
  --clr-navy:         #0d133a;   /* logo darkest navy */

  /* ── Typography ─────────────────────────────────────────── */
  --clr-text:         #1a1240;
  --clr-text-muted:   #5a587a;
  --clr-body:         #5a587a;
  --clr-border:       #dcd8ec;

  /* ── Gradients ──────────────────────────────────────────── */
  --gradient-hero:    linear-gradient(135deg, #2e2a7e 0%, #5d007e 100%);
  --gradient-brand:   linear-gradient(135deg, #6656a4 0%, #6fcbdc 100%);  /* purple → cyan */
  --gradient-warm:    linear-gradient(135deg, #ed2979 0%, #fdcd07 100%);  /* pink → gold */

  /* ── Type ───────────────────────────────────────────────── */
  --ff-head:  'Josefin Sans', sans-serif;
  --ff-body:  'Josefin Sans', sans-serif;

  /* ── Layout ─────────────────────────────────────────────── */
  --max-w:    1280px;
  --pad-h:    clamp(20px, 5vw, 80px);
  --pad-v:    clamp(60px, 8vw, 120px);

  /* ── Tokens ─────────────────────────────────────────────── */
  --radius:   4px;
  --radius-lg: 8px;
  --shadow:   0 2px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
}

/* ---- Reset ------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  font-size: 16px;
  color: var(--clr-text);
  background: var(--clr-white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; cursor: pointer; font-family: inherit; }

/* ---- Typography ------------------------------------------ */
h1,h2,h3,h4,h5 {
  font-family: var(--ff-head);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* ---- Utility --------------------------------------------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-h);
}
.section { padding: var(--pad-v) 0; }
.section--cream { background: var(--clr-cream); }
.section--green { background: var(--clr-green); color: var(--clr-white); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.btn:hover { transform: translateY(-1px); }
.btn--green  { background: var(--clr-green); color: var(--clr-white); }
.btn--green:hover { background: var(--clr-green-mid); }
.btn--gold   { background: var(--clr-gold); color: var(--clr-white); }
.btn--gold:hover { background: var(--clr-gold-light); }
.btn--outline { background: transparent; color: var(--clr-green); border: 1.5px solid var(--clr-green); }
.btn--outline:hover { background: var(--clr-green); color: var(--clr-white); }
.btn--outline-white { background: transparent; color: var(--clr-white); border: 1.5px solid rgba(255,255,255,0.5); }
.btn--outline-white:hover { border-color: var(--clr-white); background: rgba(255,255,255,0.08); }

.tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.tag--green { background: var(--clr-green-light); color: var(--clr-green); }
.tag--gold  { background: rgba(184,144,42,0.12); color: var(--clr-gold); }

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.section-body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--clr-text-muted);
  max-width: 560px;
}

/* ============================================================
   NAV
   ============================================================ */
/* Single background container spanning nav + hero seamlessly */
.hero-wrap {
  background:
    url('../images/hero-bg.svg') center center / cover no-repeat fixed,
    var(--gradient-hero);
}
@supports (-webkit-overflow-scrolling: touch) {
  .hero-wrap { background-attachment: scroll; }
}

.site-nav {
  position: relative;
  z-index: 200;
  background: var(--gradient-hero);
  border-bottom: none;
}
.hero-wrap .site-nav { background: transparent; }

/* ── Back to top ── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 500;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--clr-indigo);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(46, 42, 126, 0.4);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
}
.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover { background: var(--clr-indigo-mid); }
.back-to-top svg { width: 20px; height: 20px; }
@media (max-width: 600px) {
  .back-to-top { bottom: 20px; right: 20px; width: 42px; height: 42px; }
}

.site-nav__bar {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 24px var(--pad-h);
  min-height: 200px;
  display: flex;
  align-items: center;
  gap: 32px;
}
/* Push nav + actions together to the right, logo stays left */
.site-nav__bar > nav { margin-left: auto; }

.site-nav__logo img { height: 160px; width: auto; mix-blend-mode: screen; }
.site-nav__logo { flex-shrink: 0; }

@media (max-width: 900px) {
  .site-nav__bar { height: 88px; }
  .site-nav__logo img { height: 64px; }
}
.site-nav__links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.site-nav__link {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.2s;
}
.site-nav__link:hover,
.site-nav__link.is-active { color: var(--clr-yellow); }

.site-nav__actions { display: flex; align-items: center; gap: 16px; }
.site-nav__cta { font-size: 12px; padding: 10px 24px; }

.site-nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
  width: 32px;
}
.site-nav__toggle span {
  display: block;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.site-nav__toggle.is-active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.site-nav__toggle.is-active span:nth-child(2) { opacity: 0; }
.site-nav__toggle.is-active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-nav {
  display: none;
  background: var(--clr-white);
  border-top: 1px solid var(--clr-border);
  padding: 24px var(--pad-h) 32px;
}
.mobile-nav.is-open { display: block; }
.mobile-nav__link {
  display: block;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--clr-border);
  color: var(--clr-text);
}
.mobile-nav__link:last-child { border-bottom: none; }
.mobile-nav__cta { margin-top: 20px; width: 100%; justify-content: center; }

@media (max-width: 900px) {
  .site-nav__links,
  .site-nav__actions .btn { display: none; }
  .site-nav__toggle { display: flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: transparent;
  min-height: clamp(500px, 71vh, 760px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--pad-v) clamp(16px, 2vw, 32px) clamp(80px, 14vw, 180px) clamp(20px, 5vw, 80px);
  position: relative;
  z-index: 1;
}
.hero__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--clr-gold-light);
  margin-bottom: 20px;
}
.hero__title {
  font-size: clamp(30px, 3.8vw, 54px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--clr-white);
  margin-bottom: 24px;
}
.hero__title span { color: var(--clr-gold-light); }
.hero__body {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  max-width: 440px;
  margin-bottom: 40px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__visual {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px clamp(60px, 7vw, 100px);
  position: relative;
}
.hero__img {
  max-height: 400px;
  width: auto;
  object-fit: contain;
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.28), 0 8px 24px rgba(0,0,0,0.16);
  position: relative;
  z-index: 1;
}

.hero__badge-strip {
  position: absolute;
  bottom: 28px;
  left: clamp(20px, 5vw, 80px);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero__badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero__visual { min-height: 300px; }
  .hero__img { max-height: 260px; }
  .hero__badge-strip { position: static; margin-top: 24px; }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--clr-green-light);
  padding: 22px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(46,42,126,0.1);
}
.trust-strip__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--clr-green);
  white-space: nowrap;
}
.trust-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: block;
}

/* ============================================================
   PRODUCTS GRID
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 380px) {
  .products-grid { grid-template-columns: 1fr; }
}

.product-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.product-card__img-wrap {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
}
.product-card__img-wrap::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--accent, var(--clr-green));
  z-index: 2;
}
.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card__img { transform: scale(1.06); }
.product-card__body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.product-card__name {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  line-height: 1.3;
}
.product-card__desc {
  font-size: 13px;
  color: var(--clr-text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
  flex: 1;
}
.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--clr-border);
}
.product-card__price {
  font-size: 16px;
  font-weight: 700;
  color: var(--clr-green);
}
.product-card__link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--clr-gold);
  transition: color 0.2s;
}
.product-card__link:hover { color: var(--clr-gold-light); }

/* ============================================================
   PRODUCT PAGE (individual)
   ============================================================ */
.product-hero {
  padding: var(--pad-v) 0;
  background: var(--clr-cream);
}
.product-hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-h);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.product-hero__img-wrap {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.product-hero__img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(184,144,42,0.05), transparent 70%);
}
.product-hero__img {
  max-height: 380px;
  width: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.1));
}
.product-hero__content { display: flex; flex-direction: column; gap: 20px; }
.product-hero__breadcrumb {
  font-size: 12px;
  color: var(--clr-text-muted);
  letter-spacing: 0.5px;
}
.product-hero__breadcrumb a { color: var(--clr-green); }
.product-hero__breadcrumb a:hover { text-decoration: underline; }
.product-hero__name {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.product-hero__strength {
  font-size: 14px;
  color: var(--clr-text-muted);
  letter-spacing: 0.5px;
  margin-top: -12px;
}
.product-hero__desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--clr-text-muted);
}
.product-hero__badges { display: flex; gap: 8px; flex-wrap: wrap; }
.product-hero__price {
  font-size: 28px;
  font-weight: 700;
  color: var(--clr-green);
}
.product-hero__stockist-note {
  font-size: 14px;
  color: var(--clr-text-muted);
  padding: 14px 18px;
  background: var(--clr-green-light);
  border-radius: var(--radius);
  border-left: 3px solid var(--clr-green);
}

.product-details {
  padding: var(--pad-v) 0;
}
.product-details__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-h);
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}
.product-details__heading {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--clr-border);
}
.product-details__body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--clr-text-muted);
}
.product-details__body p { margin-bottom: 12px; }
.product-facts {
  background: var(--clr-cream);
  border-radius: var(--radius-lg);
  padding: 28px;
  height: fit-content;
}
.product-facts__title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--clr-green);
}
.product-facts__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--clr-border);
  font-size: 14px;
}
.product-facts__row:last-child { border-bottom: none; }
.product-facts__label { color: var(--clr-text-muted); }
.product-facts__value { font-weight: 600; text-align: right; }

@media (max-width: 768px) {
  .product-hero__inner { grid-template-columns: 1fr; gap: 32px; }
  .product-details__inner { grid-template-columns: 1fr; }
}

/* ============================================================
   ABOUT SECTION / PAGE
   ============================================================ */
.about-split {
  display: grid;
  grid-template-columns: 3fr 2fr;
  min-height: 520px;
}
.about-split__content {
  background: var(--gradient-hero);
  color: var(--clr-white);
  padding: var(--pad-v) var(--pad-h) var(--pad-v) max(var(--pad-h), calc((100vw - var(--max-w)) / 2 + var(--pad-h)));
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.about-split__visual {
  background: radial-gradient(ellipse at 55% 50%, #ffffff 0%, var(--clr-cream) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px max(var(--pad-h), calc((100vw - var(--max-w)) / 2 + var(--pad-h)));
  position: relative;
  overflow: hidden;
}
.about-split__visual > img { max-height: 340px; width: auto; }

/* Bottle promo composition */
.about-promo {
  position: relative;
  width: 360px;
  height: 400px;
  flex-shrink: 0;
}
.about-promo__bottle {
  position: absolute;
  object-fit: contain;
  filter: drop-shadow(0 20px 36px rgba(46, 42, 126, 0.22));
  pointer-events: none;
  user-select: none;
}
.about-promo__bottle--center {
  height: 320px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.about-promo__bottle--left {
  height: 245px;
  bottom: 28px;
  left: 0;
  z-index: 2;
  opacity: 0.88;
  transform: rotate(-7deg);
  filter: drop-shadow(0 20px 36px rgba(46, 42, 126, 0.18));
}
.about-promo__bottle--right {
  height: 245px;
  bottom: 28px;
  right: 0;
  z-index: 2;
  opacity: 0.88;
  transform: rotate(7deg);
  filter: drop-shadow(0 20px 36px rgba(46, 42, 126, 0.18));
}
@media (max-width: 768px) {
  .about-promo { width: 280px; height: 300px; }
  .about-promo__bottle--center { height: 240px; }
  .about-promo__bottle--left,
  .about-promo__bottle--right { height: 185px; bottom: 20px; }
}
/* Vitnua mark watermark */
.about-vitnua-mark {
  position: absolute;
  width: 300px;
  top: -40px;
  left: 24px;
  fill: var(--clr-indigo);
  opacity: 0.07;
  pointer-events: none;
  user-select: none;
}

/* Proudly Irish badge */
.about-irish-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 100px;
  padding: 7px 16px 7px 10px;
  box-shadow: 0 2px 14px rgba(46, 42, 126, 0.12);
  font-family: var(--ff-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--clr-text);
}
.about-irish-flag {
  display: flex;
  width: 26px;
  height: 17px;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}
.about-irish-flag span { flex: 1; }
.about-irish-flag span:nth-child(1) { background: #169b62; }
.about-irish-flag span:nth-child(2) { background: #ffffff; }
.about-irish-flag span:nth-child(3) { background: #ff883e; }

.about-split__body { font-size: 16px; line-height: 1.8; color: rgba(255,255,255,0.75); }
.about-split__sign { font-size: 14px; font-style: italic; color: var(--clr-gold-light); margin-top: 8px; }

@media (max-width: 768px) {
  .about-split { grid-template-columns: 1fr; }
  .about-split__visual { min-height: 260px; padding: 40px; }
}

/* ============================================================
   FIND US TEASER
   ============================================================ */
.findus {
  padding: var(--pad-v) 0;
  background: var(--clr-green-light);
  text-align: center;
}
.findus .section-body { margin: 0 auto 32px; }

/* ============================================================
   MAP PAGE
   ============================================================ */
.map-section { padding: var(--pad-v) 0; }
.map-section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-h);
}
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 60px;
}
#store-map { height: 500px; width: 100%; }

.pharmacy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.pharmacy-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: box-shadow 0.2s, opacity 0.22s, transform 0.22s;
}
.pharmacy-card.is-out {
  opacity: 0;
  transform: scale(0.96);
}
.pharmacy-card.is-hidden { display: none; }
.pharmacy-card:hover { box-shadow: var(--shadow); }
.pharmacy-card__county {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--clr-indigo);
  opacity: 0.6;
  margin-bottom: 4px;
}
.pharmacy-card__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--clr-text);
}
.pharmacy-card__addr {
  font-size: 13px;
  color: var(--clr-text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 8px;
}
.pharmacy-card__link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  background: var(--gradient-hero);
  padding: 8px 16px;
  border-radius: 100px;
  align-self: flex-start;
  transition: opacity 0.2s;
}
.pharmacy-card__link:hover { opacity: 0.82; }

@media (max-width: 640px) {
  #store-map { height: 360px; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout { }
.contact-info__title {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 16px;
}
.contact-info__body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--clr-text-muted);
  margin-bottom: 40px;
}
.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--clr-border);
  font-size: 15px;
}
.contact-info__item:first-of-type { border-top: 1px solid var(--clr-border); }
.contact-info__icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--clr-green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info__icon svg { width: 16px; height: 16px; color: var(--clr-green); }

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--clr-text-muted);
}
.form-input,
.form-textarea,
.form-select {
  font-family: var(--ff-body);
  font-size: 15px;
  padding: 12px 16px;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius);
  background: var(--clr-white);
  color: var(--clr-text);
  transition: border-color 0.2s;
  width: 100%;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--clr-green);
}
.form-textarea { min-height: 140px; resize: vertical; }
.form-submit { align-self: flex-start; }

@media (max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  background: var(--clr-green);
  padding: var(--pad-v) 0;
  text-align: center;
  color: var(--clr-white);
}
.about-hero__title { font-size: clamp(40px, 6vw, 72px); font-weight: 700; margin-bottom: 20px; }
.about-hero__subtitle { font-size: 18px; color: rgba(255,255,255,0.7); max-width: 560px; margin: 0 auto; }

.about-content {
  max-width: 760px;
  margin: 0 auto;
  padding: var(--pad-v) var(--pad-h);
}
.about-content p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--clr-text-muted);
  margin-bottom: 24px;
}
.about-content .sign-off {
  font-size: 18px;
  font-weight: 600;
  color: var(--clr-green);
  font-style: italic;
  margin-top: 8px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.value-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  text-align: center;
}
.value-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--clr-green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.value-card__icon svg { width: 22px; height: 22px; color: var(--clr-green); }
.value-card__title { font-size: 15px; font-weight: 600; margin-bottom: 8px; }
.value-card__body { font-size: 14px; color: var(--clr-text-muted); line-height: 1.6; }

/* ============================================================
   PAGE HERO (generic)
   ============================================================ */
.page-hero {
  background: var(--gradient-hero);
  padding: 60px 0 80px;
  color: var(--clr-white);
}
.hero-wrap .page-hero { background: transparent; }
.page-hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-h);
}
.page-hero__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--clr-gold-light);
  margin-bottom: 12px;
}
.page-hero__title {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.page-hero__sub {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  margin-top: 12px;
  max-width: 500px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--gradient-hero);
  color: var(--clr-white);
  padding: 64px 0 32px;
}
.site-footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-h);
}
.site-footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand__logo { height: 32px; width: auto; margin-bottom: 16px; }
.footer-brand__tagline {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  max-width: 260px;
}
.footer-col__title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-gold-light);
  margin-bottom: 16px;
}
.footer-col__link {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  padding: 5px 0;
  transition: color 0.2s;
}
.footer-col__link:hover { color: var(--clr-white); }

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.site-footer__bottom a { color: inherit; transition: color 0.2s; }
.site-footer__bottom a:hover { color: rgba(255,255,255,0.8); }

@media (max-width: 900px) {
  .site-footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 540px) {
  .site-footer__top { grid-template-columns: 1fr; gap: 28px; }
}

/* ============================================================
   MISCELLANEOUS
   ============================================================ */
.disclaimer {
  font-size: 12px;
  color: var(--clr-text-muted);
  background: var(--clr-cream);
  padding: 14px 20px;
  border-radius: var(--radius);
  border-left: 3px solid var(--clr-gold);
  line-height: 1.6;
}

.related-products { padding: var(--pad-v) 0; background: var(--clr-cream); }

/* ============================================================
   PRODUCT HERO — split layout
   ============================================================ */
.product-hero {
  background: var(--gradient-hero);
  overflow: hidden;
}
.product-hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--pad-v) var(--pad-h);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.product-hero__back {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
  margin-bottom: 12px;
}
.product-hero__back:hover { color: var(--clr-white); }
.product-hero__category {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--clr-gold-light);
  margin-bottom: 12px;
}
.product-hero__title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--clr-white);
  margin-bottom: 20px;
}
.product-hero__desc {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
  max-width: 440px;
  margin-bottom: 24px;
}
.product-hero__badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.product-badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}
.product-hero__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}
.product-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--clr-white);
}
.product-qty {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  border-left: 1px solid rgba(255,255,255,0.2);
  padding-left: 20px;
}
.product-hero__visual {
  border-radius: 16px;
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.25), 0 8px 24px rgba(0,0,0,0.12);
}
.product-hero__visual::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--accent, var(--clr-gold));
  z-index: 2;
}
.product-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}
@media (max-width: 768px) {
  .product-hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 40px;
  }
  .product-hero__visual { aspect-ratio: 4/3; }
}

/* ============================================================
   PRODUCT DETAILS
   ============================================================ */
.product-details__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: start;
}
.product-details__grid p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--clr-text-muted);
  margin-bottom: 16px;
}
.product-details__subheading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-green);
  margin: 28px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1.5px solid var(--clr-border);
}
.product-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 8px;
}
.product-benefits li {
  font-size: 14px;
  color: var(--clr-text-muted);
  line-height: 1.55;
  padding-left: 22px;
  position: relative;
}
.product-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--clr-green);
  font-weight: 700;
}
.product-ingredients {
  background: var(--clr-cream);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--clr-border);
  position: sticky;
  top: 100px;
}
.ingredient-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--clr-border);
  font-size: 14px;
  gap: 12px;
}
.ingredient-row:last-child { border-bottom: none; }
.ingredient-row span:first-child { color: var(--clr-text-muted); }
.ingredient-row span:last-child { font-weight: 600; color: var(--clr-green); text-align: right; flex-shrink: 0; }
.product-disclaimer {
  font-size: 12px;
  color: var(--clr-text-muted);
  background: var(--clr-cream);
  padding: 14px 16px;
  border-radius: var(--radius);
  border-left: 3px solid var(--clr-gold);
  line-height: 1.6;
  margin-top: 24px;
}
@media (max-width: 768px) {
  .product-details__grid { grid-template-columns: 1fr; gap: 32px; }
  .product-ingredients { position: static; }
}

/* ============================================================
   ABOUT PAGE ADDITIONS
   ============================================================ */
.about-content {
  display: grid !important;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.about-content__text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--clr-text-muted);
  margin-bottom: 20px;
}
.about-content__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
}
.attributes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.attribute-item {
  padding: 24px;
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
}
.attribute-item__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-green);
  background: var(--clr-green-light);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.attribute-item p {
  font-size: 14px;
  color: var(--clr-text-muted);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr !important;
  }
  .about-content__visual { display: none; }
}

/* ============================================================
   CONTACT PAGE ADDITIONS
   ============================================================ */
.contact-layout__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-layout__heading {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  margin-bottom: 16px;
}
.contact-layout__info > p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--clr-text-muted);
  margin-bottom: 32px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--clr-border);
}
.contact-detail:first-of-type { border-top: 1px solid var(--clr-border); }
.contact-detail__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--clr-green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--clr-green);
}
.contact-detail__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: 4px;
}
.contact-detail__value {
  font-size: 15px;
  color: var(--clr-text);
  line-height: 1.5;
}
a.contact-detail__value { color: var(--clr-green); }
a.contact-detail__value:hover { text-decoration: underline; }

.contact-form-wrap {
  background: var(--clr-cream);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--clr-border);
}
.cform__field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.cform__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--clr-text-muted);
}
.cform__input,
.cform__textarea {
  font-family: var(--ff-body);
  font-size: 15px;
  padding: 12px 16px;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius);
  background: var(--clr-white);
  color: var(--clr-text);
  transition: border-color 0.2s;
  width: 100%;
}
.cform__input:focus,
.cform__textarea:focus { outline: none; border-color: var(--clr-green); }
.cform__textarea { min-height: 140px; resize: vertical; }
.cform__submit-btn { width: 100%; justify-content: center; padding: 16px; margin-top: 4px; }

@media (max-width: 768px) {
  .contact-layout__grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-wrap { padding: 24px; }
}

/* ============================================================
   WHERE TO BUY — MAP
   ============================================================ */
/* ── Locator bar ─────────────────────────────────────────── */
.locator-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.locator-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient-hero);
  color: #fff;
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 28px;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(46,42,126,0.3);
  transition: opacity 0.2s, transform 0.2s;
}
.locator-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.locator-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.locator-btn.is-loading svg { animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Nearest results — top 3 ─────────────────────────────── */
.locator-result { width: 100%; max-width: 680px; }
.nearest-results-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  text-align: center;
  margin-bottom: 14px;
}
.nearest-results-list { display: flex; flex-direction: column; gap: 10px; }
.nearest-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  box-shadow: 0 2px 12px rgba(46,42,126,0.07);
  transition: box-shadow 0.2s;
}
.nearest-card--top {
  border-color: var(--clr-indigo);
  box-shadow: 0 4px 20px rgba(46,42,126,0.15);
}
.nearest-card__rank {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--clr-cream-dark);
  color: var(--clr-text-muted);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nearest-card--top .nearest-card__rank {
  background: var(--gradient-hero);
  color: #fff;
}
.nearest-card__body { flex: 1; min-width: 0; }
.nearest-card__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--clr-indigo);
  margin-bottom: 2px;
}
.nearest-card__addr { font-size: 13px; color: var(--clr-text-muted); }
.nearest-card__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}
.nearest-card__dist {
  font-size: 13px;
  font-weight: 700;
  color: var(--clr-indigo);
}
.nearest-card__cta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  background: var(--gradient-hero);
  padding: 7px 16px;
  border-radius: 100px;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.nearest-card__cta:hover { opacity: 0.82; }
.locator-error {
  font-size: 14px;
  color: #cc3366;
  text-align: center;
  padding: 12px 20px;
  background: #fff0f4;
  border: 1px solid #ffb3cc;
  border-radius: var(--radius);
}

/* ── County filter pills ─────────────────────────────────── */
.county-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 40px 0 20px;
}
.county-filter {
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 9px 20px;
  border-radius: 100px;
  border: 1.5px solid var(--clr-border);
  background: #fff;
  color: var(--clr-text-muted);
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s, color 0.18s, box-shadow 0.18s;
}
.county-filter:hover {
  border-color: var(--clr-indigo);
  color: var(--clr-indigo);
}
.county-filter.is-active {
  background: var(--gradient-hero);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 3px 12px rgba(46,42,126,0.25);
}
.pharmacy-count {
  text-align: center;
  font-size: 13px;
  color: var(--clr-text-muted);
  margin-bottom: 32px;
  min-height: 20px;
}

/* ── Pharmacy card (directory) ───────────────────────────── */

/* ── Map ─────────────────────────────────────────────────── */
#vitnua-map {
  height: 520px;
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--clr-border);
}

/* ── Pharmacy markers ────────────────────────────────────── */
.vitnua-marker div {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gradient-hero);
  border: 3px solid #fff;
  box-shadow: 0 2px 12px rgba(46,42,126,0.45);
  transition: transform 0.15s;
}
.vitnua-marker:hover div { transform: scale(1.25); }

/* ── "You are here" marker ───────────────────────────────── */
.user-marker div {
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #6fcbdc;
  border: 3px solid #fff;
  box-shadow: 0 2px 12px rgba(111,203,220,0.5);
}
.user-marker__pulse {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: rgba(111,203,220,0.25);
  animation: pulse-ring 1.8s ease-out infinite;
  border: none !important;
  box-shadow: none !important;
}
@keyframes pulse-ring {
  0%   { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}

@media (max-width: 640px) {
  #vitnua-map { height: 340px; }
  .nearest-card { flex-wrap: wrap; }
  .nearest-card__right { flex-direction: row; align-items: center; gap: 12px; width: 100%; }
  .county-filters { gap: 8px; }
  .county-filter { font-size: 12px; padding: 7px 14px; }
}

/* ============================================================
   PRODUCTS GRID — full catalog (13 items)
   ============================================================ */
.products-grid--full {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

/* ============================================================
   MOBILE TOGGLE — is-open alias for is-active
   ============================================================ */
.site-nav__toggle.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.site-nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.site-nav__toggle.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
body.nav-open { overflow: hidden; }

/* ============================================================
   BODY COLOUR FOR PRODUCT DETAIL CLUES
   ============================================================ */
.clr-body { color: var(--clr-text-muted); }

/* Leaflet override */
.leaflet-popup-content-wrapper {
  border-radius: 12px !important;
  box-shadow: 0 8px 32px rgba(46,42,126,0.18) !important;
  font-family: var(--ff-body) !important;
  border: 1px solid var(--clr-border) !important;
}
.leaflet-popup-tip-container { display: none; }
.leaflet-popup-content {
  font-size: 14px;
  line-height: 1.6;
  margin: 16px 18px !important;
}
.leaflet-popup-content strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--clr-indigo);
  margin-bottom: 2px;
}
.popup-addr {
  font-size: 13px;
  color: var(--clr-text-muted);
}
.popup-directions {
  display: block;
  width: fit-content;
  margin-top: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #ffffff !important;
  background: var(--gradient-hero);
  padding: 7px 16px;
  border-radius: 100px;
  transition: opacity 0.2s;
}
.popup-directions:hover { opacity: 0.85; }

/* ============================================================
   TRUST STRIP — per-item brand colours
   ============================================================ */
.trust-item:nth-child(1) { color: var(--clr-indigo); }
.trust-item:nth-child(1) svg { color: var(--clr-indigo); }
.trust-item:nth-child(2) { color: var(--clr-pink-dark); }
.trust-item:nth-child(2) svg { color: var(--clr-pink); }
.trust-item:nth-child(3) { color: var(--clr-cyan-dark); }
.trust-item:nth-child(3) svg { color: var(--clr-cyan); }
.trust-item:nth-child(4) { color: var(--clr-yellow-dark); }
.trust-item:nth-child(4) svg { color: var(--clr-yellow); }

/* ============================================================
   ABOUT — attribute item labels multicolour
   ============================================================ */
.attribute-item:nth-child(1) .attribute-item__label {
  background: var(--clr-cyan-light);
  color: var(--clr-cyan-dark);
}
.attribute-item:nth-child(2) .attribute-item__label {
  background: var(--clr-yellow-light);
  color: var(--clr-yellow-dark);
}
.attribute-item:nth-child(3) .attribute-item__label {
  background: var(--clr-pink-light);
  color: var(--clr-pink-dark);
}
.attribute-item:nth-child(4) .attribute-item__label {
  background: var(--clr-indigo-light);
  color: var(--clr-indigo);
}

/* ============================================================
   HERO — 3-product stacked visual
   ============================================================ */
.hero__products {
  position: relative;
  width: 340px;
  height: 420px;
  flex-shrink: 0;
}
.hero__product {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__product img {
  width: 130px;
  height: 130px;
  object-fit: contain;
  display: block;
}
.hero__product--back {
  top: 0;
  left: 0;
  transform: rotate(-14deg) scale(0.88);
  box-shadow: 0 16px 50px rgba(0,0,0,0.22), 0 4px 16px rgba(0,0,0,0.12);
  opacity: 0.82;
  z-index: 1;
}
.hero__product--mid {
  top: 60px;
  left: 50px;
  transform: rotate(8deg) scale(0.94);
  box-shadow: 0 20px 60px rgba(0,0,0,0.26), 0 6px 20px rgba(0,0,0,0.14);
  opacity: 0.9;
  z-index: 2;
}
.hero__product--front {
  top: 110px;
  left: 110px;
  transform: rotate(-4deg);
  box-shadow: 0 32px 80px rgba(0,0,0,0.30), 0 8px 24px rgba(0,0,0,0.16);
  z-index: 3;
}
.hero__product--front img { width: 160px; height: 160px; }

@media (max-width: 768px) {
  .hero__products {
    width: 240px;
    height: 300px;
  }
  .hero__product img { width: 90px; height: 90px; }
  .hero__product--front img { width: 110px; height: 110px; }
  .hero__product--back { transform: rotate(-14deg) scale(0.85); }
  .hero__product--mid { top: 44px; left: 36px; }
  .hero__product--front { top: 80px; left: 78px; }
}

/* ============================================================
   HERO SHOWCASE — orbit rings + floating studio globe
   ============================================================ */
.hero__showcase {
  position: relative;
  width: 480px;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero__glow {
  position: absolute;
  width: 395px; height: 395px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111,203,220,0.32) 0%, rgba(111,203,220,0.10) 50%, transparent 75%);
  filter: blur(28px);
  pointer-events: none;
  z-index: 0;
}
/* Orbital rings — three concentric spinning rings */
.hero__ring {
  position: absolute;
  width: 430px; height: 430px;
  border-radius: 50%;
  border: 1px solid rgba(111,203,220,0.3);
  animation: ring-orbit 24s linear infinite;
  pointer-events: none;
  z-index: 1;
}
.hero__ring::before {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--clr-cyan);
  box-shadow: 0 0 28px 10px rgba(111,203,220,0.85), 0 0 8px 3px rgba(111,203,220,1);
  top: -9px; left: 50%;
  transform: translateX(-50%);
}
.hero__ring::after {
  content: '';
  position: absolute;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--clr-yellow);
  box-shadow: 0 0 22px 8px rgba(253,205,7,0.85), 0 0 6px 2px rgba(253,205,7,1);
  bottom: -7px; right: 24%;
}
.hero__ring--2 {
  width: 360px; height: 360px;
  border-color: rgba(237,41,121,0.25);
  animation-duration: 15s;
  animation-direction: reverse;
}
.hero__ring--2::before {
  width: 15px; height: 15px;
  background: var(--clr-pink);
  box-shadow: 0 0 24px 9px rgba(237,41,121,0.85), 0 0 7px 2px rgba(237,41,121,1);
  top: -8px; left: 30%;
  transform: none;
}
.hero__ring--2::after {
  width: 9px; height: 9px;
  background: var(--clr-yellow);
  box-shadow: 0 0 16px 6px rgba(253,205,7,0.8);
  bottom: -5px; left: 16%;
  right: auto;
}
.hero__ring--3 {
  width: 470px; height: 470px;
  border-color: rgba(102,86,164,0.2);
  animation-duration: 32s;
}
.hero__ring--3::before {
  width: 11px; height: 11px;
  background: var(--clr-indigo-mid);
  box-shadow: 0 0 20px 7px rgba(102,86,164,0.9), 0 0 6px 2px rgba(102,86,164,1);
  top: -6px; left: 68%;
  transform: none;
}
.hero__ring--3::after {
  width: 8px; height: 8px;
  background: var(--clr-pink);
  box-shadow: 0 0 16px 5px rgba(237,41,121,0.85);
  bottom: -4px; left: 58%;
}
/* Globe interior — atmospheric lighting, not a flat dark circle */
.hero__showcase-circle {
  width: 360px; height: 360px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 3;
  background:
    radial-gradient(circle at 28% 18%, rgba(111,203,220,0.18) 0%, transparent 48%),
    radial-gradient(circle at 72% 82%, rgba(237,41,121,0.14) 0%, transparent 42%),
    radial-gradient(circle at 78% 22%, rgba(253,205,7,0.09) 0%, transparent 36%),
    radial-gradient(ellipse at 50% 55%, #4a2490 0%, #311878 35%, #1e1058 65%, #130a40 100%);
  box-shadow:
    0 0 0 6px rgba(255,255,255,0.07),
    0 0 0 14px rgba(255,255,255,0.03),
    0 30px 80px rgba(0,0,0,0.55),
    0 0 100px rgba(111,203,220,0.22);
  animation: none;
}
/* Subtle concentric depth rings + floor glow */
.hero__showcase-circle::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 115%, rgba(111,203,220,0.2) 0%, transparent 50%),
    radial-gradient(circle at 50% -15%, rgba(102,86,164,0.12) 0%, transparent 45%);
  box-shadow:
    inset 0 0 0 55px rgba(255,255,255,0.014),
    inset 0 0 0 110px rgba(255,255,255,0.01),
    inset 0 0 0 165px rgba(255,255,255,0.006);
  pointer-events: none;
  z-index: 1;
}
/* Edge vignette — blends bottle edges into globe */
.hero__showcase-circle::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 50%,
    transparent 48%, rgba(13,10,48,0.38) 75%, rgba(13,10,48,0.72) 100%
  );
  pointer-events: none;
  z-index: 10;
}
.hero__group {
  position: relative;
  width: 100%;
  height: 100%;
  filter: saturate(0.88) brightness(0.97);
}
/* Transparent PNG — no blend modes or clip tricks needed */
.hero__bottle {
  position: absolute;
}
/* Dark purple drop-shadow dissolves bottle edges into the globe interior */
.hero__bottle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 14px rgba(20,8,52,0.92));
}
/* Side bottles slightly dimmed for depth */
.hero__bottle--left,
.hero__bottle--right {
  opacity: 0.88;
}
/* Left bottle */
.hero__bottle--left {
  width: 144px; height: 255px;
  bottom: 12%; left: 3%;
  transform: rotate(-4deg);
  z-index: 2;
}
/* Centre hero bottle — taller, perfectly vertical */
.hero__bottle--center {
  width: 164px; height: 292px;
  bottom: 12%; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
/* Right bottle */
.hero__bottle--right {
  width: 144px; height: 255px;
  bottom: 12%; right: 3%;
  transform: rotate(4deg);
  z-index: 2;
}

@keyframes ring-orbit {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@media (max-width: 768px) {
  .hero__showcase { width: 310px; height: 310px; }
  .hero__ring     { width: 300px; height: 300px; }
  .hero__ring--2  { width: 248px; height: 248px; }
  .hero__ring--3  { width: 308px; height: 308px; }
  .hero__showcase-circle { width: 210px; height: 210px; }
  .hero__bottle--left   { width: 69px; height: 122px; bottom: 10%; }
  .hero__bottle--center { width: 79px; height: 140px; bottom: 10%; }
  .hero__bottle--right  { width: 69px; height: 122px; bottom: 10%; }
}
