/* ── RiA Vape — core stylesheet ──
   One-file, render-blocking, ~12KB. Loads after tokens.css.
   Sections:
     A. Reset + page chrome
     B. Header / nav / footer
     C. Buttons + chips + cards (shared atoms)
     D. Home hero + product grid
     E. PDP layout
     F. Flavor collection grid
     G. Policy / info / cart / checkout
     H. Drawer (mini-cart) + popup (age-gate)
*/

/* ─── A. Reset ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { background: var(--rv-rose-pale); }
body {
  background: #fff;
  color: var(--rv-text);
  font: 400 16px/1.6 var(--rv-font-body);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--rv-rose-deep); text-decoration: none; transition: color .15s; }
a:hover { color: var(--rv-rose); text-decoration: underline; }
img, svg { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 {
  font-family: var(--rv-font-display);
  font-weight: 700;
  line-height: 1.18;
  color: var(--rv-rose-dark);
  margin: 0 0 .4em;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); letter-spacing: -.01em; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1em; }
.rv-container {
  max-width: var(--rv-container);
  margin: 0 auto;
  padding: 0 var(--rv-pad-x);
}
[x-cloak] { display: none !important; }

/* ─── B. Header / nav / footer ─────────────────────────────────────── */
.rv-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rv-line);
}
.rv-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; height: 68px;
}
.rv-logo {
  font-family: var(--rv-font-display);
  font-size: 1.4rem; font-weight: 700;
  color: var(--rv-rose-dark);
  text-decoration: none;
  letter-spacing: -.005em;
}
.rv-logo:hover { color: var(--rv-rose); text-decoration: none; }
.rv-logo-mark {
  color: var(--rv-rose);
  font-style: italic;
}
.rv-nav {
  display: flex; align-items: center; gap: 26px;
  font-size: .92rem; font-weight: 500;
}
.rv-nav > a, .rv-nav > .rv-nav-item > a {
  color: var(--rv-text);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color .15s, color .15s;
  cursor: pointer;
}
.rv-nav > a:hover, .rv-nav > .rv-nav-item > a:hover {
  color: var(--rv-rose-deep);
  border-bottom-color: var(--rv-rose);
  text-decoration: none;
}
.rv-nav-item { position: relative; }
.rv-nav-dropdown {
  position: absolute;
  top: 100%; left: 0;
  background: #fff;
  min-width: 240px;
  padding: 12px 4px;
  border-radius: var(--rv-r-md);
  box-shadow: var(--rv-shadow-hover);
  border: 1px solid var(--rv-line);
  z-index: 60;
}
.rv-nav-dropdown a {
  display: block;
  padding: 9px 18px;
  font-size: .9rem;
  border-bottom: none !important;
  color: var(--rv-text);
}
.rv-nav-dropdown a:hover {
  background: var(--rv-rose-pale);
  color: var(--rv-rose-deep);
  text-decoration: none;
}
.rv-nav-all {
  border-top: 1px solid var(--rv-line);
  margin-top: 6px; padding-top: 14px !important;
  font-weight: 600; color: var(--rv-rose-deep) !important;
}
.rv-cart-btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  background: var(--rv-rose);
  color: #fff !important;
  border: none; cursor: pointer;
  border-radius: var(--rv-r-pill);
  font-size: .9rem; font-weight: 600;
  font-family: inherit;
  transition: background .15s, transform .15s;
}
.rv-cart-btn:hover { background: var(--rv-rose-deep); text-decoration: none; }
.rv-cart-btn-count {
  display: inline-block;
  min-width: 20px; padding: 2px 6px;
  background: #fff; color: var(--rv-rose-deep);
  border-radius: 999px;
  font-size: .75rem; font-weight: 700; text-align: center;
}
.rv-burger {
  display: none;
  background: transparent; border: none;
  padding: 8px; cursor: pointer;
  font-size: 1.4rem; color: var(--rv-rose-dark);
}
@media (max-width: 920px) {
  .rv-burger { display: inline-block; }
  .rv-nav { display: none; }
  .rv-nav.open {
    display: flex; flex-direction: column;
    position: absolute; top: 68px; left: 0; right: 0;
    background: #fff;
    padding: 16px var(--rv-pad-x);
    border-bottom: 1px solid var(--rv-line);
    gap: 16px;
    align-items: flex-start;
  }
}

.rv-footer {
  background: var(--rv-rose-dark);
  color: rgba(255,255,255,.78);
  padding: 60px 0 32px;
  margin-top: 80px;
}
.rv-footer h4 {
  color: #fff;
  font-family: var(--rv-font-body);
  font-size: .85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 16px;
}
.rv-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}

/* ── Aurora Ping — aurora-borealis restock opt-in (teal + magenta + violet) ── */
.rv-aurora {
  margin: 0 0 40px;
  padding: 32px 28px 28px;
  background: var(--rv-rose-dark);
  border-radius: var(--rv-r-lg);
  position: relative;
  overflow: hidden;
  color: #fff;
  font-family: var(--rv-font-body);
  text-align: center;
}
.rv-aurora-band {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.rv-aurora-veil {
  position: absolute;
  inset: -40%;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
  animation: rvAuroraDrift 14s ease-in-out infinite alternate;
}
.rv-aurora-veil--a { background: radial-gradient(ellipse, #0A9396 0%, transparent 60%); animation-delay: 0s;   }
.rv-aurora-veil--b { background: radial-gradient(ellipse, #94D2BD 0%, transparent 60%); animation-delay: 4s; transform: translate(20%, 10%); }
.rv-aurora-veil--c { background: radial-gradient(ellipse, #EE9B00 0%, transparent 70%); animation-delay: 8s; transform: translate(-15%, 5%); opacity: 0.35; }
@keyframes rvAuroraDrift {
  from { transform: translate(-8%, -8%) scale(1);   }
  to   { transform: translate(12%, 10%) scale(1.15); }
}
.rv-aurora-inner {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 0 auto;
}
.rv-aurora-eyebrow {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.28em;
  color: #94D2BD;
  text-transform: uppercase;
  font-weight: 700;
  background: rgba(0,0,0,0.35);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148,210,189,0.3);
  margin-bottom: 12px;
}
.rv-aurora-h {
  margin: 0 0 8px;
  font-family: var(--rv-font-display);
  font-weight: 600;
  font-size: 1.25rem;
  color: #fff;
  line-height: 1.4;
  text-transform: none;
}
.rv-aurora-copy {
  margin: 0 auto 18px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.55;
  max-width: 460px;
}
.rv-aurora-radar {
  display: inline-flex;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(148,210,189,0.35);
  border-radius: 999px;
  overflow: hidden;
  min-width: 320px;
  max-width: 460px;
  width: 100%;
}
.rv-aurora-radar:focus-within { border-color: var(--rv-rose); box-shadow: 0 0 0 3px rgba(10,147,150,0.25); }
.rv-aurora-radar input {
  flex: 1;
  background: transparent;
  border: 0; outline: 0;
  padding: 11px 18px;
  color: #fff;
  font-size: 14px;
  font-family: var(--rv-font-body);
  min-width: 0;
}
.rv-aurora-radar input::placeholder { color: rgba(255,255,255,0.4); }
.rv-aurora-radar button {
  border: 0;
  background: linear-gradient(135deg, #0A9396 0%, #94D2BD 100%);
  color: var(--rv-rose-dark);
  padding: 0 22px;
  font-family: var(--rv-font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  cursor: pointer;
  white-space: nowrap;
  transition: filter 0.12s ease;
}
.rv-aurora-radar button:hover:not(:disabled) { filter: brightness(1.12); }
.rv-aurora-radar button:disabled { opacity: 0.55; cursor: progress; }
.rv-aurora-glow {
  margin: 14px auto 0;
  padding: 8px 16px;
  font-size: 0.8125rem;
  border-radius: 999px;
  display: inline-block;
  max-width: 460px;
}
.rv-aurora-glow--ok   { background: rgba(148,210,189,0.18); color: #C8F0E0; border: 1px solid rgba(148,210,189,0.4); }
.rv-aurora-glow--dark { background: rgba(238,155,0,0.12);   color: #FFD580; border: 1px solid rgba(238,155,0,0.35); }
.rv-footer ul { list-style: none; padding: 0; margin: 0; }
.rv-footer li { padding: 5px 0; font-size: .9rem; }
.rv-footer a { color: rgba(255,255,255,.78); }
.rv-footer a:hover { color: #fff; text-decoration: none; }
.rv-footer-bottom {
  margin-top: 40px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: .82rem; color: rgba(255,255,255,.55);
}
.rv-age-bar {
  background: var(--rv-rose-dark);
  color: var(--rv-rose-pale);
  text-align: center;
  padding: 8px var(--rv-pad-x);
  font-size: .82rem;
  letter-spacing: .04em;
}
@media (max-width: 720px) {
  .rv-footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

/* ─── C. Atoms — buttons, chips, callouts ─────────────────────────── */
.rv-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--rv-rose); color: #fff;
  border: none; cursor: pointer;
  border-radius: var(--rv-r-md);
  font-family: inherit;
  font-size: 1rem; font-weight: 600;
  text-decoration: none;
  transition: background .15s, transform .15s, box-shadow .15s;
  box-shadow: var(--rv-shadow);
}
.rv-btn:hover {
  background: var(--rv-rose-deep);
  text-decoration: none; color: #fff;
  box-shadow: var(--rv-shadow-hover);
}
.rv-btn:disabled,
.rv-btn[disabled] {
  opacity: .5; cursor: not-allowed;
  background: var(--rv-text-soft);
}
.rv-btn--outline {
  background: transparent; color: var(--rv-rose-deep);
  border: 1.5px solid var(--rv-rose);
  box-shadow: none;
}
.rv-btn--outline:hover {
  background: var(--rv-rose-pale); color: var(--rv-rose-deep);
}
.rv-btn--large { padding: 16px 32px; font-size: 1.1rem; }
.rv-btn--block { width: 100%; }

.rv-chip {
  display: inline-block;
  padding: 5px 13px;
  background: var(--rv-rose-pale);
  color: var(--rv-rose-deep);
  border: 1px solid var(--rv-line);
  border-radius: var(--rv-r-pill);
  font-size: .82rem; font-weight: 600;
  letter-spacing: .02em;
}

.rv-tip {
  background: linear-gradient(90deg, var(--rv-rose-pale), #fff);
  border-right: 4px solid var(--rv-rose);
  border-radius: var(--rv-r-md);
  padding: 18px 22px;
  margin: 24px 0;
  font-size: .98rem;
}
.rv-tip-label {
  display: inline-block;
  color: var(--rv-rose);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

/* ─── D. Home hero + product grid ─────────────────────────────────── */
.rv-hero {
  background: linear-gradient(135deg, var(--rv-rose-pale) 0%, #fff 100%);
  padding: 80px 0 100px;
  border-bottom: 1px solid var(--rv-line);
}
.rv-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.rv-hero-eyebrow {
  display: inline-block;
  background: var(--rv-rose);
  color: #fff;
  padding: 6px 14px;
  border-radius: var(--rv-r-pill);
  font-size: .75rem; font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.rv-hero h1 em {
  color: var(--rv-rose);
  font-style: italic;
}
.rv-hero-sub {
  font-size: 1.15rem;
  color: var(--rv-text-soft);
  margin: 12px 0 32px;
  max-width: 540px;
  line-height: 1.55;
}
.rv-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.rv-hero-art {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 360px;
}
.rv-hero-art img {
  max-height: 480px; width: auto;
  filter: drop-shadow(0 30px 50px rgba(168,93,112,.25));
}
.rv-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
  padding-top: 36px;
  border-top: 1px solid var(--rv-line);
}
.rv-stat-num {
  font-family: var(--rv-font-display);
  font-size: 2.4rem; font-weight: 700;
  color: var(--rv-rose);
}
.rv-stat-label {
  font-size: .85rem; color: var(--rv-text-soft);
  letter-spacing: .04em;
}
@media (max-width: 820px) {
  .rv-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .rv-hero { padding: 48px 0 60px; }
  .rv-hero-stats { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}

.rv-section {
  padding: 80px 0;
}
.rv-section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.rv-section-head h2 em { color: var(--rv-rose); font-style: italic; }
.rv-section-head p { color: var(--rv-text-soft); font-size: 1.05rem; }

.rv-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.rv-product-card {
  background: #fff;
  border: 1px solid var(--rv-line);
  border-radius: var(--rv-r-md);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  display: flex; flex-direction: column;
}
.rv-product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--rv-shadow-hover);
  border-color: var(--rv-line-strong);
}
.rv-product-card a { color: inherit; text-decoration: none; display: contents; }
.rv-product-card-img {
  aspect-ratio: 1/1;
  background: linear-gradient(160deg, var(--rv-rose-pale), #fff);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.rv-product-card-img img {
  max-height: 220px; width: auto;
  transition: transform .3s;
}
.rv-product-card:hover .rv-product-card-img img { transform: scale(1.05); }
.rv-product-card-body {
  padding: 20px 22px 24px;
  display: flex; flex-direction: column; flex: 1;
}
.rv-product-card-name {
  font-family: var(--rv-font-display);
  font-size: 1.18rem; font-weight: 700;
  color: var(--rv-rose-dark);
  margin-bottom: 4px;
}
.rv-product-card-tag {
  font-size: .85rem; color: var(--rv-text-soft);
  margin-bottom: 16px;
}
.rv-product-card-bottom {
  margin-top: auto;
  display: flex; align-items: center; justify-content: space-between;
}
.rv-product-card-price {
  font-family: var(--rv-font-display);
  font-size: 1.3rem; font-weight: 700;
  color: var(--rv-rose);
}
.rv-product-card-cta {
  font-size: .85rem; font-weight: 600;
  color: var(--rv-rose-deep);
}

/* ─── E. PDP layout ───────────────────────────────────────────────── */
.rv-pdp {
  padding: 48px 0 80px;
}
.rv-breadcrumbs {
  font-size: .85rem; color: var(--rv-text-soft);
  margin-bottom: 28px;
}
.rv-breadcrumbs a { color: var(--rv-text-soft); }
.rv-breadcrumbs a:hover { color: var(--rv-rose-deep); }
.rv-pdp-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: start;
}
.rv-pdp-gallery {
  position: sticky; top: 92px;
  background: linear-gradient(160deg, var(--rv-rose-pale), #fff);
  border-radius: var(--rv-r-lg);
  padding: 40px;
  aspect-ratio: 1/1;
  display: flex; align-items: center; justify-content: center;
}
.rv-pdp-gallery img {
  max-height: 100%; max-width: 100%;
}
.rv-pdp-head h1 { margin: 6px 0 14px; }
.rv-pdp-hero {
  font-size: 1.05rem; color: var(--rv-text-soft);
  margin-bottom: 24px;
}
.rv-pdp-price {
  font-family: var(--rv-font-display);
  font-size: 2rem; font-weight: 700;
  color: var(--rv-rose);
  margin-bottom: 8px;
  display: flex; align-items: baseline; gap: 14px;
}
.rv-price-strike {
  font-size: 1.25rem; color: var(--rv-text-soft);
  text-decoration: line-through;
  font-weight: 500;
}
.rv-price-sale {
  color: var(--rv-rose);
}
.rv-product-card-price-row {
  display: flex; align-items: baseline; gap: 8px;
}
.rv-product-card-price-strike {
  font-size: .85rem; color: var(--rv-text-soft);
  text-decoration: line-through;
}
.rv-pdp-price-note { font-size: .85rem; color: var(--rv-text-soft); margin-bottom: 32px; }

.rv-pdp-flavor-label {
  display: flex; justify-content: space-between;
  font-size: .82rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--rv-rose-dark);
  margin-bottom: 14px;
}
.rv-pdp-flavor-count { color: var(--rv-text-soft); font-weight: 500; }
.rv-flavor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
  margin-bottom: 28px;
}
.rv-flavor-pick {
  padding: 12px 14px;
  background: #fff;
  border: 1.5px solid var(--rv-line);
  border-radius: var(--rv-r-md);
  font-size: .88rem; font-weight: 500;
  text-align: left; cursor: pointer;
  color: var(--rv-text);
  font-family: inherit;
  transition: all .15s;
  position: relative;
}
.rv-flavor-pick:hover {
  border-color: var(--rv-rose);
  background: var(--rv-rose-pale);
}
.rv-flavor-pick.selected {
  border-color: var(--rv-rose);
  background: var(--rv-rose);
  color: #fff;
}
.rv-flavor-pick.selected::after {
  content: "✓";
  position: absolute; top: 4px; right: 8px;
  font-size: .75rem;
}

.rv-pdp-buy-row {
  display: flex; gap: 12px; align-items: center;
  margin: 28px 0;
}
.rv-qty {
  display: inline-flex; align-items: center;
  border: 1.5px solid var(--rv-line);
  border-radius: var(--rv-r-md);
  overflow: hidden;
}
.rv-qty button {
  background: transparent; border: none;
  padding: 10px 14px; cursor: pointer;
  font-size: 1.1rem; color: var(--rv-rose-deep);
}
.rv-qty button:hover { background: var(--rv-rose-pale); }
.rv-qty input {
  width: 44px; text-align: center;
  border: none; padding: 10px 0;
  font-family: inherit; font-size: 1rem; font-weight: 600;
  background: transparent;
}
.rv-qty input:focus { outline: none; }

.rv-pdp-specs {
  margin-top: 36px;
  background: var(--rv-rose-pale);
  border-radius: var(--rv-r-md);
  padding: 24px 28px;
}
.rv-pdp-specs h3 {
  font-size: 1rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--rv-rose-deep);
  margin-bottom: 14px;
}
.rv-pdp-specs dl {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 8px 20px;
  margin: 0;
}
.rv-pdp-specs dt {
  font-weight: 600; color: var(--rv-rose-dark);
  font-size: .92rem;
}
.rv-pdp-specs dd {
  margin: 0; color: var(--rv-text);
  font-size: .92rem;
}

@media (max-width: 880px) {
  .rv-pdp-grid { grid-template-columns: 1fr; gap: 32px; }
  .rv-pdp-gallery { position: static; aspect-ratio: 1/1; padding: 24px; }
}

/* ─── F. Flavor collection ────────────────────────────────────────── */
.rv-flavor-collection {
  padding: 60px 0;
}
.rv-flavor-section { margin-bottom: 56px; }
.rv-flavor-section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  border-bottom: 2px solid var(--rv-line);
  padding-bottom: 12px;
  margin-bottom: 24px;
}
.rv-flavor-section-head h2 { margin: 0; font-size: 1.4rem; }
.rv-flavor-section-head a {
  font-size: .85rem; font-weight: 600;
}
.rv-flavor-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.rv-flavor-tile {
  padding: 16px 18px;
  border: 1px solid var(--rv-line);
  border-radius: var(--rv-r-md);
  background: #fff;
  font-weight: 500;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  transition: border-color .15s, background .15s;
}
.rv-flavor-tile:hover {
  border-color: var(--rv-rose);
  background: var(--rv-rose-pale);
  text-decoration: none; color: var(--rv-rose-dark);
}
.rv-flavor-tile-arrow { color: var(--rv-rose); font-size: 1.1rem; }

/* ─── G. Policy / cart / checkout / generic prose page ────────────── */
.rv-prose {
  padding: 48px 0 80px;
  max-width: 760px; margin: 0 auto;
}
.rv-prose h1 { font-size: 2.4rem; margin-bottom: 24px; }
.rv-prose h2 { margin-top: 1.8em; margin-bottom: .5em; font-size: 1.6rem; }
.rv-prose h3 { margin-top: 1.4em; font-size: 1.2rem; }
.rv-prose ul, .rv-prose ol { padding-left: 24px; margin-bottom: 1em; }
.rv-prose li { margin: 6px 0; }
.rv-prose .rv-prose-meta {
  color: var(--rv-text-soft); font-size: .9rem;
  border-bottom: 1px solid var(--rv-line);
  padding-bottom: 16px; margin-bottom: 28px;
}

.rv-cart, .rv-checkout {
  padding: 48px 0 80px;
}
.rv-cart-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
}
.rv-cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto auto;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--rv-line);
}
.rv-cart-item-img {
  background: var(--rv-rose-pale);
  border-radius: var(--rv-r-sm);
  aspect-ratio: 1/1;
  display: flex; align-items: center; justify-content: center;
  padding: 8px;
}
.rv-cart-item-img img { max-height: 60px; max-width: 60px; }
.rv-cart-item-name { font-weight: 600; }
.rv-cart-item-flavor { font-size: .82rem; color: var(--rv-text-soft); }
.rv-cart-item-price { font-weight: 600; color: var(--rv-rose); white-space: nowrap; }
.rv-cart-remove {
  background: transparent; border: none; cursor: pointer;
  color: var(--rv-text-soft); font-size: 1.15rem; padding: 4px 8px;
}
.rv-cart-remove:hover { color: var(--rv-rose-deep); }

.rv-summary {
  background: var(--rv-rose-pale);
  border-radius: var(--rv-r-md);
  padding: 28px 28px 32px;
  position: sticky; top: 92px;
}
.rv-summary h3 { font-size: 1.2rem; margin-bottom: 18px; }
.rv-summary-row {
  display: flex; justify-content: space-between;
  padding: 6px 0;
  font-size: .95rem;
}
.rv-summary-total {
  margin-top: 12px; padding-top: 12px;
  border-top: 1px solid var(--rv-line-strong);
  font-size: 1.15rem; font-weight: 700;
  color: var(--rv-rose-dark);
}

.rv-form-field {
  margin-bottom: 16px;
}
.rv-form-field label {
  display: block;
  font-size: .85rem; font-weight: 600;
  margin-bottom: 6px;
  color: var(--rv-rose-dark);
}
.rv-form-field input,
.rv-form-field select,
.rv-form-field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--rv-line);
  border-radius: var(--rv-r-md);
  font-family: inherit; font-size: 1rem;
  background: #fff; color: var(--rv-text);
  transition: border-color .15s;
}
.rv-form-field input:focus,
.rv-form-field select:focus,
.rv-form-field textarea:focus {
  outline: none; border-color: var(--rv-rose);
}
.rv-form-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 720px) {
  .rv-cart-grid { grid-template-columns: 1fr; gap: 28px; }
  .rv-summary { position: static; }
  .rv-form-row { grid-template-columns: 1fr; }
}

/* ─── H. Drawer (mini-cart) + age popup ───────────────────────────── */
.rv-drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(26,15,20,.55);
  z-index: 90;
}
.rv-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(420px, 92vw);
  background: #fff;
  z-index: 100;
  display: flex; flex-direction: column;
  box-shadow: -10px 0 40px rgba(0,0,0,.18);
  animation: rv-slide-in .25s ease-out;
}
@keyframes rv-slide-in { from { transform: translateX(100%); } to { transform: translateX(0); } }
.rv-drawer-head {
  padding: 20px 24px;
  border-bottom: 1px solid var(--rv-line);
  display: flex; align-items: center; justify-content: space-between;
}
.rv-drawer-head h3 { margin: 0; font-size: 1.2rem; }
.rv-drawer-close {
  background: transparent; border: none; cursor: pointer;
  font-size: 1.4rem; color: var(--rv-text-soft);
}
.rv-drawer-body {
  flex: 1; overflow-y: auto;
  padding: 8px 24px;
}
.rv-drawer-foot {
  border-top: 1px solid var(--rv-line);
  padding: 18px 24px 22px;
}
.rv-drawer-foot .rv-summary-total {
  margin-bottom: 14px; padding-top: 0; border-top: none;
}
.rv-drawer-empty {
  text-align: center;
  padding: 60px 24px;
  color: var(--rv-text-soft);
}

.rv-age-popup {
  position: fixed; inset: 0;
  background: rgba(26,15,20,.85);
  z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.rv-age-card {
  background: #fff;
  border-radius: var(--rv-r-lg);
  padding: 40px 32px;
  max-width: 460px; width: 100%;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
}
.rv-age-card h2 { font-size: 1.6rem; margin-bottom: 10px; }
.rv-age-card p { color: var(--rv-text-soft); margin-bottom: 24px; }
.rv-age-buttons {
  display: flex; gap: 12px;
  justify-content: center;
}

/* ── RiA homepage components (rv-hero / rv-section / rv-card / rv-faq / rv-flavor-chip) ── */
.rv-hero { padding: 80px 0; }
.rv-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 0 28px;
}
.rv-hero-image { text-align: center; }
.rv-hero-image img {
  max-width: 360px; width: 100%; height: auto;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,.35));
}
@media (max-width: 860px) {
  .rv-hero-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
}

.rv-eyebrow {
  font-size: .82rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--rv-rose-deep); margin: 0 0 8px;
}
.rv-eyebrow--light { color: rgba(255,255,255,.78); }

.rv-h1 {
  font-family: var(--rv-font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.08;
  margin: 0 0 18px;
}
.rv-h2 {
  font-family: var(--rv-font-display);
  font-size: 2rem;
  margin: 0 0 28px;
}
.rv-h2--light { color: #fff; }
.rv-h2--gradient {
  background: linear-gradient(135deg, var(--rv-rose), var(--rv-rose-deep));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  display: inline-block;
}

.rv-lede { font-size: 1.1rem; opacity: .86; max-width: 520px; margin-bottom: 28px; }
.rv-fineprint { font-size: .82rem; opacity: .68; margin-top: 18px; }
.rv-cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.rv-price-msrp { color: var(--rv-text-soft); }
.rv-price-msrp s { text-decoration: line-through; }

.rv-btn--light { background: #fff !important; color: var(--rv-rose-dark) !important; }
.rv-btn--outline-light {
  background: transparent !important;
  border: 2px solid #fff !important;
  color: #fff !important;
}
.rv-btn--outline-light:hover { background: rgba(255,255,255,.15) !important; color: #fff !important; }

.rv-section { padding: 64px 0; }
.rv-section--soft { background: var(--rv-rose-pale); }
.rv-section--dark { background: var(--rv-rose-dark); color: #fff; }
.rv-section-cta { margin-top: 32px; text-align: center; }
.rv-container--narrow { max-width: 880px !important; }

.rv-card-grid {
  display: grid;
  gap: 20px;
}
.rv-card-grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.rv-card-grid--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

.rv-card {
  background: #fff;
  border-radius: var(--rv-r-md);
  padding: 24px;
  box-shadow: var(--rv-shadow);
}
.rv-card h3 { margin: 0 0 10px; color: var(--rv-rose-deep); font-size: 1.05rem; }
.rv-card p  { margin: 0; color: var(--rv-text-soft); font-size: .92rem; line-height: 1.55; }

.rv-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}
.rv-feature-image { text-align: center; }
.rv-feature-image img { max-width: 340px; width: 100%; height: auto; }
@media (max-width: 860px) {
  .rv-feature-grid { grid-template-columns: 1fr; }
}

.rv-spec-list { list-style: none; padding: 0; margin: 0 0 28px; }
.rv-spec-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--rv-line);
  display: flex; justify-content: space-between;
}
.rv-spec-list li:last-child { border-bottom: none; }
.rv-spec-list span { color: var(--rv-text-soft); }

.rv-flavor-strip {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
}
.rv-flavor-chip {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--rv-r-md);
  padding: 16px;
  text-decoration: none;
  color: #fff;
  font-size: .95rem; font-weight: 600;
  text-align: center;
  transition: background .15s, transform .15s;
}
.rv-flavor-chip:hover {
  background: rgba(255,255,255,.18);
  transform: translateY(-2px);
  text-decoration: none;
  color: #fff;
}

.rv-review-card {
  background: var(--rv-rose-pale);
  border-radius: var(--rv-r-md);
  padding: 24px;
}
.rv-review-card p { margin: 0 0 14px; font-style: italic; color: var(--rv-text); }
.rv-review-card cite { font-size: .85rem; color: var(--rv-text-soft); font-style: normal; }
.rv-stars { color: #f4a72e; margin-bottom: 10px; letter-spacing: 1px; }

.rv-faq {
  background: #fff;
  border-radius: var(--rv-r-md);
  padding: 18px 22px;
  margin-bottom: 12px;
  border-left: 4px solid var(--rv-rose);
}
.rv-faq summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
.rv-faq summary::-webkit-details-marker { display: none; }
.rv-faq summary::after { content: " +"; color: var(--rv-rose); }
.rv-faq[open] summary::after { content: " −"; }
.rv-faq p { margin: 10px 0 0; color: var(--rv-text-soft); }

/* ── Imported WP page prose reset ──
   Pages that inject raw[slug] (Astra+Elementor wrapper divs) live inside
   .rv-imported-page. Without Elementor's frontend CSS the layout collapses,
   so we apply a generic prose treatment: unwrap nested wrappers visually,
   stack everything in a block flow, and apply readable typography. */
.rv-imported-page {
  padding: 32px 0 64px;
  background: #fff;
  color: var(--rv-text);
}
.rv-imported-page > .rv-container,
.rv-imported-page .rv-container { max-width: 880px; }

.rv-imported-page h1,
.rv-imported-page h2,
.rv-imported-page h3,
.rv-imported-page h4 {
  font-family: var(--rv-font-display);
  color: var(--rv-rose-dark);
  margin: 1.6em 0 .6em;
  line-height: 1.18;
}
.rv-imported-page h1 { font-size: 2rem; }
.rv-imported-page h2 { font-size: 1.6rem; }
.rv-imported-page h3 { font-size: 1.2rem; }
.rv-imported-page p,
.rv-imported-page li {
  font-size: 1rem; line-height: 1.7; color: var(--rv-text);
}
.rv-imported-page p { margin: 0 0 1em; }
.rv-imported-page a { color: var(--rv-rose-deep); }
.rv-imported-page a:hover { color: var(--rv-rose); }
.rv-imported-page ul, .rv-imported-page ol { margin: 0 0 1em 1.2em; padding: 0; }
.rv-imported-page img {
  max-width: 100%; height: auto;
  border-radius: var(--rv-r-md);
  margin: 14px 0;
}
.rv-imported-page hr {
  border: none; border-top: 1px solid var(--rv-line); margin: 32px 0;
}
.rv-imported-page table {
  width: 100%; border-collapse: collapse; margin: 1em 0;
}
.rv-imported-page table th,
.rv-imported-page table td {
  padding: 10px 12px; border-bottom: 1px solid var(--rv-line);
  text-align: left;
}

/* Unwrap Elementor / Astra wrappers visually — keep DOM intact, drop flex/grid
   tricks that depend on Elementor frontend CSS. */
.rv-imported-page .elementor,
.rv-imported-page .elementor-section,
.rv-imported-page .elementor-container,
.rv-imported-page .elementor-row,
.rv-imported-page .elementor-column,
.rv-imported-page .elementor-column-wrap,
.rv-imported-page .elementor-widget-wrap,
.rv-imported-page .elementor-element,
.rv-imported-page .elementor-widget,
.rv-imported-page .elementor-widget-container,
.rv-imported-page .e-con,
.rv-imported-page .e-con-inner,
.rv-imported-page .e-flex,
.rv-imported-page .e-parent,
.rv-imported-page .e-child,
.rv-imported-page .e-grid,
.rv-imported-page .entry-content,
.rv-imported-page .ast-container,
.rv-imported-page .ast-article-single,
.rv-imported-page .site-content,
.rv-imported-page .content-area {
  display: block !important;
  width: auto !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  flex: none !important;
  grid-template-columns: none !important;
}
/* Re-add small spacing for paragraph-level containers */
.rv-imported-page .elementor-widget-text-editor,
.rv-imported-page .elementor-widget-heading {
  margin: 0 0 16px !important;
  display: block !important;
}
/* Heading widgets — kill Elementor size-default which sets odd line-heights */
.rv-imported-page .elementor-heading-title { font: inherit !important; color: inherit !important; }
.rv-imported-page .entry-header { display: none !important; }
.rv-imported-page .related.products,
.rv-imported-page .upsells.products { display: none !important; }
/* Hide WC variation/cart forms (we have our own Alpine PDP) */
.rv-imported-page form.variations_form,
.rv-imported-page form.cart { display: none !important; }
/* Hide the WC default product gallery + summary (we render our own in pdp.njk) */
.rv-imported-page .woocommerce-product-gallery,
.rv-imported-page .product_meta,
.rv-imported-page .summary.entry-summary { display: none !important; }
/* Astra notice / sale badge stuck on the imported PDP body — hide */
.rv-imported-page .woocommerce-notices-wrapper,
.rv-imported-page .onsale { display: none !important; }
