/* ============================================================
   ROACHY VIEWS — Brand CSS
   Dark creative. Supreme meets Wirecutter meets a dad who
   figured it out.
   ============================================================ */

/* ── 1. CSS Custom Properties ─────────────────────────────── */
:root {
  /* Brand colors */
  --rv-black:         #0E0E0E;
  --rv-dark-gray:     #1A1A1A;
  --rv-mid-gray:      #2A2A2A;
  --rv-off-white:     #F0EDE6;
  --rv-warm-cream:    #F5F0E8;
  --rv-muted:         #888888;
  --rv-orange:        #D4622A;
  --rv-orange-dark:   #b5511f;
  --rv-olive:         #3B4A2F;
  --rv-forest:        #2D4A2D;
  --rv-tan:           #C4A882;
  --rv-yellow:        #F5C518;
  --rv-blue:          #4A7FB5;
  --rv-gold:          #C4A030;
  --rv-red-bg:        #4a1a1a;
  --rv-red-text:      #ff6b6b;

  /* Typography */
  --rv-font-headline: 'Bebas Neue', sans-serif;
  --rv-font-body:     'Inter', sans-serif;
  --rv-font-label:    'Montserrat', sans-serif;
  --rv-font-accent:   'Caveat', cursive;

  /* Spacing */
  --rv-section-pad:   80px;
  --rv-card-radius:   4px;
  --rv-btn-radius:    2px;

  /* Transitions */
  --rv-transition:    0.22s ease;

  /* Shadows */
  --rv-shadow-card:   0 4px 24px rgba(0,0,0,0.5);
  --rv-shadow-hover:  0 8px 32px rgba(0,0,0,0.7);
}

/* ── 2. Grain texture overlay ─────────────────────────────── */
body.rv-site::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 300px 300px;
}

/* ── 3. Global resets & base styles ──────────────────────── */
body.rv-site {
  background-color: var(--rv-black);
  color: var(--rv-off-white);
  font-family: var(--rv-font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Astra overrides */
body.rv-site .site-content,
body.rv-site #content,
body.rv-site .ast-container {
  background-color: transparent;
}

body.rv-site .entry-content,
body.rv-site .post-content {
  color: var(--rv-off-white);
}

/* Headlines */
body.rv-site h1,
body.rv-site h2,
body.rv-site h3,
body.rv-site h4,
body.rv-site h5,
body.rv-site h6 {
  font-family: var(--rv-font-headline);
  color: var(--rv-off-white);
  line-height: 1.1;
  letter-spacing: 0.02em;
}

body.rv-site h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
body.rv-site h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
body.rv-site h3 { font-size: clamp(1.3rem, 3vw, 2rem); }
body.rv-site h4 { font-size: 1.2rem; font-family: var(--rv-font-label); font-weight: 800; }

/* Links */
body.rv-site a {
  color: var(--rv-orange);
  text-decoration: none;
  transition: color var(--rv-transition);
}
body.rv-site a:hover {
  color: var(--rv-off-white);
}

/* Body text in dark sections */
body.rv-site p {
  color: var(--rv-off-white);
}

/* ── 4. Navigation ──────────────────────────────────────────── */
body.rv-site .site-header,
body.rv-site #masthead,
body.rv-site .ast-primary-header-bar {
  background-color: rgba(14, 14, 14, 0.92) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(240, 237, 230, 0.06);
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

/* Offset content for fixed nav */
body.rv-site {
  padding-top: 80px;
}

/* Nav logo */
body.rv-site .ast-site-identity .site-title,
body.rv-site .ast-site-identity .site-title a {
  font-family: var(--rv-font-headline);
  font-size: 1.6rem;
  color: var(--rv-off-white) !important;
  letter-spacing: 0.05em;
}

/* Nav links */
body.rv-site .ast-nav-menu > li > a,
body.rv-site #ast-mobile-menu .menu-item a {
  color: var(--rv-off-white) !important;
  font-family: var(--rv-font-label);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color var(--rv-transition);
}

body.rv-site .ast-nav-menu > li > a:hover,
body.rv-site .ast-nav-menu > li.current-menu-item > a {
  color: var(--rv-orange) !important;
}

/* Nav CTA button — "@roachyviews" */
body.rv-site .ast-header-custom-widget .rv-nav-cta,
.rv-nav-cta {
  display: inline-block;
  background: var(--rv-orange);
  color: var(--rv-off-white) !important;
  font-family: var(--rv-font-label);
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 8px 18px;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  transition: background var(--rv-transition);
}
.rv-nav-cta:hover {
  background: var(--rv-orange-dark) !important;
  color: var(--rv-off-white) !important;
}

/* ── 5. Buttons ──────────────────────────────────────────── */
.rv-btn {
  display: inline-block;
  font-family: var(--rv-font-label);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 14px 28px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--rv-transition);
  text-align: center;
  text-decoration: none !important;
  white-space: nowrap;
}

/* Primary — burnt orange with clip-path */
.rv-btn--primary {
  background: var(--rv-orange);
  color: var(--rv-off-white) !important;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  border-color: var(--rv-orange);
}
.rv-btn--primary:hover {
  background: var(--rv-orange-dark);
  border-color: var(--rv-orange-dark);
  color: var(--rv-off-white) !important;
  transform: translateY(-2px);
}

/* Ghost — outline only */
.rv-btn--ghost {
  background: transparent;
  color: var(--rv-off-white) !important;
  border-color: rgba(240, 237, 230, 0.4);
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.rv-btn--ghost:hover {
  background: rgba(240, 237, 230, 0.1);
  border-color: var(--rv-off-white);
  color: var(--rv-off-white) !important;
}

/* Sizes */
.rv-btn--large {
  font-size: 1rem;
  padding: 18px 36px;
}
.rv-btn--sm {
  font-size: 0.75rem;
  padding: 8px 18px;
}

/* ── 6. Scrolling Ticker ─────────────────────────────────── */
.rv-ticker {
  background-color: var(--rv-orange);
  overflow: hidden;
  white-space: nowrap;
  padding: 14px 0;
  width: 100%;
  position: relative;
  z-index: 10;
}

.rv-ticker__inner {
  display: inline-flex;
  animation: rv-ticker-scroll 28s linear infinite;
  will-change: transform;
}

.rv-ticker__inner:hover {
  animation-play-state: paused;
}

.rv-ticker__item {
  font-family: var(--rv-font-label);
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--rv-off-white);
  padding: 0 40px;
  flex-shrink: 0;
}

.rv-ticker__sep {
  color: rgba(240, 237, 230, 0.4);
  padding: 0 10px;
}

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

/* ── 7. Spinning Stamp ───────────────────────────────────── */
.rv-stamp-wrap {
  position: relative;
  width: 150px;
  height: 150px;
  flex-shrink: 0;
}

.rv-stamp-ring {
  position: absolute;
  inset: 0;
  animation: rv-stamp-spin 12s linear infinite;
  will-change: transform;
}

.rv-stamp-ring svg {
  width: 100%;
  height: 100%;
}

.rv-stamp-ring text {
  font-family: var(--rv-font-label);
  font-weight: 800;
  font-size: 13px;
  fill: var(--rv-orange);
  text-transform: uppercase;
  letter-spacing: 3px;
}

.rv-stamp-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--rv-orange);
  border-radius: 50%;
  margin: 22px;
  padding: 8px;
  text-align: center;
}

.rv-stamp-center__top {
  font-family: var(--rv-font-headline);
  font-size: 1rem;
  color: var(--rv-orange);
  line-height: 1;
}

.rv-stamp-center__star {
  color: var(--rv-orange);
  font-size: 1.1rem;
  line-height: 1;
}

.rv-stamp-center__bottom {
  font-family: var(--rv-font-label);
  font-weight: 800;
  font-size: 0.5rem;
  color: var(--rv-orange);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  line-height: 1;
}

@keyframes rv-stamp-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ── 8. Category Cards ──────────────────────────────────── */
.rv-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2px;
}

.rv-cat-card {
  background-color: var(--rv-mid-gray);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all var(--rv-transition);
  border: 1px solid rgba(240, 237, 230, 0.04);
  text-decoration: none !important;
  display: block;
}

.rv-cat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--rv-cat-color, var(--rv-orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  z-index: 0;
}

.rv-cat-card:hover::before {
  transform: scaleX(1);
}

.rv-cat-card > * {
  position: relative;
  z-index: 1;
}

.rv-cat-card__icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
  transition: transform var(--rv-transition);
}
.rv-cat-card:hover .rv-cat-card__icon {
  transform: scale(1.2);
}

.rv-cat-card__count {
  font-family: var(--rv-font-label);
  font-weight: 900;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--rv-muted);
  margin-bottom: 6px;
  transition: color var(--rv-transition);
}
.rv-cat-card:hover .rv-cat-card__count {
  color: rgba(240, 237, 230, 0.7);
}

.rv-cat-card__name {
  font-family: var(--rv-font-headline);
  font-size: 1.8rem;
  color: var(--rv-off-white);
  line-height: 1;
  margin: 0;
  transition: color var(--rv-transition);
}

.rv-cat-card__arrow {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 1.2rem;
  color: var(--rv-muted);
  transition: all var(--rv-transition);
  z-index: 1;
}
.rv-cat-card:hover .rv-cat-card__arrow {
  color: var(--rv-off-white);
  transform: translate(4px, -4px);
}

/* Category color overrides */
.rv-cat-card[data-cat="home-yard"]       { --rv-cat-color: #3B4A2F; }
.rv-cat-card[data-cat="baby-dad-gear"]   { --rv-cat-color: #D4622A; }
.rv-cat-card[data-cat="outdoor-camping"] { --rv-cat-color: #2D4A2D; }
.rv-cat-card[data-cat="dog-gear"]        { --rv-cat-color: #C4A882; }
.rv-cat-card[data-cat="tech-software"]   { --rv-cat-color: #4A7FB5; }
.rv-cat-card[data-cat="short-king-fits"] { --rv-cat-color: #F5C518; }
.rv-cat-card[data-cat="faith-study"]     { --rv-cat-color: #C4A030; }

/* ── 9. Verdict Badges ───────────────────────────────────── */
.rv-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--rv-font-label);
  font-weight: 900;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 5px 12px;
  border-radius: var(--rv-btn-radius);
  white-space: nowrap;
}

.rv-badge--pick {
  background: var(--rv-orange);
  color: var(--rv-off-white);
}
.rv-badge--approved {
  background: var(--rv-olive);
  color: var(--rv-off-white);
}
.rv-badge--wouldnt-buy {
  background: var(--rv-red-bg);
  color: var(--rv-red-text);
  border: 1px solid var(--rv-red-text);
}

/* Verdict Box (used via shortcode) */
.rv-verdict-box {
  border-radius: var(--rv-card-radius);
  padding: 28px;
  margin: 32px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.rv-verdict-box.rv-badge--pick     { background: rgba(212, 98, 42, 0.12);  border: 2px solid var(--rv-orange); }
.rv-verdict-box.rv-badge--approved { background: rgba(59, 74, 47, 0.2);   border: 2px solid var(--rv-olive); }
.rv-verdict-box.rv-badge--wouldnt-buy { background: var(--rv-red-bg);     border: 2px solid var(--rv-red-text); }

.rv-verdict-box__badge {
  flex-shrink: 0;
}

.rv-verdict-box__stamp {
  font-family: var(--rv-font-headline);
  font-size: 1.6rem;
  line-height: 1;
  display: block;
}

.rv-verdict-box.rv-badge--pick     .rv-verdict-box__stamp { color: var(--rv-orange); }
.rv-verdict-box.rv-badge--approved .rv-verdict-box__stamp { color: #6dbf6d; }
.rv-verdict-box.rv-badge--wouldnt-buy .rv-verdict-box__stamp { color: var(--rv-red-text); }

.rv-verdict-box__rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rv-verdict-box__score {
  font-family: var(--rv-font-label);
  font-weight: 800;
  color: var(--rv-off-white);
}

.rv-verdict-box__price {
  font-family: var(--rv-font-label);
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--rv-off-white);
}

.rv-verdict-box__cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-left: auto;
}

/* ── 10. Star Ratings ─────────────────────────────────────── */
.rv-stars {
  display: inline-flex;
  gap: 2px;
}

.rv-star {
  font-size: 1.1em;
  line-height: 1;
}
.rv-star--full  { color: var(--rv-orange); }
.rv-star--half  { color: var(--rv-orange); opacity: 0.65; }
.rv-star--empty { color: var(--rv-muted); }

.rv-stars--large .rv-star { font-size: 1.4em; }
.rv-stars--small .rv-star { font-size: 0.9em; }

.rv-rating-display {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
}
.rv-rating-display__score {
  font-family: var(--rv-font-label);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--rv-orange);
}
.rv-rating-display__label {
  font-size: 0.8rem;
  color: var(--rv-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── 11. Review Cards ────────────────────────────────────── */
.rv-reviews-grid {
  display: grid;
  gap: 24px;
}
.rv-reviews-grid--cols-3 { grid-template-columns: repeat(3, 1fr); }
.rv-reviews-grid--cols-2 { grid-template-columns: repeat(2, 1fr); }

@media (max-width: 900px) {
  .rv-reviews-grid--cols-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .rv-reviews-grid--cols-3,
  .rv-reviews-grid--cols-2 { grid-template-columns: 1fr; }
}

.rv-review-card {
  background: var(--rv-mid-gray);
  border-radius: var(--rv-card-radius);
  overflow: hidden;
  box-shadow: var(--rv-shadow-card);
  transition: transform var(--rv-transition), box-shadow var(--rv-transition);
  border: 1px solid rgba(240, 237, 230, 0.04);
}
.rv-review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--rv-shadow-hover);
}

.rv-review-card__thumb {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.rv-review-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.rv-review-card:hover .rv-review-card__thumb img {
  transform: scale(1.05);
}

.rv-review-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--rv-font-label);
  font-weight: 900;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  z-index: 1;
}
.rv-review-card__badge.rv-badge--pick     { background: var(--rv-orange); color: #fff; }
.rv-review-card__badge.rv-badge--approved { background: var(--rv-olive);  color: #fff; }
.rv-review-card__badge.rv-badge--wouldnt-buy { background: var(--rv-red-bg); color: var(--rv-red-text); border: 1px solid var(--rv-red-text); }

.rv-review-card__body {
  padding: 20px 22px 24px;
}

.rv-review-card__cat {
  font-family: var(--rv-font-label);
  font-weight: 800;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--rv-orange);
  display: block;
  margin-bottom: 8px;
}
.rv-review-card__cat:hover {
  color: var(--rv-off-white);
}

.rv-review-card__title {
  font-family: var(--rv-font-headline);
  font-size: 1.35rem;
  line-height: 1.1;
  margin: 0 0 10px;
}
.rv-review-card__title a {
  color: var(--rv-off-white);
}
.rv-review-card__title a:hover {
  color: var(--rv-orange);
}

.rv-review-card__excerpt {
  font-size: 0.875rem;
  color: var(--rv-muted);
  margin: 8px 0 16px;
  line-height: 1.5;
}

/* ── 12. About Strip ─────────────────────────────────────── */
.rv-about-strip {
  background-color: var(--rv-orange);
  padding: var(--rv-section-pad) 0;
  position: relative;
  overflow: hidden;
}

.rv-about-strip::before {
  content: 'ROACHY';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%) rotate(-8deg);
  font-family: var(--rv-font-headline);
  font-size: 18rem;
  color: rgba(0, 0, 0, 0.06);
  pointer-events: none;
  line-height: 1;
  white-space: nowrap;
}

.rv-about-strip__quote {
  font-family: var(--rv-font-accent);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--rv-off-white);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 48px;
  max-width: 700px;
  position: relative;
  z-index: 1;
}

.rv-about-strip__quote::before {
  content: '"';
  font-size: 4rem;
  line-height: 0;
  vertical-align: -0.5em;
  opacity: 0.4;
  margin-right: 8px;
}

.rv-stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.rv-stat {
  text-align: left;
}
.rv-stat__number {
  font-family: var(--rv-font-headline);
  font-size: 3.5rem;
  color: var(--rv-off-white);
  line-height: 1;
  display: block;
}
.rv-stat__label {
  font-family: var(--rv-font-label);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(240, 237, 230, 0.7);
  display: block;
  margin-top: 4px;
}

/* ── 13. Email Signup Section ───────────────────────────── */
.rv-email-section {
  background: var(--rv-dark-gray);
  padding: var(--rv-section-pad) 0;
  text-align: center;
}

.rv-email-section__label {
  font-family: var(--rv-font-label);
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--rv-orange);
  margin-bottom: 16px;
  display: block;
}

.rv-email-section__headline {
  font-family: var(--rv-font-headline);
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--rv-off-white);
  line-height: 1;
  margin-bottom: 12px;
}

.rv-email-section__sub {
  font-size: 1rem;
  color: var(--rv-muted);
  max-width: 480px;
  margin: 0 auto 36px;
}

.rv-email-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  gap: 0;
}

.rv-email-form input[type="email"] {
  flex: 1;
  background: var(--rv-mid-gray);
  border: 1px solid rgba(240, 237, 230, 0.12);
  border-right: none;
  color: var(--rv-off-white);
  font-family: var(--rv-font-body);
  font-size: 0.9rem;
  padding: 14px 20px;
  outline: none;
  transition: border-color var(--rv-transition);
}
.rv-email-form input[type="email"]:focus {
  border-color: var(--rv-orange);
}
.rv-email-form input[type="email"]::placeholder {
  color: var(--rv-muted);
}

.rv-email-form button,
.rv-email-form .rv-btn {
  border-left: none;
  flex-shrink: 0;
}

/* ── 14. Affiliate Disclosure (inline) ──────────────────── */
.rv-inline-disclosure,
.rv-disclosure {
  background: rgba(240, 237, 230, 0.04);
  border-left: 3px solid var(--rv-orange);
  padding: 12px 18px;
  margin: 20px 0;
  font-size: 0.85rem;
  color: var(--rv-muted);
  border-radius: 0 var(--rv-card-radius) var(--rv-card-radius) 0;
}
.rv-inline-disclosure a,
.rv-disclosure a {
  color: var(--rv-orange);
}

/* ── 15. Buy Button block ────────────────────────────────── */
.rv-buy-block {
  background: var(--rv-dark-gray);
  border: 1px solid rgba(240, 237, 230, 0.08);
  border-radius: var(--rv-card-radius);
  padding: 24px 28px;
  margin: 32px 0;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.rv-buy-block__price {
  font-family: var(--rv-font-label);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--rv-off-white);
}

.rv-buy-block__note {
  width: 100%;
  font-size: 0.75rem;
  color: var(--rv-muted);
  margin: 8px 0 0;
}

/* ── 16. "What I Use Instead" callout (fail posts) ─────── */
.rv-instead-box {
  background: var(--rv-orange);
  border-radius: var(--rv-card-radius);
  padding: 28px 32px;
  margin: 36px 0;
  position: relative;
  overflow: hidden;
}

.rv-instead-box::before {
  content: 'INSTEAD';
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--rv-font-headline);
  font-size: 5rem;
  color: rgba(0,0,0,0.1);
  pointer-events: none;
}

.rv-instead-box__label {
  font-family: var(--rv-font-label);
  font-weight: 900;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(240, 237, 230, 0.75);
  margin-bottom: 8px;
}

.rv-instead-box__product {
  font-family: var(--rv-font-headline);
  font-size: 1.8rem;
  color: var(--rv-off-white);
  margin: 4px 0 12px;
  line-height: 1;
}

.rv-instead-box__copy {
  font-size: 0.95rem;
  color: rgba(240, 237, 230, 0.85);
  margin-bottom: 20px;
}

.rv-instead-box .rv-btn--primary {
  background: var(--rv-black);
  border-color: var(--rv-black);
  color: var(--rv-off-white) !important;
}
.rv-instead-box .rv-btn--primary:hover {
  background: var(--rv-dark-gray);
}

/* ── 17. Section containers ─────────────────────────────── */
.rv-section {
  padding: var(--rv-section-pad) 0;
}

.rv-section--dark      { background: var(--rv-black); }
.rv-section--gray      { background: var(--rv-dark-gray); }
.rv-section--mid       { background: var(--rv-mid-gray); }
.rv-section--orange    { background: var(--rv-orange); }

.rv-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .rv-container {
    padding: 0 20px;
  }
  :root {
    --rv-section-pad: 50px;
  }
}

.rv-section-eyebrow {
  font-family: var(--rv-font-label);
  font-weight: 800;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--rv-orange);
  display: block;
  margin-bottom: 14px;
}

.rv-section-headline {
  font-family: var(--rv-font-headline);
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--rv-off-white);
  line-height: 1.05;
  margin-bottom: 8px;
}

.rv-section-sub {
  font-size: 1rem;
  color: var(--rv-muted);
  max-width: 560px;
}

/* Section header with "view all" link */
.rv-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}

/* ── 18. Footer ─────────────────────────────────────────── */
body.rv-site .site-footer,
body.rv-site #colophon,
.rv-footer {
  background: var(--rv-black) !important;
  border-top: 1px solid rgba(240, 237, 230, 0.06);
  padding: 60px 0 32px;
}

.rv-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

@media (max-width: 768px) {
  .rv-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .rv-footer__grid { grid-template-columns: 1fr; }
}

.rv-footer__brand-name {
  font-family: var(--rv-font-headline);
  font-size: 2rem;
  color: var(--rv-off-white);
  display: block;
  margin-bottom: 12px;
}

.rv-footer__blurb {
  font-size: 0.875rem;
  color: var(--rv-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.rv-footer__col-heading {
  font-family: var(--rv-font-label);
  font-weight: 800;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--rv-off-white);
  display: block;
  margin-bottom: 16px;
}

.rv-footer__nav a {
  display: block;
  font-size: 0.875rem;
  color: var(--rv-muted);
  padding: 4px 0;
  transition: color var(--rv-transition);
}
.rv-footer__nav a:hover {
  color: var(--rv-orange);
}

.rv-footer__social {
  display: flex;
  gap: 14px;
}
.rv-footer__social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(240, 237, 230, 0.15);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--rv-muted);
  transition: all var(--rv-transition);
  text-decoration: none !important;
}
.rv-footer__social a:hover {
  border-color: var(--rv-orange);
  color: var(--rv-orange);
  background: rgba(212, 98, 42, 0.1);
}

.rv-footer__bottom {
  border-top: 1px solid rgba(240, 237, 230, 0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.rv-footer__copy {
  font-size: 0.8rem;
  color: var(--rv-muted);
}
.rv-footer__disclosure-link {
  font-size: 0.8rem;
  color: var(--rv-muted);
}
.rv-footer__disclosure-link:hover {
  color: var(--rv-orange);
}

/* ── 19. Live Badge ──────────────────────────────────────── */
.rv-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 74, 47, 0.25);
  border: 1px solid rgba(59, 74, 47, 0.6);
  border-radius: 100px;
  padding: 6px 16px;
  font-family: var(--rv-font-label);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6dbf6d;
  margin-bottom: 24px;
}

.rv-live-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6dbf6d;
  box-shadow: 0 0 0 0 rgba(109, 191, 109, 0.4);
  animation: rv-pulse 2s ease-out infinite;
  flex-shrink: 0;
}

@keyframes rv-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(109, 191, 109, 0.5); }
  70%  { box-shadow: 0 0 0 8px rgba(109, 191, 109, 0); }
  100% { box-shadow: 0 0 0 0 rgba(109, 191, 109, 0); }
}

/* ── 20. WPForms overrides ───────────────────────────────── */
body.rv-site .wpforms-container input[type="text"],
body.rv-site .wpforms-container input[type="email"],
body.rv-site .wpforms-container select,
body.rv-site .wpforms-container textarea {
  background: var(--rv-mid-gray) !important;
  border: 1px solid rgba(240, 237, 230, 0.12) !important;
  color: var(--rv-off-white) !important;
  border-radius: var(--rv-card-radius) !important;
  font-family: var(--rv-font-body) !important;
  padding: 12px 16px !important;
}

body.rv-site .wpforms-container input:focus,
body.rv-site .wpforms-container textarea:focus {
  border-color: var(--rv-orange) !important;
  outline: none !important;
  box-shadow: 0 0 0 2px rgba(212, 98, 42, 0.2) !important;
}

body.rv-site .wpforms-container .wpforms-submit {
  background: var(--rv-orange) !important;
  color: var(--rv-off-white) !important;
  font-family: var(--rv-font-label) !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  border: none !important;
  padding: 14px 28px !important;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  cursor: pointer !important;
  transition: background var(--rv-transition) !important;
}
body.rv-site .wpforms-container .wpforms-submit:hover {
  background: var(--rv-orange-dark) !important;
}

body.rv-site .wpforms-container label {
  color: var(--rv-off-white) !important;
  font-family: var(--rv-font-label) !important;
  font-weight: 700 !important;
  font-size: 0.8rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
}

/* ── 21. Elementor overrides ─────────────────────────────── */
body.rv-site .elementor-section,
body.rv-site .e-con {
  /* Let Elementor sections use brand colors naturally */
}

/* Ensure dark backgrounds on Elementor sections with class */
body.rv-site .elementor-section.rv-dark-section {
  background: var(--rv-black) !important;
}

/* ── 22. Mobile nav ──────────────────────────────────────── */
@media (max-width: 768px) {
  body.rv-site .ast-mobile-header-wrap {
    background: rgba(14, 14, 14, 0.97) !important;
  }

  body.rv-site .rv-stats-row {
    gap: 24px;
  }
  body.rv-site .rv-stat__number {
    font-size: 2.5rem;
  }

  .rv-about-strip::before {
    font-size: 8rem;
  }

  .rv-categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rv-email-form {
    flex-direction: column;
  }
  .rv-email-form input[type="email"] {
    border-right: 1px solid rgba(240, 237, 230, 0.12);
    border-bottom: none;
  }

  .rv-buy-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .rv-categories-grid { grid-template-columns: 1fr; }
  .rv-stamp-wrap { width: 120px; height: 120px; }
}

/* ── 23. Utility ─────────────────────────────────────────── */
.rv-text-orange  { color: var(--rv-orange) !important; }
.rv-text-muted   { color: var(--rv-muted) !important; }
.rv-text-center  { text-align: center; }
.rv-text-upper   { text-transform: uppercase; letter-spacing: 0.12em; }
.rv-font-headline { font-family: var(--rv-font-headline) !important; }
.rv-font-accent   { font-family: var(--rv-font-accent) !important; }

.rv-divider {
  height: 1px;
  background: rgba(240, 237, 230, 0.06);
  border: none;
  margin: 40px 0;
}

/* Screen-reader only */
.rv-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Scroll-fade in animation for sections */
.rv-fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.rv-fade-in.rv-visible {
  opacity: 1;
  transform: translateY(0);
}
