/* ==========================================================================
   THE RECIPES BEHIND THE REELS — VOL. 1: CRISPY & FUSION BITES
   Luxury Digital Cookbook Design System & Master Typography
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  --bg-main: #0a0d14;
  --bg-card: #121722;
  --bg-card-hover: #182030;
  --bg-glass: rgba(18, 23, 34, 0.85);
  --bg-glass-subtle: rgba(255, 255, 255, 0.03);
  
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-inverse: #0a0d14;
  
  --gold-primary: #f59e0b;
  --gold-glow: rgba(245, 158, 11, 0.25);
  --gold-gradient: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
  
  --chili-accent: #ef4444;
  --chili-glow: rgba(239, 68, 68, 0.25);
  
  --herb-accent: #10b981;
  --herb-glow: rgba(16, 185, 129, 0.2);
  
  --cyan-accent: #06b6d4;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(245, 158, 11, 0.35);
  
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'Space Grotesk', monospace;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 8px 30px rgba(245, 158, 11, 0.2);

  --container-width: 1440px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: #0a0d14 !important;
  color: #f8fafc !important;
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

body,
body.recipes-vault-body,
.wp-site-blocks {
  min-height: 100vh;
  line-height: 1.65;
  background-color: #0a0d14 !important;
  background: radial-gradient(circle at 85% 15%, rgba(245, 158, 11, 0.08) 0%, transparent 45%),
              radial-gradient(circle at 15% 65%, rgba(239, 68, 68, 0.07) 0%, transparent 50%),
              #0a0d14 !important;
  background-attachment: fixed !important;
  color: #f8fafc !important;
  overflow-x: hidden;
}

/* ==========================================================================
   NAVIGATION BAR & QUICK ACTIONS
   ========================================================================== */
.top-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 13, 20, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.85rem max(1.5rem, calc((100% - var(--container-width, 1440px)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-primary);
}

.brand-badge {
  background: var(--gold-gradient);
  color: #000;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.brand-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
}

.brand-vol {
  color: var(--gold-primary);
  font-weight: 600;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  margin-left: 0.25rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: all 0.25s ease;
  border: 1px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #000;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.4);
}

.btn-secondary {
  background: var(--bg-glass-subtle);
  color: var(--text-primary);
  border-color: var(--border-subtle);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.btn-sm {
  padding: 0.35rem 0.75rem;
  font-size: 0.775rem;
}

.nav-ig-btn {
  background: rgba(244, 63, 94, 0.08);
  border-color: rgba(244, 63, 94, 0.25);
  color: #fb7185;
}

.nav-ig-btn:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(220, 39, 67, 0.4);
  transform: translateY(-2px);
}

.nav-yt-btn {
  background: rgba(255, 0, 0, 0.08);
  border-color: rgba(255, 0, 0, 0.25);
  color: #ff4e4e;
}

.nav-yt-btn:hover {
  background: #ff0000;
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(255, 0, 0, 0.45);
  transform: translateY(-2px);
}

/* ==========================================================================
   HERO / COVER SECTION
   ========================================================================== */
.hero-section {
  padding: 4rem 1.5rem 3rem;
  max-width: var(--container-width, 1440px);
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3.5rem;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.cover-wrapper {
  position: relative;
  perspective: 1200px;
}

.cover-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85), 0 0 40px var(--gold-glow);
  border: 2px solid rgba(245, 158, 11, 0.35);
  transform: rotateY(-6deg) rotateX(2deg);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s ease;
}

.cover-card:hover {
  transform: rotateY(0deg) rotateX(0deg) scale(1.02);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9), 0 0 60px rgba(245, 158, 11, 0.45);
}

.cover-card img {
  width: 100%;
  height: auto;
  display: block;
}

.cover-spine-effect {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 25px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.15) 0%, rgba(0, 0, 0, 0.35) 40%, rgba(255, 255, 255, 0.05) 100%);
  pointer-events: none;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.kicker-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-full);
  color: var(--gold-primary);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  width: fit-content;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
}

.hero-title .highlight {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.6;
}

.hero-stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.stat-box {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-mono);
  font-size: 1.85rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.stat-number.gold {
  color: var(--gold-primary);
}

.stat-label {
  font-size: 0.775rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.35rem;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 0.5rem;
}

/* ==========================================================================
   CONTROL BAR (SEARCH, CATEGORY PILLS, SERVING TOGGLE)
   ========================================================================== */
.controls-bar-container {
  max-width: var(--container-width, 1440px);
  margin: 2rem auto;
  padding: 0 1.5rem;
}

.controls-bar {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.search-and-scaler-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.search-box {
  position: relative;
  flex: 1;
  min-width: 260px;
}

.search-box input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.75rem;
  background: rgba(10, 13, 20, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: all 0.25s ease;
}

.search-box input:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.2);
}

.search-box svg {
  position: absolute;
  left: 0.95rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  width: 18px;
  height: 18px;
}

.scaler-widget {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(10, 13, 20, 0.6);
  padding: 0.35rem 0.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
}

.scaler-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 600;
  padding: 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.scaler-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
}

.scaler-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.scaler-btn.active {
  background: var(--gold-gradient);
  color: #000;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.category-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cat-pill {
  padding: 0.45rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  font-size: 0.825rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.cat-pill:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.cat-pill.active {
  background: var(--gold-gradient);
  color: #000;
  border-color: var(--gold-primary);
  font-weight: 700;
  box-shadow: 0 3px 12px rgba(245, 158, 11, 0.25);
}

/* ==========================================================================
   MASTERCLASS FEATURE SECTION ("THE CRISPY SCIENCE")
   ========================================================================== */
.masterclass-section {
  max-width: var(--container-width, 1440px);
  margin: 3rem auto 4rem;
  padding: 0 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-tag {
  color: #fbbf24 !important;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  font-weight: 800;
  color: #ffffff !important;
  margin: 0.4rem auto 0.75rem;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.section-desc {
  max-width: 680px;
  margin: 0.75rem auto 0;
  color: #94a3b8 !important;
  font-size: 1.025rem;
  line-height: 1.6;
}

.science-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  gap: 1.5rem;
}

@media (max-width: 1080px) {
  .science-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 640px) {
  .science-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.science-card {
  background: #121722 !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.science-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 158, 11, 0.5) !important;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(245, 158, 11, 0.2);
}

.card-icon-pill {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(245, 158, 11, 0.12) !important;
  border: 1px solid rgba(245, 158, 11, 0.3) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.science-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff !important;
  margin-bottom: 0.65rem;
  letter-spacing: -0.02em;
}

.science-card p {
  color: #94a3b8 !important;
  font-size: 0.925rem;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 1.25rem;
}

.science-card ul {
  list-style: none;
  margin-top: auto;
  padding: 1.15rem 0 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.science-card li {
  font-size: 0.85rem;
  color: #cbd5e1 !important;
  line-height: 1.55;
  display: block;
  position: relative;
  padding-left: 1.35rem;
}

.science-card li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: #fbbf24 !important;
  font-weight: 700;
  font-size: 0.95rem;
}

.science-card li strong {
  color: #ffffff !important;
  font-weight: 700;
  margin-right: 0.25rem;
}

/* ==========================================================================
   RECIPES CONTAINER & MAGAZINE STYLE RECIPE CARDS
   ========================================================================== */
.recipes-container {
  max-width: var(--container-width, 1440px);
  margin: 0 auto;
  padding: 0 1.5rem 5rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.recipe-section-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border-gold);
  margin-top: 2rem;
}

.recipe-section-title h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: #fff;
}

.recipe-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: border-color 0.3s ease;
  position: relative;
}

.recipe-card:hover {
  border-color: rgba(245, 158, 11, 0.4);
}

.recipe-header-grid {
  display: grid;
  grid-template-columns: minmax(320px, 380px) 1fr;
  gap: 2.25rem;
  padding: 2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
  border-bottom: 1px solid var(--border-subtle);
}

@media (max-width: 860px) {
  .recipe-header-grid {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }
}

.recipe-photo-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 1 / 1.15;
  background: #000;
}

.recipe-photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.recipe-card:hover .recipe-photo-wrapper img {
  transform: scale(1.04);
}

.status-tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 0.725rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.status-confirmed {
  background: rgba(16, 185, 129, 0.9);
  color: #fff;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
}

.crunch-badge-overlay {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(245, 158, 11, 0.5);
  color: var(--gold-primary);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.crunch-badge-overlay:hover {
  transform: scale(1.05);
  background: #000;
}

.photo-reel-overlay {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  background: rgba(10, 13, 20, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(244, 63, 94, 0.45);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 3;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
}

.photo-reel-overlay svg {
  color: #f43f5e;
  transition: transform 0.2s ease, color 0.2s ease;
}

.photo-reel-overlay:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: transparent;
  color: #ffffff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 18px rgba(220, 39, 67, 0.45);
}

.photo-reel-overlay:hover svg {
  color: #ffffff;
  transform: scale(1.15);
}

.recipe-meta-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.recipe-top-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.pill {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
}

.pill-diet-veg {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.3);
  color: #34d399;
}

.pill-diet-nonveg {
  background: rgba(239, 68, 68, 0.12);
  border-color: rgba(239, 68, 68, 0.3);
  color: #f87171;
}

.recipe-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
}

.recipe-subtitle {
  font-size: 1.05rem;
  color: var(--gold-primary);
  margin-top: 0.35rem;
  font-weight: 500;
  font-style: italic;
}

.recipe-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-top: 0.85rem;
  line-height: 1.6;
}

.recipe-metrics-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  background: rgba(10, 13, 20, 0.5);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  margin-top: 1.25rem;
}

@media (max-width: 600px) {
  .recipe-metrics-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

.metric-item {
  display: flex;
  flex-direction: column;
}

.metric-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.metric-value {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-top: 0.2rem;
}

/* RECIPE PRIMARY ACTION BUTTONS */
.recipe-action-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.15rem;
  flex-wrap: wrap;
}

.btn-watch-reel-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: linear-gradient(45deg, rgba(240, 148, 51, 0.12) 0%, rgba(220, 39, 67, 0.16) 50%, rgba(188, 24, 136, 0.12) 100%);
  border: 1px solid rgba(244, 63, 94, 0.35);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.825rem;
  font-weight: 700;
  padding: 0.5rem 1.15rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(220, 39, 67, 0.15);
}

.btn-watch-reel-cta svg {
  color: #f43f5e;
  transition: transform 0.2s ease, color 0.2s ease;
}

.btn-watch-reel-cta:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: transparent;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 39, 67, 0.4);
}

.btn-watch-reel-cta:hover svg {
  color: #ffffff;
  transform: scale(1.1);
}

.btn-watch-yt-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 0, 0, 0.35);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.825rem;
  font-weight: 700;
  padding: 0.5rem 1.15rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(255, 0, 0, 0.15);
}

.btn-watch-yt-cta svg {
  color: #ff4e4e;
  transition: transform 0.2s ease, color 0.2s ease;
}

.btn-watch-yt-cta:hover {
  background: #ff0000;
  border-color: transparent;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 0, 0, 0.45);
}

.btn-watch-yt-cta:hover svg {
  color: #ffffff;
  transform: scale(1.1);
}

.recipe-action-hint {
  font-size: 0.775rem;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* RECIPE BODY (INGREDIENTS & STEPS) */
.recipe-body-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2.5rem;
  padding: 2rem;
}

@media (max-width: 900px) {
  .recipe-body-grid {
    grid-template-columns: 1fr;
    padding: 1.5rem;
    gap: 2rem;
  }
}

.ingredients-panel {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.panel-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.panel-title .serving-indicator {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gold-primary);
  font-weight: 600;
}

.ingredients-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.ingredient-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.45rem 0.65rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  transition: background 0.2s ease;
  font-size: 0.9rem;
  cursor: pointer;
  user-select: none;
}

.ingredient-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.ingredient-checkbox {
  margin-top: 0.2rem;
  accent-color: var(--gold-primary);
  cursor: pointer;
}

.ingredient-text {
  color: #e2e8f0;
  flex: 1;
}

.ingredient-item.checked .ingredient-text {
  text-decoration: line-through;
  color: var(--text-muted);
}

/* METHOD STEPS */
.method-panel {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.method-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.step-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.step-number {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.35);
  color: var(--gold-primary);
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.15rem;
}

.step-content {
  font-size: 0.935rem;
  color: #cbd5e1;
  line-height: 1.6;
}

/* CALLOUT HIGHLIGHT BOXES (REEL SECRET, AIR FRYER, PAIRING) */
.recipe-callouts-strip {
  padding: 0 2rem 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

@media (max-width: 860px) {
  .recipe-callouts-strip {
    padding: 0 1.5rem 1.5rem;
  }
}

.callout-box {
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.875rem;
}

.callout-reel-secret {
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.callout-title-gold {
  color: var(--gold-primary);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.callout-airfryer {
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.3);
}

.callout-title-cyan {
  color: var(--cyan-accent);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.callout-pairing {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.callout-title-chili {
  color: var(--chili-accent);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.callout-box p {
  color: #cbd5e1;
  line-height: 1.55;
}

.callout-reel-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #fbbf24;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  margin-top: 0.75rem;
  padding: 0.35rem 0.75rem;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  width: fit-content;
}

.callout-reel-link:hover {
  background: var(--gold-gradient);
  color: #000;
  border-color: transparent;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

/* ==========================================================================
   BONUS DIPS & SAUCES SHOWCASE
   ========================================================================== */
.dips-section {
  max-width: var(--container-width, 1440px);
  margin: 4rem auto;
  padding: 0 1.5rem;
}

.dips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 1.5rem;
}

@media (max-width: 960px) {
  .dips-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.dip-card {
  background: #121722 !important;
  border: 1px solid rgba(245, 158, 11, 0.22) !important;
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  position: relative;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  height: 100%;
}

.dip-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 158, 11, 0.5) !important;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.5), 0 0 25px rgba(245, 158, 11, 0.15);
}

.dip-tag {
  font-family: var(--font-mono);
  font-size: 0.725rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  background: rgba(245, 158, 11, 0.14) !important;
  border: 1px solid rgba(245, 158, 11, 0.35) !important;
  color: #fbbf24 !important;
  width: fit-content;
  display: inline-block;
}

.dip-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff !important;
  margin: 0;
  letter-spacing: -0.015em;
  line-height: 1.25;
}

.dip-desc {
  color: #94a3b8 !important;
  font-size: 0.925rem;
  line-height: 1.6;
  flex-grow: 1;
  margin: 0;
}

.dip-ratios {
  color: #e2e8f0 !important;
  font-size: 0.875rem;
  line-height: 1.55;
  background: rgba(0, 0, 0, 0.45) !important;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  margin-top: auto;
}

.dip-ratios strong {
  color: #fbbf24 !important;
  font-weight: 700;
  margin-right: 0.3rem;
}

/* ==========================================================================
   CREATOR SPOTLIGHT & COMMUNITY SECTION
   ========================================================================== */
.creator-spotlight {
  max-width: var(--container-width, 1440px);
  margin: 3.5rem auto 2.5rem;
  padding: 0 1.5rem;
}

.creator-card {
  background: linear-gradient(135deg, rgba(24, 32, 47, 0.95), rgba(15, 20, 30, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.creator-avatar-wrap {
  flex-shrink: 0;
  position: relative;
}

.creator-avatar-ring {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  padding: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(220, 39, 67, 0.35);
}

.creator-avatar-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #0a0d14;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.creator-info {
  flex: 1;
  min-width: 260px;
}

.creator-kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f43f5e;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.creator-name {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 8px;
}

.creator-handle-gradient {
  background: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.creator-bio {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.creator-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 22px;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(220, 39, 67, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(220, 39, 67, 0.6);
}

.btn-youtube {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #ff0000;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 22px;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(255, 0, 0, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-youtube:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 0, 0, 0.6);
}

.creator-community-note {
  font-size: 0.8rem;
  color: #94a3b8;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
   CREATOR REEL SHOOTING TIPS SECTION
   ========================================================================== */
.creator-tips-section {
  max-width: var(--container-width, 1440px);
  margin: 4rem auto;
  padding: 0 1.5rem;
}

.tips-banner {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.12) 0%, rgba(239, 68, 68, 0.08) 100%), var(--bg-card);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 860px) {
  .tips-banner {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
}

.tips-content h2 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: #fff;
  line-height: 1.2;
}

.tips-content p {
  color: var(--text-secondary);
  margin-top: 1rem;
  font-size: 1rem;
}

.tips-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tip-check-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(10, 13, 20, 0.6);
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

.tip-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.tip-check-item strong {
  color: #fff;
  font-size: 0.95rem;
  display: block;
}

.tip-check-item span {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.45;
  display: block;
  margin-top: 0.2rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  border-top: 1px solid var(--border-subtle);
  background: rgba(10, 13, 20, 0.95);
  padding: 3.5rem 1.5rem 2.5rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.footer-inner {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
}

.footer-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: #fff;
}

.footer-note {
  line-height: 1.6;
}

.footer-badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gold-primary);
  background: rgba(245, 158, 11, 0.1);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

/* ==========================================================================
   AUDIO TOAST NOTIFICATION
   ========================================================================== */
.toast-msg {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--gold-primary);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(245, 158, 11, 0.3);
  color: #fff;
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius-md);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.toast-msg.show {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   MASTER TYPOGRAPHY ELEVATION & MULTI-DEVICE RESPONSIVE ENGINE
   ========================================================================== */

/* Universal Display Typography */
h1, h2, h3, h4, h5, h6,
.hero-title,
.section-title,
.recipe-title,
.panel-title,
.brand-title,
.locked-card-title {
  font-family: var(--font-display);
  letter-spacing: -0.025em;
  font-feature-settings: "cv02", "cv03", "cv04", "cv11";
}

.brand-title {
  letter-spacing: 0.03em;
}

body.recipes-vault-body.vault-locked {
  padding-bottom: 84px;
}

/* Tablet Device Breakpoint (641px to 1024px) */
@media (min-width: 641px) and (max-width: 1024px) {
  .hero-section {
    padding: 3rem 1.5rem 2.5rem;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .cover-card {
    max-width: 380px;
    margin: 0 auto;
  }

  .science-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .dips-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .recipe-metrics-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Mobile Devices (max-width: 640px) */
@media (max-width: 640px) {
  /* Navigation Bar */
  .top-nav {
    padding: 0.65rem 1rem;
  }

  .top-nav .nav-actions a.btn-secondary {
    display: none;
  }

  .brand-vol {
    display: none;
  }

  .brand-title {
    font-size: 0.95rem;
  }

  .brand-badge {
    font-size: 0.68rem;
    padding: 0.2rem 0.45rem;
  }

  /* Hero Section */
  .hero-section {
    padding: 2rem 1rem 1.5rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.85rem;
  }

  .cover-wrapper {
    max-width: 270px;
    margin: 0 auto;
    perspective: none;
  }

  .cover-card {
    transform: none !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(245, 158, 11, 0.25);
  }

  .hero-content {
    text-align: center;
    gap: 1rem;
  }

  .kicker-pill {
    margin: 0 auto;
    font-size: 0.725rem;
    padding: 0.3rem 0.85rem;
  }

  .hero-title {
    font-size: clamp(2rem, 8.5vw, 2.75rem);
    line-height: 1.08;
    text-align: center;
  }

  .hero-subtitle {
    font-size: 0.925rem;
    line-height: 1.55;
    text-align: center;
  }

  .hero-stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
    padding: 1rem 0;
  }

  .stat-box {
    align-items: center;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.25rem;
    font-size: 0.95rem;
  }

  /* Masterclass Section */
  .masterclass-section {
    margin: 2rem auto 2.5rem;
    padding: 0 1rem;
  }

  .section-header {
    margin-bottom: 1.75rem;
  }

  .section-title {
    font-size: 1.75rem;
    line-height: 1.15;
  }

  .section-desc {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .science-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .science-card {
    padding: 1.35rem 1.15rem;
  }

  /* Controls & Search */
  .controls-bar-container {
    padding: 0 1rem;
    margin: 1.5rem auto;
  }

  .controls-bar {
    padding: 1rem;
    gap: 1rem;
  }

  .search-and-scaler-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .search-box {
    min-width: 100%;
  }

  .scaler-widget {
    width: 100%;
    justify-content: space-between;
    padding: 0.25rem 0.35rem;
  }

  .scaler-label {
    font-size: 0.72rem;
    padding: 0 0.35rem;
  }

  .scaler-btn {
    flex: 1;
    text-align: center;
    padding: 0.4rem 0.4rem;
    font-size: 0.78rem;
  }

  .category-filter-pills {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
    margin: 0 -0.5rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    scrollbar-width: none;
  }

  .category-filter-pills::-webkit-scrollbar {
    display: none;
  }

  .cat-pill {
    flex-shrink: 0;
    white-space: nowrap;
    font-size: 0.78rem;
    padding: 0.4rem 0.85rem;
  }

  /* Recipe Cards */
  .recipes-container {
    padding: 0 1rem;
    gap: 2rem;
  }

  .recipe-card {
    border-radius: var(--radius-md);
  }

  .recipe-header-grid {
    padding: 1rem;
    gap: 1.15rem;
  }

  .recipe-photo-wrapper {
    aspect-ratio: 16/9;
    max-height: 220px;
    border-radius: var(--radius-sm);
  }

  .recipe-title {
    font-size: 1.4rem;
    line-height: 1.2;
  }

  .recipe-subtitle {
    font-size: 0.875rem;
  }

  .recipe-desc {
    font-size: 0.875rem;
    line-height: 1.5;
  }

  .recipe-top-pills {
    gap: 0.35rem;
  }

  .pill {
    font-size: 0.72rem;
    padding: 0.2rem 0.55rem;
  }

  .recipe-metrics-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
    padding: 0.75rem;
  }

  .metric-label {
    font-size: 0.68rem;
  }

  .metric-value {
    font-size: 0.875rem;
  }

  .recipe-body-grid {
    padding: 1rem;
    gap: 1.25rem;
  }

  .ingredients-panel,
  .method-panel {
    padding: 1rem;
  }

  .ingredient-item {
    padding: 0.65rem 0.5rem;
    min-height: 44px;
  }

  .ingredient-text {
    font-size: 0.875rem;
  }

  .step-item {
    gap: 0.75rem;
  }

  .step-content {
    font-size: 0.875rem;
    line-height: 1.55;
  }

  .recipe-callouts-strip {
    padding: 0 1rem 1rem;
    gap: 0.75rem;
  }

  .callout-box {
    padding: 1rem;
  }

  /* Locked Paywall Card */
  .locked-card-wrapper {
    padding: 2rem 1rem;
    min-height: auto;
  }

  .locked-card-box {
    padding: 1.5rem 1.15rem;
    border-radius: 16px;
    max-width: 100%;
  }

  .locked-card-title {
    font-size: 1.2rem;
    line-height: 1.3;
  }

  .locked-card-desc {
    font-size: 0.85rem;
    line-height: 1.45;
    margin-bottom: 14px;
    max-width: 100%;
  }

  .locked-card-price-tag .current-price {
    font-size: 1.65rem;
  }

  .btn-upi-checkout {
    width: 100%;
    justify-content: center;
    font-size: 0.88rem;
    padding: 12px 14px;
    white-space: normal;
    text-align: center;
  }

  /* Bonus Dips Section */
  .dips-section {
    padding: 2.5rem 1rem;
  }

  .dips-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .dip-card {
    padding: 1.25rem;
  }

  /* Mobile Sticky Bottom Paywall Bar */
  .mobile-paywall-bar {
    padding: 10px 14px max(12px, env(safe-area-inset-bottom, 12px));
    gap: 10px;
  }

  .mobile-paywall-deal {
    font-size: 0.72rem;
  }

  .mobile-paywall-price {
    font-size: 1.15rem;
  }

  .mobile-paywall-bar .btn-upi-checkout {
    width: auto;
    font-size: 0.85rem;
    padding: 9px 15px;
  }

  /* Audio Toast */
  .toast-msg {
    bottom: 5.25rem;
    right: 1rem;
    left: 1rem;
    justify-content: center;
    font-size: 0.8rem;
  }

  /* Creator Spotlight Mobile Alignment */
  .creator-spotlight {
    padding: 0 1rem;
    margin: 2rem auto;
  }

  .creator-card {
    padding: 1.5rem 1.15rem;
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 1.25rem;
  }

  .creator-avatar-wrap {
    margin: 0 auto;
  }

  .creator-avatar-ring {
    width: 80px;
    height: 80px;
  }

  .creator-avatar-inner svg {
    width: 36px;
    height: 36px;
  }

  .creator-info {
    min-width: 100%;
    text-align: center;
  }

  .creator-kicker {
    justify-content: center;
    font-size: 0.7rem;
  }

  .creator-name {
    font-size: 1.45rem;
  }

  .creator-bio {
    font-size: 0.875rem;
    line-height: 1.55;
    margin-bottom: 1.25rem;
    text-align: center;
  }

  .creator-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0.75rem;
  }

  .btn-instagram,
  .btn-youtube {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 16px;
    font-size: 0.88rem;
    white-space: nowrap;
    justify-content: center;
    text-align: center;
  }

  .creator-community-note {
    justify-content: center;
    text-align: center;
    width: 100%;
    font-size: 0.75rem;
    line-height: 1.4;
    margin-top: 0.25rem;
  }

  /* Recipe Action Row on Mobile */
  .recipe-action-row {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0.6rem;
    margin-top: 1rem;
  }

  .btn-watch-reel-cta,
  .btn-watch-yt-cta {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
    padding: 0.55rem 1rem;
    font-size: 0.82rem;
  }

  .recipe-action-hint {
    justify-content: center;
    text-align: center;
    font-size: 0.74rem;
  }

  /* Top Nav Solid Backdrop on Mobile */
  .top-nav {
    padding: 0.6rem 0.85rem;
    background: #0a0d14 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .nav-brand .brand-title {
    font-size: 0.82rem;
    letter-spacing: -0.01em;
  }

  .nav-brand .brand-badge {
    font-size: 0.65rem;
    padding: 2px 6px;
  }
}

/* ==========================================================================
   RESTORE DIGITAL LICENSE MODAL
   ========================================================================== */
.restore-license-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.restore-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(8px);
}

.restore-modal-card {
  position: relative;
  background: linear-gradient(180deg, #18202f 0%, #0f141e 100%);
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: 18px;
  padding: 2.25rem 2rem;
  max-width: 440px;
  width: 100%;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 30px rgba(245, 158, 11, 0.2);
  text-align: center;
  animation: modalFadeIn 0.25s ease-out;
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.restore-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: color 0.2s;
}

.restore-modal-close:hover {
  color: #fff;
}

.restore-modal-badge {
  display: inline-block;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #fbbf24;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 9999px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.restore-modal-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.restore-modal-card p {
  font-size: 0.875rem;
  color: #94a3b8;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.restore-input-row {
  display: flex;
  align-items: center;
  background: rgba(10, 13, 20, 0.9);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.restore-input-row:focus-within {
  border-color: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

.restore-input-row .prefix {
  padding: 0 14px;
  font-family: var(--font-mono);
  font-weight: 700;
  color: #fbbf24;
  background: rgba(255, 255, 255, 0.04);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.restore-input-row input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  padding: 13px 14px;
  font-size: 1rem;
  outline: none;
  font-family: var(--font-mono);
}

.btn-restore-submit {
  width: 100%;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #000;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 800;
  border-radius: 10px;
  padding: 14px;
  border: none;
  cursor: pointer;
  margin-top: 1rem;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-restore-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(245, 158, 11, 0.5);
}

.btn-restore-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.restore-status {
  margin-top: 1rem;
  font-size: 0.85rem;
  line-height: 1.4;
  min-height: 20px;
}
