/* ==========================================================================
   The Bihari Bachelor - The Bachelor's Survival Cookbook Design System
   Exact visual styling matching 99desi.in
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600;1,700&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #16120D;
  --panel: #1E1810;
  --panel2: #241C12;
  --cream: #F3E9D8;
  --muted: #B7A98C;
  --gold: #D9B25A;
  --gold-light: #E3BE6A;
  --gold-dark: #C7962E;
  --maroon: #8A2B24;
  --line: rgba(199, 150, 46, 0.22);
  --line-strong: rgba(199, 150, 46, 0.4);
  --green: #6FBF63;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --shadow-gold: 0 8px 24px rgba(199, 150, 46, 0.25);
  --shadow-gold-hover: 0 12px 32px rgba(199, 150, 46, 0.38);
  --shadow-deep: 0 26px 55px rgba(0, 0, 0, 0.65);
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg);
}

body {
  background-color: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 861px) {
  .wrap {
    padding: 0 40px;
  }
}

@media (min-width: 1400px) {
  .wrap {
    max-width: 1320px;
  }
}

/* Typography Utility */
.font-heading {
  font-family: var(--font-heading);
}

/* Announcement Bar */
.announcement-bar {
  background: var(--maroon);
  color: #F6E7C8;
  text-align: center;
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 16px;
  letter-spacing: 0.2px;
  position: relative;
  z-index: 101;
}

.announcement-bar a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(22, 18, 13, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 700;
  color: var(--cream);
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 1;
}

.brand-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.brand-logo span {
  display: inline-block;
  white-space: nowrap;
  font-size: 21px;
  letter-spacing: -0.2px;
}

.nav-menu {
  display: none;
  align-items: center;
  gap: clamp(14px, 1.8vw, 28px);
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--cream);
  opacity: 0.88;
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
  display: inline-block;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.nav-link:hover, .nav-link.active {
  opacity: 1;
  color: var(--gold);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold);
  transition: width 0.2s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.btn-header-cta {
  display: none;
  padding: 11px 22px;
  font-size: 14.5px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
  color: #1a1206;
  box-shadow: var(--shadow-gold);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-header-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-hover);
  filter: brightness(1.05);
}

.hamburger-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.hamburger-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold);
}

.hamburger-btn svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
}

@media (min-width: 1060px) {
  .nav-menu {
    display: flex;
  }
  .btn-header-cta {
    display: inline-block;
  }
  .hamburger-btn {
    display: none;
  }
}

/* Mobile Slide Drawer */
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 380px;
  height: 100%;
  background: var(--panel);
  border-left: 1px solid var(--line);
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  padding: 24px;
  overflow-y: auto;
}

.mobile-drawer.open {
  transform: translateX(0);
}

.drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.drawer-close-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--cream);
  cursor: pointer;
}

.drawer-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.drawer-link {
  font-size: 18px;
  font-weight: 600;
  color: var(--cream);
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.drawer-link:hover {
  color: var(--gold);
}

.drawer-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Primary Buttons */
.btn-primary {
  display: inline-block;
  background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
  color: #1a1206;
  font-weight: 700;
  padding: 16px 34px;
  border-radius: 10px;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-hover);
  filter: brightness(1.05);
}

.btn-primary:active {
  transform: translateY(0);
}

/* Hero Section */
.hero {
  padding: 56px 0 64px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -160px;
  right: -140px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 150, 46, 0.18), rgba(199, 150, 46, 0) 65%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 600px;
}

.eyebrow {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 16px;
  display: inline-block;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.06;
  margin-bottom: 20px;
  color: var(--cream);
}

.hero-title em {
  color: var(--gold);
  font-style: normal;
}

.hero-subtitle {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-note {
  color: var(--muted);
  font-size: 14.5px;
  font-weight: 500;
}

.hero-highlights {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
  padding-top: 8px;
}

.hero-highlights span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-highlights b {
  color: var(--cream);
  font-weight: 700;
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-mockup-img {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 4/5;
  object-fit: contain;
  filter: var(--shadow-deep);
  border-radius: 12px;
  transition: transform 0.4s ease;
}

.hero-mockup-img:hover {
  transform: translateY(-4px) scale(1.01);
}

@media (min-width: 861px) {
  .hero {
    padding: 88px 0 80px;
  }
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
  }
  .hero-subtitle {
    font-size: 19px;
  }
  .hero-mockup-img {
    max-width: 480px;
  }
}

@media (min-width: 1400px) {
  .hero-title {
    font-size: 68px;
  }
  .hero-mockup-img {
    max-width: 540px;
  }
}

/* Trust Stats Bar */
.trust-bar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--panel);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 28px 20px;
  text-align: center;
}

.trust-item b {
  display: block;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 4px;
}

.trust-item span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

@media (min-width: 861px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
    padding: 32px 40px;
  }
  .trust-item b {
    font-size: 30px;
  }
}

/* Section Shared Styles */
.section-pad {
  padding: 64px 0;
}

@media (min-width: 861px) {
  .section-pad {
    padding: 88px 0;
  }
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4.5vw, 38px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  color: var(--cream);
}

.section-subtitle {
  text-align: center;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 44px;
  font-size: 16px;
  line-height: 1.6;
}

/* Cards Grid ("Everything you get") */
.feature-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.feature-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.feature-icon {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  height: 36px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--cream);
}

.feature-card p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0;
}

@media (min-width: 640px) {
  .feature-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .feature-cards-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Gallery Section ("Meals you'll make in minutes") */
.meals-gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.meal-tile {
  aspect-ratio: 4/3;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  background-color: #0e0b07;
}

.meal-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.meal-tile:hover img {
  transform: scale(1.05);
}

.meal-tile span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px 18px 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--cream);
  background: linear-gradient(to top, rgba(14, 11, 7, 0.95) 0%, rgba(14, 11, 7, 0.6) 60%, transparent 100%);
}

@media (min-width: 768px) {
  .meals-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Peek Inside The Book - In-Depth A4 Showcase */
.section-peek {
  background: var(--panel2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.peek-a4-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin: 36px 0 48px;
}

@media (min-width: 600px) {
  .peek-a4-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .peek-a4-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
  }
}

.peek-a4-card {
  display: flex;
  flex-direction: column;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.peek-a4-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6);
}

.peek-a4-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1.414; /* Exact A4 proportions: never cut or cropped */
  background-color: #120e0a;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(199, 150, 46, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}

.peek-a4-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Full A4 page display without cutting or cropping */
  display: block;
  transition: transform 0.3s ease;
}

.peek-a4-card:hover .peek-a4-img-wrap img {
  transform: scale(1.02);
}

.peek-zoom-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(22, 18, 13, 0.88);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  color: var(--gold);
  font-size: 11.5px;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
  pointer-events: none;
}

.peek-zoom-badge svg {
  width: 13px;
  height: 13px;
}

.peek-a4-info {
  margin-top: 14px;
  text-align: center;
}

.peek-tag {
  font-size: 11px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

.peek-a4-title {
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--cream);
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.peek-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 32px 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  margin-top: 12px;
}

@media (min-width: 768px) {
  .peek-features-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 32px 36px;
    gap: 24px 40px;
  }
}

/* Lightbox Modal for A4 Preview */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 400;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.lightbox-overlay.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-dialog {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-dialog img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
}

.lightbox-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 12px;
}

.lightbox-title {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--cream);
}

.lightbox-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.lightbox-close-btn:hover {
  background: rgba(255, 255, 255, 0.25);
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.checklist-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 16px;
  line-height: 1.5;
  color: var(--cream);
}

.check-icon {
  color: var(--green);
  font-weight: 800;
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

@media (min-width: 861px) {
  .split-grid {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }
}

/* Why You'll Love It */
.love-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px 40px;
  max-width: 920px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .love-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px 48px;
  }
}

/* Lifestyle Section ("Made for people living alone") */
.section-lifestyle {
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.lifestyle-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: #0e0b07;
}

.lifestyle-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lifestyle-content .section-title {
  text-align: left;
  margin-bottom: 16px;
}

.lifestyle-content p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 28px;
}

/* FAQ Section */
.faq-container {
  max-width: 840px;
  margin: 0 auto;
}

.faq-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 0 24px;
  margin-bottom: 14px;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.faq-item:hover {
  border-color: var(--line-strong);
}

.faq-item[open] {
  background: rgba(30, 24, 16, 0.9);
  border-color: var(--gold);
}

.faq-summary {
  cursor: pointer;
  font-weight: 600;
  padding: 20px 0;
  list-style: none;
  position: relative;
  font-size: 16.5px;
  color: var(--cream);
  user-select: none;
  padding-right: 32px;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-summary::after {
  content: '\2013';
}

.faq-content {
  color: var(--muted);
  padding: 0 0 20px;
  font-size: 15px;
  line-height: 1.6;
}

/* Final CTA Section */
.section-finalcta {
  text-align: center;
  background: linear-gradient(180deg, var(--panel), var(--bg));
  border-top: 1px solid var(--line);
  padding: 72px 0 88px;
}

.finalcta-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5.5vw, 48px);
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--cream);
}

.finalcta-subtitle {
  color: var(--muted);
  margin-bottom: 32px;
  font-size: 18px;
}

.guarantee-text {
  color: var(--muted);
  font-size: 13.5px;
  margin-top: 24px;
  letter-spacing: 0.2px;
}

/* Footer - Clean Multi-Column Layout */
.site-footer {
  background: #100c08;
  border-top: 1px solid var(--line);
  padding: 68px 0 36px;
  color: var(--muted);
  font-size: 14.5px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(199, 150, 46, 0.14);
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 1.3fr 1fr;
    gap: 36px;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.4fr 0.9fr 1.1fr 1.1fr;
    gap: 40px;
  }
}

.footer-col-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.footer-logo-img {
  height: 105px; /* Big, high-impact prominent logo */
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.6));
}

.footer-brand-heading {
  font-family: var(--font-heading);
  font-size: 26px;
  color: var(--cream);
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.3px;
}

.footer-tagline {
  color: var(--muted);
  font-size: 14.5px;
  margin-bottom: 14px;
}

.footer-email {
  color: var(--gold);
  font-weight: 600;
  font-size: 14.5px;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-email:hover {
  color: var(--gold-light);
  transform: translateX(2px);
}

.footer-col-title {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-col-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 0;
  margin: 0;
}

.footer-col-link {
  color: var(--cream);
  opacity: 0.82;
  font-size: 14px;
  transition: opacity 0.2s ease, color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.footer-col-link:hover {
  opacity: 1;
  color: var(--gold);
  transform: translateX(3px);
}

.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* Mobile Sticky Bottom CTA - Strictly Hidden on Desktop */
.mobile-sticky-bar {
  display: none !important;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(22, 18, 13, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  padding: 12px 16px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.mobile-sticky-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.mobile-price-info {
  display: flex;
  flex-direction: column;
}

.mobile-price-title {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobile-price-amount {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
}

.mobile-sticky-btn {
  flex: 1;
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .mobile-sticky-bar {
    display: block !important;
  }
  .mobile-sticky-bar.visible {
    transform: translateY(0);
  }
  body {
    padding-bottom: 74px;
  }
}

/* Checkout Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-dialog {
  background: var(--panel);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  padding: 32px 28px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  transform: scale(0.95);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.open .modal-dialog {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.16);
}

.modal-header {
  text-align: center;
  margin-bottom: 24px;
}

.modal-header h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--cream);
  margin-bottom: 6px;
}

.modal-header p {
  color: var(--muted);
  font-size: 14px;
}

.modal-summary-box {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.summary-item-name {
  font-weight: 600;
  color: var(--cream);
  font-size: 15px;
}

.summary-item-desc {
  font-size: 12.5px;
  color: var(--muted);
}

.summary-price {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--cream);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(199, 150, 46, 0.2);
}

.form-control::placeholder {
  color: rgba(183, 169, 140, 0.5);
}

/* Secondary Pages (About, FAQ, Contact, Policies) */
.page-container {
  padding: 60px 0 80px;
  max-width: 860px;
  margin: 0 auto;
}

.page-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 44px);
  margin-bottom: 24px;
  color: var(--cream);
}

.page-content {
  color: var(--cream);
  font-size: 16px;
  line-height: 1.8;
}

.page-content p {
  margin-bottom: 20px;
  color: rgba(243, 233, 216, 0.9);
}

.page-content h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  margin: 36px 0 16px;
  color: var(--gold);
}

.page-content ul, .page-content ol {
  margin: 0 0 24px 24px;
}

.page-content li {
  margin-bottom: 8px;
}
