/* ============================================================
   RUMBACLAAT — Theme layer (loaded AFTER Bootstrap)
   Migrated design system + Bootstrap remap + a11y fixes.
   See bootstrap5-migration skill: references/bootstrap5-theming.md
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* ─── Design Tokens (preserved from original) ─────────────── */
:root {
  --bg:        #0E0E0E;
  --bg-card:   #161616;
  --bg-card2:  #1C1C1C;
  --bg-card3:  #111111;
  --gold:      #C6A75E;
  --gold-hi:   #D8BE7E;   /* lighter gold for text on dark — better contrast */
  --gold-lt:   rgba(198,167,94,0.10);
  --gold-md:   rgba(198,167,94,0.20);
  --gold-bdr:  rgba(198,167,94,0.12);
  --text:      #F5F0E8;
  --text-muted:#B8A98F;   /* lightened from #9A8A72 to clear 4.5:1 on --bg */
  --text-dim:  #8A7A66;   /* lightened from #5A4A3A for legibility */
  --bronze:    #CD7F32;
  --silver:    #C0C0C0;
  --green:     #4ade80;
  --red:       #F26d6d;   /* lightened red to meet contrast on dark */
  --yellow:    #fbbf24;
  --serif:     'Cormorant Garamond', Georgia, serif;
  --sans:      'Inter', system-ui, sans-serif;
  --radius:    12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --nav-h:     68px;

  /* Remap Bootstrap's CSS variables onto the brand */
  --bs-body-bg: var(--bg);
  --bs-body-color: var(--text);
  --bs-primary: var(--gold);
  --bs-border-color: var(--gold-bdr);
  --bs-body-font-family: var(--sans);
  --bs-border-radius: var(--radius);
  --bs-link-color: var(--gold-hi);
  --bs-link-hover-color: var(--gold);
  --bs-emphasis-color: var(--text);
  --bs-secondary-color: var(--text-muted);
}

/* ─── Base ─────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

h1,h2,h3,h4 { font-family: var(--serif); font-weight: 600; color: var(--text); line-height: 1.1; }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.125rem; }
p  { color: var(--text-muted); line-height: 1.75; }

/* ─── Accessibility: focus, skip link, reduced motion ─────── */
/* Strong visible focus everywhere — WCAG 2.2 SC 2.4.7 / 2.4.13 */
*:focus-visible {
  outline: 3px solid var(--gold-hi);
  outline-offset: 2px;
  border-radius: 4px;
}
/* don't show focus ring on mouse click, only keyboard */
:focus:not(:focus-visible) { outline: none; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 2000;
  background: var(--gold); color: #0E0E0E; font-weight: 600;
  padding: 10px 18px; border-radius: var(--radius);
  transition: top .2s;
}
.skip-link:focus { top: 12px; }

/* Offset anchored/focused targets so the fixed nav doesn't hide them — SC 2.4.11 */
:target, [id] { scroll-margin-top: calc(var(--nav-h) + 16px); }

.visually-hidden {
  position: absolute !important; 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: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .parallax-section { background-attachment: scroll !important; }
}

/* ─── Eyebrow / text helpers ──────────────────────────────── */
.eyebrow {
  font-family: var(--sans); font-size: 0.6875rem; letter-spacing: 0.28em;
  color: var(--gold-hi); font-weight: 500; display: block; margin-bottom: 10px;
}
.gold { color: var(--gold-hi); }
.text-muted-brand { color: var(--text-muted); }
.text-dim { color: var(--text-dim); }
.text-green { color: var(--green); }
.text-red { color: var(--red); }

/* ─── Layout helpers (kept for content sections) ──────────── */
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.has-fixed-nav { padding-top: var(--nav-h); }

/* ─── Buttons (brand) — built on Bootstrap .btn ───────────── */
.btn { font-family: var(--sans); font-weight: 600; border-radius: var(--radius); }
.btn-gold { background: var(--gold); color: #0E0E0E; border: 1px solid var(--gold); }
.btn-gold:hover, .btn-gold:focus { background: var(--gold-hi); color: #0E0E0E; }
.btn-outline-gold { background: transparent; border: 1px solid var(--gold-md); color: var(--text); }
.btn-outline-gold:hover, .btn-outline-gold:focus { border-color: var(--gold); color: var(--gold-hi); }
.btn-ghost { background: var(--gold-lt); border: 1px solid var(--gold-md); color: var(--gold-hi); }
.btn-lg { padding: 16px 36px; font-size: 1.0625rem; border-radius: 14px; }
.btn-sm { padding: 8px 16px; font-size: 0.8125rem; border-radius: 10px; }
.btn-danger-soft { background: rgba(242,109,109,0.12); border: 1px solid rgba(242,109,109,0.35); color: var(--red); }

/* ─── Cards (brand) ───────────────────────────────────────── */
.card-brand {
  background: var(--bg-card); border: 1px solid var(--gold-bdr);
  border-radius: var(--radius-lg); padding: 24px;
}
.card-brand:hover { border-color: rgba(198,167,94,0.30); }

/* ─── Badges (brand) ──────────────────────────────────────── */
.badge-brand {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 10px; border-radius: 999px; font-size: 0.6875rem; font-weight: 600;
  background: var(--gold-lt); border: 1px solid var(--gold-md); color: var(--gold-hi);
}
.badge-red { background: rgba(242,109,109,0.12); border-color: rgba(242,109,109,0.35); color: var(--red); }

/* ─── Eyebrow flourish ────────────────────────────────────── */
.eyebrow-center {
  display: flex; align-items: center; justify-content: center; gap: 16px;
}
.eyebrow-center::before, .eyebrow-center::after {
  content: ''; width: 48px; height: 1px;
}
.eyebrow-center::before { background: linear-gradient(90deg, transparent, var(--gold)); }
.eyebrow-center::after  { background: linear-gradient(90deg, var(--gold), transparent); }

/* ─── Navbar (brand, on Bootstrap navbar) ─────────────────── */
.navbar-brand-rc {
  background: rgba(10,10,10,0.97);
  -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gold-bdr);
  min-height: var(--nav-h);
}
.navbar-brand-rc .navbar-brand {
  font-family: var(--serif); font-size: 1.2rem; font-weight: 700;
  letter-spacing: 0.12em; color: var(--text); display: flex; align-items: center; gap: 10px;
}
.navbar-brand-rc .navbar-brand svg { color: var(--gold); }
.navbar-brand-rc .nav-link {
  font-size: 0.875rem; color: #D0C4B4; letter-spacing: 0.05em;
}
.navbar-brand-rc .nav-link:hover,
.navbar-brand-rc .nav-link:focus,
.navbar-brand-rc .nav-link[aria-current="page"] { color: var(--gold-hi); }
.nav-icon-btn {
  width: 40px; height: 40px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gold-lt); border: 1px solid var(--gold-md); color: var(--gold-hi);
  position: relative;
}
.nav-join-btn {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 8px 16px; border-radius: 999px;
  background: var(--gold-lt); border: 1px solid rgba(198,167,94,0.35);
  color: var(--gold-hi); font-size: 0.8125rem; font-weight: 600;
}
.nav-join-btn:hover, .nav-join-btn:focus { background: var(--gold-md); color: var(--gold-hi); }
.cart-count {
  position: absolute; top: -4px; right: -4px; min-width: 18px; height: 18px; padding: 0 4px;
  background: var(--gold); border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: #0E0E0E;
}
/* themed Bootstrap toggler */
.navbar-brand-rc .navbar-toggler { border-color: var(--gold-md); color: var(--gold); padding: 8px 10px; }
.navbar-brand-rc .navbar-toggler:focus { box-shadow: 0 0 0 3px var(--gold-hi); }
.navbar-brand-rc .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%23C6A75E' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* ─── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; text-align: center;
}
.hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  filter: brightness(.35) saturate(.7);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(14,14,14,.3) 0%, rgba(14,14,14,.5) 50%, #0E0E0E 100%);
}
.hero-content { position: relative; z-index: 2; padding: 0 24px; max-width: 900px; }
.hero-lede { color: rgba(245,240,232,.78); font-size: clamp(1rem,2vw,1.2rem); max-width: 520px; margin: 16px auto 0; line-height: 1.8; }

/* ─── Trust bar ───────────────────────────────────────────── */
.trust-bar {
  display: flex; gap: 32px; justify-content: center; flex-wrap: wrap;
  padding: 32px 0; border-top: 1px solid var(--gold-bdr); border-bottom: 1px solid var(--gold-bdr);
}
.trust-item { display: flex; align-items: center; gap: 10px; font-size: .875rem; color: var(--text-muted); }
.trust-icon { color: var(--gold); }

/* ─── Parallax ────────────────────────────────────────────── */
.parallax-section {
  position: relative; display: flex; align-items: center; justify-content: center; text-align: center;
  background-attachment: fixed; background-size: cover; background-position: center; background-repeat: no-repeat;
}
.parallax-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,14,14,0.72) 0%, rgba(14,14,14,0.45) 50%, rgba(14,14,14,0.78) 100%);
}
.parallax-content { position: relative; z-index: 2; padding: 0 24px; max-width: 740px; }
.parallax-content h2 { font-size: clamp(2rem,5vw,4rem); line-height: 1.1; }
.parallax-content p { margin: 16px auto 0; font-size: 1rem; color: rgba(245,240,232,0.78); max-width: 520px; line-height: 1.75; }

/* ─── Product cards ───────────────────────────────────────── */
.product-card {
  background: var(--bg-card); border: 1px solid var(--gold-bdr);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform .25s, border-color .25s; height: 100%;
  display: flex; flex-direction: column;
}
.product-card:hover, .product-card:focus-within { transform: translateY(-4px); border-color: rgba(198,167,94,.3); }
.product-card-img { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.product-card:hover .product-card-img img { transform: scale(1.04); }
.product-card-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.product-card-body h3 { font-family: var(--serif); font-size: 1.125rem; margin-bottom: 4px; }
.product-card-body .subtitle { font-size: 0.8125rem; color: var(--text-muted); margin-bottom: 12px; }
.product-card-price {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto; padding-top: 16px; border-top: 1px solid var(--gold-bdr);
}
.price { font-family: var(--serif); font-size: 1.375rem; font-weight: 700; color: var(--gold-hi); }
.price-member { font-size: 0.75rem; color: var(--text-muted); }
.stars { color: var(--gold); letter-spacing: 2px; }
.stretched-card-link::after {
  content: ''; position: absolute; inset: 0;
}

/* ─── Featured tile / image overlay ───────────────────────── */
.img-overlay { position: relative; overflow: hidden; border-radius: var(--radius-lg); height: 100%; }
.img-overlay img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.img-overlay:hover img, .img-overlay:focus-within img { transform: scale(1.05); }
.img-overlay-text {
  position: absolute; inset: 0; padding: 24px;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: linear-gradient(to top, rgba(0,0,0,.78) 0%, transparent 60%);
}
.img-overlay-text h4 { font-family: var(--serif); margin-bottom: 4px; }
.img-overlay-text p { font-size: .8125rem; color: rgba(245,240,232,.82); }

/* ─── Membership tier strip ───────────────────────────────── */
.tier-strip-card {
  background: var(--bg-card); border: 1px solid var(--gold-bdr);
  border-radius: var(--radius-lg); padding: 20px; text-align: center;
  transition: border-color .2s; height: 100%;
}
.tier-strip-card:hover { border-color: var(--gold-md); }
.tier-name { font-family: var(--serif); font-size: 1.25rem; font-weight: 700; margin-bottom: 6px; }
.tier-price { font-size: 1.125rem; font-weight: 700; color: var(--text); font-family: var(--serif); }
.tier-bronze { color: var(--bronze); }
.tier-silver { color: var(--silver); }
.tier-gold, .tier-black { color: var(--gold-hi); }

/* ─── Footer ──────────────────────────────────────────────── */
.site-footer { background: #0A0A0A; border-top: 1px solid var(--gold-bdr); padding: 64px 0 32px; }
.footer-logo { font-family: var(--serif); font-size: 1.25rem; font-weight: 700; letter-spacing: 0.12em; color: var(--text); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.footer-logo svg { color: var(--gold); }
.footer-col h2 { font-family: var(--sans); font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.22em; color: var(--text-dim); margin-bottom: 16px; text-transform: uppercase; }
.footer-col a { display: block; margin-bottom: 10px; font-size: 0.875rem; color: var(--text-muted); }
.footer-col a:hover, .footer-col a:focus { color: var(--gold-hi); }
.footer-bottom { padding-top: 24px; border-top: 1px solid var(--gold-bdr); font-size: 0.75rem; color: var(--text-dim); }
.footer-bottom a { color: var(--text-dim); }
.footer-bottom a:hover, .footer-bottom a:focus { color: var(--gold-hi); }

/* ─── Cookie banner ───────────────────────────────────────── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1050;
  background: var(--bg-card); border-top: 1px solid var(--gold-bdr); padding: 20px 24px;
}
.cookie-banner p { font-size: 0.875rem; color: var(--text-muted); margin: 0; }

/* ─── Age gate (accessible dialog styles) ─────────────────── */
.age-gate-backdrop {
  position: fixed; inset: 0; z-index: 2000;
  background: #0E0E0E;
  display: flex; align-items: center; justify-content: center; padding: 24px;
}
.age-gate-box { max-width: 520px; text-align: center; }
.age-gate-box .logo { font-family: var(--serif); font-size: 1.4rem; font-weight: 700; letter-spacing: 0.12em; color: var(--text); display: inline-flex; align-items: center; gap: 10px; margin-bottom: 24px; }
.age-gate-box .logo svg { color: var(--gold); }
.age-gate-box h1 { margin-bottom: 16px; }
.age-gate-box .lede { color: var(--text-muted); margin-bottom: 24px; }
.age-gate-fields { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 8px; }
.age-gate-fields .form-control { max-width: 90px; text-align: center; }
.age-gate-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 16px; }
.age-gate-box .legal { font-size: 0.75rem; color: var(--text-dim); margin-top: 24px; }
.age-gate-error { color: var(--red); font-size: 0.875rem; min-height: 1.2em; margin-top: 8px; }

/* ─── Brand form controls on Bootstrap ────────────────────── */
.form-control, .form-select {
  background: var(--bg-card2); border: 1px solid var(--gold-bdr); color: var(--text);
}
.form-control:focus, .form-select:focus {
  background: var(--bg-card2); border-color: var(--gold); color: var(--text);
  box-shadow: 0 0 0 3px var(--gold-md);
}
.form-control::placeholder { color: var(--text-dim); }
.form-label { font-size: 0.8125rem; color: var(--text-muted); }

/* ─── Scroll reveal ───────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .5s, transform .5s; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ─── Toast / live region ─────────────────────────────────── */
.toast-rc {
  position: fixed; bottom: 80px; right: 24px; z-index: 1080;
  background: var(--bg-card); border: 1px solid var(--gold-md); color: var(--text);
  padding: 12px 20px; border-radius: 12px; font-size: .875rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.5); opacity: 0; transition: opacity .3s;
}
.toast-rc.show { opacity: 1; }

/* ─── Responsive tweaks beyond Bootstrap grid ─────────────── */
@media (max-width: 575.98px) {
  .section { padding: 56px 0; }
  .hero { min-height: 88vh; }
  .trust-bar { gap: 18px 24px; }
}

/* ─── Announcement ticker (home strip) ────────────────────── */
.announcement-ticker {
  background: linear-gradient(90deg, rgba(198,167,94,.04), rgba(198,167,94,.12), rgba(198,167,94,.04));
  border-top: 1px solid var(--gold-bdr);
  border-bottom: 1px solid var(--gold-bdr);
  overflow: hidden;
}
.announcement-ticker .at-inner {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0; max-width: 1240px; margin: 0 auto;
}
.announcement-ticker .at-viewport {
  flex: 1; position: relative; min-height: 1.6em; overflow: hidden;
}
.announcement-ticker .at-msg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  flex-wrap: wrap; text-align: center;
  opacity: 0; transform: translateY(8px);
  transition: opacity .6s, transform .6s;
  pointer-events: none;
}
.announcement-ticker .at-msg.show { opacity: 1; transform: none; pointer-events: auto; }
.announcement-ticker .at-ic { color: var(--gold-hi); flex-shrink: 0; display: inline-flex; }
.announcement-ticker .at-lead { font-weight: 600; color: var(--text); }
.announcement-ticker .at-det { color: var(--text-muted); font-size: .875rem; }
.announcement-ticker .at-toggle {
  background: transparent; border: 1px solid var(--gold-bdr); color: var(--text-muted);
  width: 34px; height: 34px; border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.announcement-ticker .at-toggle:hover,
.announcement-ticker .at-toggle:focus { border-color: var(--gold); color: var(--gold-hi); }
@media (prefers-reduced-motion: reduce) {
  .announcement-ticker .at-msg { transition: none; }
}

/* ─── Brand logos ─────────────────────────────────────────── */
.brand-logo {
  display: block; width: auto; max-width: 100%;
  height: 26px;
}
.site-footer .brand-logo { height: 30px; margin-bottom: 14px; }
.navbar-brand { display: inline-flex; align-items: center; padding: 4px 0; }
.navbar-brand:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; border-radius: 4px; }
.hero-crest {
  display: block; margin: 0 auto 22px;
  width: 180px; height: auto;
  opacity: .95;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,.45));
}
.age-gate-crest {
  display: block; margin: 0 auto 8px;
  width: 130px; height: auto;
}
@media (max-width: 575.98px) {
  .brand-logo { height: 22px; }
  .hero-crest { width: 140px; }
}

/* ─── Sale pricing ─────────────────────────────────────────
   Pattern: pair the regular and sale prices, with hidden
   screen-reader labels so the meaning is explicit (not just
   visual strike-through). Saving callout is gold; sale badge
   sits on cards/hero. Time-bound notes use the dim text. */
.price-pair {
  display: inline-flex; align-items: baseline; gap: 10px;
  flex-wrap: wrap;
}
.price-pair .price-regular {
  font-family: var(--serif); font-size: 1.05rem;
  color: var(--text-dim); text-decoration: line-through;
  text-decoration-thickness: 1.5px; text-decoration-color: rgba(138,122,102,.7);
}
.price-pair .price-sale {
  font-family: var(--serif); font-weight: 700;
  color: var(--red-soft, #F26D6D);   /* fall back if not in palette */
  font-size: 1.375rem;
}
.price-pair.large .price-regular { font-size: 1.4rem; }
.price-pair.large .price-sale   { font-size: 2rem; }
.price-saving {
  display: inline-block; padding: 3px 9px; border-radius: 999px;
  background: rgba(242,109,109,.12); border: 1px solid rgba(242,109,109,.35);
  color: var(--red-soft, #F26D6D);
  font-size: .6875rem; font-weight: 700; letter-spacing: .04em;
  margin-left: 4px;
}
.sale-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: rgba(242,109,109,.92); color: #fff;
  font-size: .65rem; font-weight: 700; letter-spacing: .08em;
  padding: 5px 11px; border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,.4);
}
.sale-ends {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .75rem; color: var(--text-muted); margin-top: 4px;
}
.sale-ends::before { content: '⏱'; }
.sale-ends time { color: var(--gold-hi); font-weight: 600; }
/* Cart line "on sale" indicator */
.cart-line .sale-tag {
  display: inline-block; font-size: .65rem; letter-spacing: .06em;
  background: rgba(242,109,109,.12); color: var(--red-soft, #F26D6D);
  padding: 2px 7px; border-radius: 4px; margin-left: 6px; font-weight: 600;
}

/* ─── Hero carousel ──────────────────────────────────────── */
.hero-carousel {
  position: relative;
  --dir: 1;
  /* Cap height so dots + arrows always sit inside the viewport.
     dvh accounts for mobile browser chrome; vh is the fallback. */
  height: 88vh;
  height: 88dvh;
  min-height: 580px;
  max-height: 820px;
  overflow: hidden; isolation: isolate;
}
.hero-carousel .hc-slides { position: absolute; inset: 0; }

/* SLIDE-STYLE TRANSITIONS
   Inactive slides sit off-screen on the side determined by direction.
   Transitions only apply to .active and .leaving so changing --dir
   doesn't silently animate the resting off-screen slides. */
.hero-carousel .hc-slide {
  position: absolute; inset: 0;
  transform: translateX(calc(var(--dir) * 100%));
  opacity: 0;
  will-change: transform;
}
.hero-carousel .hc-slide.active,
.hero-carousel .hc-slide.leaving {
  transition:
    transform 800ms cubic-bezier(.65,.05,.35,1),
    opacity 600ms ease;
}
.hero-carousel .hc-slide.active {
  transform: translateX(0);
  opacity: 1;
}
.hero-carousel .hc-slide.leaving {
  transform: translateX(calc(var(--dir) * -100%));
  opacity: 1;
}
.hero-carousel .hc-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.04);
  transition: transform 12s ease-out;     /* slow Ken-Burns zoom while active */
}
.hero-carousel .hc-slide.active .hc-bg { transform: scale(1.10); }
.hero-carousel .hc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(14,14,14,.35) 0%, rgba(14,14,14,.55) 60%, rgba(14,14,14,.85) 100%);
}
.hero-carousel .hc-content {
  position: relative; z-index: 2;
  height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 90px 20px 110px;
  max-width: 880px; margin: 0 auto;
}
/* Anchored crest stays put across slides */
.hero-carousel .hc-crest-fixed {
  position: absolute; top: 0; left: 0; right: 0; z-index: 3;
  display: flex; justify-content: center; pointer-events: none;
  padding-top: 110px;
}
.hero-carousel .hc-crest-fixed img { width: 180px; height: auto; opacity: .95; filter: drop-shadow(0 2px 12px rgba(0,0,0,.45)); }

.hero-carousel .hc-eyebrow {
  font-size: .6875rem; letter-spacing: .28em;
  color: var(--gold-hi); font-weight: 500;
  margin-bottom: 14px; opacity: 0; transform: translateY(10px);
  transition: opacity 600ms 200ms ease, transform 600ms 200ms ease;
}
.hero-carousel .hc-h {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(2.2rem, 5.5vw, 4.5rem); line-height: 1.05;
  color: var(--text); margin: 0;
  opacity: 0; transform: translateY(14px);
  transition: opacity 700ms 300ms ease, transform 700ms 300ms ease;
}
.hero-carousel .hc-h em { color: var(--gold-hi); font-style: italic; }
.hero-carousel .hc-lede {
  color: var(--text-muted); max-width: 540px;
  margin: 18px auto 28px; font-size: 1.0625rem;
  opacity: 0; transform: translateY(10px);
  transition: opacity 700ms 450ms ease, transform 700ms 450ms ease;
}
.hero-carousel .hc-ctas {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  opacity: 0; transform: translateY(10px);
  transition: opacity 700ms 600ms ease, transform 700ms 600ms ease;
}
.hero-carousel .hc-slide.active .hc-eyebrow,
.hero-carousel .hc-slide.active .hc-h,
.hero-carousel .hc-slide.active .hc-lede,
.hero-carousel .hc-slide.active .hc-ctas { opacity: 1; transform: none; }

/* Controls */
.hero-carousel .hc-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(14,14,14,.55); border: 1px solid rgba(198,167,94,.35);
  color: var(--text); display: flex; align-items: center; justify-content: center;
  z-index: 4; transition: background .2s, border-color .2s;
  backdrop-filter: blur(4px);
}
.hero-carousel .hc-arrow:hover, .hero-carousel .hc-arrow:focus-visible {
  background: rgba(14,14,14,.85); border-color: var(--gold); color: var(--gold-hi);
  outline: 2px solid var(--gold); outline-offset: 2px;
}
.hero-carousel .hc-prev { left: 20px; }
.hero-carousel .hc-next { right: 20px; }

.hero-carousel .hc-dots {
  position: absolute; left: 50%; transform: translateX(-50%);
  bottom: 36px; z-index: 4;
  display: flex; gap: 10px; align-items: center;
  background: rgba(14,14,14,.55); padding: 8px 12px; border-radius: 999px;
  border: 1px solid rgba(198,167,94,.2); backdrop-filter: blur(4px);
}
.hero-carousel .hc-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(245,240,232,.35); border: 0; padding: 0;
  cursor: pointer; transition: background .25s, width .25s;
}
.hero-carousel .hc-dot:hover, .hero-carousel .hc-dot:focus-visible {
  background: rgba(216,190,126,.6); outline: 2px solid var(--gold); outline-offset: 3px;
}
.hero-carousel .hc-dot[aria-current="true"] {
  background: var(--gold-hi); width: 28px; border-radius: 999px;
}
.hero-carousel .hc-toggle {
  background: transparent; border: 0; color: var(--text-muted);
  width: 26px; height: 26px; padding: 0;
  display: inline-flex; align-items: center; justify-content: center;
  margin-left: 4px;
}
.hero-carousel .hc-toggle:hover, .hero-carousel .hc-toggle:focus-visible {
  color: var(--gold-hi); outline: 2px solid var(--gold); outline-offset: 2px; border-radius: 4px;
}

@media (max-width: 720px) {
  .hero-carousel {
    height: 78vh;
    height: 78dvh;
    min-height: 540px;
    max-height: 760px;
  }
  .hero-carousel .hc-arrow { width: 38px; height: 38px; }
  .hero-carousel .hc-prev { left: 8px; }
  .hero-carousel .hc-next { right: 8px; }
  .hero-carousel .hc-crest-fixed { padding-top: 80px; }
  .hero-carousel .hc-crest-fixed img { width: 130px; }
  .hero-carousel .hc-content { padding: 64px 20px 90px; }
}
@media (prefers-reduced-motion: reduce) {
  /* No motion — cross-fade only, no slide. Slide stays in place. */
  .hero-carousel .hc-slide {
    transform: none !important;
  }
  .hero-carousel .hc-slide.active,
  .hero-carousel .hc-slide.leaving {
    transition: opacity 200ms linear !important;
  }
  .hero-carousel .hc-bg,
  .hero-carousel .hc-eyebrow,
  .hero-carousel .hc-h,
  .hero-carousel .hc-lede,
  .hero-carousel .hc-ctas { transition: none !important; transform: none !important; }
}

/* ─── Accordion (used on product detail pages) ─────────────
   Pulled here so all PDPs share the same padding rhythm — fixes the
   too-tight 4px sides that pushed text and chevron against the edge. */
.accordion-button {
  padding: 18px 20px !important;
}
.accordion-body {
  padding: 4px 20px 22px !important;
}

/* ─── Dev mode badge (only visible when window.RC_DEV_BYPASS=true) ─── */
.rc-dev-badge {
  position: fixed; bottom: 16px; right: 16px; z-index: 9000;
  background: #2a1a00; color: var(--gold-hi);
  border: 1px solid var(--gold);
  font-family: var(--sans); font-size: .6875rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 8px 12px; border-radius: 999px;
  box-shadow: 0 4px 14px rgba(0,0,0,.6);
  pointer-events: none;
  user-select: none;
}


/* ─── Footer partners + socials strip ───────────────────────── */
.footer-meta-row {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 24px;
  padding: 22px 0 18px;
  border-top: 1px solid var(--gold-bdr);
  border-bottom: 1px solid var(--gold-bdr);
  margin-top: 12px;
}
.footer-partners {
  display: flex; flex-wrap: wrap; align-items: center; gap: 28px;
}
.footer-drinkaware {
  display: inline-flex; align-items: center;
  padding: 8px 14px;
  background: #f5f5f3;            /* drinkaware lockup is dark-on-light */
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.05);
  transition: transform .15s;
}
.footer-drinkaware:hover,
.footer-drinkaware:focus-visible { transform: translateY(-1px); }
.footer-drinkaware img {
  height: 22px; width: auto; display: block;
}
.footer-accreditation {
  display: inline-flex; align-items: center; opacity: .92;
}
.footer-accreditation img {
  height: 56px; width: auto; display: block;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.4));
}

.footer-socials {
  display: flex; gap: 6px; margin: 0; padding: 0;
}
.footer-socials li { list-style: none; }
.footer-socials a {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--bg-card2);
  border: 1px solid var(--gold-bdr);
  color: var(--text-muted);
  transition: color .2s, border-color .2s, transform .15s, background .2s;
}
.footer-socials a:hover,
.footer-socials a:focus-visible {
  color: var(--gold-hi);
  border-color: var(--gold);
  background: var(--gold-lt);
  transform: translateY(-2px);
}

@media (max-width: 575.98px) {
  .footer-meta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .footer-partners { gap: 16px; }
}

/* ─── Homepage "Follow us" section ──────────────────────────── */
.home-socials {
  background:
    radial-gradient(900px 360px at 80% 0%, rgba(198,167,94,.08), transparent 60%),
    linear-gradient(180deg, #0B0B0B, #0F0E0B);
  border-top: 1px solid var(--gold-bdr);
  border-bottom: 1px solid var(--gold-bdr);
}
.home-socials-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: center;
}
@media (max-width: 860px) {
  .home-socials-inner { grid-template-columns: 1fr; gap: 32px; }
}
.home-socials-copy h2 {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 14px;
}
.home-socials-copy p {
  color: var(--text-muted); font-size: 1.0625rem; max-width: 460px;
}
.home-socials-handle {
  display: inline-block; margin-top: 18px;
  padding: 6px 14px;
  background: var(--gold-lt);
  border: 1px solid var(--gold-md);
  border-radius: 999px;
  color: var(--gold-hi);
  font-family: var(--serif); font-style: italic; font-size: 1rem;
}

.home-socials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 0;
}
@media (max-width: 520px) {
  .home-socials-grid { grid-template-columns: 1fr; }
}
.home-social {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px;
  background: var(--bg-card);
  border: 1px solid var(--gold-bdr);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--text);
  transition: transform .2s, border-color .2s, background .2s;
}
.home-social:hover,
.home-social:focus-visible {
  transform: translateY(-3px);
  border-color: var(--gold-md);
  background: linear-gradient(135deg, var(--bg-card), var(--gold-lt));
  text-decoration: none; color: var(--text);
}
.home-social-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--bg-card2);
  border: 1px solid var(--gold-bdr);
  color: var(--gold-hi);
  transition: background .2s, color .2s;
}
.home-social:hover .home-social-icon,
.home-social:focus-visible .home-social-icon {
  background: var(--gold);
  color: #0E0E0E;
}
/* Brand tints per network — gives each card a slight character */
.home-social-ig:hover .home-social-icon,
.home-social-ig:focus-visible .home-social-icon {
  background: linear-gradient(135deg, #f09433, #e6683c 30%, #dc2743 50%, #cc2366 70%, #bc1888);
  color: #fff;
}
.home-social-tt:hover .home-social-icon,
.home-social-tt:focus-visible .home-social-icon {
  background: #000; color: #fff;
  box-shadow: 2px 2px 0 #25F4EE, -2px -2px 0 #FE2C55;
}
.home-social-fb:hover .home-social-icon,
.home-social-fb:focus-visible .home-social-icon {
  background: #1877F2; color: #fff;
}
.home-social-li:hover .home-social-icon,
.home-social-li:focus-visible .home-social-icon {
  background: #0A66C2; color: #fff;
}
.home-social-text {
  display: flex; flex-direction: column; gap: 2px;
}
.home-social-name {
  font-family: var(--serif); font-weight: 600;
  font-size: 1.125rem; color: var(--text);
  line-height: 1.2;
}
.home-social-meta {
  font-size: .8125rem; color: var(--text-muted);
}


/* ─── Trade apply CTA (under sign-in) ───────────────────────── */
.trade-apply-cta {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 16px;
  padding: 20px 24px;
  background: var(--bg-card2);
  border: 1px dashed var(--gold-md);
  border-radius: var(--radius-lg);
}
.trade-apply-cta-title {
  font-family: var(--serif); font-size: 1.125rem; font-weight: 600;
  color: var(--text); margin: 0;
}
.trade-apply-cta-sub {
  font-size: .875rem; color: var(--text-muted); margin: 4px 0 0;
  max-width: 360px;
}

/* ─── Conditional shop grid (1 / 2 / 3+ products) ───────────
   Apply class .shop-grid to a .row that holds product cards.
   - 1 child  → keeps the 3-up width (col-lg-4 default)
   - 2 children → expands each child to 50% on lg+
   - 3+ children → default Bootstrap col widths (col-lg-4 = 33%)
   Uses :has(), supported in all evergreen browsers (Chromium 105+,
   Firefox 121+, Safari 15.4+).                              */
@media (min-width: 992px) {
  .shop-grid:has(> :first-child:nth-last-child(2)) > [class*="col-"] {
    flex: 0 0 50%; max-width: 50%;
  }
}
.shop-grid:has(> :only-child) {
  justify-content: flex-start;
}
.shop-grid:has(> :first-child:nth-last-child(2)) {
  justify-content: center;
}

/* ─── Order recap card on checkout success ──────────────────── */
.order-recap-card {
  background: var(--bg-card2);
  border: 1px solid var(--gold-bdr);
  border-radius: var(--radius);
  padding: 18px;
  margin: 8px 0 4px;
}
.order-recap-head {
  font-size: .6875rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 12px;
}
.order-recap-line {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 8px 0; border-bottom: 1px solid var(--gold-bdr);
  font-size: .9375rem; color: var(--text);
  gap: 12px;
}
.order-recap-line:last-child { border-bottom: 0; }
.order-recap-name { color: var(--text); }
.order-recap-amt { font-family: var(--serif); color: var(--gold-hi); white-space: nowrap; }
.order-recap-sub span:first-child { color: var(--text-muted); font-size: .8125rem; }
.order-recap-sub span:last-child   { color: var(--text-muted); font-family: var(--sans); font-size: .8125rem; }
.order-recap-total span:first-child { font-weight: 600; }
.order-recap-total span:last-child {
  font-family: var(--serif); font-size: 1.25rem; font-weight: 700; color: var(--gold-hi);
}

/* ─── Contact form success state ────────────────────────────── */
.contact-success {
  text-align: center;
  padding: 48px 32px;
  border-color: rgba(74, 222, 128, .35);
  background: linear-gradient(135deg, rgba(74,222,128,.03), var(--bg-card) 50%);
}
.contact-success-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(74, 222, 128, .12);
  border: 1px solid rgba(74, 222, 128, .45);
  color: var(--green);
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
}
.contact-success-next {
  background: var(--bg-card2);
  border: 1px solid var(--gold-bdr);
  border-radius: var(--radius);
  padding: 18px 22px;
  max-width: 480px;
  margin: 28px auto 0;
}
.contact-success:focus { outline: none; }
.contact-success:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ─── Homepage newsletter signup ────────────────────────────── */
.home-newsletter {
  background:
    radial-gradient(700px 280px at 10% 0%, rgba(198,167,94,.08), transparent 60%),
    linear-gradient(180deg, #0F0E0B, #0B0B0B);
  border-top: 1px solid var(--gold-bdr);
}
.home-newsletter-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: center;
  padding: 36px 40px;
  background: linear-gradient(135deg, #161310, #0F0E0B 70%);
  border: 1px solid var(--gold-md);
  border-radius: var(--radius-xl);
}
@media (max-width: 860px) {
  .home-newsletter-card { grid-template-columns: 1fr; gap: 24px; padding: 28px; }
}
.home-newsletter-copy h2 {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: 8px 0 12px;
}
.home-newsletter-copy p {
  color: var(--text-muted); font-size: 1rem; margin: 0; max-width: 480px;
}
.home-newsletter-form { width: 100%; }
.home-newsletter-row {
  display: flex; gap: 10px; align-items: stretch;
}
.home-newsletter-row .form-control {
  flex: 1 1 auto;
  background: var(--bg);
  border: 1px solid var(--gold-bdr);
  color: var(--text);
}
.home-newsletter-row .form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-md);
}
.home-newsletter-row .btn {
  white-space: nowrap; flex: 0 0 auto;
}
@media (max-width: 480px) {
  .home-newsletter-row { flex-direction: column; gap: 8px; }
  .home-newsletter-row .btn { width: 100%; }
}
.home-newsletter-help {
  margin: 12px 0 0;
  font-size: .75rem;
  color: var(--text-dim);
}

.home-newsletter-success {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 22px;
  background: rgba(74, 222, 128, .06);
  border: 1px solid rgba(74, 222, 128, .35);
  border-radius: var(--radius-lg);
}
.home-newsletter-success:focus { outline: none; }
.home-newsletter-success:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.home-newsletter-success-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(74, 222, 128, .15);
  border: 1px solid rgba(74, 222, 128, .45);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
}

/* ─── Cocktail listing grid (cocktails-listing) ─────────────── */
.ck-search { position: relative; }
.ck-search input { padding-left: 38px; }
.ck-search svg { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--text-dim); }
.ck-card { background: var(--bg-card); border: 1px solid var(--gold-bdr); border-radius: 16px; overflow: hidden; transition: transform .25s, border-color .25s; height: 100%; display: flex; flex-direction: column; }
.ck-card:hover, .ck-card:focus-within { transform: translateY(-3px); border-color: rgba(198,167,94,.2); }
.ck-card-img { position: relative; height: 220px; overflow: hidden; }
.ck-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; filter: brightness(.75); }
.ck-card:hover .ck-card-img img { transform: scale(1.05); }
.ck-card-img .gradient { position: absolute; inset: 0; background: linear-gradient(0deg, var(--bg-card), transparent 55%); }
.ck-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.ck-ing { display: flex; align-items: flex-start; gap: 8px; font-size: .75rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 4px; }
.ck-ing::before { content: '●'; color: var(--gold); font-size: .5rem; margin-top: 5px; flex-shrink: 0; }
.diff-dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; margin-right: 4px; vertical-align: middle; }
.diff-easy { background: var(--green); }
.diff-medium { background: var(--yellow, #e0b84a); }
.diff-hard { background: var(--red); }
.diff-text-easy { color: var(--green); }
.diff-text-medium { color: var(--yellow, #e0b84a); }
.diff-text-hard { color: var(--red); }
.ck-card-img-link { display: block; color: inherit; text-decoration: none; position: relative; }
.ck-card-img-link:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; border-radius: 12px; }

/* ─── Cocktail detail (cocktail) ────────────────────────────── */
.ck-meta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.meta-pill { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; background: rgba(198,167,94,.08); border: 1px solid var(--gold-bdr); border-radius: 999px; font-size: .75rem; font-weight: 500; color: var(--text); line-height: 1; }
.meta-pill .diff-dot { margin: 0; }
.meta-pill-plain { color: var(--gold-hi); }
.ck-layout { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 48px; align-items: start; }
@media (max-width: 860px) { .ck-layout { grid-template-columns: 1fr; gap: 32px; } }
.ck-image-card { position: sticky; top: 100px; background: var(--bg-card); border: 1px solid var(--gold-bdr); border-radius: var(--radius-xl); overflow: hidden; }
@media (max-width: 860px) { .ck-image-card { position: static; } }
.ck-image-frame { aspect-ratio: 4 / 5; width: 100%; background: linear-gradient(180deg, #1a1a1a, #0f0f0f); overflow: hidden; }
.ck-image-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.ck-image-caption { padding: 14px 18px; font-size: .75rem; color: var(--text-dim); border-top: 1px solid var(--gold-bdr); font-style: italic; text-align: center; }
.ck-section { margin-bottom: 32px; }
.ck-section-title { font-family: var(--serif); font-weight: 600; font-size: 1.375rem; margin: 0 0 14px; padding-bottom: 10px; border-bottom: 1px solid var(--gold-bdr); }
.ck-ings { list-style: none; padding: 0; margin: 0; }
.ck-ings li { display: flex; align-items: baseline; gap: 12px; padding: 10px 0; border-bottom: 1px dashed var(--gold-bdr); font-size: 1rem; color: var(--text); }
.ck-ings li::before { content: ""; flex: 0 0 6px; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); transform: translateY(-2px); }
.ck-ings li:last-child { border-bottom: 0; }
.ck-glance { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; padding: 16px 18px; background: var(--bg-card2); border: 1px solid var(--gold-bdr); border-radius: var(--radius); margin-top: 18px; }
@media (max-width: 480px) { .ck-glance { grid-template-columns: 1fr; } }
.ck-glance > div { display: flex; flex-direction: column; gap: 2px; }
.ck-glance .lbl { font-size: .6875rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-dim); }
.ck-glance .val { font-size: .875rem; color: var(--text); }
.ck-method-list { list-style: none; padding: 0; margin: 0; }
.ck-method-list li { display: flex; align-items: flex-start; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--gold-bdr); }
.ck-method-list li:last-child { border-bottom: 0; }
.ck-method-list .step-num { flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; background: var(--gold-lt); border: 1px solid var(--gold-md); display: flex; align-items: center; justify-content: center; font-family: var(--serif); color: var(--gold-hi); font-size: 1rem; font-weight: 600; }
.ck-method-list p { margin: 0; font-size: .9375rem; line-height: 1.7; color: var(--text); padding-top: 4px; }
.recipe-tip { background: var(--gold-lt); border-left: 3px solid var(--gold); border-radius: 0 12px 12px 0; padding: 16px 18px; margin-top: 20px; }
.ck-rel-card { display: block; text-decoration: none; background: var(--bg-card); border: 1px solid var(--gold-bdr); border-radius: var(--radius-lg); overflow: hidden; color: var(--text); transition: transform .2s, border-color .2s; }
.ck-rel-card:hover, .ck-rel-card:focus-visible { transform: translateY(-3px); border-color: var(--gold-md); color: var(--text); text-decoration: none; }
.ck-rel-img { aspect-ratio: 4 / 5; overflow: hidden; }
.ck-rel-img img { width: 100%; height: 100%; object-fit: cover; }
.ck-rel-meta { padding: 12px 14px 4px; font-size: .6875rem; color: var(--text-muted); }
.ck-rel-card h3 { padding: 4px 14px 14px; margin: 0; font-size: 1.0625rem; font-family: var(--serif); }

/* ─── Nav pills (tabs) — gold, not Bootstrap's default blue ──── */
.nav-pills .nav-link { color: var(--text-muted); border-radius: 10px; }
.nav-pills .nav-link:hover, .nav-pills .nav-link:focus { color: var(--gold-hi); }
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  background: var(--gold-lt);
  color: var(--gold-hi);
  box-shadow: inset 0 0 0 1px var(--gold-md);
}

/* ─── Pagination (PW renderPager) — gold, not Bootstrap blue ── */
.MarkupPagerNav { display: flex; gap: 6px; list-style: none; padding: 0; flex-wrap: wrap; justify-content: center; }
.MarkupPagerNav li { list-style: none; }
.MarkupPagerNav a {
  display: inline-flex; align-items: center; padding: 8px 14px;
  border-radius: 10px; border: 1px solid var(--gold-bdr);
  color: var(--text-muted); text-decoration: none; font-size: .875rem;
}
.MarkupPagerNav a:hover, .MarkupPagerNav a:focus-visible { border-color: var(--gold); color: var(--gold-hi); }
.MarkupPagerNav .MarkupPagerNavOn a { background: var(--gold); color: #0E0E0E; border-color: var(--gold); }

/* ─── Checked toggle buttons (size/colour/filter pickers) → gold ─ */
.btn-check:checked + .btn-outline-gold,
.btn-check:active + .btn-outline-gold {
  background: var(--gold); color: #0E0E0E; border-color: var(--gold);
}
.btn-check:focus-visible + .btn { outline: 2px solid var(--gold); outline-offset: 2px; }


/* ─── Drinkaware logo override (no background, no border) ──── */
.footer-drinkaware {
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
}
.footer-drinkaware:hover,
.footer-drinkaware:focus-visible { transform: translateY(-1px); }
.footer-drinkaware img {
  height: 22px; width: auto; display: block;
}

/* ─── Gift cards advert (shop landing) ──────────────────────── */
.gift-card-advert {
  background:
    radial-gradient(700px 320px at 70% 30%, rgba(198,167,94,.08), transparent 60%),
    linear-gradient(180deg, #0F0E0B, #0B0B0B);
  border-top: 1px solid var(--gold-bdr);
  border-bottom: 1px solid var(--gold-bdr);
}
.gift-card-banner {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 48px; align-items: center;
  padding: 24px;
  background: linear-gradient(135deg, #161310, #0F0E0B 70%);
  border: 1px solid var(--gold-md);
  border-radius: var(--radius-xl);
}
@media (max-width: 860px) {
  .gift-card-banner { grid-template-columns: 1fr; gap: 28px; padding: 20px; }
}
.gift-card-banner-visual {
  display: flex; align-items: center; justify-content: center;
  padding: 12px;
}
.gift-card-mock {
  width: 100%; max-width: 320px;
  aspect-ratio: 1.586;          /* credit-card ratio */
  background: linear-gradient(135deg, #1a1610 0%, #2a2218 45%, #1a1610 100%);
  border: 1px solid var(--gold-md);
  border-radius: 16px;
  padding: 22px 24px;
  display: flex; flex-direction: column;
  box-shadow: 0 8px 28px rgba(0,0,0,.5), inset 0 1px 0 rgba(216,190,126,.18);
  position: relative;
  overflow: hidden;
}
.gift-card-mock::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 75% 30%, rgba(216,190,126,.22), transparent 50%);
  pointer-events: none;
}
.gift-card-mock-eyebrow {
  font-family: var(--serif); font-style: italic;
  font-size: .8125rem; letter-spacing: .14em; color: var(--gold-hi);
  text-transform: uppercase;
}
.gift-card-mock-value {
  font-family: var(--serif); font-weight: 700;
  font-size: 3rem; line-height: 1;
  color: var(--gold-hi);
  margin-top: auto;
}
.gift-card-mock-label {
  font-size: .6875rem; letter-spacing: .26em; color: var(--text);
  margin: 6px 0 12px;
}
.gift-card-mock-code {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: .8125rem; letter-spacing: .12em; color: var(--text-muted);
}

.gift-card-banner-copy h2.gift-card-banner-h {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: 8px 0 12px;
}
.gift-card-banner-lede {
  color: var(--text-muted); font-size: 1.0625rem;
  max-width: 480px; margin: 0;
}
.gift-card-banner-feats {
  margin: 18px 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 24px;
}
@media (max-width: 520px) {
  .gift-card-banner-feats { grid-template-columns: 1fr; gap: 6px; }
}
.gift-card-banner-feats li {
  font-size: .9375rem; color: var(--text);
  display: flex; align-items: baseline; gap: 8px;
}
.gift-card-banner-feats li span {
  color: var(--gold-hi); font-weight: 700;
  flex-shrink: 0;
}

/* ============================================================
   REVIEWS & RATINGS
   Shared widget styles for product reviews and cocktail ratings.
   Star inputs use a hidden-radio pattern for full keyboard /
   screen-reader / voice-control accessibility (WCAG 2.2 AA).
   ============================================================ */

/* — Star INPUT (interactive, fieldset wrapper) ———————————————— */
.rc-star-input {
  border: 0; padding: 0; margin: 0;
  display: inline-flex; flex-direction: row-reverse;
  gap: 2px;
}
.rc-star-input legend { font-size:.8125rem; color: var(--text-muted); margin-bottom: 6px; }
.rc-star-input input[type="radio"] {
  /* Visually hidden but kept in the a11y tree (NOT display:none) */
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}
.rc-star-input label {
  cursor: pointer; font-size: 1.5rem; line-height: 1;
  color: var(--gold-bdr); /* dim by default */
  transition: color .12s ease, transform .12s ease;
  padding: 2px;
}
.rc-star-input label::before { content: "★"; }
/* Hover: highlight this label and all later (visually earlier) labels */
.rc-star-input label:hover,
.rc-star-input label:hover ~ label { color: var(--gold-hi); }
/* Checked: highlight checked label and all later (visually earlier) labels */
.rc-star-input input:checked ~ label { color: var(--gold-hi); }
/* Keyboard focus ring on the visible label */
.rc-star-input input:focus-visible + label {
  outline: 2px solid var(--gold-hi); outline-offset: 2px; border-radius: 2px;
}

/* — Star DISPLAY (read-only) ————————————————————————————— */
.rc-star-display {
  display: inline-flex; align-items: center; gap: 2px;
  color: var(--gold-hi); font-size: 1rem; line-height: 1;
  letter-spacing: 0;
}
.rc-star-display .rc-star-off { color: var(--gold-bdr); }

/* — Aggregate header (reviews + cocktail ratings) ———————————— */
.rc-aggregate {
  display: flex; gap: 28px; align-items: flex-start; flex-wrap: wrap;
  padding: 18px 0; border-bottom: 1px solid var(--gold-bdr);
}
.rc-aggregate-score { display: flex; flex-direction: column; gap: 6px; min-width: 140px; }
.rc-aggregate-avg { font-family: var(--serif); font-size: 2.5rem; line-height: 1; color: var(--text); font-weight: 600; }
.rc-aggregate-count { font-size: .8125rem; color: var(--text-muted); }
.rc-aggregate-dist { flex: 1; min-width: 240px; display: flex; flex-direction: column; gap: 4px; }
.rc-aggregate-dist-row {
  display: grid; grid-template-columns: 32px 1fr 36px;
  align-items: center; gap: 10px;
  font-size: .75rem; color: var(--text-muted);
}
.rc-aggregate-dist-row .rc-dist-label { text-align: right; color: var(--gold-hi); }
.rc-aggregate-dist-bar {
  height: 6px; background: rgba(212,176,107,.12);
  border-radius: 3px; overflow: hidden;
}
.rc-aggregate-dist-bar > span {
  display: block; height: 100%; background: var(--gold-hi);
  border-radius: 3px;
}

/* — Reviews list ——————————————————————————————————————— */
.rc-reviews-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px; padding: 18px 0 8px; flex-wrap: wrap;
}
.rc-reviews-toolbar label { font-size: .8125rem; color: var(--text-muted); margin: 0; }
.rc-reviews-toolbar select.form-select { max-width: 220px; }
.rc-review {
  padding: 18px 0;
  border-bottom: 1px solid var(--gold-bdr);
}
.rc-review:last-child { border-bottom: 0; }
.rc-review-head {
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  margin-bottom: 6px;
}
.rc-review-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.rc-review-author { font-size: .875rem; color: var(--text); font-weight: 600; }
.rc-review-tier {
  font-size: .625rem; letter-spacing: .12em; padding: 2px 8px;
  border: 1px solid var(--gold-hi); color: var(--gold-hi);
  border-radius: 999px; text-transform: uppercase;
}
.rc-review-date { font-size: .75rem; color: var(--text-dim); }
.rc-review-pending-badge {
  font-size: .625rem; letter-spacing: .12em; padding: 2px 8px;
  background: rgba(212,176,107,.12); color: var(--gold-hi);
  border: 1px solid var(--gold-bdr); border-radius: 999px;
  text-transform: uppercase;
}
.rc-review-title { font-family: var(--serif); font-weight: 600; margin: 6px 0 4px; font-size: 1rem; }
.rc-review-body { font-size: .9375rem; color: var(--text-muted); margin: 0; white-space: pre-wrap; }

/* — Auth-gated CTA panel (states: anon, trade, disabled) ——— */
.rc-cta-panel {
  border: 1px dashed var(--gold-bdr);
  border-radius: var(--radius);
  padding: 18px 20px;
  background: rgba(212,176,107,.04);
  display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
  justify-content: space-between;
}
.rc-cta-panel-text { font-size: .9375rem; color: var(--text-muted); margin: 0; max-width: 560px; }
.rc-cta-panel-text strong { color: var(--text); }
.rc-cta-panel-actions { display: flex; gap: 8px; flex-wrap: wrap; }

/* — Write-review form (collapsible) ——————————————————————— */
.rc-write-review {
  border: 1px solid var(--gold-bdr); border-radius: var(--radius);
  padding: 22px; margin-top: 18px;
  background: rgba(212,176,107,.03);
}
.rc-write-review[hidden] { display: none; }
.rc-write-review h3 { font-family: var(--serif); font-weight: 600; font-size: 1.25rem; margin: 0 0 14px; }
.rc-write-review .char-count { font-size: .75rem; color: var(--text-dim); display: block; margin-top: 4px; text-align: right; }
.rc-write-review .char-count.over { color: var(--red); }

/* Pending-review success state */
.rc-pending-success {
  padding: 18px 20px;
  border: 1px solid rgba(74,222,128,.35);
  background: rgba(74,222,128,.08);
  border-radius: var(--radius);
  color: var(--text);
}
.rc-pending-success h3 { font-family: var(--serif); margin: 0 0 6px; font-size: 1.125rem; color: var(--green); }

/* — Cocktail rating widget (compact) ——————————————————————— */
.rc-rating-widget {
  border: 1px solid var(--gold-bdr);
  border-radius: var(--radius);
  padding: 20px 22px;
  background: rgba(212,176,107,.03);
  display: flex; gap: 22px; align-items: center; flex-wrap: wrap;
  justify-content: space-between;
}
.rc-rating-widget-aggregate { display: flex; flex-direction: column; gap: 4px; }
.rc-rating-widget-aggregate .rc-rating-avg { font-family: var(--serif); font-size: 1.75rem; line-height: 1; color: var(--text); font-weight: 600; }
.rc-rating-widget-aggregate .rc-rating-count { font-size: .75rem; color: var(--text-muted); }
.rc-rating-widget-input { display: flex; flex-direction: column; gap: 6px; align-items: flex-end; min-width: 220px; }
.rc-rating-widget-input .rc-rating-status { font-size: .75rem; color: var(--text-muted); text-align: right; }

/* — Demo role toggle (test-journeys only) ——————————————————— */
.rc-demo-role-toggle {
  position: fixed; bottom: 16px; right: 16px; z-index: 1080;
  background: var(--bg-card); border: 1px solid var(--gold-bdr);
  border-radius: var(--radius); padding: 8px 10px;
  display: flex; gap: 4px; align-items: center;
  font-size: .75rem; color: var(--text-muted);
  box-shadow: 0 4px 16px rgba(0,0,0,.4);
}
.rc-demo-role-toggle button {
  background: transparent; border: 1px solid var(--gold-bdr);
  color: var(--text-muted); padding: 4px 8px; border-radius: 4px;
  font-size: .6875rem; cursor: pointer;
}
.rc-demo-role-toggle button[aria-pressed="true"] {
  background: var(--gold-hi); color: var(--bg); border-color: var(--gold-hi);
}

/* ── Social share bar (rcShareBar helper) ── */
.rc-share { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.rc-share-label {
  font-size: .75rem; color: var(--text-muted);
  letter-spacing: .1em; text-transform: uppercase; margin-right: 2px;
}
.rc-share-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%; padding: 0;
  background: var(--bg-card2); border: 1px solid var(--gold-bdr);
  color: var(--text-muted); cursor: pointer;
  transition: color .15s ease, border-color .15s ease, background .15s ease;
}
.rc-share-btn:hover, .rc-share-btn:focus-visible {
  color: var(--gold-hi); border-color: var(--gold); background: var(--bg-card3);
}
.rc-share-btn.rc-copied { color: var(--green); border-color: var(--green); }

/* ── Trade portal tables (ported from static-source/trade.html) ── */
.trade-table { width: 100%; border-collapse: collapse; }
.trade-table th {
  padding: 12px 16px; text-align: left; font-size: .75rem; font-weight: 500;
  color: var(--text-muted); background: var(--bg-card);
  border-bottom: 1px solid var(--gold-bdr);
}
.trade-table td {
  padding: 12px 16px; font-size: .875rem; color: var(--text);
  border-bottom: 1px solid rgba(198, 167, 94, .05);
}
.trade-table tr:nth-child(even) td { background: var(--bg-card3); }

/* ============================================================
   Inline-style refactor — reusable utilities + components.
   Replaces repeated style="" attributes across templates.
   (Note: <h1>–<h4> already inherit the serif heading rule, so
   inline font-family:var(--serif) on headings is redundant and
   has been removed rather than classed.)
   ============================================================ */
/* text helpers (colour helpers .gold / .text-muted-brand / .text-dim already exist) */
.rc-serif { font-family: var(--serif); }
.rc-note  { font-size: .75rem; color: var(--text-dim); }

/* width constraints */
.rc-maxw-680  { max-width: 680px; }
.rc-maxw-880  { max-width: 880px; }
.rc-maxw-1200 { max-width: 1200px; }

/* page hero / CTA bands (the standard gold-bordered gradient strip) */
.rc-hero-band { background: linear-gradient(135deg, #161208, #0E0E0E); border-bottom: 1px solid var(--gold-bdr); }
.rc-cta-band  { background: linear-gradient(135deg, #161208, #0E0E0E); border-top: 1px solid var(--gold-bdr); }
.rc-card-accent { border-color: var(--gold-md); }

/* prominent price (cart subtotal, checkout total, line totals) */
.rc-price-lg { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--gold-hi); }

/* cart / checkout line items (also emitted by main.js renderers) */
.rc-line-name  { font-family: var(--serif); margin: 0; }
.rc-line-meta  { font-size: .8125rem; color: var(--text-muted); margin: 2px 0 0; }
.rc-line-total { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--gold-hi); min-width: 90px; text-align: right; }
.rc-summary-line { font-size: .9rem; color: var(--text-muted); }
.rc-qty-mini {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--bg-card2); border: 1px solid var(--gold-bdr); color: var(--text);
}
.rc-qty-num { min-width: 24px; text-align: center; }
.rc-line-grow { min-width: 160px; }
.rc-empty { padding: 40px; }

/* order confirmation */
.rc-success-badge {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 18px;
  background: rgba(74, 222, 128, .12); border: 1px solid rgba(74, 222, 128, .4);
  color: var(--green); display: flex; align-items: center; justify-content: center;
}
.rc-join-title { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; margin: 0 0 4px; }
.rc-join-text  { font-size: .9rem; color: var(--text-muted); margin: 0; max-width: 520px; }
.rc-confirm-lede { color: var(--text-muted); max-width: 480px; margin: 10px auto 0; }

/* widths + centred intro paragraphs */
.rc-maxw-300 { max-width: 300px; }
.rc-maxw-460 { max-width: 460px; }
.rc-maxw-480 { max-width: 480px; }
.rc-maxw-600 { max-width: 600px; }
.rc-maxw-540 { max-width: 540px; }
.rc-maxw-520 { max-width: 520px; }
.rc-maxw-560 { max-width: 560px; }
.rc-maxw-900 { max-width: 900px; }
.rc-maxw-1100 { max-width: 1100px; }
.rc-mt-10 { margin-top: 10px; }
.rc-cta-line { font-family: var(--serif); font-size: 1.25rem; margin: 0; }
.rc-mt-center { margin: 12px auto 0; }
.rc-card-foot { font-size: .75rem; color: var(--text-muted); margin-top: auto; }
.rc-h1-clamp { font-size: clamp(2rem, 5vw, 3rem); }
.rc-hero-lede { max-width: 560px; margin-top: 14px; color: var(--text-muted); }

/* section backgrounds / bands */
.rc-bg-card      { background: var(--bg-card); }
.rc-bordered-top { border-top: 1px solid var(--gold-bdr); }
.rc-band-dark    { background: linear-gradient(135deg, #1C1A14, #161310); border-top: 1px solid var(--gold-bdr); border-bottom: 1px solid var(--gold-bdr); }
.hc-bg-plain     { background: linear-gradient(135deg, #1a1206, #0E0E0E); }

/* product / card bits (reused across home, shop, product, blog) */
.rc-badge-tl   { position: absolute; top: 12px; left: 12px; }
.rc-badge-tr   { position: absolute; top: 12px; right: 12px; }
.rc-link-plain { color: inherit; text-decoration: none; }
.rc-price-was  { text-decoration: line-through; color: var(--text-dim); font-size: .8em; }
.rc-h-sm        { font-size: 1.0625rem; }
.rc-card-summary { font-size: .8125rem; margin-top: 6px; }
.rc-card-meta   { font-size: .75rem; color: var(--text-dim); margin-top: 12px; }
.rc-ratio-3-4   { aspect-ratio: 3 / 4; }
.rc-overlay-sub { font-size: .8125rem; color: rgba(245, 240, 232, .82); }
.rc-tier-star   { font-size: 1.5rem; color: var(--gold); }
.rc-perks       { font-size: .75rem; margin-top: 6px; }

/* listing hero with a CMS banner image (overlay gradient stays inline — it's data) */
.rc-hero-img { background-size: cover; background-position: center; border-bottom: 1px solid var(--gold-bdr); }
.rc-hero-sub { max-width: 480px; margin-top: 10px; color: var(--text-muted); }
.rc-breadcrumb { font-size: .75rem; margin-bottom: 14px; }

/* small text sizes (reused widely) */
.rc-text-sm { font-size: .875rem; }
.rc-text-xs { font-size: .8125rem; }
.rc-maxw-780 { max-width: 780px; }

/* sale strip (shop landing) */
.rc-sale-strip { padding: 18px 0; background: linear-gradient(90deg, rgba(242,109,109,.04), rgba(242,109,109,.12), rgba(242,109,109,.04)); border-bottom: 1px solid rgba(242,109,109,.2); }
.rc-sale-tag  { background: rgba(242,109,109,.92); color: #fff; font-size: .65rem; font-weight: 700; letter-spacing: .1em; padding: 6px 12px; border-radius: 6px; }
.rc-sale-text { font-family: var(--serif); font-size: 1.05rem; color: var(--text); }
.rc-sale-hl   { color: #F26D6D; font-weight: 700; }

/* shop category card image + members CTA headline */
.rc-cat-img  { width: 100%; height: 200px; object-fit: cover; border-radius: 12px; margin-bottom: 16px; }
.rc-cta-title { font-family: var(--serif); font-size: 1.125rem; font-weight: 600; color: var(--gold-hi); margin-bottom: 4px; }

/* plain-gradient parallax bands (no image) + their fixed heights */
.rc-parallax-grad { background: linear-gradient(135deg, #1a1206, #0E0E0E); }
.rc-minh-60vh { min-height: 60vh; }
.rc-minh-360 { min-height: 360px; }
.rc-minh-400 { min-height: 400px; }
.rc-minh-420 { min-height: 420px; }
.rc-minh-440 { min-height: 440px; }
.rc-minh-480 { min-height: 480px; }

/* about page */
.rc-maxw-440 { max-width: 440px; }
.rc-maxw-860 { max-width: 860px; }
.rc-maxw-1060 { max-width: 1060px; }
.rc-band-card { background: var(--bg-card); border-top: 1px solid var(--gold-bdr); border-bottom: 1px solid var(--gold-bdr); }
.rc-heritage-img { width: 100%; border-radius: var(--radius-xl); aspect-ratio: 4 / 3; object-fit: cover; }
.rc-stat-value { font-family: var(--serif); font-size: 2.75rem; font-weight: 700; color: var(--gold-hi); }
.rc-stat-label { font-size: .875rem; margin-top: 6px; }
.rc-craft-icon { margin-bottom: 12px; color: var(--gold-hi); }
.rc-icon-emoji { font-size: 2rem; }
.rc-join-section { padding: 80px 0; background: linear-gradient(135deg, #161208, #0E0E0E); }
.rc-cta-lede { max-width: 440px; margin: 0 auto 32px; }

/* ── Product page components ── */
.rc-pt-32 { padding-top: 32px; }
.rc-mt-32 { margin-top: 32px; }
.rc-minw-200 { min-width: 200px; }
.rc-product-title { font-size: clamp(2rem, 4vw, 2.75rem); }
.rc-product-subtitle { font-size: 1rem; color: var(--text-muted); }
.rc-badge-instock { color: var(--green); border-color: rgba(74, 222, 128, .3); background: rgba(74, 222, 128, .1); }
.rc-img-cover { width: 100%; height: 100%; object-fit: cover; }
.rc-gallery-frame { border-radius: 16px; overflow: hidden; border: 1px solid var(--gold-bdr); background: var(--bg-card); aspect-ratio: 1; }
.rc-thumb { padding: 0; border-radius: 12px; overflow: hidden; border: 1px solid var(--gold-bdr); background: var(--bg-card); aspect-ratio: 1; }
/* product pricing block */
.rc-price-xl   { font-size: 2rem; }
.rc-price-now  { font-size: 2rem; color: var(--gold-hi); }
.rc-price-old  { text-decoration: line-through; color: var(--text-dim); margin-left: 8px; }
.rc-price-save { color: var(--green); margin-left: 8px; font-size: .9rem; }
.rc-price-member-lg { font-size: .9rem; margin-top: 6px; }
.rc-sale-ends-note  { font-size: .8125rem; color: var(--text-muted); margin: 6px 0 0; }
.rc-body-block { margin: 14px 0 20px; }
/* spec cells (rum tasting notes) */
.spec-cell { background: var(--bg-card2); border-radius: var(--radius); padding: 14px; }
.rc-spec-label { font-size: .625rem; color: var(--text-dim); margin-bottom: 4px; letter-spacing: .1em; }
.rc-spec-value { font-size: .8rem; color: var(--text); margin: 0; }
/* colour / size selectors */
.rc-fieldset-reset { border: 0; padding: 0; margin: 0; }
.rc-legend { font-size: .8125rem; }
.rc-colour-name { color: var(--text); font-weight: 600; }
.rc-swatch { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 10px; border: 1px solid var(--gold-bdr); background: var(--bg-card2); color: var(--text-muted); font-size: .8125rem; cursor: pointer; }
.rc-swatch-dot { width: 16px; height: 16px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .2); }
/* quantity stepper (product + trade portal) */
.rc-qty-btn { width: 40px; height: 40px; border-radius: 10px; background: var(--bg-card2); border: 1px solid var(--gold-bdr); color: var(--text); font-size: 1.1rem; }
.rc-qty-label { font-size: .75rem; }
.rc-qty-input { width: 60px; text-align: center; }

/* visually-hidden honeypot (spam trap on every public form) */
.rc-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* inline field-level error message (forms) */
.form-error { display: block; color: var(--red); font-size: .8125rem; margin-top: 4px; }

/* membership tier cards (per-tier accents) */
.rc-tier-price { font-size: 1.5rem; font-family: var(--serif); font-weight: 600; }
.rc-tier-perks-list { font-size: .875rem; text-align: left; display: flex; flex-direction: column; gap: 8px; }
.rc-tier-badge-bronze { background: rgba(205, 127, 50, .15); color: #CD7F32; border-color: rgba(205, 127, 50, .3); }
.rc-tier-badge-silver { background: rgba(192, 192, 192, .15); color: #C0C0C0; border-color: rgba(192, 192, 192, .3); }
.rc-tier-badge-black  { background: rgba(10, 10, 10, .6); color: #fff; border-color: #444; }
.rc-tier-card-black   { background: linear-gradient(160deg, #1a1a1a, #0a0a0a); border-color: #333; }

/* inline form alerts (error / success) used across checkout, account, trade, contact */
.rc-alert-error {
  background: rgba(242, 109, 109, .12); border: 1px solid rgba(242, 109, 109, .35);
  color: var(--red); border-radius: var(--radius);
  padding: 10px 14px; font-size: .875rem; margin-bottom: 12px;
}
.rc-alert-success {
  background: rgba(74, 222, 128, .12); border: 1px solid rgba(74, 222, 128, .35);
  color: var(--green); border-radius: var(--radius);
  padding: 10px 14px; font-size: .875rem; margin-bottom: 12px;
}

/* ── Blog: "Browse by date" sidebar + fade-in ─────────────────── */
.rc-blog-aside {
  position: sticky; top: 92px;
  background: rgba(255, 255, 255, .02); border: 1px solid var(--gold-bdr);
  border-radius: var(--radius); padding: 18px 20px;
}
.rc-aside-title {
  font-family: var(--serif); font-size: 1.0625rem; font-weight: 600;
  margin: 0 0 12px; padding-bottom: 12px; border-bottom: 1px solid var(--gold-bdr);
}
.rc-aside-list { list-style: none; margin: 0; padding: 0; }
.rc-aside-list a {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 8px 10px; border-radius: 8px; text-decoration: none;
  color: var(--text-muted); font-size: .9375rem; transition: background .15s, color .15s;
}
.rc-aside-list a:hover,
.rc-aside-list a.is-active { background: var(--gold-lt); color: var(--gold-hi); }
.rc-aside-list a.is-active { font-weight: 600; }
.rc-aside-count {
  font-size: .75rem; color: var(--text-dim); background: rgba(255, 255, 255, .05);
  border-radius: 20px; padding: 1px 9px; min-width: 26px; text-align: center;
}
.rc-aside-list a.is-active .rc-aside-count { color: var(--gold-hi); }
.rc-aside-empty { color: var(--text-dim); font-size: .875rem; padding: 8px 10px; }

@keyframes rcFadeInUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
.rc-blog-fade { animation: rcFadeInUp .45s ease both; }
@media (prefers-reduced-motion: reduce) {
  .rc-blog-fade { animation: none; }
}
