/* ==================== 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-mala-dark: #8B0000;
  --rz-mala-light: #FFE8EC;
  --rz-salt-cream: #B8D4E3;
  --rz-truffle-black: #2C2C2C;
  --rz-chili-purple: #6B2D8B;
  --rz-cheese-yellow: #FFC107;
  /* Page accent = flavor color */
  --accent: var(--rz-mala-red);
  --accent-dark: var(--rz-mala-dark);
  --accent-light: var(--rz-mala-light);
}

/* ==================== MARQUEE ==================== */
.rz-marquee {
  background: var(--accent); color: #fff;
  overflow: hidden; white-space: nowrap;
  padding: 10px 0; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
}
.rz-marquee-inner {
  display: inline-block;
  animation: marquee 30s linear infinite;
}
.rz-marquee-inner span { margin: 0 18px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ==================== BREADCRUMB ==================== */
.rz-breadcrumb {
  padding: 16px 40px;
  background: var(--rz-cream);
  font-size: 13px; font-weight: 600; color: #888;
}
.rz-breadcrumb a { color: #888; }
.rz-breadcrumb a:hover { color: var(--accent); }
.rz-breadcrumb span { color: var(--rz-dark); }

/* ==================== PRODUCT HERO ==================== */
.rz-pdp-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  background: var(--rz-cream);
}

/* Left: sticky image panel */
.rz-pdp-img-panel {
  position: sticky; top: 70px;
  height: calc(100vh - 70px);
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, var(--accent-light) 0%, #fff4f6 100%);
  overflow: hidden;
  padding: 40px;
}
.rz-pdp-img-panel::before {
  content: 'chili';
  position: absolute; font-size: 180px; opacity: 0.06;
  bottom: -20px; right: -20px; transform: rotate(-15deg);
  pointer-events: none;
}
.rz-pdp-img-panel img {
  max-height: 80vh; width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(196,30,58,0.25));
  transform: rotate(-3deg);
  transition: transform 0.4s ease;
}
.rz-pdp-img-panel:hover img { transform: rotate(0deg) scale(1.02); }

/* Right: product info */
.rz-pdp-info {
  padding: 60px 56px 80px 48px;
  display: flex; flex-direction: column; gap: 28px;
  min-height: calc(100vh - 70px);
}

.rz-pdp-flavor-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-light); color: var(--accent);
  border: 2px solid var(--accent);
  border-radius: 100px; padding: 6px 16px;
  font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  width: fit-content;
}

.rz-pdp-name {
  font-family: 'Lilita One', cursive;
  font-size: clamp(48px, 6vw, 76px);
  line-height: 0.95; color: var(--accent);
  letter-spacing: -1px;
}

.rz-pdp-tagline {
  font-family: 'Fraunces', serif;
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 700; color: var(--rz-dark);
  line-height: 1.3;
}

/* Heat level */
.rz-heat {
  display: flex; align-items: center; gap: 10px;
}
.rz-heat-label {
  font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1px; color: #888;
}
.rz-heat-peppers {
  display: flex; gap: 4px;
}
.rz-heat-peppers span { font-size: 22px; }
.rz-heat-peppers span.dim { opacity: 0.2; }
.rz-heat-tag {
  background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1px;
  padding: 4px 10px; border-radius: 100px;
}

/* Quick stats strip */
.rz-pdp-stats {
  display: flex; gap: 0;
  border: 2.5px solid var(--rz-dark);
  border-radius: 16px; overflow: hidden;
}
.rz-pdp-stat {
  flex: 1; text-align: center;
  padding: 14px 12px;
  border-right: 2px solid var(--rz-dark);
}
.rz-pdp-stat:last-child { border-right: none; }
.rz-pdp-stat-num {
  font-family: 'Lilita One', cursive;
  font-size: 26px; color: var(--accent);
  line-height: 1;
}
.rz-pdp-stat-label {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px;
  color: #666; margin-top: 4px;
}

/* Price */
.rz-pdp-price-row {
  display: flex; align-items: baseline; gap: 12px;
}
.rz-pdp-price {
  font-family: 'Lilita One', cursive;
  font-size: 44px; color: var(--rz-dark);
}
.rz-pdp-weight {
  font-size: 15px; font-weight: 600; color: #999;
}
.rz-pdp-stock {
  font-size: 13px; font-weight: 700;
  color: #2e7d32;
  display: flex; align-items: center; gap: 6px;
}
.rz-pdp-stock::before {
  content: ''; width: 8px; height: 8px;
  background: #2e7d32; border-radius: 50%;
  flex-shrink: 0;
}

/* Add to cart */
.rz-pdp-atc {
  display: flex; flex-direction: column; gap: 12px;
}
.rz-pdp-qty-row {
  display: flex; align-items: center; gap: 16px;
}
.rz-pdp-qty {
  display: flex; align-items: center;
  border: 2.5px solid var(--rz-dark); border-radius: 12px;
  overflow: hidden;
}
.rz-pdp-qty button {
  width: 44px; height: 44px;
  background: none; border: none; cursor: pointer;
  font-size: 20px; font-weight: 700;
  color: var(--rz-dark); transition: background 0.15s;
}
.rz-pdp-qty button:hover { background: #f0f0f0; }
.rz-pdp-qty span {
  width: 44px; text-align: center;
  font-size: 18px; font-weight: 800;
}
.rz-pdp-atc-btn {
  flex: 1;
  background: var(--accent); color: #fff;
  border: 2.5px solid var(--rz-dark);
  border-radius: 12px; padding: 14px 28px;
  font-family: 'Quicksand', sans-serif;
  font-size: 16px; font-weight: 800;
  text-transform: lowercase; letter-spacing: 0.5px;
  cursor: pointer;
  box-shadow: 4px 4px 0 var(--rz-dark);
  transition: transform 0.1s, box-shadow 0.1s;
}
.rz-pdp-atc-btn:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--rz-dark);
}
.rz-pdp-atc-btn:active {
  transform: translate(4px, 4px);
  box-shadow: 0 0 0 var(--rz-dark);
}
.rz-pdp-bundle-link {
  text-align: center;
  font-size: 13px; font-weight: 700; color: #888;
}
.rz-pdp-bundle-link a {
  color: var(--accent); text-decoration: underline;
  text-underline-offset: 3px;
}

/* Badges row */
.rz-pdp-badges {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.rz-pdp-badge {
  display: inline-flex; align-items: center; gap: 6px;
  border: 2px solid #e0e0e0; border-radius: 100px;
  padding: 6px 14px; font-size: 12px; font-weight: 700;
  color: #555;
}
.rz-pdp-badge span { font-size: 14px; }

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

/* ==================== MANIFESTO SECTION ==================== */
.rz-manifesto {
  background: var(--accent);
  padding: 80px 40px;
  text-align: center;
  position: relative; overflow: hidden;
}
.rz-manifesto::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent, transparent 40px,
    rgba(255,255,255,0.04) 40px, rgba(255,255,255,0.04) 41px
  );
}
.rz-manifesto-eyebrow {
  font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 2px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}
.rz-manifesto h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 900; color: #fff;
  line-height: 1.15; max-width: 800px;
  margin: 0 auto 20px;
}
.rz-manifesto p {
  font-size: 18px; color: rgba(255,255,255,0.85);
  font-weight: 600; max-width: 560px; margin: 0 auto;
  line-height: 1.6;
}

/* ==================== STATS BENTO ==================== */
.rz-stats-section {
  background: var(--rz-cream);
  padding: 80px 40px;
}
.rz-stats-section h2 {
  font-family: 'Lilita One', cursive;
  font-size: clamp(32px, 4vw, 52px);
  text-align: center; margin-bottom: 48px;
  color: var(--rz-dark);
}
.rz-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px; max-width: 1000px; margin: 0 auto;
}
.rz-stat-tile {
  background: #fff;
  border: 2.5px solid var(--rz-dark);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 5px 5px 0 var(--rz-dark);
  transition: transform 0.15s, box-shadow 0.15s;
}
.rz-stat-tile:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--rz-dark);
}
.rz-stat-tile:nth-child(1) { background: var(--accent-light); }
.rz-stat-tile:nth-child(2) { background: #FFF9E6; }
.rz-stat-tile:nth-child(3) { background: #E8F5E9; }
.rz-stat-tile:nth-child(4) { background: #E3F2FD; }
.rz-stat-icon { font-size: 36px; margin-bottom: 12px; }
.rz-stat-number {
  font-family: 'Lilita One', cursive;
  font-size: 48px; line-height: 1;
  color: var(--accent); margin-bottom: 6px;
}
.rz-stat-tile:nth-child(2) .rz-stat-number { color: #D4A017; }
.rz-stat-tile:nth-child(3) .rz-stat-number { color: #2e7d32; }
.rz-stat-tile:nth-child(4) .rz-stat-number { color: #1565c0; }
.rz-stat-name {
  font-size: 13px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.5px;
  color: #555; margin-bottom: 8px;
}
.rz-stat-desc {
  font-size: 12px; color: #888; font-weight: 600;
  line-height: 1.4;
}

/* ==================== INGREDIENTS ==================== */
.rz-ingredients {
  background: var(--rz-dark);
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  max-width: 100%;
}
.rz-ingredients-text h2 {
  font-family: 'Lilita One', cursive;
  font-size: clamp(32px, 4vw, 52px);
  color: #fff; margin-bottom: 8px;
}
.rz-ingredients-text .rz-ingr-sub {
  font-family: 'Fraunces', serif;
  font-size: 18px; font-weight: 700;
  color: var(--accent-light); margin-bottom: 32px;
}
.rz-ingr-list {
  list-style: none; display: flex; flex-direction: column; gap: 14px;
}
.rz-ingr-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; font-weight: 600; color: #ddd;
  line-height: 1.4;
}
.rz-ingr-list li::before {
  content: 'star'; color: var(--accent-light);
  flex-shrink: 0; margin-top: 1px; font-size: 12px;
}
.rz-ingr-list li strong { color: #fff; }

/* Clean label badges */
.rz-clean-labels {
  display: flex; flex-direction: column; gap: 16px;
}
.rz-clean-label {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 16px; padding: 18px 24px;
  transition: background 0.2s;
}
.rz-clean-label:hover { background: rgba(255,255,255,0.1); }
.rz-clean-label-icon { font-size: 28px; flex-shrink: 0; }
.rz-clean-label-text h4 {
  font-size: 15px; font-weight: 800; color: #fff;
  margin-bottom: 2px;
}
.rz-clean-label-text p {
  font-size: 12px; color: rgba(255,255,255,0.55); font-weight: 600;
}
.rz-clean-label-check {
  margin-left: auto;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--accent); display: flex;
  align-items: center; justify-content: center;
  color: #fff; font-size: 14px; flex-shrink: 0;
}

/* ==================== FOR YOU ==================== */
.rz-foryou {
  background: var(--rz-cream);
  padding: 80px 40px; text-align: center;
}
.rz-foryou h2 {
  font-family: 'Lilita One', cursive;
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: 12px;
}
.rz-foryou-sub {
  font-size: 16px; color: #888; font-weight: 600;
  margin-bottom: 48px;
}
.rz-foryou-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; max-width: 900px; margin: 0 auto;
}
.rz-foryou-card {
  background: #fff;
  border: 2.5px solid var(--rz-dark);
  border-radius: 20px; padding: 32px 24px;
  box-shadow: 5px 5px 0 var(--rz-dark);
  text-align: left;
  transition: transform 0.15s, box-shadow 0.15s;
}
.rz-foryou-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--rz-dark);
}
.rz-foryou-emoji { font-size: 40px; margin-bottom: 16px; }
.rz-foryou-card h3 {
  font-family: 'Lilita One', cursive;
  font-size: 20px; color: var(--accent);
  margin-bottom: 8px; line-height: 1.2;
}
.rz-foryou-card p {
  font-size: 14px; font-weight: 600;
  color: #666; line-height: 1.5;
}

/* NOT for you card */
.rz-foryou-card.not {
  background: var(--rz-dark); border-color: var(--rz-dark);
  box-shadow: 5px 5px 0 var(--accent);
}
.rz-foryou-card.not:hover { box-shadow: 7px 7px 0 var(--accent); }
.rz-foryou-card.not h3 { color: var(--rz-gold); }
.rz-foryou-card.not p { color: rgba(255,255,255,0.6); }

/* ==================== REVIEWS ==================== */
.rz-reviews {
  background: #fff;
  padding: 80px 40px;
}
.rz-reviews h2 {
  font-family: 'Lilita One', cursive;
  font-size: clamp(28px, 4vw, 48px);
  text-align: center; margin-bottom: 12px;
}
.rz-reviews-sub {
  text-align: center; font-size: 16px; color: #888;
  font-weight: 600; margin-bottom: 48px;
}
.rz-review-stars {
  display: flex; justify-content: center; gap: 6px;
  margin-bottom: 8px;
}
.rz-review-stars span { color: var(--rz-gold); font-size: 22px; }

.rz-review-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; max-width: 1000px; margin: 0 auto;
}
.rz-review-card {
  background: var(--rz-cream);
  border: 2px solid #e8e0d8;
  border-radius: 20px; padding: 28px;
}
.rz-review-card-stars { color: var(--rz-gold); font-size: 16px; margin-bottom: 12px; }
.rz-review-card-text {
  font-size: 15px; color: #444; font-weight: 600;
  line-height: 1.6; margin-bottom: 16px;
  font-style: italic;
}
.rz-review-card-text::before { content: '"'; }
.rz-review-card-text::after { content: '"'; }
.rz-review-card-author {
  font-size: 13px; font-weight: 800; color: #999;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.rz-review-card-tag {
  display: inline-block;
  margin-left: 8px;
  background: var(--accent-light); color: var(--accent);
  font-size: 10px; font-weight: 800; padding: 2px 8px;
  border-radius: 100px; letter-spacing: 0.5px;
  vertical-align: middle;
}

/* ==================== MORE FLAVORS ==================== */
.rz-more-flavors {
  background: var(--rz-cream);
  padding: 80px 0;
}
.rz-more-flavors h2 {
  font-family: 'Lilita One', cursive;
  font-size: clamp(28px, 4vw, 48px);
  text-align: center; margin-bottom: 40px; padding: 0 40px;
}
.rz-flavor-scroll {
  display: flex; gap: 20px;
  padding: 10px 40px 20px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.rz-flavor-scroll::-webkit-scrollbar { display: none; }
.rz-flavor-card {
  flex: 0 0 240px;
  border: 2.5px solid var(--rz-dark);
  border-radius: 24px; overflow: hidden;
  background: #fff;
  box-shadow: 4px 4px 0 var(--rz-dark);
  transition: transform 0.15s, box-shadow 0.15s;
  text-decoration: none; color: inherit;
  display: block;
}
.rz-flavor-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--rz-dark);
}
.rz-flavor-card-img {
  height: 200px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.rz-flavor-card-img img {
  height: 100%; width: 100%; object-fit: cover;
  transition: transform 0.3s ease;
}
.rz-flavor-card:hover .rz-flavor-card-img img { transform: scale(1.05); }
.rz-flavor-card-body { padding: 16px 20px 20px; }
.rz-flavor-card-name {
  font-family: 'Lilita One', cursive;
  font-size: 18px; margin-bottom: 4px;
  line-height: 1.2;
}
.rz-flavor-card-desc {
  font-size: 12px; color: #888; font-weight: 600;
  margin-bottom: 12px;
}
.rz-flavor-card-price {
  font-size: 16px; font-weight: 800; margin-bottom: 12px;
}
.rz-flavor-card-btn {
  display: block; text-align: center;
  background: var(--rz-dark); color: #fff;
  border: 2px solid var(--rz-dark);
  border-radius: 10px; padding: 8px;
  font-family: 'Quicksand', sans-serif;
  font-size: 13px; font-weight: 800;
  text-transform: lowercase;
  box-shadow: 3px 3px 0 rgba(0,0,0,0.3);
  transition: transform 0.1s, box-shadow 0.1s;
}
.rz-flavor-card:hover .rz-flavor-card-btn {
  transform: translate(1px, 1px);
  box-shadow: 2px 2px 0 rgba(0,0,0,0.3);
}

/* flavor card accent colors */
.rz-flavor-card.truffle .rz-flavor-card-img { background: #2C2C2C; }
.rz-flavor-card.salt .rz-flavor-card-img { background: #B8D4E3; }
.rz-flavor-card.chili .rz-flavor-card-img { background: #E8D5F5; }
.rz-flavor-card.cheese .rz-flavor-card-img { background: #FFF3CD; }


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

/* ==================== LUCIDE ICONS ==================== */
.rz-icon { display: inline-flex; align-items: center; justify-content: center; }
.rz-icon svg { display: block; }

/* Stat tile icons */
.rz-stat-icon { margin-bottom: 12px; display: flex; align-items: center; justify-content: center; }
.rz-stat-icon svg { width: 36px; height: 36px; stroke-width: 1.8; }
.rz-stat-tile:nth-child(1) .rz-stat-icon svg { stroke: var(--accent); }
.rz-stat-tile:nth-child(2) .rz-stat-icon svg { stroke: #D4A017; }
.rz-stat-tile:nth-child(3) .rz-stat-icon svg { stroke: #2e7d32; }
.rz-stat-tile:nth-child(4) .rz-stat-icon svg { stroke: #1565c0; }

/* Clean label icons */
.rz-clean-label-icon { width: 36px; height: 36px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.rz-clean-label-icon svg { width: 24px; height: 24px; stroke: rgba(255,255,255,0.8); stroke-width: 1.8; }

/* For you card icons */
.rz-foryou-emoji { margin-bottom: 16px; display: flex; align-items: center; }
.rz-foryou-emoji svg { width: 36px; height: 36px; stroke: var(--accent); stroke-width: 1.8; }
.rz-foryou-card.not .rz-foryou-emoji svg { stroke: var(--rz-gold); }

/* Heat flames */
.rz-heat-flames { display: flex; gap: 3px; align-items: center; }
.rz-heat-flames svg { width: 20px; height: 20px; stroke: var(--accent); stroke-width: 2; fill: none; }
.rz-heat-flames svg.dim { stroke: #ddd; }

/* Flavor badge icon */
.rz-pdp-flavor-label svg { width: 14px; height: 14px; stroke: var(--accent); stroke-width: 2; }

/* Badge icons */
.rz-pdp-badge svg { width: 15px; height: 15px; stroke: #666; stroke-width: 2; flex-shrink: 0; }

/* ==================== V2: IMAGE GALLERY ==================== */
.rz-pdp-gallery { display: flex; flex-direction: column; gap: 10px; }
.rz-pdp-main-img {
  width: 100%; aspect-ratio: 1/1;
  border-radius: 16px; overflow: hidden;
  background: var(--accent-light);
  position: relative;
}
.rz-pdp-main-img img { width: 100%; height: 100%; object-fit: contain; padding: 20px; transition: opacity 0.3s; }
.rz-pdp-thumbs { display: flex; gap: 8px; }
.rz-thumb {
  width: 72px; height: 72px; border-radius: 10px; overflow: hidden;
  border: 2px solid transparent; cursor: pointer; flex-shrink: 0;
  background: #f5f5f5; transition: border-color 0.2s;
}
.rz-thumb:hover, .rz-thumb.active { border-color: var(--accent); }
.rz-thumb img { width: 100%; height: 100%; object-fit: cover; }
.rz-thumb-label {
  width: 72px; height: 72px; border-radius: 10px;
  background: var(--accent-light); display: flex; align-items: center;
  justify-content: center; font-size: 10px; font-weight: 800;
  color: var(--accent); text-align: center; line-height: 1.3;
  padding: 6px; cursor: pointer; border: 2px solid transparent;
  transition: border-color 0.2s;
}
.rz-thumb-label:hover { border-color: var(--accent); }

/* ==================== V2: STAR RATING (above fold) ==================== */
.rz-pdp-rating {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 8px;
}
.rz-pdp-rating .rz-stars { color: #F5A623; font-size: 16px; letter-spacing: 1px; }
.rz-pdp-rating .rz-rating-score { font-weight: 800; font-size: 14px; color: var(--rz-dark); }
.rz-pdp-rating .rz-rating-count {
  font-size: 13px; color: #888; font-weight: 600;
  border-bottom: 1px dashed #ccc; cursor: pointer;
}
.rz-pdp-rating .rz-rating-count:hover { color: var(--accent); border-bottom-color: var(--accent); }

/* ==================== V2: TRUST BADGES (above ATC) ==================== */
.rz-pdp-trust {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 20px;
}
.rz-trust-chip {
  display: inline-flex; align-items: center; gap: 5px;
  background: #f5f5f5; border: 1px solid #e8e8e8;
  border-radius: 20px; padding: 5px 12px;
  font-size: 12px; font-weight: 700; color: #444;
}
.rz-trust-chip svg { width: 13px; height: 13px; stroke: var(--accent); stroke-width: 2.5; flex-shrink: 0; }
.rz-trust-chip.halal { background: #f0faf0; border-color: #c3e6c3; color: #2e7d32; }
.rz-trust-chip.halal svg { stroke: #2e7d32; }
.rz-trust-chip.baked { background: var(--accent-light); border-color: #f5c0c8; color: var(--accent-dark); }
.rz-trust-chip.baked svg { stroke: var(--accent); }

/* ==================== V2: SUBSCRIPTION TOGGLE ==================== */
.rz-sub-toggle {
  background: #f9f9f9; border: 1.5px solid #e8e8e8; border-radius: 14px;
  overflow: hidden; margin-bottom: 16px;
}
.rz-sub-option {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px; cursor: pointer; transition: background 0.2s;
  gap: 12px;
}
.rz-sub-option.selected { background: var(--accent-light); border-color: var(--accent); }
.rz-sub-option + .rz-sub-option { border-top: 1.5px solid #e8e8e8; }
.rz-sub-radio {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid #ccc; flex-shrink: 0; transition: all 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.rz-sub-option.selected .rz-sub-radio { border-color: var(--accent); background: var(--accent); }
.rz-sub-option.selected .rz-sub-radio::after {
  content: ''; width: 6px; height: 6px; border-radius: 50%; background: #fff;
}
.rz-sub-label { flex: 1; }
.rz-sub-label strong { display: block; font-size: 14px; font-weight: 800; color: var(--rz-dark); }
.rz-sub-label span { font-size: 12px; color: #888; font-weight: 600; }
.rz-sub-badge {
  background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 800; padding: 2px 8px;
  border-radius: 12px; white-space: nowrap;
}

/* ==================== V2: NUTRITION ACCORDION ==================== */
.rz-accordion {
  border: 1.5px solid #e8e8e8; border-radius: 12px;
  overflow: hidden; margin-top: 20px;
}
.rz-accordion-item { border-top: 1.5px solid #e8e8e8; }
.rz-accordion-item:first-child { border-top: none; }
.rz-accordion-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px; background: none; border: none; cursor: pointer;
  font-family: 'Quicksand', sans-serif; font-weight: 800; font-size: 14px;
  color: var(--rz-dark); text-align: left;
}
.rz-accordion-trigger:hover { background: #fafafa; }
.rz-accordion-arrow { transition: transform 0.3s; flex-shrink: 0; }
.rz-accordion-item.open .rz-accordion-arrow { transform: rotate(180deg); }
.rz-accordion-body { display: none; padding: 0 18px 16px; }
.rz-accordion-item.open .rz-accordion-body { display: block; }
.rz-accordion-body p, .rz-accordion-body li { font-size: 13px; color: #666; line-height: 1.7; font-weight: 600; }
.rz-accordion-body ul { padding-left: 18px; }
.rz-nutrition-table { width: 100%; border-collapse: collapse; font-size: 13px; margin-top: 8px; }
.rz-nutrition-table tr { border-bottom: 1px solid #f0f0f0; }
.rz-nutrition-table td { padding: 6px 0; color: #555; font-weight: 600; }
.rz-nutrition-table td:last-child { text-align: right; font-weight: 800; color: var(--rz-dark); }

/* ==================== V2: BUNDLE CROSS-SELL ==================== */
.rz-pdp-bundle-box {
  margin-top: 20px; background: var(--rz-dark);
  border-radius: 14px; padding: 18px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.rz-pdp-bundle-box .rz-bb-text strong {
  display: block; font-family: 'Lilita One', cursive;
  font-size: 18px; color: var(--rz-gold); text-transform: lowercase; margin-bottom: 2px;
}
.rz-pdp-bundle-box .rz-bb-text span { font-size: 12px; color: rgba(255,255,255,0.7); font-weight: 700; }
.rz-pdp-bundle-box .rz-bb-price { text-align: right; flex-shrink: 0; }
.rz-pdp-bundle-box .rz-bb-price .rz-bb-orig { font-size: 12px; color: rgba(255,255,255,0.4); text-decoration: line-through; display: block; }
.rz-pdp-bundle-box .rz-bb-price .rz-bb-now { font-family: 'Lilita One', cursive; font-size: 22px; color: var(--rz-gold); }
.rz-pdp-bundle-box .rz-bb-btn {
  background: var(--rz-gold); color: var(--rz-dark);
  border: none; border-radius: 30px; padding: 10px 20px;
  font-family: 'Quicksand', sans-serif; font-weight: 800; font-size: 13px;
  text-transform: lowercase; cursor: pointer; white-space: nowrap; flex-shrink: 0;
  transition: background 0.2s;
}
.rz-pdp-bundle-box .rz-bb-btn:hover { background: #ffe44d; }

/* ==================== V2: STICKY ATC BAR ==================== */
.rz-sticky-atc {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 300;
  background: var(--rz-dark); border-top: 2px solid var(--accent);
  padding: 12px 20px;
  display: flex; align-items: center; gap: 12px;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.34,1.2,0.64,1);
}
.rz-sticky-atc.visible { transform: translateY(0); }
.rz-sticky-atc-img { width: 44px; height: 44px; border-radius: 8px; object-fit: contain; background: var(--accent-light); padding: 4px; flex-shrink: 0; }
.rz-sticky-atc-info { flex: 1; min-width: 0; }
.rz-sticky-atc-name { font-family: 'Quicksand', sans-serif; font-weight: 800; font-size: 13px; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rz-sticky-atc-stars { color: #F5A623; font-size: 11px; }
.rz-sticky-atc-price { font-family: 'Lilita One', cursive; font-size: 20px; color: var(--rz-gold); flex-shrink: 0; }
.rz-sticky-atc-btn {
  background: var(--accent); color: #fff; border: none;
  padding: 12px 24px; 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;
}
.rz-sticky-atc-btn:hover { background: var(--accent-dark); }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 900px) {
  .rz-pdp-hero { grid-template-columns: 1fr; min-height: auto; }
  .rz-pdp-img-panel { position: relative; top: auto; height: auto; }
  .rz-pdp-info { padding: 40px 24px 100px; }
  .rz-sticky-atc { display: flex; }
  body { padding-bottom: 0; }
  .rz-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .rz-ingredients { grid-template-columns: 1fr; gap: 40px; }
  .rz-foryou-grid { grid-template-columns: 1fr; }
  .rz-review-grid { grid-template-columns: 1fr; }
  .rz-breadcrumb { padding: 12px 20px; }
}