/* ==========================================
   CHARCUTARIA FLIX — STYLES (ESTILO NETFLIX)
   CHEF LAURO ROSSI • ÁREA DE MEMBROS
   ========================================== */

:root {
  --bg-black: #141414;
  --bg-darker: #0d0d0d;
  --bg-card: #181818;
  --bg-card-hover: #222222;
  --netflix-red: #E50914;
  --netflix-red-hover: #F40612;
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --gold-dark: #8B6914;
  --gold-glow: rgba(201, 168, 76, 0.25);
  --safe-green: #25D366;
  --text-white: #FFFFFF;
  --text-cream: #F2E8D5;
  --text-muted: #AAAAAA;
  --text-dark: #666666;
  --border-color: rgba(255, 255, 255, 0.1);
  --border-gold: rgba(201, 168, 76, 0.3);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --font-main: 'Poppins', sans-serif;
  --header-height: 68px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-black);
  color: var(--text-white);
  font-family: var(--font-main);
  overflow-x: hidden;
  min-height: 100vh;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #141414;
}
::-webkit-scrollbar-thumb {
  background: #333333;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-dark);
}

/* ==========================================
   HEADER / TOP NAVBAR (NETFLIX STYLE)
   ========================================== */
.netflix-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4%;
  background: linear-gradient(180deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 60%, transparent 100%);
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.netflix-header.scrolled {
  background-color: #141414;
  box-shadow: 0 4px 20px rgba(0,0,0,0.85);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.header-left {
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
}

.logo-badge-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--netflix-red), var(--gold-dark));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  color: var(--text-white);
  border: 1px solid var(--gold);
  box-shadow: 0 0 15px rgba(229, 9, 20, 0.4);
}

.logo-text-group {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--text-white);
  line-height: 1.1;
}

.logo-title span {
  color: var(--gold-light);
  font-style: italic;
}

.logo-sub {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
}

.nav-link-item {
  color: #e5e5e5;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
  cursor: pointer;
}

.nav-link-item:hover, .nav-link-item.active {
  color: var(--gold-light);
  font-weight: 700;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.search-box {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input {
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 7px 14px 7px 36px;
  color: var(--text-white);
  font-size: 13px;
  outline: none;
  width: 210px;
  transition: all 0.3s ease;
}

.search-input:focus {
  border-color: var(--gold);
  width: 260px;
  box-shadow: 0 0 12px var(--gold-glow);
}

.search-icon {
  position: absolute;
  left: 12px;
  color: var(--text-muted);
  width: 16px;
  height: 16px;
  pointer-events: none;
}

.whatsapp-vip-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #ffffff;
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(37, 211, 102, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-vip-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.5);
}

.user-profile {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  position: relative;
}

.profile-avatar {
  width: 34px;
  height: 34px;
  border-radius: 4px;
  object-fit: cover;
  border: 1.5px solid var(--gold);
}

/* ==========================================
   FEATURED BILLBOARD (NETFLIX HERO SECTION)
   ========================================== */
.billboard-hero {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 540px;
  max-height: 760px;
  display: flex;
  align-items: center;
  padding: 0 4%;
  margin-top: 0;
  overflow: hidden;
}

.billboard-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.billboard-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: brightness(0.75) contrast(1.1);
}

.billboard-vignette {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(180deg, rgba(20,20,20,0.4) 0%, rgba(20,20,20,0.85) 75%, #141414 100%),
    linear-gradient(90deg, rgba(20,20,20,0.95) 0%, rgba(20,20,20,0.6) 45%, transparent 100%);
  z-index: 2;
}

.billboard-content {
  position: relative;
  z-index: 3;
  max-width: 620px;
  margin-top: 40px;
}

.billboard-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(229, 9, 20, 0.85);
  color: var(--text-white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 14px;
  box-shadow: 0 0 10px rgba(229, 9, 20, 0.4);
}

.billboard-title {
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-white);
  margin-bottom: 12px;
  text-shadow: 0 4px 12px rgba(0,0,0,0.8);
}

.billboard-title em {
  color: var(--gold-light);
  font-style: italic;
  display: block;
}

.billboard-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.meta-match {
  color: #46d369;
  font-weight: 700;
}

.meta-badge {
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 1px 6px;
  border-radius: 2px;
  font-size: 11px;
}

.meta-gold {
  color: var(--gold-light);
  font-weight: 600;
}

.billboard-synopsis {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-cream);
  margin-bottom: 24px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.9);
  max-width: 540px;
}

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

.btn-netflix {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-play {
  background-color: var(--text-white);
  color: #000000;
}
.btn-play:hover {
  background-color: rgba(255, 255, 255, 0.8);
  transform: scale(1.03);
}

.btn-info {
  background-color: rgba(109, 109, 110, 0.7);
  color: var(--text-white);
}
.btn-info:hover {
  background-color: rgba(109, 109, 110, 0.4);
  transform: scale(1.03);
}

.btn-gold-action {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #000000;
  box-shadow: 0 0 15px var(--gold-glow);
}
.btn-gold-action:hover {
  filter: brightness(1.15);
  transform: scale(1.03);
}

/* ==========================================
   NETFLIX ROWS & CAROUSELS
   ========================================== */
.main-content-container {
  position: relative;
  z-index: 10;
  padding-bottom: 80px;
}

.netflix-row {
  margin-bottom: 40px;
  padding: 0 4%;
}

.row-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 14px;
}

.row-title {
  font-size: 18px;
  font-weight: 700;
  color: #e5e5e5;
  display: flex;
  align-items: center;
  gap: 10px;
}

.row-title .row-icon {
  color: var(--gold);
}

.row-title .row-tag {
  font-size: 10px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 1px;
}

.row-view-all {
  font-size: 12px;
  color: var(--gold);
  text-decoration: none;
  cursor: pointer;
  font-weight: 600;
}
.row-view-all:hover {
  text-decoration: underline;
}

/* Horizontal Track Container */
.row-cards-track {
  display: flex;
  gap: 16px;
  align-items: stretch;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 12px 4px 20px 4px;
  scrollbar-width: none;
}

.row-cards-track::-webkit-scrollbar {
  display: none;
}

/* Subtle Scroll Hint Text Below Buttons */
.row-scroll-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  width: 100%;
}

.row-scroll-hint span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11.5px;
  color: var(--gold-light);
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 5px 16px;
  border-radius: 20px;
  font-weight: 500;
  letter-spacing: 0.3px;
  opacity: 0.85;
}

/* Netflix Product Card */
.netflix-card {
  flex-shrink: 0;
  width: 260px;
  display: flex;
  flex-direction: column;
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.netflix-card:hover {
  transform: scale(1.06) translateY(-6px);
  z-index: 20;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.8), 0 0 20px var(--gold-glow);
  border-color: var(--gold);
  background-color: var(--bg-card-hover);
}

.card-img-wrap {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  background: radial-gradient(circle at center, #1f1f1f 0%, #0a0a0a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.4s ease;
}

.netflix-card:hover .card-img-wrap img {
  transform: scale(1.08);
}

.card-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.netflix-card:hover .card-play-overlay {
  opacity: 1;
}

.card-play-btn {
  width: 44px;
  height: 44px;
  background: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  box-shadow: 0 0 15px rgba(255,255,255,0.6);
  padding-left: 3px;
}

.badge-liberado {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(37, 211, 102, 0.9);
  color: #000;
  font-size: 9px;
  font-weight: 800;
  padding: 3px 7px;
  border-radius: 3px;
  letter-spacing: 0.5px;
}

.card-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.card-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
  line-height: 1.3;
  min-height: 2.6em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-subtitle {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 12px;
  min-height: 1.4em;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.btn-card-access {
  width: 100%;
  padding: 10px 14px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #000000;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s ease;
  margin-top: auto;
}

.netflix-card:hover .btn-card-access {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  transform: translateY(-1px);
  box-shadow: 0 4px 12px var(--gold-glow);
}

/* ==========================================
   LOCKED CERTIFICATE SECTION (7 DAYS LOCK)
   ========================================== */
.certificate-locked-container {
  background: linear-gradient(135deg, #1f1a10 0%, #120e0a 60%, #1a1208 100%);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  margin-top: 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.8), 0 0 30px var(--gold-glow);
}

.certificate-locked-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(229, 9, 20, 0.15);
  border: 1px solid rgba(229, 9, 20, 0.5);
  color: #ff4d4d;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.certificate-locked-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.certificate-locked-desc {
  font-size: 13.5px;
  color: var(--text-cream);
  max-width: 580px;
  margin: 0 auto 20px auto;
  line-height: 1.6;
}

.certificate-preview-box {
  position: relative;
  max-width: 480px;
  margin: 0 auto 24px auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-gold);
}

.certificate-preview-box img {
  width: 100%;
  height: auto;
  display: block;
  filter: blur(3px) brightness(0.6);
}

.certificate-lock-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
}

.lock-icon-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.2);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.lock-timer-text {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-light);
}

.btn-certificate-locked {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  cursor: not-allowed;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ==========================================
   NETFLIX MODAL & DETAIL DRAWER
   ========================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.netflix-modal-box {
  width: 100%;
  max-width: 920px;
  max-height: 92vh;
  background-color: #181818;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-gold);
  box-shadow: 0 25px 60px rgba(0,0,0,0.95), 0 0 30px var(--gold-glow);
  overflow-y: auto;
  position: relative;
  transform: translateY(30px);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .netflix-modal-box {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.modal-close-btn:hover {
  background: var(--netflix-red);
  border-color: var(--netflix-red);
}

/* Modal Hero Header */
.modal-hero-header {
  position: relative;
  height: 300px;
  width: 100%;
  overflow: hidden;
}

.modal-hero-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-hero-vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, #181818 100%);
}

.modal-hero-details {
  position: absolute;
  bottom: 24px;
  left: 32px;
  right: 32px;
  z-index: 10;
}

.modal-hero-title {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.modal-hero-subtitle {
  font-size: 13px;
  color: var(--gold-light);
  margin-bottom: 16px;
}

/* Modal Navigation Tabs */
.modal-tabs-nav {
  display: flex;
  gap: 12px;
  padding: 0 32px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 20px;
}

.modal-tab-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 16px;
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
}

.modal-tab-btn.active {
  color: var(--gold-light);
}

.modal-tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  border-radius: 3px 3px 0 0;
}

.modal-tab-content {
  padding: 0 32px 32px;
}

/* Lesson Items List inside Modal */
.episodes-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.episode-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.episode-item:hover {
  background: rgba(201, 168, 76, 0.08);
  border-color: var(--gold);
}

.episode-num {
  font-size: 18px;
  font-weight: 800;
  color: var(--gold);
  width: 30px;
}

.episode-info {
  flex: 1;
}

.episode-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.episode-desc {
  font-size: 12px;
  color: var(--text-muted);
}

.episode-meta {
  font-size: 12px;
  color: var(--gold-light);
  font-weight: 600;
}

/* ==========================================
   VIDEO PLAYER MODAL
   ========================================== */
.video-player-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
}

.video-player-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================
   WHATSAPP COMMUNITY MODAL / BANNER
   ========================================== */
/* ==========================================
   WEEKLY NEW RECIPES ANNOUNCEMENT BANNER
   ========================================== */
.weekly-recipes-banner-card {
  background: linear-gradient(135deg, #1c180e 0%, #0d0c08 60%, #17130b 100%);
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 40px 4%;
  box-shadow: 0 10px 35px rgba(201, 168, 76, 0.15), 0 0 20px var(--gold-glow);
}

.weekly-recipes-banner-card .banner-tag {
  display: inline-block;
  background: rgba(201, 168, 76, 0.2);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.weekly-recipes-banner-card h3 {
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 8px;
}

.weekly-recipes-banner-card p {
  font-size: 13.5px;
  color: var(--text-cream);
  max-width: 580px;
  line-height: 1.6;
}

.whatsapp-banner-card {
  background: linear-gradient(135deg, #0d2818 0%, #05190e 100%);
  border: 1px solid #25D366;
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 40px 4%;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.15);
}

.wa-banner-content h3 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 8px;
}

.wa-banner-content p {
  font-size: 13px;
  color: #a3e6be;
  max-width: 540px;
  line-height: 1.5;
}

/* ==========================================
   RESPONSIVE DESIGN (100% MOBILE & TABLET OPTIMIZED)
   ========================================== */

/* Utility for responsive table scrolling inside popups */
.modal-tab-content table, 
.netflix-modal-box table {
  display: block;
  width: 100% !important;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 16px;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .billboard-hero { 
    height: auto; 
    min-height: 480px;
    padding-top: 85px; 
    padding-bottom: 40px; 
  }
  .billboard-content { margin-top: 20px; }
  .billboard-title { font-size: 34px; }
  .search-input { width: 140px; }
  .search-input:focus { width: 180px; }
  .weekly-recipes-banner-card,
  .whatsapp-banner-card { 
    flex-direction: column; 
    text-align: center; 
    padding: 24px 20px;
    gap: 16px;
  }
  .weekly-recipes-banner-card p,
  .whatsapp-banner-card p {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 60px;
  }

  .netflix-header { 
    padding: 0 14px; 
  }

  .header-left { gap: 12px; }
  .header-right { gap: 10px; }

  .logo-badge-icon {
    width: 32px;
    height: 32px;
    font-size: 15px;
  }

  .logo-title {
    font-size: 14px;
  }

  .logo-sub {
    font-size: 8px;
    letter-spacing: 1.5px;
  }

  .search-input {
    width: 110px;
    padding: 5px 10px 5px 30px;
    font-size: 12px;
  }

  .search-input:focus {
    width: 140px;
  }

  .whatsapp-vip-btn {
    padding: 6px 10px;
    font-size: 11px;
  }

  .whatsapp-vip-btn span {
    display: inline-block;
  }

  /* Billboard Hero Adjustments */
  .billboard-hero {
    min-height: 420px;
    padding: 80px 16px 30px;
  }

  .billboard-title {
    font-size: 26px;
  }

  .billboard-synopsis {
    font-size: 13px;
    margin-bottom: 18px;
  }

  .billboard-actions {
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }

  .billboard-actions .btn-netflix {
    width: 100%;
    justify-content: center;
    padding: 10px 16px;
    font-size: 12.5px;
  }

  /* Netflix Rows */
  .netflix-row {
    margin-bottom: 28px;
    padding: 0 16px;
  }

  .row-title {
    font-size: 15px;
  }

  .row-cards-track {
    gap: 12px;
    padding: 8px 2px 16px 2px;
    -webkit-overflow-scrolling: touch;
  }

  .netflix-card {
    width: 210px;
  }

  .card-img-wrap {
    height: 260px;
  }

  .card-body {
    padding: 10px 12px 12px;
  }

  .card-title {
    font-size: 13px;
  }

  .btn-card-access {
    padding: 8px 10px;
    font-size: 11px;
  }

  /* Certificate Locked Section */
  .certificate-locked-container {
    padding: 24px 16px;
    margin-top: 24px;
    border-radius: var(--radius-md);
  }

  .certificate-locked-title {
    font-size: 20px;
  }

  .certificate-locked-desc {
    font-size: 12.5px;
  }

  .btn-certificate-locked {
    padding: 10px 18px;
    font-size: 11.5px;
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  /* Modal & Level 1/2 Pop-ups Mobile Support */
  .modal-overlay {
    padding: 8px;
    align-items: flex-end;
  }

  .netflix-modal-box {
    max-height: 94vh;
    border-radius: 16px 16px 0 0;
    margin: 0;
    width: 100%;
  }

  .modal-close-btn {
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    font-size: 16px;
    background: rgba(0,0,0,0.85);
  }

  .modal-hero-header {
    height: 180px;
  }

  .modal-hero-details {
    bottom: 14px;
    left: 16px;
    right: 16px;
  }

  .modal-hero-title {
    font-size: 20px;
    margin-bottom: 4px;
  }

  .modal-hero-subtitle {
    font-size: 11.5px;
    margin-bottom: 8px;
  }

  /* Horizontal Scrollable Tabs in Modals */
  .modal-tabs-nav {
    padding: 0 12px 6px 12px;
    gap: 6px;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .modal-tabs-nav::-webkit-scrollbar {
    display: none;
  }

  .modal-tab-btn {
    font-size: 12px;
    padding: 8px 12px;
    flex-shrink: 0;
    white-space: nowrap;
  }

  .modal-tab-content {
    padding: 0 14px 24px;
  }

  /* General Grid Overrides inside Modals for Mobile */
  .modal-tab-content div[style*="grid-template-columns"],
  .netflix-modal-box div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }

  /* Level 2 Pop-Up Content Padding */
  .netflix-modal-box div[style*="padding: 28px"] {
    padding: 16px 14px !important;
  }

  .netflix-modal-box h2[style*="font-size: 24px"] {
    font-size: 19px !important;
  }

  .netflix-modal-box div[style*="padding: 24px"],
  .netflix-modal-box div[style*="padding: 20px"] {
    padding: 14px !important;
  }
}

@media (max-width: 480px) {
  .logo-sub { display: none; }

  .netflix-card {
    width: 190px;
  }

  .card-img-wrap {
    height: 230px;
  }

  .search-input {
    width: 90px;
  }

  .search-input:focus {
    width: 120px;
  }

  .billboard-title {
    font-size: 22px;
  }

  .modal-hero-header {
    height: 160px;
  }

  .modal-hero-title {
    font-size: 18px;
  }

  /* Maps Gallery 2-Column Responsive Grid on Phone */
  .maps-gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
}
