/** Shopify CDN: Minification failed

Line 42:0 All "@import" rules must come first

**/
/* ============================================================
   RUME Welcome Funnel — CSS (2026-05-10, V2 redesign)
   Side-panel desktop / bottom-sheet mobile. Aesop-coded entryway.
   Composes with rume-welcome-funnel.liquid + rume-welcome.js.

   Brand stack: Light #fcf9f1 / Dark #312923 / Copper foil for offer-state / accents.
   Type: Trade Gothic body, Thyga display, Cormorant Garamond serif for the percent
   and other moments-of-grace (the one approved breach of the 4-font brand stack).
   ============================================================ */

/* ====== BRAND FONTS (self-hosted) ======
   Names match `assets/rume-brand.css.liquid` so the same .otf files aren't
   registered twice under different aliases. Browser dedupes by name + src. */
@font-face {
  font-family: 'Trade Gothic';
  src: url('TradeGothicLTStd.otf?v=1') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Trade Gothic';
  src: url('TradeGothicLTStd-Bold.otf?v=1') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Thyga';
  src: url('Thyga-Semirounded.otf?v=1') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* Cormorant Garamond — the one approved exception. Used for the percent
   number and (sparingly) on the home page hero. Refined Garamond, Aesop-coded. */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500&display=swap');

/* ====== TOKENS (scoped to the funnel root) ====== */
[data-rume-welcome-root] {
  --rw-light: #fcf9f1;
  --rw-dark: #312923;
  --rw-dark-soft: rgba(49, 41, 35, 0.65);
  --rw-dark-faint: rgba(49, 41, 35, 0.32);
  --rw-dark-mute: rgba(49, 41, 35, 0.12);
  --rw-copper-1: #8a5418;
  --rw-copper-2: #a86d2e;
  --rw-copper-3: #c8924a;
  --rw-copper-hi: #e3b885;
  --rw-copper-shimmer: rgba(255, 242, 220, 0.65);
  --rw-font-body: 'Trade Gothic', Helvetica, Arial, sans-serif;
  --rw-font-display: 'Thyga', 'Trade Gothic', Helvetica, Arial, serif;
  --rw-font-serif: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  --rw-shadow-panel: -12px 0 64px rgba(49, 28, 8, 0.18);
  --rw-shadow-sheet: 0 -12px 64px rgba(49, 28, 8, 0.18);
  --rw-radius-sheet: 22px;
  --rw-overlay: rgba(28, 22, 18, 0.5); /* 50% dim per Cooper spec */
}

[data-rume-welcome-root] *,
[data-rume-welcome-root] *::before,
[data-rume-welcome-root] *::after {
  box-sizing: border-box;
}

/* ============================================================
   POPUP — SHARED STRUCTURE
   ============================================================ */
.rume-popup {
  position: fixed;
  inset: 0;
  z-index: 99000;
  font-family: var(--rw-font-body);
  color: var(--rw-dark);
  letter-spacing: -0.025em; /* Brand guide: kerning -25 for body. Tracked-uppercase elements override below. */
  pointer-events: none; /* Children opt back in */
}
.rume-popup[hidden] { display: none; }

/* The dim wash — same on both layouts, just covers different geometry */
.rume-popup__overlay {
  position: absolute;
  inset: 0;
  background: var(--rw-overlay);
  opacity: 0;
  pointer-events: auto;
  animation: rume-fade-in 900ms ease-out forwards;
}

/* The panel/sheet container — geometry diverges per breakpoint below */
.rume-popup__card {
  position: absolute;
  background: var(--rw-light);
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  overflow: hidden; /* Children scroll, container clips */
}

/* The scrollable content area inside the card */
.rume-popup__content {
  flex: 1 1 auto;
  overflow-y: auto;
  overscroll-behavior: contain; /* Don't scroll the page behind */
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(36px, 6vh, 80px) clamp(28px, 6vw, 56px) clamp(6px, 3vh, 42px);
  text-align: center;
  width: 100%;
  min-height: 100%;
}

/* Close button — top-right, subtle */
.rume-popup__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--rw-dark);
  opacity: 0.42;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 240ms ease, background-color 240ms ease;
}
@media (hover: hover) {
  .rume-popup__close:hover {
    opacity: 1;
    background: var(--rw-dark-mute);
  }
}

/* Bow — thin copper line bow, centered above the eyebrow */
.rume-popup__bow {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  width: 34px;
  height: 26px;
  color: var(--rw-copper-2);
  opacity: 0.8;
  pointer-events: none;
}

/* Drag handle — visible only on mobile sheet */
.rume-popup__handle {
  display: none;
  width: 44px;
  height: 4px;
  background: var(--rw-dark);
  opacity: 0.18;
  border-radius: 999px;
  margin: 12px auto 0;
  flex: 0 0 auto;
  cursor: grab;
  touch-action: none; /* JS handles drag */
}
.rume-popup__handle:active { cursor: grabbing; }

/* ============================================================
   MOBILE: BOTTOM SHEET (default; below breakpoint)
   ============================================================ */
.rume-popup__card {
  /* Sheet from bottom on mobile by default */
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 88dvh;
  height: 88vh; /* fallback */
  max-height: 88vh;
  border-radius: var(--rw-radius-sheet) var(--rw-radius-sheet) 0 0;
  box-shadow: var(--rw-shadow-sheet);
  transform: translateY(100%);
  animation: rume-sheet-up 700ms cubic-bezier(0.22, 0.9, 0.32, 1) 80ms forwards;
}
.rume-popup__handle { display: block; }

/* Copper hairline accent on top edge of sheet — restrained, signature gesture */
.rume-popup__card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 64px;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg,
    transparent 0%,
    var(--rw-copper-2) 50%,
    transparent 100%);
  opacity: 0.45;
}

/* JS-driven drag offset — overrides animation when active */
.rume-popup__card[data-rw-dragging="true"] { animation: none; transition: none; }

/* ============================================================
   DESKTOP: SIDE PANEL (≥992px)
   ============================================================ */
@media (min-width: 992px) {
  .rume-popup__card {
    /* Panel from right edge on desktop */
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: 50vw;
    min-width: 480px;
    max-width: 720px;
    height: 100dvh;
    height: 100vh; /* fallback */
    max-height: none;
    border-radius: 0;
    box-shadow: var(--rw-shadow-panel);
    transform: translateX(100%);
    animation: rume-panel-in 800ms cubic-bezier(0.22, 0.9, 0.32, 1) 100ms forwards;
  }
  .rume-popup__handle { display: none; }
  /* Copper accent moves to left edge of panel — entry signature */
  .rume-popup__card::before {
    top: 50%;
    left: 0;
    width: 1px;
    height: 64px;
    background: linear-gradient(180deg,
      transparent 0%,
      var(--rw-copper-2) 50%,
      transparent 100%);
    transform: translateY(-50%);
    opacity: 0.5;
  }
  /* Generous internal padding on desktop */
  .rume-popup__content {
    padding: 80px clamp(48px, 6vw, 88px);
  }
}

/* ============================================================
   FULLSCREEN CARD-ON-MEDIA (2026-07-03) — "champagne on arrival"
   Overrides the sheet/side-panel geometry: full-bleed warm media
   (steam-rising hot latte) behind a centered cream stationery card.
   Placed AFTER the desktop side-panel rules so it wins at all widths,
   but BEFORE the reduced-motion block so that still governs animation.
   ============================================================ */
.rume-popup {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 5vh, 56px);
}

/* Full-bleed warm media layer */
.rume-popup__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.rume-popup__video,
.rume-popup__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Warm vignette so the cream card reads against the media */
.rume-popup__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 50% 42%,
    rgba(28, 22, 18, 0) 32%,
    rgba(28, 22, 18, 0.42) 100%);
}

/* Overlay dim sits above media, below card; still the tap-to-dismiss catcher */
.rume-popup__overlay { z-index: 1; }

/* The stationery card — centered, floating, auto height */
.rume-popup__card {
  position: relative;
  z-index: 2;
  zoom: 0.82; /* Scale the whole card (box + type + spacing) down proportionally */
  top: auto; right: auto; bottom: auto; left: auto;
  width: min(432px, 92vw);
  min-width: 0;
  max-width: 92vw;
  height: auto;
  max-height: min(88vh, 760px);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(30, 18, 6, 0.44), 0 2px 10px rgba(30, 18, 6, 0.28);
  transform: translateY(18px) scale(0.985);
  opacity: 0;
  animation: rume-card-in 780ms cubic-bezier(0.22, 0.9, 0.32, 1) 120ms forwards;
}
.rume-popup__handle { display: none; }

/* Copper hairline — top-center of the card, like an invitation seal */
.rume-popup__card::before {
  top: 0;
  left: 50%;
  width: 72px;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent 0%, var(--rw-copper-2) 50%, transparent 100%);
  opacity: 0.5;
  z-index: 4;
}

/* Copper trim — a fine printed border set just inside the card edge */
.rume-popup__card::after {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid var(--rw-copper-2);
  border-radius: 4px;
  opacity: 0.62;
  pointer-events: none;
  z-index: 3;
}

/* Inner padding applies at ALL widths so the bow clears the eyebrow and copy
   never touches the card edge — not just on wide desktop. */
.rume-popup__content {
  padding: clamp(44px, 6vh, 72px) clamp(36px, 5vw, 56px) clamp(10px, 3vh, 34px);
}

@media (min-width: 992px) {
  .rume-popup__card {
    top: auto; right: auto; bottom: auto; left: auto;
    width: min(460px, 90vw);
    min-width: 0;
    max-width: 90vw;
    height: auto;
    max-height: min(86vh, 800px);
    border-radius: 8px;
    box-shadow: 0 40px 110px rgba(30, 18, 6, 0.46), 0 2px 12px rgba(30, 18, 6, 0.3);
    transform: translateY(18px) scale(0.985);
    animation: rume-card-in 820ms cubic-bezier(0.22, 0.9, 0.32, 1) 140ms forwards;
  }
  /* Restore top-center hairline (base desktop rule moved it to the left edge) */
  .rume-popup__card::before {
    top: 0;
    left: 50%;
    width: 72px;
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent 0%, var(--rw-copper-2) 50%, transparent 100%);
    opacity: 0.5;
  }
}

@keyframes rume-card-in {
  from { opacity: 0; transform: translateY(18px) scale(0.985); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ============================================================
   PAGE 1 + PAGE 2 (content)
   ============================================================ */
.rume-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}
.rume-page[hidden] { display: none; }

/* ====== WELCOME BACK — returning-customer gate ====== */
.rume-page--back { justify-content: center; padding: 8px 0; }
.rume-back__title {
  font-family: var(--rw-font-serif);
  font-weight: 300;
  font-size: clamp(52px, 16vw, 70px);
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--rw-dark);
  margin: 8px 0 0;
}
@media (min-width: 992px) {
  .rume-back__title { font-size: clamp(62px, 6vw, 78px); }
}
.rume-back__body {
  font-family: var(--rw-font-body);
  font-size: 14px;
  line-height: 1.65;
  color: var(--rw-dark);
  opacity: 0.78;
  margin: 20px 0 30px;
  max-width: 340px;
}
@media (min-width: 992px) {
  .rume-back__body { font-size: 15px; margin: 24px 0 36px; max-width: 380px; }
}
.rume-back__actions {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rume-back__btn {
  width: 100%;
  padding: 18px 26px;
  border-radius: 2px;
  font-family: var(--rw-font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 240ms ease, opacity 240ms ease, background 240ms ease, color 240ms ease;
}
.rume-back__btn--outline {
  background: transparent;
  color: var(--rw-dark);
  border: 1.5px solid var(--rw-dark);
}
.rume-back__btn--filled {
  background: var(--rw-dark);
  color: var(--rw-light);
  border: 1.5px solid var(--rw-dark);
}
.rume-back__btn[disabled] { opacity: 0.5; cursor: not-allowed; transform: none; }
@media (hover: hover) {
  .rume-back__btn--outline:hover { background: var(--rw-dark); color: var(--rw-light); transform: translateY(-1px); }
  .rume-back__btn--filled:hover { transform: translateY(-1px); opacity: 0.92; }
}
/* ====== EYEBROW — small caps Trade Gothic ====== */
.rume-eyebrow {
  font-family: var(--rw-font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rw-dark);
  margin: 14px 0 4px;
}
@media (min-width: 992px) {
  .rume-eyebrow { font-size: 12px; margin-top: 14px; margin-bottom: 8px; }
}

/* ====== TICKER — the moment of grace ====== */
.rume-ticker {
  font-family: var(--rw-font-serif);
  font-weight: 300;
  /* Mobile: works at 375px baseline. Desktop scales up via media query. */
  font-size: clamp(96px, 28vw, 132px);
  line-height: 0.9;
  letter-spacing: -0.01em;
  color: var(--rw-dark);
  margin: 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}
@media (min-width: 992px) {
  .rume-ticker { font-size: clamp(140px, 12vw, 172px); }
}
.rume-ticker__num {
  font-variant-numeric: tabular-nums;
  font-feature-settings: 'tnum' 1;
}
.rume-ticker__pct {
  font-family: var(--rw-font-serif);
  font-weight: 300;
  font-size: 0.6em;
  margin-left: 2px;
  opacity: 0.65;
}
.rume-ticker__off {
  /* The "off" word — quietly Trade Gothic, separated from the number's grace */
  display: block;
  margin-top: 14px;
  font-family: var(--rw-font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rw-dark);
  opacity: 0.45;
}

/* ====== COPY ====== */
.rume-copy {
  font-family: var(--rw-font-body);
  font-size: 14px;
  line-height: 1.65;
  color: var(--rw-dark);
  opacity: 0.78;
  margin: 28px 0 36px;
  max-width: 320px;
}
@media (min-width: 992px) {
  .rume-copy { font-size: 15px; margin: 36px 0 44px; max-width: 360px; }
}

/* ====== FORM ====== */
.rume-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}
.rume-form__label {
  font-family: var(--rw-font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rw-dark);
  opacity: 0.45;
  text-align: left;
}
/* White field box — native appearance reset kills iOS's default inner drop-shadow */
.rume-form__field {
  width: 100%;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid var(--rw-dark-faint);
  border-radius: 4px;
  overflow: hidden; /* clips the counter-stretched input so the box stays full-width */
  transition: border-color 240ms ease;
}
.rume-form__field:focus-within { border-color: var(--rw-dark); }
.rume-form__field:has(.rume-form__input[aria-invalid="true"]) { border-color: #b14a35; }

.rume-form__input {
  -webkit-appearance: none;
  appearance: none;
  display: block;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  color: var(--rw-dark);
  letter-spacing: 0.01em;
  /* font-size stays 20px so the card's zoom:0.82 renders it at ~16.4px, keeping
     iOS from firing its focus-zoom. The transform below shrinks the text VISUALLY
     only — iOS ignores transforms when deciding to zoom — while width:125% +
     origin-left keeps the field full-width. */
  font-family: var(--rw-font-body);
  font-size: 20px;
  line-height: 1.2;
  width: 125%;
  transform: scale(0.8);
  transform-origin: left center;
}
.rume-form__input:focus { outline: none; }
.rume-form__input::placeholder { color: var(--rw-dark); opacity: 0.32; }

.rume-form__submit {
  margin-top: 12px;
  padding: 18px 26px;
  background: var(--rw-dark);
  color: var(--rw-light);
  border: none;
  border-radius: 2px;
  font-family: var(--rw-font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transition: transform 240ms ease, opacity 240ms ease;
}
.rume-form__submit[disabled] { opacity: 0.5; cursor: not-allowed; transform: none; }
@media (hover: hover) {
  .rume-form__submit:hover { transform: translateY(-1px); opacity: 0.92; }
}

.rume-form__error {
  font-family: var(--rw-font-body);
  font-size: 12px;
  color: #b14a35;
  margin: 0;
  text-align: left;
}

.rume-fineprint {
  font-family: var(--rw-font-body);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--rw-dark);
  opacity: 0.38;
  margin: 6px 0 0;
}

.rume-consent {
  font-family: var(--rw-font-body);
  font-size: 10px;
  line-height: 1.45;
  letter-spacing: 0.02em;
  color: var(--rw-dark);
  opacity: 0.5;
  margin: 8px 0 0;
}

.rume-decline {
  display: inline-block;
  background: none;
  border: 0;
  padding: 4px 2px;
  margin: 14px auto 0;
  font-family: var(--rw-font-body);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--rw-dark);
  opacity: 0.42;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  transition: opacity 200ms ease;
}
@media (hover: hover) {
  .rume-decline:hover { opacity: 0.72; }
}

/* Skip on the optional-phone step reads a touch louder than a plain decline */
.rume-decline--skip {
  opacity: 0.7;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media (hover: hover) {
  .rume-decline--skip:hover { opacity: 1; }
}

/* ============================================================
   PAGE 2 — PREFERENCE QUIZ
   ============================================================ */
.rume-quiz__question {
  font-family: var(--rw-font-display);
  font-weight: 400;
  font-size: clamp(30px, 6.5vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--rw-dark);
  margin: 0 0 10px;
}
@media (min-width: 992px) {
  .rume-quiz__question { font-size: 44px; }
}
.rume-quiz__sub {
  font-family: var(--rw-font-body);
  font-size: 13px;
  color: var(--rw-dark);
  opacity: 0.42;
  margin: 0 0 36px;
}
.rume-quiz__sub em { font-style: italic; }

.rume-quiz__pills {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-bottom: 28px;
}
@media (min-width: 600px) {
  .rume-quiz__pills { flex-direction: row; flex-wrap: wrap; justify-content: center; }
}

.rume-pill {
  flex: 1 1 0;
  min-width: 100px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 22px 14px 20px;
  background: transparent;
  border: 1px solid var(--rw-dark-faint);
  border-radius: 4px;
  font-family: var(--rw-font-body);
  color: var(--rw-dark);
  cursor: pointer;
  transition: transform 220ms ease, border-color 260ms ease, box-shadow 280ms ease, background-color 280ms ease;
}
@media (hover: hover) {
  .rume-pill:hover {
    transform: translateY(-1px);
    border-color: var(--rw-dark);
  }
}
.rume-pill[aria-checked="true"] {
  border-color: var(--rw-copper-2);
  background: linear-gradient(180deg, rgba(200, 146, 74, 0.08) 0%, rgba(200, 146, 74, 0) 100%);
  box-shadow: 0 0 0 1px var(--rw-copper-2) inset, 0 4px 18px rgba(168, 109, 46, 0.18);
}
.rume-pill__icon { font-size: 22px; line-height: 1; }
.rume-pill__label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

@media (hover: hover) {
  .rume-quiz__pills:hover .rume-pill:not(:hover) { opacity: 0.55; }
}
.rume-quiz__pills:has(.rume-pill[aria-checked="true"]) .rume-pill:not([aria-checked="true"]) { opacity: 0.4; }

.rume-quiz__skip {
  font-family: var(--rw-font-body);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--rw-dark);
  opacity: 0.45;
  background: none;
  border: none;
  border-bottom: 1px solid currentColor;
  padding: 2px 0 1px;
  cursor: pointer;
  transition: opacity 240ms ease;
}
@media (hover: hover) {
  .rume-quiz__skip:hover { opacity: 0.85; }
}

/* PDP's own `.rp-welcome` first-time banner stays hidden once the visitor is in
   lead state — they've already claimed, so a "first-time" greeting would be wrong. */
body[data-rume-state="lead"] .rp-welcome { display: none; }

/* ============================================================
   DECLINE-STATE CORNER AFFORDANCE
   ============================================================ */
.rume-corner {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 980;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 12px 18px 12px 16px;
  background: var(--rw-light);
  border: 1px solid var(--rw-dark-faint);
  border-radius: 999px;
  font-family: var(--rw-font-body);
  color: var(--rw-dark);
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(49, 28, 8, 0.12);
  transition: transform 240ms ease, box-shadow 240ms ease;
  opacity: 0;
  animation: rume-fade-in 700ms ease-out 1.2s forwards;
}
.rume-corner[hidden] { display: none; }
@media (hover: hover) {
  .rume-corner:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(49, 28, 8, 0.18);
  }
}
.rume-corner__pct {
  font-family: var(--rw-font-serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--rw-copper-1) 0%, var(--rw-copper-3) 50%, var(--rw-copper-1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.rume-corner__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.6;
}

/* ============================================================
   DEV PANEL (unpublished theme only)
   ============================================================ */
.rume-devpanel {
  position: fixed;
  bottom: 22px;
  left: 22px;
  z-index: 990;
  background: var(--rw-dark);
  color: var(--rw-light);
  padding: 14px 16px 12px;
  border-radius: 4px;
  font-family: var(--rw-font-body);
  font-size: 11px;
  line-height: 1.4;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.35);
  max-width: 240px;
  opacity: 0.92;
}
.rume-devpanel:hover { opacity: 1; }
.rume-devpanel__title {
  margin: 0 0 6px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 9px;
  opacity: 0.7;
}
.rume-devpanel__state { margin: 0 0 8px; font-size: 11px; }
.rume-devpanel__state span {
  font-weight: 700;
  background: rgba(255, 255, 255, 0.1);
  padding: 1px 6px;
  border-radius: 2px;
}
.rume-devpanel__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 6px;
}
.rume-devpanel__buttons button {
  background: rgba(255, 255, 255, 0.08);
  color: var(--rw-light);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 5px 8px;
  font-family: var(--rw-font-body);
  font-size: 10px;
  letter-spacing: 0.06em;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 150ms ease;
}
.rume-devpanel__buttons button:hover { background: rgba(255, 255, 255, 0.18); }
.rume-devpanel__hint {
  margin: 0;
  font-size: 10px;
  opacity: 0.55;
}
.rume-devpanel__hint code {
  background: rgba(255, 255, 255, 0.1);
  padding: 1px 4px;
  border-radius: 2px;
  font-size: 10px;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes rume-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes rume-sheet-up {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}
@keyframes rume-panel-in {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}
/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .rume-popup__overlay,
  .rume-popup__card,
  .rume-corner {
    animation: none;
    opacity: 1;
    transform: none;
  }
}



/* ============== INJECTED OFFER-CARD EMAIL CAPTURE (order page / future LPs) ==============
   Markup is injected by rume-welcome.js into any .rp-shop-offer card that ships
   without its own capture (the order-page section file is at Shopify's 256KB
   template limit). Scoped to [data-rume-cap-injected] so the home page's own
   inline card styles are untouched. Values mirror the home card. */
[data-rume-cap-injected] .rp-shop-offer__capture { display: none; margin: 10px 0 4px; }
[data-rume-cap-injected][data-state="unclaimed"] .rp-shop-offer__capture { display: block; }
[data-rume-cap-injected] .rp-close-cap__label {
  display: block; font-size: 13px; opacity: 0.8; margin: 0 0 8px; color: #fcf9f1; text-align: center;
  font-family: var(--rume-font-body, 'Trade Gothic', Helvetica, Arial, sans-serif);
}
[data-rume-cap-injected] .rp-close-cap__row { display: flex; gap: 8px; }
[data-rume-cap-injected] .rp-close-cap__input {
  flex: 1 1 auto; min-width: 0;
  background: rgba(252,249,241,0.08);
  border: 1px solid rgba(252,249,241,0.32);
  border-radius: 8px;
  color: #fcf9f1;
  padding: 12px 14px;
  font-size: 15px;
  font-family: var(--rume-font-body, 'Trade Gothic', Helvetica, Arial, sans-serif);
}
[data-rume-cap-injected] .rp-close-cap__input::placeholder { color: rgba(252,249,241,0.5); }
[data-rume-cap-injected] .rp-close-cap__btn {
  flex: 0 0 auto;
  background: #fcf9f1; color: #312923;
  border: 0; border-radius: 8px;
  padding: 12px 18px;
  font-size: 12px; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; line-height: 1; cursor: pointer;
  font-family: var(--rume-font-body, 'Trade Gothic', Helvetica, Arial, sans-serif);
}
[data-rume-cap-injected] .rp-close-cap__err { color: #f0c9b0; font-size: 12px; margin: 8px 0 0; text-align: center; }
[data-rume-cap-injected] .rp-close-cap__consent {
  color: rgba(252, 249, 241, 0.5); font-size: 11px; line-height: 1.45; margin: 8px 0 0; text-align: center;
  font-family: var(--rume-font-body, 'Trade Gothic', Helvetica, Arial, sans-serif);
}
