/* ==================== 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-brown: #2A1A0A;
  --rz-amber: #D4A574;
  --rz-mala-red: #C41E3A;
  --rz-salt-blue: #B8D4E3;
  --rz-truffle-black: #2C2C2C;
  --rz-chili-purple: #6B2D8B;
  --rz-cheese-yellow: #FFC107;
}

/* ==================== 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:not(.rz-nav-cart)::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--rz-gold); transition: width 0.3s;
}
.rz-nav a:not(.rz-nav-cart):hover::after { width: 100%; }
.rz-nav .rz-logo-nav img { height: 44px; filter: brightness(0) invert(1); }
.rz-nav-right .rz-nav-cart {
  background: #FFD700; color: #1a1a1a;
  padding: 8px 22px; border-radius: 30px;
  font-weight: 800; font-size: 13px; text-transform: lowercase; cursor: pointer;
  transition: all 0.2s; border: none; text-decoration: none;
}
.rz-nav-right .rz-nav-cart:hover {
  background: #2A1A0A; color: #fff;
  border: 2px solid #2A1A0A;
}
.rz-hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.rz-hamburger span { display: block; width: 26px; height: 3px; background: #fff; border-radius: 2px; transition: all 0.3s; }
.rz-nav-links { display: contents; }

/* ==================== MARQUEE ==================== */
.rz-marquee {
  background: var(--rz-brown); padding: 10px 0;
  overflow: hidden; white-space: nowrap;
}
.rz-marquee-inner {
  display: inline-flex; gap: 40px;
  animation: marquee 30s linear infinite;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700; font-size: 13px; color: var(--rz-amber);
  text-transform: uppercase; letter-spacing: 1px;
}
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ==================== HERO ==================== */
.rz-hero {
  position: relative; overflow: hidden;
  min-height: 92vh;
  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: 50% 25%; }
.rz-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.35) 100%);
}
.rz-hero-content { position: relative; z-index: 1; padding: 40px 20px; max-width: 800px; }
.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; }
.rz-hero-badge {
  display: inline-block; background: var(--rz-gold); color: var(--rz-brown);
  padding: 6px 20px; border-radius: 30px;
  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 h1 {
  font-family: 'Lilita One', cursive;
  font-size: clamp(56px, 10vw, 120px);
  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-sub {
  font-family: 'Nunito', sans-serif; font-size: 19px; color: #fff;
  max-width: 500px; margin: 0 auto 24px; font-weight: 800;
  text-shadow: 0 0 16px rgba(0,0,0,0.8), 2px 2px 4px rgba(0,0,0,0.6);
}
.rz-hero-promo {
  background: rgba(0,0,0,0.5); backdrop-filter: blur(8px);
  border-radius: 16px; padding: 20px 32px; display: inline-block;
  margin-bottom: 28px; border: 2px solid rgba(255,215,0,0.35);
}
.rz-price-new { font-family: 'Lilita One', cursive; font-size: 44px; color: #fff; font-weight: 400; }
.rz-price-old { font-size: 18px; color: rgba(255,255,255,0.55); text-decoration: line-through; margin-left: 12px; font-weight: 700; }
.rz-promo-label { display: block; color: var(--rz-gold); font-weight: 800; font-size: 12px; text-transform: uppercase; letter-spacing: 2px; margin-top: 6px; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.65; } }
.rz-hero-cta {
  display: inline-block; background: var(--rz-gold); color: var(--rz-brown);
  padding: 16px 52px; border-radius: 40px;
  font-weight: 800; font-size: 16px; text-transform: lowercase;
  border: 3px solid #b34a00; box-shadow: 4px 4px 0 #b34a00; transition: all 0.2s;
}
.rz-hero-cta:hover { background: #b34a00; color: #fff; box-shadow: 1px 1px 0 #b34a00; transform: translate(3px,3px); }

/* ==================== TRUST 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-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.8px; }
.rz-trust-badge svg { width: 17px; height: 17px; flex-shrink: 0; color: var(--rz-gold); }
.rz-trust-sep { color: rgba(212,165,116,0.3); font-size: 18px; }

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

/* ==================== STATS BENTO ==================== */
.rz-stats-bento { background: var(--rz-gold); padding: 20px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.rz-stat-tile { border-radius: 20px; min-height: 300px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 36px 24px; text-align: center; position: relative; overflow: hidden; transition: transform 0.3s; }
.rz-stat-tile:hover { transform: scale(1.02); }
.rz-stat-tile.tall { grid-row: span 2; }
.rz-stat-tile.img-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.rz-stat-tile.img-tile::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,0.25) 0%, transparent 50%); }
.rz-stat-tile h2 { font-family: 'Lilita One', cursive; font-size: clamp(36px, 4.5vw, 56px); font-weight: 400; text-transform: lowercase; line-height: 1.05; margin-bottom: 10px; }
.rz-stat-tile p { font-family: 'Nunito', sans-serif; font-size: 16px; font-weight: 700; line-height: 1.5; }
.tile-teal { background: #7CD2ED; }
.tile-teal h2 { color: #fff; } .tile-teal p { color: rgba(255,255,255,0.9); }
.tile-white { background: #fff; }
.tile-white h2 { color: var(--rz-orange); } .tile-white p { color: var(--rz-orange); opacity: 0.8; }
.tile-pink { background: #FF6B8A; }
.tile-pink h2 { color: #fff; } .tile-pink p { color: rgba(255,255,255,0.9); }
.tile-orange { background: var(--rz-orange); }
.tile-orange h2 { color: var(--rz-gold); } .tile-orange p { color: rgba(255,255,255,0.9); }
.rz-bento-cta { display: inline-block; margin-top: 16px; padding: 12px 32px; border-radius: 30px; font-weight: 800; font-size: 14px; text-transform: lowercase; background: var(--rz-gold); color: var(--rz-brown); border: 2px solid #b34a00; box-shadow: 3px 3px 0 #b34a00; transition: all 0.2s; }
.rz-bento-cta:hover { background: #b34a00; color: #fff; box-shadow: 1px 1px 0 #b34a00; transform: translate(2px,2px); }

/* ==================== FLAVORS ==================== */
.rz-flavors { background: var(--rz-cream); padding: 64px 40px; text-align: center; }
.rz-flavors h2 { font-family: 'Lilita One', cursive; font-size: clamp(40px, 6vw, 76px); font-weight: 400; color: var(--rz-orange); text-transform: lowercase; margin-bottom: 8px; }
.rz-flavors .rz-sub { font-family: 'Nunito', sans-serif; color: #888; font-weight: 700; font-size: 15px; margin-bottom: 48px; }
.rz-flavor-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; max-width: 1200px; margin: 0 auto; }
.rz-flavor-card { border-radius: 16px; overflow: hidden; cursor: pointer; transition: transform 0.3s, box-shadow 0.3s; }
.rz-flavor-card:hover { transform: translateY(-6px); box-shadow: 0 16px 36px rgba(0,0,0,0.2); }
.rz-flavor-img { height: 220px; overflow: hidden; }
.rz-flavor-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.rz-flavor-card:hover .rz-flavor-img img { transform: scale(1.07); }
.rz-flavor-info { padding: 16px 14px; text-align: center; }
.rz-flavor-info h3 { font-family: 'Lilita One', cursive; font-size: 18px; font-weight: 400; text-transform: lowercase; margin-bottom: 4px; }
.rz-flavor-vibe { font-family: 'Caveat', cursive; font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.rz-flavor-heat { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; opacity: 0.75; }
.flavor-mala { background: var(--rz-mala-red); color: #fff; }
.flavor-salt { background: var(--rz-salt-blue); color: #1a3a4d; }
.flavor-truffle { background: var(--rz-truffle-black); color: #fff; }
.flavor-chili { background: var(--rz-chili-purple); color: #fff; }
.flavor-cheese { background: var(--rz-cheese-yellow); color: #3d2000; }

/* ==================== SOCIAL PROOF ==================== */
.rz-social { background: var(--rz-dark); padding: 64px 40px; text-align: center; }
.rz-social .rz-eyebrow { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 3px; color: var(--rz-amber); margin-bottom: 12px; }
.rz-social h2 { font-family: 'Lilita One', cursive; font-size: clamp(36px, 5vw, 60px); font-weight: 400; color: var(--rz-gold); text-transform: lowercase; margin-bottom: 48px; }
.rz-social-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 1100px; margin: 0 auto; }
.rz-social-card { border-radius: 16px; overflow: hidden; height: 440px; position: relative; transition: transform 0.3s; }
.rz-social-card:hover { transform: scale(1.02); }
.rz-social-card img, .rz-social-card video { width: 100%; height: 100%; object-fit: cover; }

/* ==================== STORE LOCATOR ==================== */
.rz-stores { background: var(--rz-orange); padding: 64px 40px; text-align: center; }
.rz-stores h2 { font-family: 'Lilita One', cursive; font-size: clamp(40px, 6vw, 76px); font-weight: 400; color: var(--rz-gold); text-transform: lowercase; margin-bottom: 10px; }
.rz-stores .rz-sub { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 17px; color: rgba(255,255,255,0.85); margin-bottom: 48px; max-width: 480px; margin-left: auto; margin-right: auto; }
.rz-store-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 960px; margin: 0 auto 48px; text-align: left; }
.rz-store-area { background: rgba(255,255,255,0.15); border-radius: 16px; padding: 28px; backdrop-filter: blur(4px); }
.rz-area-tag { display: inline-block; background: var(--rz-brown); color: var(--rz-amber); padding: 5px 16px; border-radius: 20px; font-weight: 800; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.rz-store-item { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.15); gap: 12px; }
.rz-store-item:last-child { border-bottom: none; }
.rz-store-name { font-weight: 700; font-size: 14px; color: #fff; }
.rz-dir-btn { display: inline-block; background: #fff; color: var(--rz-orange); padding: 7px 18px; border-radius: 20px; font-weight: 800; font-size: 12px; text-transform: lowercase; white-space: nowrap; transition: all 0.2s; flex-shrink: 0; }
.rz-dir-btn:hover { background: var(--rz-gold); color: var(--rz-brown); }
.rz-store-other { max-width: 960px; margin: 0 auto 48px; text-align: left; background: rgba(255,255,255,0.15); border-radius: 16px; padding: 28px; backdrop-filter: blur(4px); }
.rz-other-items { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 24px; }

/* ==================== FINAL CTA ==================== */
.rz-final { background: var(--rz-brown); padding: 80px 40px; text-align: center; position: relative; overflow: hidden; }
.rz-final::before { content: ''; position: absolute; top: -80px; right: -80px; width: 320px; height: 320px; border-radius: 50%; background: var(--rz-orange); opacity: 0.1; }
.rz-final-inner { position: relative; z-index: 1; }
.rz-final h2 { font-family: 'Lilita One', cursive; font-size: clamp(40px, 6vw, 80px); font-weight: 400; color: var(--rz-gold); text-transform: lowercase; margin-bottom: 20px; }
.rz-final-pricing { margin-bottom: 16px; }
.rz-final-price-new { font-family: 'Lilita One', cursive; font-size: 56px; color: #fff; font-weight: 400; }
.rz-final-price-old { font-size: 22px; color: rgba(255,255,255,0.4); text-decoration: line-through; font-weight: 700; margin-left: 14px; }
.rz-final p { font-family: 'Nunito', sans-serif; font-size: 18px; color: var(--rz-amber); font-weight: 700; max-width: 480px; margin: 0 auto 36px; line-height: 1.6; }
.rz-final-btn { display: inline-block; background: var(--rz-gold); color: var(--rz-brown); padding: 18px 60px; border-radius: 40px; font-weight: 800; font-size: 17px; text-transform: lowercase; border: 3px solid #b34a00; box-shadow: 4px 4px 0 #b34a00; transition: all 0.2s; margin-bottom: 20px; }
.rz-final-btn:hover { background: #b34a00; color: #fff; box-shadow: 1px 1px 0 #b34a00; transform: translate(3px,3px); }
.rz-final-link { display: block; font-size: 14px; color: rgba(255,255,255,0.55); font-weight: 600; margin-top: 12px; }
.rz-final-link:hover { color: rgba(255,255,255,0.9); text-decoration: underline; }

/* ==================== FOOTER WAVE ==================== */
.rz-footer-wave { background: var(--rz-brown); }
.rz-footer-wave .rz-wave { background: var(--rz-brown); }

/* ==================== FOOTER ==================== */
.rz-footer { background: var(--rz-orange); padding: 32px 40px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.rz-footer-logo img { height: 48px; filter: brightness(0) invert(1); }
.rz-footer-links { display: flex; gap: 28px; }
.rz-footer-links a { color: rgba(255,255,255,0.8); font-size: 14px; font-weight: 700; }
.rz-footer-links a:hover { color: #fff; }
.rz-footer-copy { font-size: 12px; color: rgba(255,255,255,0.5); font-weight: 600; }

/* ==================== SCROLL REVEAL ==================== */
.rz-reveal { opacity: 1; transform: none; }

/* ==================== SOCIAL STRIPS ==================== */
.rz-strips { display: flex; flex-direction: column; gap: 6px; padding: 0 6px; margin: 0; background: var(--rz-cream); }
.rz-strip { display: block; padding: 12px 0; overflow: hidden; white-space: nowrap; font-weight: 800; font-size: 15px; text-transform: lowercase; border-radius: 12px; cursor: pointer; }
.rz-strip .inner { display: inline-flex; gap: 32px; animation: marquee 28s linear infinite; white-space: nowrap; will-change: transform; }
.rz-strip.ig { background: var(--rz-orange); color: var(--rz-gold); }
.rz-strip.tt { background: var(--rz-mala-red); color: #fff; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 900px) {
  .rz-stats-bento { grid-template-columns: 1fr 1fr; }
  .rz-stat-tile.tall { grid-row: span 1; }
  .rz-flavor-grid { grid-template-columns: repeat(3, 1fr); }
  .rz-social-grid { grid-template-columns: 1fr; }
  .rz-social-card { height: 360px; }
  .rz-store-grid { grid-template-columns: 1fr; }
  .rz-other-items { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .rz-nav { padding: 12px 20px; justify-content: space-between; }
  .rz-nav-center { position: static; transform: none; display: none; }
  .rz-nav-right { display: none; }
  .rz-hamburger { display: flex; }
  .rz-stats-bento { grid-template-columns: 1fr; }
  .rz-flavor-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .rz-flavor-img { height: 180px; }
  .rz-trust-band { gap: 14px; }
  .rz-trust-sep { display: none; }
}