:root {
  --rv-black: #070707;
  --rv-charcoal: #141414;
  --rv-panel: #1d1a17;
  --rv-gold: #c9a45c;
  --rv-gold-2: #f3d78f;
  --rv-cream: #fffaf0;
  --rv-muted: #cfc6b6;
  --rv-line: rgba(201, 164, 92, .24);
}

html { scroll-behavior: smooth; }
.rv-body {
  margin: 0;
  background: var(--rv-black);
  color: var(--rv-cream);
  font-family: "Inter", Arial, sans-serif;
}
.rv-body h1, .rv-body h2, .rv-body h3 {
  font-family: "Cinzel", Georgia, serif;
  letter-spacing: 0;
}
.rv-body a { color: inherit; }
.rv-kicker {
  color: var(--rv-gold-2);
  display: inline-flex;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.rv-hero {
  min-height: 92vh;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 76% 22%, rgba(201,164,92,.22), transparent 30%),
    linear-gradient(135deg, #020202 0%, #12100d 52%, #050505 100%);
}
.rv-smoke {
  position: absolute;
  inset: auto -10% -18% -10%;
  height: 52%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,.16), transparent 60%);
  filter: blur(42px);
  animation: rvFloat 9s ease-in-out infinite alternate;
}
.rv-particles::before,
.rv-particles::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(243,215,143,.55) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: .22;
  animation: rvDrift 16s linear infinite;
}
.rv-particles::after { background-size: 96px 96px; animation-duration: 24s; opacity: .14; }
.rv-hero-grid {
  align-items: center;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
  min-height: 86vh;
  position: relative;
  z-index: 1;
}
.rv-hero-copy h1 {
  font-size: clamp(2.7rem, 6vw, 5.9rem);
  line-height: .98;
  max-width: 850px;
}
.rv-hero-copy p {
  color: var(--rv-muted);
  font-size: clamp(1rem, 2.4vw, 1.35rem);
  max-width: 620px;
}
.rv-hero-actions, .rv-pay-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.rv-btn {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  text-decoration: none;
}
.rv-btn-gold {
  background: linear-gradient(135deg, var(--rv-gold-2), var(--rv-gold));
  color: #171006;
  box-shadow: 0 14px 32px rgba(201,164,92,.22);
}
.rv-btn-ghost { border: 1px solid var(--rv-line); color: var(--rv-cream); }
.rv-btn-link { color: var(--rv-gold-2); padding-inline: 8px; }
.rv-pay-strip span {
  border: 1px solid var(--rv-line);
  border-radius: 999px;
  color: var(--rv-muted);
  font-size: .84rem;
  padding: 8px 12px;
}
.rv-hero-media {
  align-items: center;
  display: flex;
  justify-content: center;
  position: relative;
}
.rv-hero-media::before {
  background: radial-gradient(circle, rgba(201,164,92,.28), transparent 68%);
  content: "";
  height: 96%;
  position: absolute;
  width: 96%;
}
.rv-hero-media img {
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.65));
  max-height: 620px;
  max-width: 100%;
  object-fit: contain;
  position: relative;
}
.rv-trust {
  background: #0d0d0d;
  border-block: 1px solid var(--rv-line);
  padding: 18px 0;
}
.rv-trust-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(6, 1fr);
}
.rv-trust-card {
  align-items: center;
  background: rgba(255,255,255,.035);
  border: 1px solid var(--rv-line);
  border-radius: 8px;
  display: flex;
  gap: 9px;
  justify-content: center;
  min-height: 58px;
  text-align: center;
}
.rv-trust-card i { color: var(--rv-gold-2); }
.rv-section { padding: 78px 0; }
.rv-section-head {
  align-items: end;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-bottom: 28px;
}
.rv-section-head h2, .rv-story h2, .rv-notes-grid h2, .rv-quiz h2 {
  font-size: clamp(1.9rem, 4vw, 3.5rem);
  margin: 0;
}
.rv-text-link { color: var(--rv-gold-2); font-weight: 800; text-decoration: none; }
.rv-product-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.rv-product-card {
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
  border: 1px solid var(--rv-line);
  border-radius: 8px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.rv-product-card:hover {
  border-color: rgba(243,215,143,.75);
  box-shadow: 0 18px 50px rgba(0,0,0,.35), 0 0 24px rgba(201,164,92,.18);
  transform: translateY(-4px);
}
.rv-product-img {
  aspect-ratio: 4 / 5;
  background: #fffaf0;
  display: block;
  overflow: hidden;
}
.rv-product-img img {
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
  width: 100%;
}
.rv-product-card:hover img { transform: scale(1.045); }
.rv-product-body { padding: 14px; }
.rv-product-meta, .rv-product-price, .rv-product-actions {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}
.rv-product-meta { color: var(--rv-muted); font-size: .78rem; text-transform: uppercase; }
.rv-stars { color: var(--rv-gold-2); letter-spacing: 0; }
.rv-product-body h3 { font-size: 1.03rem; margin: 9px 0 6px; }
.rv-product-body p { color: var(--rv-muted); font-size: .82rem; min-height: 42px; }
.rv-product-price span { color: var(--rv-gold-2); font-weight: 900; }
.rv-product-price del { color: #938777; font-size: .86rem; }
.rv-mini-btn {
  border: 1px solid var(--rv-line);
  border-radius: 8px;
  flex: 1;
  font-size: .84rem;
  font-weight: 800;
  margin-top: 12px;
  padding: 9px 10px;
  text-align: center;
  text-decoration: none;
}
.rv-mini-btn-gold { background: var(--rv-gold); color: #15100a; }
.rv-notes-section { background: #100f0e; }
.rv-notes-grid, .rv-story-grid, .rv-quiz-grid {
  display: grid;
  gap: 36px;
  grid-template-columns: .9fr 1.1fr;
}
.rv-muted { color: var(--rv-muted); }
.rv-notes-ui {
  display: grid;
  gap: 12px;
}
.rv-notes-ui button, .rv-quiz-card {
  background: rgba(255,255,255,.045);
  border: 1px solid var(--rv-line);
  border-radius: 8px;
  color: var(--rv-cream);
  padding: 18px;
  text-align: left;
}
.rv-notes-ui button.active { background: rgba(201,164,92,.18); border-color: var(--rv-gold); }
.rv-notes-ui span { color: var(--rv-muted); display: block; font-size: .9rem; margin-top: 5px; }
.rv-story {
  background: linear-gradient(135deg, #17120d, #090909);
  padding: 88px 0;
}
.rv-story-copy p { color: var(--rv-muted); font-size: 1.06rem; line-height: 1.8; }
.rv-mini-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
}
.rv-mini-grid span {
  border: 1px solid var(--rv-line);
  border-radius: 8px;
  padding: 13px;
}
.rv-reel-row {
  display: grid;
  gap: 16px;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  overflow-x: auto;
  padding-bottom: 8px;
}
.rv-reel-card {
  aspect-ratio: 9 / 14;
  background: linear-gradient(180deg, rgba(201,164,92,.16), rgba(0,0,0,.72)), url('uploads/background.jpg') center/cover;
  border: 1px solid var(--rv-line);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-width: 220px;
  padding: 18px;
}
.rv-reel-play {
  align-items: center;
  background: rgba(255,255,255,.16);
  border-radius: 50%;
  display: flex;
  height: 46px;
  justify-content: center;
  margin-bottom: auto;
  width: 46px;
}
.rv-review-grid, .rv-blog-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}
.rv-review-card, .rv-blog-card {
  background: rgba(255,255,255,.045);
  border: 1px solid var(--rv-line);
  border-radius: 8px;
  padding: 22px;
}
.rv-review-card p, .rv-blog-card p { color: var(--rv-muted); }
.rv-review-card span, .rv-blog-card span { color: var(--rv-gold-2); font-size: .82rem; }
.rv-category-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(5, 1fr);
}
.rv-category-grid a {
  align-items: end;
  aspect-ratio: 1 / 1;
  background: linear-gradient(180deg, rgba(201,164,92,.08), rgba(0,0,0,.76)), url('uploads/background.jpg') center/cover;
  border: 1px solid var(--rv-line);
  border-radius: 8px;
  display: flex;
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.25rem;
  padding: 18px;
  text-decoration: none;
}
.rv-quiz { background: #100f0e; }
.rv-quiz-card {
  display: grid;
  gap: 12px;
}
.rv-quiz-card select {
  background: #0c0c0c;
  border: 1px solid var(--rv-line);
  border-radius: 8px;
  color: var(--rv-cream);
  min-height: 46px;
  padding: 0 12px;
}
.rv-blog-card a { color: var(--rv-gold-2); font-weight: 800; text-decoration: none; }
.rv-whatsapp {
  align-items: center;
  background: #25d366;
  border-radius: 50%;
  bottom: 18px;
  box-shadow: 0 12px 34px rgba(0,0,0,.35);
  color: #fff;
  display: flex;
  font-size: 1.4rem;
  height: 54px;
  justify-content: center;
  position: fixed;
  right: 18px;
  text-decoration: none;
  width: 54px;
  z-index: 50;
}

@keyframes rvFloat {
  from { transform: translate3d(-4%, 0, 0) scale(1); }
  to { transform: translate3d(4%, -8%, 0) scale(1.08); }
}
@keyframes rvDrift {
  from { transform: translateY(0); }
  to { transform: translateY(-90px); }
}

@media (max-width: 991px) {
  .rv-hero-grid, .rv-notes-grid, .rv-story-grid, .rv-quiz-grid { grid-template-columns: 1fr; }
  .rv-hero-grid { min-height: auto; padding: 78px 12px 42px; }
  .rv-hero-media { order: -1; }
  .rv-hero-media img { max-height: 360px; }
  .rv-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .rv-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rv-review-grid, .rv-blog-grid { grid-template-columns: 1fr; }
  .rv-category-grid { grid-template-columns: repeat(2, 1fr); }
  .rv-section-head { align-items: start; flex-direction: column; }
}
@media (max-width: 576px) {
  .rv-section { padding: 54px 0; }
  .rv-hero-actions .rv-btn { flex: 1 1 auto; }
  .rv-product-body { padding: 11px; }
  .rv-product-body h3 { font-size: .92rem; }
  .rv-product-body p { font-size: .75rem; }
  .rv-mini-grid { grid-template-columns: 1fr; }
  .rv-category-grid a { aspect-ratio: 4 / 3; font-size: 1rem; }
}

.rv-pdp {
  background:
    radial-gradient(circle at 88% 8%, rgba(201,164,92,.15), transparent 28%),
    linear-gradient(180deg, #080808 0%, #111 100%);
  padding: 34px 0 80px;
}
.rv-breadcrumb {
  color: var(--rv-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.rv-breadcrumb a { color: var(--rv-gold-2); text-decoration: none; }
.rv-pdp-grid {
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
}
.rv-pdp-gallery, .rv-pdp-info {
  background: rgba(255,255,255,.045);
  border: 1px solid var(--rv-line);
  border-radius: 8px;
  padding: 18px;
}
.rv-pdp-main-img {
  align-items: center;
  aspect-ratio: 1 / 1;
  background: #fffaf0;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.rv-pdp-main-img img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}
.rv-pdp-thumbs {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 12px;
}
.rv-pdp-thumbs button {
  background: #fffaf0;
  border: 1px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  padding: 0;
}
.rv-pdp-thumbs button.active { border-color: var(--rv-gold); }
.rv-pdp-thumbs img {
  aspect-ratio: 1 / 1;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.rv-product-video {
  border-radius: 8px;
  margin-top: 14px;
  width: 100%;
}
.rv-pdp-info h1 {
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 1;
}
.rv-pdp-rating {
  color: var(--rv-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}
.rv-pdp-rating span { color: var(--rv-gold-2); }
.rv-pdp-desc {
  color: var(--rv-muted);
  line-height: 1.75;
}
.rv-pdp-price {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0;
}
.rv-pdp-price strong {
  color: var(--rv-gold-2);
  font-size: 2rem;
}
.rv-pdp-price del { color: #998f7d; }
.rv-pdp-price span {
  border: 1px solid var(--rv-line);
  border-radius: 999px;
  color: var(--rv-muted);
  padding: 6px 10px;
}
.rv-pdp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.rv-pdp-tags span {
  background: rgba(201,164,92,.12);
  border: 1px solid var(--rv-line);
  border-radius: 999px;
  color: var(--rv-cream);
  padding: 7px 11px;
}
.rv-buy-panel {
  background: rgba(0,0,0,.22);
  border: 1px solid var(--rv-line);
  border-radius: 8px;
  padding: 16px;
}
.rv-qty {
  display: inline-grid;
  grid-template-columns: 42px 58px 42px;
  margin: 8px 0 14px;
}
.rv-qty button, .rv-qty input {
  background: #0c0c0c;
  border: 1px solid var(--rv-line);
  color: var(--rv-cream);
  min-height: 42px;
  text-align: center;
}
.rv-pdp-actions {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
}
.rv-secure-line {
  color: var(--rv-muted);
  font-size: .9rem;
  margin-top: 12px;
}
.rv-meters {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.rv-meters div {
  display: grid;
  gap: 8px;
  grid-template-columns: 120px 1fr;
}
.rv-meters meter {
  height: 18px;
  width: 100%;
}
.rv-pdp-notes {
  border-radius: 8px;
  margin-top: 34px;
  padding-inline: 22px;
}
.rv-detail-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}
.rv-detail-grid article {
  background: rgba(255,255,255,.045);
  border: 1px solid var(--rv-line);
  border-radius: 8px;
  padding: 18px;
}
.rv-detail-grid p { color: var(--rv-muted); }
.rv-review-list {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 18px;
}
.rv-mobile-buy {
  align-items: center;
  background: rgba(8,8,8,.94);
  border-top: 1px solid var(--rv-line);
  bottom: 0;
  display: none;
  gap: 12px;
  justify-content: space-between;
  left: 0;
  padding: 10px 14px;
  position: fixed;
  right: 0;
  z-index: 60;
}
.rv-mobile-buy span {
  color: var(--rv-gold-2);
  font-size: 1.2rem;
  font-weight: 900;
}

@media (max-width: 991px) {
  .rv-pdp-grid { grid-template-columns: 1fr; }
  .rv-detail-grid, .rv-review-list { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .rv-pdp { padding-bottom: 92px; }
  .rv-pdp-actions { grid-template-columns: 1fr; }
  .rv-meters div { grid-template-columns: 1fr; }
  .rv-mobile-buy { display: flex; }
}

.rv-checkout {
  background:
    radial-gradient(circle at 80% 14%, rgba(201,164,92,.16), transparent 30%),
    linear-gradient(180deg, #080808, #111);
  min-height: 80vh;
  padding: 48px 0 76px;
}
.rv-checkout-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
}
.rv-checkout-form, .rv-checkout-summary {
  background: rgba(255,255,255,.045);
  border: 1px solid var(--rv-line);
  border-radius: 8px;
  padding: 24px;
}
.rv-checkout-form h1 {
  font-size: clamp(2rem, 5vw, 4rem);
}
.rv-checkout-form form {
  display: grid;
  gap: 13px;
  margin-top: 18px;
}
.rv-checkout .form-control {
  background: rgba(0,0,0,.42);
  border: 1px solid var(--rv-line);
  border-radius: 8px;
  color: var(--rv-cream);
  min-height: 48px;
}
.rv-checkout .form-control::placeholder { color: #9d927e; }
.rv-field-grid {
  display: grid;
  gap: 13px;
  grid-template-columns: 1fr 1fr;
}
.rv-pay-btn {
  border: 0;
  margin-top: 6px;
  width: 100%;
}
.rv-checkout-summary h2 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.rv-checkout-summary ul {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.rv-checkout-summary li, .rv-summary-total {
  align-items: center;
  border-bottom: 1px solid var(--rv-line);
  display: flex;
  gap: 12px;
  justify-content: space-between;
  padding-bottom: 12px;
}
.rv-checkout-summary li span { color: var(--rv-muted); }
.rv-summary-total {
  border-bottom: 0;
  margin-top: 16px;
}
.rv-summary-total strong {
  color: var(--rv-gold-2);
  font-size: 1.5rem;
}
.rv-checkout-trust {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.rv-checkout-trust span {
  background: rgba(201,164,92,.1);
  border: 1px solid var(--rv-line);
  border-radius: 8px;
  color: var(--rv-muted);
  padding: 10px 12px;
}
.rv-checkout-trust i { color: var(--rv-gold-2); margin-right: 7px; }

@media (max-width: 991px) {
  .rv-checkout-grid { grid-template-columns: 1fr; }
}
@media (max-width: 576px) {
  .rv-field-grid { grid-template-columns: 1fr; }
  .rv-checkout-form, .rv-checkout-summary { padding: 18px; }
}

.rv-blog-title {
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  margin-bottom: 26px;
}
.rv-blog-cats {
  grid-template-columns: repeat(4, 1fr);
}
.rv-blog-article {
  margin: 0 auto;
  max-width: 880px;
}
.rv-blog-article h1 {
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 1;
}
.rv-blog-article h2 {
  color: var(--rv-gold-2);
  font-size: 1.45rem;
  margin-top: 32px;
}
.rv-blog-article p {
  color: var(--rv-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

@media (max-width: 991px) {
  .rv-blog-cats { grid-template-columns: repeat(2, 1fr); }
}

.rv-footer {
  background: #050505;
  border-top: 1px solid var(--rv-line);
  color: var(--rv-cream);
  padding: 56px 0 24px;
}
.rv-footer-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: 1.3fr repeat(3, 1fr);
}
.rv-footer h2, .rv-footer h3 {
  color: var(--rv-gold-2);
  margin-bottom: 14px;
}
.rv-footer p, .rv-footer a, .rv-footer-bottom {
  color: var(--rv-muted);
}
.rv-footer a {
  display: block;
  margin-bottom: 9px;
  text-decoration: none;
}
.rv-footer a:hover { color: var(--rv-gold-2); }
.rv-footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.rv-footer-social a {
  align-items: center;
  border: 1px solid var(--rv-line);
  border-radius: 50%;
  display: flex;
  height: 38px;
  justify-content: center;
  width: 38px;
}
.rv-newsletter {
  display: grid;
  grid-template-columns: 1fr 44px;
  margin-top: 14px;
}
.rv-newsletter input {
  background: rgba(255,255,255,.06);
  border: 1px solid var(--rv-line);
  border-radius: 8px 0 0 8px;
  color: var(--rv-cream);
  min-height: 44px;
  padding: 0 12px;
}
.rv-newsletter button {
  background: var(--rv-gold);
  border: 0;
  border-radius: 0 8px 8px 0;
  color: #110d07;
}
.rv-footer-bottom {
  border-top: 1px solid var(--rv-line);
  display: flex;
  gap: 14px;
  justify-content: space-between;
  margin-top: 32px;
  padding-top: 18px;
}

@media (max-width: 991px) {
  .rv-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 576px) {
  .rv-footer-grid { grid-template-columns: 1fr; }
  .rv-footer-bottom { flex-direction: column; }
}
