/** Shopify CDN: Minification failed

Line 709:10 Unexpected "{"
Line 709:19 Expected ":"
Line 848:19 Unexpected "*"
Line 929:19 Unexpected "*"

**/
/* ============================================================
   RIVASSO — Design Tokens & Global Styling
   rivasso-base.css

   This file overrides Dawn's default styling with the Rivasso
   dark luxury theme. Dawn's base.css is NOT removed — we
   override via higher specificity and cascade order.
   ============================================================ */

/* === DESIGN TOKENS === */
:root {
  /* — Colors — */
  --rv-black: #0A0A0A;
  --rv-black-light: #111111;
  --rv-black-card: #161616;
  --rv-black-border: #222222;
  --rv-gold: #C9A84C;
  --rv-gold-light: #E8D48B;
  --rv-gold-dark: #A07E2E;
  --rv-white: #F5F0E8;
  --rv-white-muted: #B8B0A0;
  --rv-gray: #8A8278;
  --rv-error: #E74C3C;
  --rv-success: #2ECC71;

  /* — Color RGB values (for rgba usage) — */
  --rv-black-rgb: 10, 10, 10;
  --rv-gold-rgb: 201, 168, 76;
  --rv-white-rgb: 245, 240, 232;

  /* — Typography — */
  --rv-font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --rv-font-body: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* — Font Sizes (readable, not decorative) — */
  --rv-text-xs: 0.75rem;
  --rv-text-sm: 0.8125rem;
  --rv-text-base: 0.9375rem;
  --rv-text-md: 1.0625rem;
  --rv-text-lg: 1.1875rem;
  --rv-text-xl: 1.375rem;
  --rv-text-2xl: 1.75rem;
  --rv-text-3xl: clamp(2rem, 3.5vw, 3rem);
  --rv-text-4xl: clamp(2.75rem, 5vw, 4.5rem);
  --rv-text-5xl: clamp(2.25rem, 4vw, 3.5rem);

  /* — Font Weights — */
  --rv-weight-light: 300;
  --rv-weight-regular: 400;
  --rv-weight-medium: 500;
  --rv-weight-semibold: 600;
  --rv-weight-bold: 700;

  /* — Letter Spacing — */
  --rv-tracking-tight: 0.02em;
  --rv-tracking-normal: 0.05em;
  --rv-tracking-wide: 0.1em;
  --rv-tracking-wider: 0.15em;
  --rv-tracking-widest: 0.25em;
  --rv-tracking-label: 0.35em;

  /* — Spacing Scale (4px base) — */
  --rv-space-1: 0.25rem;   /* 4px */
  --rv-space-2: 0.5rem;    /* 8px */
  --rv-space-3: 0.75rem;   /* 12px */
  --rv-space-4: 1rem;      /* 16px */
  --rv-space-5: 1.25rem;   /* 20px */
  --rv-space-6: 1.5rem;    /* 24px */
  --rv-space-8: 2rem;      /* 32px */
  --rv-space-10: 2.5rem;   /* 40px */
  --rv-space-12: 3rem;     /* 48px */
  --rv-space-16: 4rem;     /* 64px */
  --rv-space-20: 5rem;     /* 80px */
  --rv-space-24: 6rem;     /* 96px */
  --rv-space-32: 8rem;     /* 128px */
  --rv-space-40: 10rem;    /* 160px */

  /* — Layout — */
  --rv-section-padding: 8rem 4rem;
  --rv-section-padding-mobile: 4rem 2rem;
  --rv-card-padding: 2rem;
  --rv-grid-gap: 2rem;
  --rv-nav-padding: 1.5rem 4rem;
  --rv-nav-padding-scrolled: 1rem 4rem;
  --rv-max-width: 1440px;

  /* — Borders — */
  --rv-border-width: 1px;
  --rv-border-color: var(--rv-black-border);
  --rv-border: var(--rv-border-width) solid var(--rv-border-color);

  /* — Border Radius — */
  --rv-radius-none: 0;
  --rv-radius-sm: 2px;
  --rv-radius-md: 4px;
  --rv-radius-full: 50%;

  /* — Shadows — */
  --rv-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --rv-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --rv-shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.5);
  --rv-shadow-gold: 0 4px 20px rgba(var(--rv-gold-rgb), 0.15);

  /* — Transitions — */
  --rv-transition-fast: 0.2s ease;
  --rv-transition-base: 0.3s ease;
  --rv-transition-slow: 0.4s ease;
  --rv-transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --rv-transition-reveal: 0.8s cubic-bezier(0.16, 1, 0.3, 1);

  /* — Z-index Scale — */
  --rv-z-base: 1;
  --rv-z-dropdown: 10;
  --rv-z-sticky: 50;
  --rv-z-overlay: 90;
  --rv-z-modal: 100;
  --rv-z-loader: 9999;
}


/* ============================================================
   DAWN OVERRIDES — Global Elements
   ============================================================ */

/* — Body — */
body {
  background-color: var(--rv-black) !important;
  color: var(--rv-white) !important;
  font-family: var(--rv-font-body) !important;
  font-weight: var(--rv-weight-regular);
  font-size: var(--rv-text-base) !important;
  line-height: 1.7 !important;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Override Dawn's color scheme backgrounds */
body,
.color-background-1,
.color-background-2,
.color-inverse {
  background-color: var(--rv-black) !important;
  color: var(--rv-white) !important;
}

/* — Selection — */
::selection {
  background: var(--rv-gold);
  color: var(--rv-black);
}

::-moz-selection {
  background: var(--rv-gold);
  color: var(--rv-black);
}

/* — Scrollbar — */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--rv-black);
}

::-webkit-scrollbar-thumb {
  background: var(--rv-black-border);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--rv-gold-dark);
}


/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--rv-font-display) !important;
  color: var(--rv-white) !important;
  line-height: 1.2;
  font-weight: var(--rv-weight-regular);
  letter-spacing: 0.01em;
}

h1, .h1 { font-size: var(--rv-text-4xl); font-weight: var(--rv-weight-light); line-height: 1.1; }
h2, .h2 { font-size: var(--rv-text-3xl); font-weight: var(--rv-weight-light); }
h3, .h3 { font-size: var(--rv-text-2xl); }
h4, .h4 { font-size: var(--rv-text-xl); }
h5, .h5 { font-size: var(--rv-text-lg); font-weight: var(--rv-weight-medium); }
h6, .h6 { font-size: var(--rv-text-md); font-weight: var(--rv-weight-medium); }

p {
  font-family: var(--rv-font-body);
  color: var(--rv-white-muted);
  font-weight: var(--rv-weight-regular);
  font-size: var(--rv-text-base);
  line-height: 1.75;
}

em, i {
  color: var(--rv-gold);
}

strong, b {
  font-weight: var(--rv-weight-semibold);
  color: var(--rv-white);
}

small {
  font-size: var(--rv-text-xs);
  color: var(--rv-gray);
}

/* — Dawn product page overrides — forced dark theme on all product elements — */
.product,
.product__info-wrapper,
.product__info-container,
.product__media-wrapper,
.product__title,
.product__text,
.section-template--product,
[class*="template--product"],
.shopify-section--template--product {
  background-color: var(--rv-black) !important;
  color: var(--rv-white) !important;
}

.product__title {
  font-family: var(--rv-font-display) !important;
  font-size: clamp(1.75rem, 2.5vw, 2.25rem) !important;
  font-weight: var(--rv-weight-regular) !important;
  line-height: 1.25 !important;
  letter-spacing: 0.01em !important;
  color: var(--rv-white) !important;
}

.product__text,
.product__description,
.product .rte {
  font-family: var(--rv-font-body) !important;
  font-size: var(--rv-text-base) !important;
  color: var(--rv-white-muted) !important;
  line-height: 1.75 !important;
}

.product .rte h2,
.product .rte h3 {
  font-size: var(--rv-text-xl) !important;
  margin-top: 2rem !important;
  margin-bottom: 0.75rem !important;
  color: var(--rv-white) !important;
}

.product .rte ul {
  list-style: none !important;
  padding: 0 !important;
}

.product .rte li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--rv-white-muted) !important;
  font-size: var(--rv-text-base) !important;
}

.product .rte li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 1px;
  background: var(--rv-gold);
}

.product .rte li strong {
  color: var(--rv-white) !important;
}

/* Product vendor label */
.product__text.caption-with-letter-spacing {
  font-family: var(--rv-font-body) !important;
  font-size: var(--rv-text-xs) !important;
  letter-spacing: var(--rv-tracking-wider) !important;
  text-transform: uppercase !important;
  color: var(--rv-gold) !important;
  font-weight: var(--rv-weight-medium) !important;
}

/* Product price on PDP */
.product .price-item--regular,
.product .price-item--sale,
.product .price__regular .price-item {
  font-family: var(--rv-font-display) !important;
  font-size: 1.75rem !important;
  color: var(--rv-white) !important;
}

.product .price-item--sale {
  color: var(--rv-gold) !important;
}

/* Product media/gallery background */
.product__media-item,
.product__media-list,
.media.media--transparent {
  background-color: var(--rv-black-card) !important;
  border: 1px solid var(--rv-black-border) !important;
}

/* Quantity selector */
.quantity,
.quantity__input {
  background-color: var(--rv-black-light) !important;
  color: var(--rv-white) !important;
  border-color: var(--rv-black-border) !important;
}

.quantity__button {
  color: var(--rv-white-muted) !important;
}

/* Variant picker */
.product-form__input label {
  color: var(--rv-white-muted) !important;
}

/* Product info wrapper spacing */
.product__info-wrapper {
  padding-top: 2rem !important;
}

/* Breadcrumb fix */
.breadcrumbs a,
.breadcrumbs span {
  color: var(--rv-gray) !important;
  font-size: var(--rv-text-xs) !important;
}

.breadcrumbs a:hover {
  color: var(--rv-gold) !important;
}

/* Share button */
.product__share-button,
.share-button {
  color: var(--rv-white-muted) !important;
}

/* Accordion/collapsible on product page */
.accordion summary,
.product .accordion summary {
  color: var(--rv-white) !important;
  border-color: var(--rv-black-border) !important;
}

.accordion .accordion__content,
.product .accordion .accordion__content {
  color: var(--rv-white-muted) !important;
}


/* ============================================================
   LINKS
   ============================================================ */

a {
  color: var(--rv-gold);
  text-decoration: none;
  transition: color var(--rv-transition-base);
}

a:hover {
  color: var(--rv-gold-light);
}

/* Dawn link overrides */
.link,
.full-unstyled-link {
  color: var(--rv-gold) !important;
}

.link:hover,
.full-unstyled-link:hover {
  color: var(--rv-gold-light) !important;
}


/* ============================================================
   BUTTONS
   ============================================================ */

/* — Primary Button (Gold) — */
.rv-btn,
.rv-btn-primary,
.button--primary,
button.shopify-payment-button__button--unbranded {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.1rem 2.75rem;
  background-color: var(--rv-gold) !important;
  color: var(--rv-black) !important;
  font-family: var(--rv-font-body);
  font-size: 0.8125rem;
  font-weight: var(--rv-weight-semibold);
  letter-spacing: var(--rv-tracking-wide);
  text-transform: uppercase;
  text-decoration: none;
  border: none !important;
  border-radius: var(--rv-radius-none);
  cursor: pointer;
  transition: all var(--rv-transition-slow);
  position: relative;
  overflow: hidden;
}

.rv-btn:hover,
.rv-btn-primary:hover,
.button--primary:hover,
button.shopify-payment-button__button--unbranded:hover {
  background-color: var(--rv-gold-light) !important;
  color: var(--rv-black) !important;
  transform: translateY(-1px);
}

/* — Secondary Button (Outline Gold) — */
.rv-btn-secondary,
.button--secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 2.5rem;
  background-color: transparent !important;
  color: var(--rv-gold) !important;
  font-family: var(--rv-font-body);
  font-size: var(--rv-text-sm);
  font-weight: var(--rv-weight-regular);
  letter-spacing: var(--rv-tracking-wider);
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--rv-gold) !important;
  border-radius: var(--rv-radius-none);
  cursor: pointer;
  transition: all var(--rv-transition-base);
}

.rv-btn-secondary:hover,
.button--secondary:hover {
  background-color: var(--rv-gold) !important;
  color: var(--rv-black) !important;
}

/* — Ghost Button (Text only) — */
.rv-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 0;
  background: none;
  border: none;
  color: var(--rv-white-muted);
  font-family: var(--rv-font-body);
  font-size: var(--rv-text-sm);
  font-weight: var(--rv-weight-regular);
  letter-spacing: var(--rv-tracking-wide);
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: color var(--rv-transition-base);
}

.rv-btn-ghost:hover {
  color: var(--rv-gold);
}

/* Dawn button overrides */
.button,
.shopify-challenge__button {
  background-color: var(--rv-gold) !important;
  color: var(--rv-black) !important;
  border-radius: var(--rv-radius-none) !important;
  font-family: var(--rv-font-body) !important;
  letter-spacing: var(--rv-tracking-wide) !important;
  text-transform: uppercase !important;
  font-size: 0.875rem !important;
  font-weight: var(--rv-weight-semibold) !important;
  border: none !important;
  padding: 1.1rem 2.5rem !important;
  min-height: auto !important;
}

.button:hover,
.shopify-challenge__button:hover {
  background-color: var(--rv-gold-light) !important;
  color: var(--rv-black) !important;
}


/* ============================================================
   FORMS & INPUTS
   ============================================================ */

input,
textarea,
select {
  background-color: var(--rv-black-light) !important;
  color: var(--rv-white) !important;
  border: 1px solid var(--rv-black-border) !important;
  border-radius: var(--rv-radius-none) !important;
  font-family: var(--rv-font-body);
  font-size: var(--rv-text-base);
  padding: 0.8rem 1rem;
  transition: border-color var(--rv-transition-base);
  outline: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--rv-gold) !important;
  box-shadow: 0 0 0 1px var(--rv-gold-dark);
}

input::placeholder,
textarea::placeholder {
  color: var(--rv-gray);
  opacity: 1;
}

label {
  font-family: var(--rv-font-body);
  font-size: var(--rv-text-sm);
  font-weight: var(--rv-weight-regular);
  letter-spacing: var(--rv-tracking-wide);
  text-transform: uppercase;
  color: var(--rv-white-muted);
}

/* Dawn field overrides */
.field__input,
.customer .field input,
.field__input:focus,
.customer .field input:focus {
  background-color: var(--rv-black-light) !important;
  color: var(--rv-white) !important;
  border-color: var(--rv-black-border) !important;
}

.field__input:focus,
.customer .field input:focus {
  border-color: var(--rv-gold) !important;
  box-shadow: none !important;
}


/* ============================================================
   DAWN COMPONENT OVERRIDES
   ============================================================ */

/* — Card backgrounds — */
.card,
.card--card,
.card--standard {
  background-color: var(--rv-black-card) !important;
  border: var(--rv-border) !important;
  border-radius: var(--rv-radius-none) !important;
  color: var(--rv-white) !important;
}

.card:hover {
  border-color: var(--rv-gold-dark) !important;
}

/* — Price — */
.price,
.price-item,
.price-item--regular,
.price-item--sale {
  color: var(--rv-white) !important;
  font-family: var(--rv-font-display);
}

.price-item--sale {
  color: var(--rv-gold) !important;
}

/* — Badges — */
.badge {
  background-color: var(--rv-gold) !important;
  color: var(--rv-black) !important;
  font-family: var(--rv-font-body);
  font-size: var(--rv-text-xs);
  font-weight: var(--rv-weight-semibold);
  letter-spacing: var(--rv-tracking-wide);
  text-transform: uppercase;
  border-radius: var(--rv-radius-none);
  border: none !important;
}

/* — Announcement bar — */
.announcement-bar {
  background-color: var(--rv-gold) !important;
  color: var(--rv-black) !important;
}

/* — Header — */
.header-wrapper,
.shopify-section-header {
  background-color: var(--rv-black) !important;
  border-bottom: 1px solid var(--rv-black-border) !important;
}

.header__heading-link {
  font-family: var(--rv-font-display) !important;
  color: var(--rv-gold) !important;
  letter-spacing: var(--rv-tracking-widest);
  text-transform: uppercase;
}

.header__menu-item,
.header__menu-item span {
  font-family: var(--rv-font-body) !important;
  font-size: var(--rv-text-sm) !important;
  font-weight: var(--rv-weight-regular) !important;
  letter-spacing: var(--rv-tracking-wider) !important;
  text-transform: uppercase !important;
  color: var(--rv-white-muted) !important;
}

.header__menu-item:hover,
.header__menu-item:hover span {
  color: var(--rv-gold) !important;
}

.header__icon {
  color: var(--rv-white-muted) !important;
}

.header__icon:hover {
  color: var(--rv-gold) !important;
}

/* — Footer — */
.footer,
.section-footer {
  background-color: var(--rv-black) !important;
  border-top: 1px solid var(--rv-black-border) !important;
  color: var(--rv-white-muted) !important;
}

.footer-block__heading {
  font-family: var(--rv-font-body) !important;
  font-size: var(--rv-text-xs) !important;
  font-weight: var(--rv-weight-medium) !important;
  letter-spacing: var(--rv-tracking-wider) !important;
  text-transform: uppercase !important;
  color: var(--rv-white-muted) !important;
}

.footer-block__details-content a {
  color: var(--rv-gray) !important;
  font-size: var(--rv-text-base) !important;
}

.footer-block__details-content a:hover {
  color: var(--rv-gold) !important;
}

/* — Cart drawer — */
.cart-drawer,
.drawer {
  background-color: var(--rv-black-light) !important;
  color: var(--rv-white) !important;
  border-left: 1px solid var(--rv-black-border) !important;
}

/* — Modal / Popup — */
.modal__content,
.popup-modal__content {
  background-color: var(--rv-black-card) !important;
  color: var(--rv-white) !important;
  border: 1px solid var(--rv-black-border) !important;
}

/* — Dividers / HRs — */
hr {
  border-color: var(--rv-black-border);
}

/* — Dawn section padding override — */
.section-{{ section.id }}-padding {
  padding-top: 0;
  padding-bottom: 0;
}


/* ============================================================
   UTILITY CLASSES
   ============================================================ */

/* — Section Label (small gold label above headings) — */
.rv-label {
  font-family: var(--rv-font-body);
  font-size: var(--rv-text-xs);
  font-weight: var(--rv-weight-regular);
  letter-spacing: var(--rv-tracking-label);
  text-transform: uppercase;
  color: var(--rv-gold);
  margin-bottom: var(--rv-space-6);
  display: flex;
  align-items: center;
  gap: var(--rv-space-4);
}

.rv-label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--rv-gold);
}

/* — Section Title — */
.rv-title {
  font-family: var(--rv-font-display);
  font-size: var(--rv-text-3xl);
  font-weight: var(--rv-weight-light);
  line-height: 1.15;
  color: var(--rv-white);
  margin-bottom: var(--rv-space-6);
}

.rv-title em {
  font-style: italic;
  color: var(--rv-gold);
}

/* — Text colors — */
.rv-text-gold { color: var(--rv-gold); }
.rv-text-muted { color: var(--rv-white-muted); }
.rv-text-gray { color: var(--rv-gray); }
.rv-text-white { color: var(--rv-white); }

/* — Background colors — */
.rv-bg-black { background-color: var(--rv-black); }
.rv-bg-dark { background-color: var(--rv-black-light); }
.rv-bg-card { background-color: var(--rv-black-card); }

/* — Gold line decorations — */
.rv-gold-line {
  width: 40px;
  height: 1px;
  background: var(--rv-gold);
}

.rv-gold-line--long {
  width: 80px;
}

/* — Border utilities — */
.rv-border-top { border-top: var(--rv-border); }
.rv-border-bottom { border-bottom: var(--rv-border); }


/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */

.rv-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all var(--rv-transition-reveal);
}

.rv-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes rv-fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes rv-fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes rv-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

@keyframes rv-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ============================================================
   DAWN NUCLEAR OVERRIDE — Kill every remaining default
   ============================================================ */

/* Force dark on every color scheme Dawn generates */
[class*="color-"],
[class*="color-"] *,
.gradient,
.color-scheme-1,
.color-scheme-2,
.color-scheme-3,
.color-scheme-4,
.color-scheme-5 {
  --color-background: 10, 10, 10 !important;
  --color-foreground: 245, 240, 232 !important;
  --color-button: 201, 168, 76 !important;
  --color-button-text: 10, 10, 10 !important;
  --color-secondary-button: 10, 10, 10 !important;
  --color-secondary-button-text: 201, 168, 76 !important;
  --color-link: 201, 168, 76 !important;
  --gradient-background: var(--rv-black) !important;
  background-color: var(--rv-black) !important;
}

/* Dawn section wrappers — no white anywhere */
.shopify-section,
.shopify-section-group-header-group,
.shopify-section-group-footer-group,
.shopify-section > div,
.shopify-section > section,
.section-template--*,
.page-width,
.spaced-section,
.spaced-section--full-width {
  background-color: transparent !important;
}

/* Dawn's cart notification */
.cart-notification {
  background-color: var(--rv-black-card) !important;
  color: var(--rv-white) !important;
  border: 1px solid var(--rv-black-border) !important;
}

.cart-notification__heading,
.cart-notification a {
  color: var(--rv-white) !important;
}

/* Dawn's menu drawer */
.menu-drawer,
.menu-drawer__inner-container {
  background-color: var(--rv-black-light) !important;
  color: var(--rv-white) !important;
}

.menu-drawer__menu-item,
.menu-drawer__menu-item span {
  color: var(--rv-white) !important;
  font-family: var(--rv-font-body) !important;
}

/* Dawn's search */
.search-modal,
.search-modal__content,
predictive-search {
  background-color: var(--rv-black-card) !important;
  color: var(--rv-white) !important;
  border-color: var(--rv-black-border) !important;
}

.predictive-search,
.predictive-search__result-group {
  background-color: var(--rv-black-card) !important;
  color: var(--rv-white) !important;
}

.predictive-search__result-group__title {
  color: var(--rv-gold) !important;
}

/* Dawn's pagination */
.pagination a,
.pagination span {
  color: var(--rv-white-muted) !important;
  border-color: var(--rv-black-border) !important;
}

.pagination .current,
.pagination a:hover {
  color: var(--rv-gold) !important;
  border-color: var(--rv-gold) !important;
}

/* Dawn's slideshow arrows */
.slider-button {
  background-color: var(--rv-black-card) !important;
  color: var(--rv-white) !important;
  border: 1px solid var(--rv-black-border) !important;
}

/* Dawn's details/summary (accordion) */
details summary {
  color: var(--rv-white) !important;
}

details[open] summary {
  color: var(--rv-gold) !important;
}

/* Kill Dawn's section padding borders */
.section-template--* .grid,
.content-container,
.page-width--narrow {
  background-color: transparent !important;
}

/* All remaining text that Dawn might color */
.caption,
.caption-with-letter-spacing,
.subtitle,
.icon-with-text__text {
  color: var(--rv-white-muted) !important;
}

/* Rich text sections */
.rich-text__text,
.rich-text__heading {
  color: var(--rv-white) !important;
}

.rich-text__text p {
  color: var(--rv-white-muted) !important;
}

/* Customer account pages */
.customer section,
.customer .order-details,
.customer table {
  background-color: var(--rv-black) !important;
  color: var(--rv-white) !important;
}

.customer table th {
  color: var(--rv-gold) !important;
  border-color: var(--rv-black-border) !important;
}

.customer table td {
  color: var(--rv-white-muted) !important;
  border-color: var(--rv-black-border) !important;
}


/* ============================================================
   PRODUCT TRUST BADGES
   ============================================================ */

.rv-product-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--rv-space-4);
  padding: var(--rv-space-6) 0;
  margin-top: var(--rv-space-4);
  border-top: 1px solid var(--rv-black-border);
}

.rv-product-trust__item {
  display: flex;
  align-items: center;
  gap: var(--rv-space-3);
  font-family: var(--rv-font-body);
  font-size: var(--rv-text-sm);
  color: var(--rv-white-muted);
}

.rv-product-trust__item svg {
  color: var(--rv-gold);
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .rv-product-trust {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .rv-label { margin-bottom: var(--rv-space-4); }
}

@media (max-width: 767px) {
  :root {
    --rv-section-padding: var(--rv-section-padding-mobile);
    --rv-nav-padding: 1.2rem 2rem;
  }
}


/* ============================================================
   REDUCED MOTION
   ============================================================ */

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

  .rv-reveal {
    opacity: 1;
    transform: none;
  }
}
