
/* ==================== RESET ==================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Quicksand', sans-serif; color: #1a1a1a; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ==================== COLORS ==================== */
:root {
  --rz-orange: #FF6B35;
  --rz-dark: #1a1a1a;
  --rz-cream: #FFF8F0;
  --rz-gold: #FFD700;
  --rz-teal: #7CD2ED;
  --rz-mala-red: #C41E3A;
  --rz-salt-cream: #B8D4E3;
  --rz-truffle-black: #2C2C2C;
  --rz-chili-purple: #6B2D8B;
  --rz-cheese-yellow: #FFC107;
  --rz-brown: #2A1A0A;
  --rz-amber: #D4A574;
}

/* ==================== NAV ==================== */
.rz-nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--rz-orange);
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 40px;
}
.rz-nav-center {
  display: flex; align-items: center; gap: 36px;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.rz-nav a {
  color: #fff; font-family: 'Quicksand', sans-serif;
  font-weight: 700; font-size: 15px;
  text-transform: lowercase; letter-spacing: 0.5px;
  transition: opacity 0.2s;
  position: relative;
}
.rz-nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--rz-gold);
  transition: width 0.3s;
}
.rz-nav a:hover::after { width: 100%; }
.rz-nav .rz-logo-nav img { height: 44px; filter: brightness(0) invert(1); }
.rz-nav-right { display: flex; align-items: center; gap: 12px; }
.rz-nav-cart {
  background: var(--rz-gold); color: var(--rz-dark);
  padding: 8px 22px; border-radius: 30px;
  font-weight: 800; font-size: 13px;
  text-transform: lowercase; cursor: pointer;
  transition: all 0.2s; border: 2px solid rgba(0,0,0,0.15);
}
.rz-nav-cart:hover { background: #ffe44d; }

/* Mega menu dropdown */
.rz-nav-item { position: relative; }
.rz-mega {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #fff; border-radius: 16px;
  padding: 24px 28px; min-width: 220px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
  transform: translateX(-50%) translateY(16px);
  z-index: 200;
}
.rz-nav-item:hover .rz-mega {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(8px);
}
.rz-mega::before {
  content: ''; position: absolute;
  top: -12px; left: 0; right: 0; height: 12px;
}
.rz-mega a {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: 10px;
  color: var(--rz-dark) !important; font-size: 14px;
  font-weight: 700; transition: background 0.2s;
}
.rz-mega a::after { display: none !important; }
.rz-mega a:hover { background: var(--rz-cream); }
.rz-mega .rz-mega-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.rz-mega .rz-mega-sep { border: none; border-top: 1px solid #eee; margin: 6px 0; }

/* Hamburger */
.rz-hamburger {
  display: none; cursor: pointer;
  flex-direction: column; gap: 5px; z-index: 110;
}
.rz-hamburger span {
  display: block; width: 26px; height: 3px;
  background: #fff; border-radius: 2px; transition: all 0.3s;
}
.rz-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.rz-hamburger.open span:nth-child(2) { opacity: 0; }
.rz-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }
.rz-nav-links { display: contents; }

/* ==================== MARQUEE ==================== */
.rz-marquee {
  background: var(--rz-cream);
  padding: 10px 0; overflow: hidden; white-space: nowrap;
  border-bottom: 2px solid #ffe0c0;
}
.rz-marquee-inner {
  display: inline-flex; gap: 40px;
  animation: marquee 25s linear infinite;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700; font-size: 14px; color: var(--rz-orange);
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==================== HERO ==================== */
.rz-hero {
  position: relative; overflow: hidden;
  min-height: 90vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
}
.rz-hero-bg { position: absolute; inset: 0; z-index: 0; }
.rz-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.rz-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.25) 100%);
}
.rz-hero-content { position: relative; z-index: 1; padding: 40px; }

/* V2: Press/rating strip in hero */
.rz-hero-proof {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 30px; padding: 6px 18px;
  margin-bottom: 16px;
  font-family: 'Quicksand', sans-serif;
  font-size: 13px; font-weight: 700; color: #fff;
}
.rz-hero-proof .rz-stars-sm { color: var(--rz-gold); font-size: 14px; letter-spacing: 1px; }

.rz-hero h1 {
  font-family: 'Lilita One', cursive;
  font-size: clamp(64px, 12vw, 140px);
  font-weight: 400; color: var(--rz-gold);
  line-height: 0.95; text-transform: lowercase;
  transform: rotate(-3deg);
  margin-bottom: 20px;
  -webkit-text-stroke: 3px rgba(180,60,0,0.7);
  paint-order: stroke fill;
  text-shadow: 4px 4px 0 rgba(180,60,0,0.6), 8px 8px 0 rgba(140,30,0,0.3);
  animation: heroFloat 4s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: rotate(-3deg) translateY(0); }
  50% { transform: rotate(-3deg) translateY(-8px); }
}
.rz-hero-badge {
  display: inline-block;
  background: var(--rz-gold); color: var(--rz-dark);
  padding: 6px 20px; border-radius: 30px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 800; font-size: 13px;
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 20px;
  box-shadow: 3px 3px 0 rgba(180,60,0,0.5);
}
.rz-hero p {
  font-family: 'Nunito', sans-serif;
  font-size: 20px; color: #fff;
  max-width: 520px; margin: 0 auto 30px;
  font-weight: 800;
  text-shadow: 1px 1px 0 rgba(180,60,0,0.8), 2px 2px 0 rgba(140,30,0,0.4);
}
.rz-hero-cta {
  display: inline-block;
  background: var(--rz-gold); color: var(--rz-dark);
  padding: 16px 52px; border-radius: 40px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 800; font-size: 16px;
  text-transform: lowercase;
  border: 3px solid #b34a00;
  box-shadow: 4px 4px 0 #b34a00;
  transition: background 0.2s, color 0.2s, box-shadow 0.15s, transform 0.15s;
}
.rz-hero-cta:hover {
  background: #b34a00; color: #fff;
  box-shadow: 1px 1px 0 #b34a00; transform: translate(3px, 3px);
}

/* ==================== V2: TRUST BADGE BAND ==================== */
.rz-trust-band {
  background: var(--rz-brown);
  padding: 16px 40px;
  display: flex; align-items: center; justify-content: center;
  gap: 32px; flex-wrap: wrap;
}
.rz-trust-badge {
  display: flex; align-items: center; gap: 8px;
  color: var(--rz-amber);
  font-family: 'Quicksand', sans-serif;
  font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.8px;
}
.rz-trust-badge svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--rz-gold); }
.rz-trust-sep { color: rgba(212,165,116,0.3); font-size: 18px; }

/* ==================== WAVY DIVIDER ==================== */
.rz-wave { width: 100%; line-height: 0; margin-top: -2px; }
.rz-wave svg { display: block; width: 100%; height: auto; }

/* ==================== BENTO GRID ==================== */
.rz-bento {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 6px; padding: 6px;
}
.rz-bento-item {
  min-height: 420px;
  display: flex; align-items: flex-end; justify-content: flex-start;
  padding: 30px; position: relative; overflow: hidden;
  border-radius: 16px; transition: transform 0.4s;
}
.rz-bento-item:hover { transform: scale(1.01); }
.rz-bento-item.tall { grid-row: span 2; }
.rz-bento-item .rz-bento-bg { position: absolute; inset: 0; z-index: 0; }
.rz-bento-item .rz-bento-bg img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s;
}
.rz-bento-item:hover .rz-bento-bg img { transform: scale(1.05); }
.rz-bento-item .rz-bento-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
}
.rz-bento-item .rz-bento-content { position: relative; z-index: 1; }
.rz-bento-item h2 {
  font-family: 'Lilita One', cursive;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400; text-transform: lowercase;
  line-height: 1.05; color: #fff;
}
.rz-bento-item p {
  font-family: 'Nunito', sans-serif;
  font-size: 15px; font-weight: 700;
  margin-top: 6px; color: rgba(255,255,255,0.85);
}
.rz-bento-item .rz-bento-cta {
  display: inline-block; margin-top: 14px;
  padding: 10px 32px; border-radius: 30px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 800; font-size: 14px;
  text-transform: lowercase; background: #fff; color: var(--rz-dark);
  border: none; transition: all 0.3s;
}
.rz-bento-item .rz-bento-cta:hover { transform: scale(1.05); }

/* Text-only bento tiles */
.bento-text-orange {
  background: linear-gradient(135deg, var(--rz-orange), #ff8a50);
  align-items: center; justify-content: space-between;
  flex-direction: column; text-align: center;
  overflow: hidden; padding: 20px 24px 28px;
}
.bento-text-orange h2 {
  color: var(--rz-gold); margin: 0; padding: 0; width: 100%;
  font-family: 'Fraunces', serif; font-weight: 900;
  font-size: clamp(42px, 5.5vw, 62px); line-height: 1.1;
  text-transform: lowercase; position: relative; z-index: 1;
}
.bento-text-orange p {
  color: rgba(255,255,255,0.95); width: 100%; margin: 0;
  font-size: 21px; font-weight: 700;
  font-family: 'Nunito', sans-serif;
  line-height: 1.6; text-align: center; position: relative; z-index: 1;
}
.bento-text-teal {
  background: linear-gradient(135deg, #FF2D78 0%, #FF6B35 100%);
  align-items: center; justify-content: space-between;
  flex-direction: column; text-align: center;
  overflow: hidden; padding: 20px 24px 28px;
}
.bento-text-teal h2 {
  color: #fff; margin: 0; padding: 0; width: 100%;
  font-family: 'Fraunces', serif; font-weight: 900;
  font-size: clamp(42px, 5.5vw, 62px); line-height: 1.1;
  text-transform: lowercase; position: relative; z-index: 1;
}
.bento-text-teal p {
  color: rgba(255,255,255,0.9); font-size: 21px; font-weight: 700;
  font-family: 'Nunito', sans-serif; line-height: 1.65; text-align: center;
  width: 100%; margin: 0; position: relative; z-index: 1;
}
.rz-sparkles { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.rz-sparkles span { position: absolute; font-size: 22px; opacity: 0.7; animation: rz-twinkle 2.4s ease-in-out infinite; }
.bento-text-teal .rz-sparkles span { color: #fff; }
.bento-text-orange .rz-sparkles span { color: rgba(255,255,255,0.8); }
.rz-sparkles span:nth-child(1) { animation-delay: 0s; } .rz-sparkles span:nth-child(2) { animation-delay: 0.3s; }
.rz-sparkles span:nth-child(3) { animation-delay: 0.6s; } .rz-sparkles span:nth-child(4) { animation-delay: 0.9s; }
.rz-sparkles span:nth-child(5) { animation-delay: 1.2s; } .rz-sparkles span:nth-child(6) { animation-delay: 1.5s; }
.rz-sparkles span:nth-child(7) { animation-delay: 1.8s; } .rz-sparkles span:nth-child(8) { animation-delay: 2.1s; }
@keyframes rz-twinkle { 0%, 100% { opacity: 0.7; transform: scale(1); } 50% { opacity: 1; transform: scale(1.25); } }
.bento-text-teal > *:not(.rz-sparkles), .bento-text-orange > *:not(.rz-sparkles) { position: relative; z-index: 1; }

/* Flavor CTA button colors */
.bento-mala    { --cta-light: #F5A0A8; --cta-dark: #C41E3A; --cta-text-default: #5a000d; }
.bento-truffle { --cta-light: #F0E6C8; --cta-dark: #4A2400; --cta-text-default: #2C1A00; }
.bento-salt    { --cta-light: #B8E8F5; --cta-dark: #1A7A8E; --cta-text-default: #0a3d4d; }
.bento-chili   { --cta-light: #D4A8E8; --cta-dark: #6B2D8B; --cta-text-default: #2a004d; }
.bento-cheese  { --cta-light: #FFF200; --cta-dark: #B8690A; --cta-text-default: #3d2000; }
.rz-bento-item .rz-bento-cta {
  background: var(--cta-light, #fff); color: var(--cta-text-default, var(--rz-dark));
  border: 3px solid var(--cta-dark, var(--rz-dark)); box-shadow: 4px 4px 0px var(--cta-dark, var(--rz-dark));
  transition: background 0.2s, color 0.2s, box-shadow 0.15s, transform 0.15s;
}
.rz-bento-item .rz-bento-cta:hover {
  background: var(--cta-dark, var(--rz-dark)); color: #fff;
  box-shadow: 1px 1px 0px var(--cta-dark, var(--rz-dark)); transform: translate(3px, 3px);
}

/* ==================== PRODUCT GRID ==================== */
.rz-products { background: #fff; padding: 60px 40px; text-align: center; }
.rz-products-header { margin-bottom: 12px; }
.rz-products > h2 {
  font-family: 'Lilita One', cursive;
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 400; color: var(--rz-orange); text-transform: lowercase; margin-bottom: 8px;
}
/* V2: aggregate rating above the product grid */
.rz-agg-rating {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 16px;
}
.rz-agg-stars { color: var(--rz-orange); font-size: 20px; letter-spacing: 2px; }
.rz-agg-label {
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 14px; color: #666;
}
.rz-products > .rz-sub {
  font-family: 'Nunito', sans-serif; color: #888; font-weight: 700; font-size: 15px;
  margin-bottom: 40px;
}
.rz-filter-tags {
  display: flex; gap: 12px; justify-content: center;
  margin-bottom: 40px; flex-wrap: wrap;
}
.rz-filter-tag {
  padding: 8px 20px; border: 2px solid var(--rz-orange);
  border-radius: 40px; font-weight: 700; font-size: 13px;
  color: var(--rz-orange); text-transform: lowercase;
  cursor: pointer; transition: all 0.2s; font-family: 'Quicksand', sans-serif;
}
.rz-filter-tag:hover, .rz-filter-tag.active { background: var(--rz-orange); color: #fff; }
.rz-product-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; max-width: 1100px; margin: 0 auto 40px;
}
.rz-product-card {
  border-radius: 16px; overflow: hidden; text-align: center;
  transition: transform 0.3s, box-shadow 0.3s; position: relative; cursor: pointer;
}
.rz-product-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.18); }
.rz-product-card .rz-product-img { height: 420px; position: relative; overflow: hidden; }
.rz-product-card .rz-product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.rz-product-card:hover .rz-product-img img { transform: scale(1.06); }
.rz-product-card .rz-badge-pick {
  position: absolute; top: 12px; right: 12px;
  background: var(--rz-gold); color: var(--rz-dark);
  font-size: 11px; font-weight: 900; padding: 4px 10px;
  border-radius: 20px; text-transform: uppercase;
  transform: rotate(8deg); z-index: 4; font-family: 'Quicksand', sans-serif;
}
/* V2: always-visible name strip at bottom of card */
.rz-product-card .rz-card-name-strip {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 8px 14px 10px;
  display: flex; align-items: center; justify-content: space-between;
  z-index: 2;
}
.rz-card-name-strip .rz-card-name {
  font-family: 'Lilita One', cursive; font-size: 16px; font-weight: 400;
  text-transform: lowercase;
}
.rz-card-name-strip .rz-card-stars { font-size: 12px; letter-spacing: 1px; }
.rz-product-card .rz-product-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px 20px 20px;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1); z-index: 3;
}
.rz-product-card:hover .rz-product-info { transform: translateY(0); }
.rz-product-card h3 {
  font-family: 'Lilita One', cursive; font-size: 24px;
  font-weight: 400; margin-bottom: 4px; text-transform: lowercase;
}
.rz-product-card .rz-product-sub {
  font-family: 'Nunito', sans-serif; font-size: 13px; font-weight: 700; opacity: 0.75; margin-bottom: 6px;
}
.rz-product-card .rz-product-price { font-family: 'Lilita One', cursive; font-size: 18px; margin-bottom: 12px; }
.rz-product-card .rz-buy-btn {
  display: inline-block; padding: 12px 40px; border-radius: 30px;
  font-weight: 800; font-size: 14px; text-transform: lowercase;
  border: none; cursor: pointer; transition: all 0.2s; font-family: 'Quicksand', sans-serif;
}
.rz-product-card .rz-buy-btn:hover { transform: scale(1.05); }

/* Product card colors */
.card-mala { background: var(--rz-mala-red); color: #fff; }
.card-mala .rz-product-info { background: var(--rz-mala-red); color: #fff; }
.card-mala .rz-product-price { color: #fff; }
.card-mala .rz-buy-btn { background: #fff; color: var(--rz-mala-red); }
.card-mala .rz-card-name-strip { background: linear-gradient(0deg, rgba(196,30,58,0.95), rgba(196,30,58,0.4)); color: #fff; }
.card-mala .rz-card-stars { color: var(--rz-gold); }

.card-salt { background: var(--rz-salt-cream); color: var(--rz-dark); }
.card-salt .rz-product-info { background: var(--rz-salt-cream); color: var(--rz-dark); }
.card-salt .rz-buy-btn { background: var(--rz-dark); color: #fff; }
.card-salt .rz-card-name-strip { background: linear-gradient(0deg, rgba(184,212,227,0.97), rgba(184,212,227,0.5)); color: var(--rz-dark); }
.card-salt .rz-card-stars { color: #1A7A8E; }

.card-truffle { background: var(--rz-truffle-black); color: #fff; }
.card-truffle .rz-product-info { background: var(--rz-truffle-black); color: #fff; }
.card-truffle .rz-product-price { color: #fff; }
.card-truffle .rz-buy-btn { background: var(--rz-gold); color: var(--rz-dark); }
.card-truffle .rz-card-name-strip { background: linear-gradient(0deg, rgba(44,44,44,0.97), rgba(44,44,44,0.5)); color: #fff; }
.card-truffle .rz-card-stars { color: var(--rz-gold); }

.card-purple { background: var(--rz-chili-purple); color: #fff; }
.card-purple .rz-product-info { background: var(--rz-chili-purple); color: #fff; }
.card-purple .rz-product-price { color: #fff; }
.card-purple .rz-buy-btn { background: #fff; color: var(--rz-chili-purple); }
.card-purple .rz-card-name-strip { background: linear-gradient(0deg, rgba(107,45,139,0.97), rgba(107,45,139,0.5)); color: #fff; }
.card-purple .rz-card-stars { color: #D4A8E8; }

.card-cheese { background: var(--rz-cheese-yellow); color: var(--rz-dark); }
.card-cheese .rz-product-info { background: var(--rz-cheese-yellow); color: var(--rz-dark); }
.card-cheese .rz-buy-btn { background: var(--rz-dark); color: var(--rz-cheese-yellow); }
.card-cheese .rz-card-name-strip { background: linear-gradient(0deg, rgba(255,193,7,0.97), rgba(255,193,7,0.5)); color: var(--rz-dark); }
.card-cheese .rz-card-stars { color: #B8690A; }

/* V2: Bundle CTA below product grid */
.rz-bundle-cta-row {
  text-align: center; margin-top: 8px; padding-top: 8px;
}
.rz-bundle-pill {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--rz-brown); color: var(--rz-amber);
  padding: 16px 40px; border-radius: 40px;
  font-family: 'Quicksand', sans-serif; font-weight: 800; font-size: 15px;
  text-transform: lowercase; border: 2px solid var(--rz-amber);
  transition: all 0.2s; cursor: pointer;
}
.rz-bundle-pill:hover { background: var(--rz-amber); color: var(--rz-brown); }
.rz-bundle-pill .rz-bundle-tag {
  background: var(--rz-orange); color: white;
  font-size: 11px; font-weight: 900; padding: 3px 10px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: 0.8px;
}

/* ==================== V2: FIND YOUR FLAVOR QUIZ TEASER ==================== */
.rz-quiz {
  background: linear-gradient(135deg, var(--rz-brown) 0%, #3D2410 100%);
  padding: 64px 40px; text-align: center;
  position: relative; overflow: hidden;
}
.rz-quiz::before {
  content: ''; position: absolute;
  top: -80px; right: -80px; width: 320px; height: 320px;
  border-radius: 50%; background: var(--rz-orange); opacity: 0.08;
}
.rz-quiz::after {
  content: ''; position: absolute;
  bottom: -60px; left: -60px; width: 240px; height: 240px;
  border-radius: 50%; background: var(--rz-gold); opacity: 0.06;
}
.rz-quiz-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.rz-quiz-tag {
  display: inline-block; background: var(--rz-orange); color: white;
  font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  padding: 4px 14px; border-radius: 20px; margin-bottom: 16px;
}
.rz-quiz h2 {
  font-family: 'Lilita One', cursive; font-size: clamp(32px, 5vw, 56px);
  font-weight: 400; color: var(--rz-gold); text-transform: lowercase;
  margin-bottom: 12px; line-height: 1.1;
}
.rz-quiz p {
  font-family: 'Nunito', sans-serif; font-size: 17px; color: var(--rz-amber);
  font-weight: 700; margin-bottom: 32px; line-height: 1.5;
}
.rz-quiz-options {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px;
}
.rz-quiz-opt {
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(212,165,116,0.4);
  color: var(--rz-amber); border-radius: 40px;
  padding: 12px 24px; font-family: 'Quicksand', sans-serif;
  font-weight: 700; font-size: 14px; cursor: pointer;
  transition: all 0.2s;
}
.rz-quiz-opt:hover, .rz-quiz-opt.selected {
  background: var(--rz-orange); border-color: var(--rz-orange); color: white;
}
.rz-quiz-cta {
  display: inline-block;
  background: var(--rz-gold); color: var(--rz-dark);
  padding: 16px 52px; border-radius: 40px;
  font-family: 'Quicksand', sans-serif; font-weight: 800; font-size: 16px;
  text-transform: lowercase; border: 3px solid #b34a00; box-shadow: 4px 4px 0 #b34a00;
  transition: all 0.2s; cursor: pointer;
}
.rz-quiz-cta:hover { background: #b34a00; color: #fff; box-shadow: 1px 1px 0 #b34a00; transform: translate(3px, 3px); }

/* ==================== REVIEWS ==================== */
.rz-reviews {
  background: var(--rz-orange); padding: 80px 40px;
  display: grid; grid-template-columns: 1fr minmax(0, 1fr);
  gap: 40px; align-items: center; border-radius: 16px; margin: 6px;
}
.rz-reviews-left h2 {
  font-family: 'Lilita One', cursive; font-size: clamp(28px, 4vw, 48px);
  font-weight: 400; color: var(--rz-gold); text-transform: lowercase; margin-bottom: 4px;
}
.rz-reviews-left h2 em { font-family: 'Caveat', cursive; font-style: normal; font-size: 1.2em; }
/* V2: aggregate rating in review section */
.rz-review-agg {
  display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
}
.rz-review-agg .rz-big-stars { color: var(--rz-gold); font-size: 22px; letter-spacing: 2px; }
.rz-review-agg .rz-agg-text {
  font-family: 'Nunito', sans-serif; font-weight: 800; color: #fff; font-size: 14px;
}
.rz-reviews-left .rz-review-sub {
  font-family: 'Nunito', sans-serif; color: rgba(255,255,255,0.7); font-size: 14px; font-weight: 700; margin-bottom: 20px;
}
.rz-review-nav { display: flex; gap: 12px; }
.rz-review-nav button {
  width: 48px; height: 48px; border-radius: 50%;
  border: 2px solid var(--rz-gold); background: transparent;
  color: var(--rz-gold); font-size: 22px; cursor: pointer;
  transition: all 0.2s; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.rz-review-nav button:hover { background: var(--rz-gold); color: var(--rz-dark); }
.rz-review-carousel { position: relative; min-width: 0; overflow: hidden; }
.rz-review-card {
  border: 2px solid var(--rz-gold); border-radius: 16px; padding: 32px; color: #fff; box-sizing: border-box; max-width: 100%;
}
.rz-review-card .rz-stars { font-size: 22px; color: var(--rz-gold); margin-bottom: 10px; letter-spacing: 2px; }
.rz-review-card .rz-review-title { font-family: 'Lilita One', cursive; font-weight: 400; font-size: 22px; text-transform: uppercase; margin-bottom: 10px; }
.rz-review-card .rz-review-body { font-family: 'Nunito', sans-serif; font-size: 16px; line-height: 1.6; opacity: 0.9; margin-bottom: 14px; word-wrap: break-word; }
.rz-review-card .rz-reviewer { font-family: 'Caveat', cursive; font-weight: 700; color: var(--rz-gold); font-size: 18px; }

/* ==================== FIND US ==================== */
.rz-findus {
  background: var(--rz-teal); padding: 80px 40px;
  text-align: center; border-radius: 16px; margin: 6px;
}
.rz-findus h2 {
  font-family: 'Lilita One', cursive; font-size: clamp(36px, 5vw, 64px);
  font-weight: 400; color: #fff; text-transform: lowercase; margin-bottom: 30px;
}
.rz-store-logos { display: flex; gap: 24px; justify-content: center; align-items: center; flex-wrap: wrap; margin-bottom: 30px; }
.rz-store-logo {
  background: rgba(255,255,255,0.2); padding: 16px 32px; border-radius: 40px;
  font-family: 'Quicksand', sans-serif; font-weight: 800; font-size: 16px; color: #fff;
  letter-spacing: 1px; transition: all 0.3s; cursor: pointer; backdrop-filter: blur(4px);
}
.rz-store-logo:hover { background: rgba(255,255,255,0.35); transform: translateY(-2px); }
.rz-findus-cta {
  display: inline-block; background: #fff; color: #0a6a80;
  padding: 16px 52px; border-radius: 40px;
  font-family: 'Quicksand', sans-serif; font-weight: 800; font-size: 16px;
  text-transform: lowercase; border: 3px solid #0a6a80; box-shadow: 4px 4px 0 #0a6a80;
  transition: all 0.2s;
}
.rz-findus-cta:hover { background: #0a6a80; color: #fff; box-shadow: 1px 1px 0 #0a6a80; transform: translate(3px, 3px); }

/* ==================== SOCIAL MARQUEES ==================== */
.rz-social-strips-wrapper { display: flex; flex-direction: column; gap: 6px; padding: 0 6px; margin: 6px 0; }
.rz-social-strip {
  display: block; padding: 12px 0; overflow: hidden; white-space: nowrap;
  font-family: 'Quicksand', sans-serif; font-weight: 800; font-size: 15px;
  text-transform: lowercase; border-radius: 12px; transition: transform 0.2s, box-shadow 0.2s; cursor: pointer;
}
.rz-social-strip:hover { transform: scale(1.01); box-shadow: 0 4px 20px rgba(0,0,0,0.12); }
.rz-social-strip .inner { display: inline-flex; gap: 24px; animation: marquee 20s linear infinite; }
.rz-social-strip.ig { background: var(--rz-orange); color: var(--rz-gold); }
.rz-social-strip.tt { background: var(--rz-mala-red); color: #fff; }

/* ==================== V2: ORIGIN / STORY SECTION ==================== */
.rz-origin {
  background: var(--rz-cream);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; margin: 6px; border-radius: 16px; overflow: hidden;
}
.rz-origin-img {
  position: relative; min-height: 480px;
}
.rz-origin-img img { width: 100%; height: 100%; object-fit: cover; }
.rz-origin-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 60%, var(--rz-cream) 100%);
}
.rz-origin-copy {
  padding: 60px 48px; display: flex; flex-direction: column; justify-content: center;
}
.rz-origin-copy .rz-origin-tag {
  display: inline-block; background: var(--rz-orange); color: white;
  font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  padding: 4px 14px; border-radius: 20px; margin-bottom: 20px; align-self: flex-start;
}
.rz-origin-copy h2 {
  font-family: 'Lilita One', cursive; font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400; color: var(--rz-brown); text-transform: lowercase;
  line-height: 1.1; margin-bottom: 20px;
}
.rz-origin-copy p {
  font-family: 'Nunito', sans-serif; font-size: 16px; color: #555;
  line-height: 1.75; margin-bottom: 16px; font-weight: 600;
}
.rz-origin-copy p strong { color: var(--rz-brown); font-weight: 800; }
.rz-origin-copy .rz-process-steps {
  display: flex; gap: 8px; flex-wrap: wrap; margin: 20px 0 28px;
}
.rz-process-step {
  background: var(--rz-brown); color: var(--rz-amber);
  font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 13px;
  padding: 6px 16px; border-radius: 20px;
}
.rz-origin-btn {
  display: inline-block; align-self: flex-start;
  background: var(--rz-orange); color: #fff;
  padding: 14px 36px; border-radius: 30px;
  font-family: 'Quicksand', sans-serif; font-weight: 800; font-size: 14px;
  text-transform: lowercase; border: 3px solid var(--rz-brown);
  box-shadow: 4px 4px 0 var(--rz-brown);
  transition: all 0.2s;
}
.rz-origin-btn:hover { background: var(--rz-brown); box-shadow: 1px 1px 0 var(--rz-brown); transform: translate(3px, 3px); }

/* ==================== V2: BUNDLE SECTION ==================== */
.rz-bundle {
  background: var(--rz-dark); padding: 80px 40px;
  text-align: center; margin: 6px; border-radius: 16px;
  position: relative; overflow: hidden;
}
.rz-bundle::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(255,107,53,0.12), transparent 60%);
}
.rz-bundle-inner { position: relative; z-index: 1; }
.rz-bundle .rz-bundle-label {
  display: inline-block; background: var(--rz-orange); color: white;
  font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  padding: 4px 14px; border-radius: 20px; margin-bottom: 16px;
}
.rz-bundle h2 {
  font-family: 'Lilita One', cursive; font-size: clamp(36px, 5vw, 72px);
  font-weight: 400; color: var(--rz-gold); text-transform: lowercase;
  margin-bottom: 12px; line-height: 1.1;
}
.rz-bundle .rz-bundle-sub {
  font-family: 'Nunito', sans-serif; font-size: 18px; color: rgba(255,255,255,0.8);
  font-weight: 700; margin-bottom: 40px; line-height: 1.5;
}
.rz-bundle-flavors {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px;
}
.rz-bundle-flavor {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 30px; padding: 10px 20px;
  font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 14px; color: rgba(255,255,255,0.85);
}
.rz-bundle-flavor .rz-bf-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.rz-bundle-pricing {
  display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 32px;
}
.rz-bundle-orig { font-family: 'Nunito', sans-serif; font-size: 18px; color: rgba(255,255,255,0.4); text-decoration: line-through; font-weight: 700; }
.rz-bundle-price { font-family: 'Lilita One', cursive; font-size: 48px; color: var(--rz-gold); line-height: 1; }
.rz-bundle-save {
  background: var(--rz-mala-red); color: white;
  font-family: 'Quicksand', sans-serif; font-weight: 800; font-size: 13px;
  padding: 4px 14px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.8px;
}
.rz-bundle-buy {
  display: inline-block;
  background: var(--rz-gold); color: var(--rz-dark);
  padding: 18px 60px; border-radius: 40px;
  font-family: 'Quicksand', sans-serif; font-weight: 800; font-size: 17px;
  text-transform: lowercase; border: 3px solid #b34a00; box-shadow: 4px 4px 0 #b34a00;
  transition: all 0.2s; cursor: pointer;
}
.rz-bundle-buy:hover { background: #b34a00; color: #fff; box-shadow: 1px 1px 0 #b34a00; transform: translate(3px, 3px); }

/* ==================== FOOTER ==================== */
.rz-footer-wave { background: var(--rz-dark); }
.home .rz-footer-wave { background: #fff; }
.rz-footer { background: var(--rz-orange); padding: 60px 60px 30px; color: #fff; }
.rz-footer-top {
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 30px; align-items: start; margin-bottom: 60px;
}
.rz-footer-brand-col img { height: 72px; border-radius: 50%; border: 3px solid var(--rz-gold); }
.rz-footer-signup h3 { font-family: 'Caveat', cursive; font-size: 48px; font-weight: 700; margin-bottom: 16px; color: var(--rz-gold); }
.rz-footer-email { display: flex; gap: 0; margin-bottom: 12px; }
.rz-footer-email input {
  padding: 16px 24px; border: 2px solid rgba(255,255,255,0.6); border-right: none;
  border-radius: 40px 0 0 40px; background: transparent; color: #fff;
  font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 15px;
  flex: 1; max-width: 500px; outline: none; transition: border-color 0.3s;
}
.rz-footer-email input:focus { border-color: var(--rz-gold); }
.rz-footer-email input::placeholder { color: rgba(255,255,255,0.5); }
.rz-footer-email button {
  padding: 16px 36px; background: var(--rz-gold); color: var(--rz-dark);
  border: none; border-radius: 0 40px 40px 0;
  font-family: 'Quicksand', sans-serif; font-weight: 800; font-size: 15px; cursor: pointer; transition: all 0.2s;
}
.rz-footer-email button:hover { background: #ffe44d; }
.rz-footer-privacy { font-size: 12px; opacity: 0.6; line-height: 1.5; max-width: 560px; font-weight: 600; }
.rz-footer-socials { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; padding-top: 8px; }
.rz-footer-socials a {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 18px; border: 2px solid rgba(212,165,116,0.5);
  border-radius: 40px; color: var(--rz-gold);
  font-size: 14px; font-weight: 700; font-family: 'Quicksand', sans-serif;
  transition: all 0.2s; white-space: nowrap; text-decoration: none;
}
.rz-footer-socials a:hover { background: rgba(212,165,116,0.15); border-color: var(--rz-gold); }
.rz-footer-socials a .rz-social-icon { width: 18px; height: 18px; flex-shrink: 0; }
.rz-footer-links {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 40px; border-top: 1px solid rgba(255,255,255,0.25); padding-top: 40px;
}
.rz-footer-col h4 { font-family: 'Lilita One', cursive; font-weight: 400; font-size: 20px; text-transform: lowercase; margin-bottom: 16px; letter-spacing: 0.5px; }
.rz-footer-col a { display: block; font-size: 15px; font-weight: 600; opacity: 0.75; margin-bottom: 12px; transition: opacity 0.2s; font-family: 'Quicksand', sans-serif; }
.rz-footer-col a:hover { opacity: 1; }
.rz-footer-bottom { border-top: 1px solid rgba(255,255,255,0.2); padding-top: 20px; text-align: center; font-size: 13px; opacity: 0.5; font-weight: 600; }

/* ==================== V2: EMAIL POPUP ==================== */
.rz-popup-overlay {
  position: fixed; inset: 0; background: rgba(26,10,2,0.75);
  z-index: 1000; display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.4s, visibility 0.4s;
  backdrop-filter: blur(4px);
}
.rz-popup-overlay.open { opacity: 1; visibility: visible; }
.rz-popup {
  background: var(--rz-cream); border-radius: 24px; max-width: 480px; width: 90%;
  padding: 48px 40px; text-align: center; position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.35);
  transform: scale(0.92); transition: transform 0.4s cubic-bezier(0.34,1.4,0.64,1);
}
.rz-popup-overlay.open .rz-popup { transform: scale(1); }
.rz-popup-close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none; font-size: 24px; cursor: pointer; color: #aaa;
  line-height: 1; font-weight: 700; transition: color 0.2s;
}
.rz-popup-close:hover { color: var(--rz-dark); }
.rz-popup .rz-popup-badge {
  display: inline-block; background: var(--rz-orange); color: white;
  font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  padding: 4px 14px; border-radius: 20px; margin-bottom: 16px;
}
.rz-popup h2 {
  font-family: 'Lilita One', cursive; font-size: 32px; font-weight: 400;
  color: var(--rz-brown); text-transform: lowercase; margin-bottom: 10px;
}
.rz-popup p { font-family: 'Nunito', sans-serif; font-size: 15px; color: #666; font-weight: 700; margin-bottom: 24px; line-height: 1.5; }
.rz-popup-diet { margin-bottom: 24px; text-align: left; }
.rz-popup-diet label {
  display: block; font-size: 11px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1px; color: var(--rz-brown); margin-bottom: 10px;
  font-family: 'Quicksand', sans-serif;
}
.rz-diet-options { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.rz-diet-opt {
  display: flex; align-items: center; gap: 8px;
  background: white; border: 2px solid #eee; border-radius: 10px;
  padding: 10px 14px; cursor: pointer; transition: all 0.2s;
  font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 13px; color: #555;
}
.rz-diet-opt input { display: none; }
.rz-diet-opt.checked { border-color: var(--rz-orange); background: #FFF3E6; color: var(--rz-orange); }
.rz-diet-opt .rz-dot { width: 8px; height: 8px; border-radius: 50%; background: #ddd; flex-shrink: 0; transition: background 0.2s; }
.rz-diet-opt.checked .rz-dot { background: var(--rz-orange); }
.rz-popup-email-row { display: flex; flex-direction: column; gap: 10px; }
.rz-popup-email-row input[type="email"] {
  padding: 14px 20px; border: 2px solid #ddd; border-radius: 12px;
  font-family: 'Quicksand', sans-serif; font-size: 15px; font-weight: 600;
  outline: none; transition: border-color 0.2s; color: var(--rz-dark);
}
.rz-popup-email-row input[type="email"]:focus { border-color: var(--rz-orange); }
.rz-popup-email-row button {
  padding: 16px 32px; background: var(--rz-orange); color: white;
  border: none; border-radius: 12px; font-family: 'Quicksand', sans-serif;
  font-weight: 800; font-size: 15px; cursor: pointer; transition: background 0.2s;
}
.rz-popup-email-row button:hover { background: #e55a22; }
.rz-popup-skip { margin-top: 14px; font-size: 12px; color: #aaa; cursor: pointer; font-weight: 600; font-family: 'Quicksand', sans-serif; }
.rz-popup-skip:hover { color: #888; text-decoration: underline; }

/* ==================== V2: MOBILE STICKY ATC ==================== */
.rz-sticky-atc {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 300;
  background: var(--rz-brown); border-top: 2px solid var(--rz-amber);
  padding: 12px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  transform: translateY(100%); transition: transform 0.3s cubic-bezier(0.34,1.2,0.64,1);
  display: none;
}
.rz-sticky-atc.visible { transform: translateY(0); }
.rz-sticky-atc-info { display: flex; align-items: center; gap: 10px; }
.rz-sticky-atc-name { font-family: 'Quicksand', sans-serif; font-weight: 800; font-size: 13px; color: var(--rz-amber); }
.rz-sticky-atc-price { font-family: 'Lilita One', cursive; font-size: 18px; color: var(--rz-gold); }
.rz-sticky-atc-btn {
  background: var(--rz-orange); color: white; border: none;
  padding: 12px 32px; border-radius: 30px;
  font-family: 'Quicksand', sans-serif; font-weight: 800; font-size: 14px;
  text-transform: lowercase; cursor: pointer; white-space: nowrap;
  flex-shrink: 0;
}

/* ==================== SCROLL ANIMATIONS ==================== */
.rz-reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.rz-reveal.visible { opacity: 1; transform: translateY(0); }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 900px) {
  .rz-bento { grid-template-columns: 1fr 1fr; }
  .rz-reviews { grid-template-columns: 1fr; }
  .rz-origin { grid-template-columns: 1fr; }
  .rz-origin-img { min-height: 280px; }
  .rz-origin-img::after { background: linear-gradient(180deg, transparent 60%, var(--rz-cream) 100%); }
  .rz-hero { min-height: 70vh; }
}
@media (max-width: 600px) {
  .rz-bento { grid-template-columns: 1fr; }
  .rz-bento-item.tall { grid-row: span 1; }
  .rz-bento-item[style*="grid-column"] { grid-column: span 1 !important; }
  .rz-nav { padding: 12px 20px; }
  .rz-nav-center { position: static; transform: none; }
  .rz-nav-right { display: none; }
  .rz-hamburger { display: flex; }
  .rz-nav-links {
    display: none; position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--rz-orange);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 32px; z-index: 105;
  }
  .rz-nav-links.open { display: flex; }
  .rz-nav-links a { font-size: 24px; }
  .rz-hero { min-height: 60vh; }
  .rz-hero h1 { font-size: 52px; }
  .rz-trust-band { gap: 16px; padding: 14px 20px; }
  .rz-trust-sep { display: none; }
  .rz-footer-top { grid-template-columns: 1fr; }
  .rz-footer-email { flex-direction: column; }
  .rz-footer-email input { width: 100%; border-right: 2px solid rgba(255,255,255,0.6); border-radius: 40px; }
  .rz-footer-email button { border-radius: 40px; }
  .rz-product-grid { grid-template-columns: 1fr; max-width: 360px; }
  .rz-bundle-pricing { flex-direction: column; gap: 8px; }
  .rz-origin-copy { padding: 36px 28px; }
  .rz-quiz-options { flex-direction: column; align-items: center; }
  /* Mobile sticky ATC */
  .rz-sticky-atc { display: flex; }
  body { padding-bottom: 72px; }
  .rz-diet-options { grid-template-columns: 1fr; }
}


/* ── WordPress body class overrides ── */
.admin-bar .rz-nav { top: 32px; }
.admin-bar .rz-sticky-atc { bottom: 0; }
