/* ==========================================================================
   JOKER OF LAGOS — BRAND STYLING & DESIGN SYSTEM
   Theme: Urban Editorial Dark / Lagos Gold & Crimson Accent
   Fully responsive across Mobile (320px+), Tablet, and Desktop (1440px+)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,700&family=Syne:wght@600;700;800&family=Bebas+Neue&display=swap');

:root {
  --bg-dark: #090a0f;
  --bg-surface: #10121a;
  --bg-card: rgba(19, 22, 32, 0.75);
  --bg-card-hover: rgba(28, 32, 48, 0.85);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-active: rgba(245, 158, 11, 0.4);
  
  --color-gold: #f59e0b;
  --color-gold-light: #fbbf24;
  --color-gold-glow: rgba(245, 158, 11, 0.25);
  --color-crimson: #ef4444;
  --color-crimson-dark: #b91c1c;
  --color-crimson-glow: rgba(239, 68, 68, 0.25);

  --text-white: #ffffff;
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  --font-display: 'Syne', sans-serif;
  --font-impact: 'Bebas Neue', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  --container-width: 1240px;
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  --shadow-card: 0 12px 36px -10px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 25px var(--color-gold-glow);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body {
  position: relative;
  min-height: 100vh;
  line-height: 1.6;
  background: 
    radial-gradient(circle at 15% 15%, rgba(245, 158, 11, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 85% 65%, rgba(239, 68, 68, 0.04) 0%, transparent 45%),
    var(--bg-dark);
  overflow-x: hidden;
}

/* Subtle Texture Overlay */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 0);
  background-size: 32px 32px;
  z-index: 999;
  opacity: 0.7;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  outline: none;
}

/* Utilities */
.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.badge-gold {
  background: rgba(245, 158, 11, 0.12);
  color: var(--color-gold-light);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.badge-crimson {
  background: rgba(239, 68, 68, 0.12);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.badge-dark {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
}

/* ==========================================================================
   TOP BANNER / ANNOUNCEMENT
   ========================================================================== */
.top-ticker {
  background: linear-gradient(90deg, #181308, #2a160b, #181308);
  border-bottom: 1px solid rgba(245, 158, 11, 0.2);
  font-size: 0.8rem;
  padding: 8px 16px;
  text-align: center;
  color: var(--color-gold-light);
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 101;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.top-ticker-inner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  max-width: 100%;
}

.top-ticker span.highlight {
  background: var(--color-crimson);
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 800;
  flex-shrink: 0;
}

/* ==========================================================================
   HEADER & NAVBAR — ONE LINE & WELL ALIGNED
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(9, 10, 15, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition-smooth);
}

.site-header.scrolled {
  background: rgba(9, 10, 15, 0.98);
  border-bottom: 1px solid rgba(245, 158, 11, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.site-header .container.navbar {
  width: 94%;
  max-width: 1320px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 16px;
  flex-wrap: nowrap;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
  white-space: nowrap;
}

.brand-logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-crimson));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-impact);
  font-size: 1.4rem;
  color: #fff;
  box-shadow: var(--shadow-glow);
  flex-shrink: 0;
}

.brand-logo-text {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: var(--text-white);
  line-height: 1.1;
  white-space: nowrap;
}

.brand-tagline {
  font-size: 0.68rem;
  color: var(--color-gold);
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Desktop Nav Links: 100% on one line, centered, no wrap */
.desktop-nav {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 26px);
  list-style: none;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  flex-wrap: nowrap;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  position: relative;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  padding: 8px 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-white);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width var(--transition-fast);
  border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Nav Actions (Currency, Cart, Instagram) */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  white-space: nowrap;
}

/* Currency Switcher */
.currency-switch {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  display: flex;
  padding: 3px;
  flex-shrink: 0;
}

.currency-btn {
  padding: 4px 9px;
  border-radius: var(--radius-full);
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: all var(--transition-fast);
  line-height: 1;
  white-space: nowrap;
}

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

/* Cart Trigger */
.cart-trigger-btn {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.cart-trigger-btn:hover {
  background: rgba(245, 158, 11, 0.15);
  border-color: var(--color-gold);
  color: var(--color-gold-light);
}

.cart-counter {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--color-crimson);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-dark);
}

.nav-ig-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.84rem;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-smooth);
  flex-shrink: 0;
  white-space: nowrap;
}

.nav-ig-btn:hover {
  background: rgba(245, 158, 11, 0.15);
  border-color: var(--color-gold);
  color: var(--color-gold-light);
}

.mobile-menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 1.35rem;
  flex-shrink: 0;
}

/* ==========================================================================
   MOBILE NAVIGATION DRAWER
   ========================================================================== */
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
}

.mobile-nav-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 320px;
  height: 100%;
  background: #0d0f17;
  border-left: 1px solid var(--border-subtle);
  z-index: 1060;
  display: flex;
  flex-direction: column;
  box-shadow: -15px 0 40px rgba(0, 0, 0, 0.85);
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform var(--transition-smooth), visibility var(--transition-smooth);
}

.mobile-nav-drawer.active {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.mobile-drawer-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-drawer-body {
  padding: 24px;
  flex-grow: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  background: transparent;
}

.mobile-nav-link i:first-child {
  font-size: 1.15rem;
  color: var(--color-gold);
  width: 22px;
  text-align: center;
}

.mobile-nav-link .arrow-icon {
  margin-left: auto;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: rgba(245, 158, 11, 0.1);
  color: var(--color-gold-light);
}

.mobile-drawer-footer {
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
  margin-top: 20px;
}

.mobile-currency-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn-primary {
  background: linear-gradient(135deg, var(--color-gold), #d97706);
  color: #0b0c10;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 11px 22px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
  transition: all var(--transition-smooth);
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.45);
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 11px 20px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-smooth);
  white-space: nowrap;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  transform: translateY(-2px);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 50px 0 90px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-subhead-pill {
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1px;
  color: var(--text-white);
  margin-bottom: 22px;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, #ffffff 30%, var(--color-gold-light) 75%, var(--color-crimson) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.12rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 34px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border-subtle);
  width: fit-content;
}

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

.stat-value {
  font-family: var(--font-impact);
  font-size: 2.2rem;
  color: var(--color-gold-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 4px;
}

/* Hero Media Showcase */
.hero-media-wrap {
  position: relative;
}

.hero-main-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
  transform: perspective(1000px) rotateY(-3deg) rotateX(1deg);
  transition: transform var(--transition-smooth);
}

.hero-main-card:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.hero-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  filter: contrast(105%) brightness(95%);
}

.hero-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 26px 22px;
  background: linear-gradient(to top, rgba(9, 10, 15, 0.96) 15%, rgba(9, 10, 15, 0.4) 60%, transparent 100%);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.hero-card-tag {
  font-family: var(--font-impact);
  font-size: 1.25rem;
  letter-spacing: 1px;
  color: #fff;
}

.hero-card-sub {
  font-size: 0.78rem;
  color: var(--color-gold-light);
}

.floating-pill-card {
  position: absolute;
  top: 24px;
  left: -20px;
  background: rgba(16, 18, 26, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  z-index: 3;
}

.floating-pill-card .icon-bubble {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.2);
  color: var(--color-crimson);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.floating-pill-card .pill-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
}

.floating-pill-card .pill-sub {
  font-size: 0.7rem;
  color: var(--text-secondary);
}

.floating-author-badge {
  position: absolute;
  bottom: 28px;
  right: -16px;
  background: rgba(16, 18, 26, 0.94);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
  z-index: 3;
}

.author-mini-thumb {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-gold);
}

/* ==========================================================================
   THE STORY & THE DRIVE (ABOUT)
   ========================================================================== */
.section {
  padding: 90px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text-white);
  margin: 12px 0 14px;
}

.section-subtitle {
  font-size: 1.02rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Story Grid */
.story-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 50px;
  align-items: center;
}

.story-photos-collage {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(12, 38px);
  position: relative;
}

.story-photo-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-smooth);
}

.story-photo-item:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 158, 11, 0.4);
}

.story-photo-1 {
  grid-column: 1 / 9;
  grid-row: 1 / 10;
  z-index: 1;
}

.story-photo-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-photo-2 {
  grid-column: 6 / 13;
  grid-row: 6 / 13;
  z-index: 2;
  border: 2px solid rgba(245, 158, 11, 0.4);
}

.story-photo-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-badge-floating {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
}

.story-narrative-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.narrative-quote-box {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(239, 68, 68, 0.05));
  border-left: 4px solid var(--color-gold);
  padding: 18px 22px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  font-size: 1.1rem;
  color: #fff;
  line-height: 1.6;
}

.story-pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 8px;
}

.pillar-card {
  background: var(--bg-card);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: all var(--transition-fast);
}

.pillar-card:hover {
  border-color: rgba(245, 158, 11, 0.3);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
}

.pillar-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(245, 158, 11, 0.12);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.pillar-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.pillar-desc {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ==========================================================================
   MERCHANDISE STORE SECTION
   ========================================================================== */
.merch-section {
  background: linear-gradient(180deg, var(--bg-dark), #0d0f16, var(--bg-dark));
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.merch-filter-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.84rem;
  font-weight: 600;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

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

.filter-btn.active {
  background: var(--color-gold);
  color: #0b0c10;
  border-color: var(--color-gold);
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
}

.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 158, 11, 0.35);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.7);
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
}

.product-img-wrap {
  position: relative;
  background: #141620;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.05);
}

.product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category {
  font-size: 0.72rem;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 6px;
}

.product-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 14px;
}

.current-price {
  font-family: var(--font-impact);
  font-size: 1.45rem;
  color: var(--text-white);
  letter-spacing: 0.5px;
}

.original-price {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

/* Size selector */
.size-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.size-pill {
  min-width: 32px;
  height: 32px;
  padding: 0 6px;
  border-radius: 8px;
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-secondary);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.size-pill:hover,
.size-pill.selected {
  border-color: var(--color-gold);
  background: rgba(245, 158, 11, 0.15);
  color: #fff;
}

.btn-add-cart {
  width: 100%;
  padding: 11px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-subtle);
  color: #fff;
  font-weight: 700;
  font-size: 0.86rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--transition-fast);
  margin-top: auto;
}

.btn-add-cart:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: #000;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.35);
}

/* ==========================================================================
   BOOKS & DIGITAL PRODUCTS
   ========================================================================== */
.books-section {
  position: relative;
  overflow: hidden;
}

.books-author-spotlight {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 50px;
  position: relative;
}

.books-author-spotlight::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.author-media-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
}

.author-media-frame img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center top;
}

.author-meta-card {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(10, 12, 18, 0.88);
  backdrop-filter: blur(10px);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
}

.author-meta-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

.author-meta-sub {
  font-size: 0.74rem;
  color: var(--color-gold);
}

.digital-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.book-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex;
  gap: 20px;
  transition: all var(--transition-smooth);
}

.book-card:hover {
  border-color: rgba(245, 158, 11, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6);
}

.book-cover-wrap {
  width: 130px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
  transition: transform 0.3s ease;
}

.book-card:hover .book-cover-wrap {
  transform: scale(1.04) rotate(-1deg);
}

.book-cover-wrap img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.book-details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.book-format-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 800;
  letter-spacing: 0.8px;
}

.book-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin: 6px 0 8px;
}

.book-card-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 12px;
}

.book-card-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* ==========================================================================
   YOUTUBE & VIDEO VAULT
   ========================================================================== */
.videos-section {
  background: #08090d;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.featured-video-stage {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 36px;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
}

.video-player-preview {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  cursor: pointer;
  overflow: hidden;
}

.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.video-player-preview:hover .video-thumb {
  transform: scale(1.05);
  opacity: 0.95;
}

.play-pulse-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: var(--color-crimson);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.6);
  animation: pulseGlow 2s infinite;
  transition: transform var(--transition-fast);
}

.video-player-preview:hover .play-pulse-btn {
  transform: translate(-50%, -50%) scale(1.1);
  background: #ff2222;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
  70% { box-shadow: 0 0 0 20px rgba(239, 68, 68, 0); }
  100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.featured-video-info {
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.video-meta-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.video-stage-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 12px;
}

.video-stage-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 22px;
}

/* Video Playlist Grid */
.video-playlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.video-card-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.video-card-item:hover {
  border-color: var(--color-crimson);
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.6);
}

.video-card-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #141620;
}

.video-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.8);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  color: #fff;
}

.video-card-body {
  padding: 16px;
}

.video-card-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 8px;
}

.video-card-stats {
  font-size: 0.76rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ==========================================================================
   COMMUNITY & INSTAGRAM DRIVE
   ========================================================================== */
.community-section {
  position: relative;
}

.community-box {
  background: linear-gradient(135deg, rgba(26, 29, 44, 0.85), rgba(16, 18, 28, 0.92));
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: var(--radius-lg);
  padding: 50px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.community-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}

.community-desc {
  max-width: 580px;
  margin: 0 auto 32px;
  color: var(--text-secondary);
  font-size: 1.02rem;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto 26px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 5px;
  transition: border-color var(--transition-fast);
}

.newsletter-form:focus-within {
  border-color: var(--color-gold);
}

.newsletter-input {
  flex-grow: 1;
  background: none;
  border: none;
  outline: none;
  padding: 10px 18px;
  color: #fff;
  font-size: 0.9rem;
  font-family: inherit;
  min-width: 0;
}

.newsletter-input::placeholder {
  color: var(--text-muted);
}

.socials-cluster {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.social-pill-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition-smooth);
}

.social-pill-link:hover {
  background: rgba(245, 158, 11, 0.15);
  border-color: var(--color-gold);
  transform: translateY(-2px);
  color: var(--color-gold-light);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #06070a;
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}

.footer-brand-col p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  margin: 14px 0 18px;
  line-height: 1.6;
  max-width: 320px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.86rem;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.developer-credit {
  color: var(--color-gold);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.developer-credit:hover {
  color: #fff;
  text-decoration: underline;
  text-shadow: 0 0 10px rgba(245, 158, 11, 0.6);
}

/* ==========================================================================
   CART SLIDE-OUT DRAWER
   ========================================================================== */
.cart-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
}

.cart-drawer-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 420px;
  height: 100%;
  background: var(--bg-surface);
  border-left: 1px solid var(--border-subtle);
  z-index: 1110;
  display: flex;
  flex-direction: column;
  box-shadow: -15px 0 45px rgba(0, 0, 0, 0.85);
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform var(--transition-smooth), visibility var(--transition-smooth);
}

.cart-drawer.active {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.cart-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-header-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
}

.close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  transition: all var(--transition-fast);
}

.close-btn:hover {
  background: rgba(239, 68, 68, 0.2);
  color: var(--color-crimson);
}

.cart-body {
  padding: 20px;
  flex-grow: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cart-empty-state {
  text-align: center;
  padding: 40px 16px;
  color: var(--text-muted);
}

.cart-empty-state .icon {
  font-size: 2.8rem;
  margin-bottom: 12px;
  color: var(--text-secondary);
}

.cart-item-card {
  display: flex;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px;
  align-items: center;
}

.cart-item-thumb {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.cart-item-info {
  flex-grow: 1;
  min-width: 0;
}

.cart-item-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-meta {
  font-size: 0.74rem;
  color: var(--color-gold);
  margin-top: 2px;
}

.cart-item-price {
  font-family: var(--font-impact);
  font-size: 1rem;
  color: #fff;
  margin-top: 3px;
}

.cart-qty-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  padding: 2px 6px;
  flex-shrink: 0;
}

.qty-btn {
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 2px 6px;
}

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border-subtle);
  background: rgba(10, 12, 18, 0.96);
}

.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
}

.cart-subtotal-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.cart-subtotal-amount {
  font-family: var(--font-impact);
  font-size: 1.5rem;
  color: var(--color-gold-light);
}

.btn-checkout {
  width: 100%;
  padding: 13px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-subtle);
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all var(--transition-fast);
}

.btn-checkout:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.btn-paypal {
  width: 100%;
  padding: 13px;
  border-radius: var(--radius-full);
  background: #ffc439;
  color: #003087;
  font-weight: 800;
  font-size: 0.98rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(255, 196, 57, 0.4);
  transition: all var(--transition-fast);
  margin-bottom: 10px;
}

.btn-paypal:hover {
  background: #f4b628;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(255, 196, 57, 0.6);
}

/* UPDATE! Slogan & Voice Trigger */
.btn-update-voice {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.25), rgba(245, 158, 11, 0.2));
  border: 1px solid var(--color-crimson);
  color: #fff;
  font-family: var(--font-impact);
  font-size: 1.15rem;
  letter-spacing: 1.2px;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.35);
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.btn-update-voice:hover {
  background: linear-gradient(135deg, var(--color-crimson), #dc2626);
  box-shadow: 0 0 30px rgba(239, 68, 68, 0.7);
  transform: translateY(-2px) scale(1.03);
}

.btn-update-voice .soundwave-icon {
  animation: soundPulse 1.2s infinite ease-in-out;
  color: var(--color-gold-light);
}

@keyframes soundPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}

.btn-update-voice.playing {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  border-color: #fca5a5;
  box-shadow: 0 0 35px rgba(239, 68, 68, 0.85);
  animation: audioPlayingGlow 1s infinite alternate;
}

@keyframes audioPlayingGlow {
  0% { transform: scale(1.02); box-shadow: 0 0 20px rgba(239, 68, 68, 0.6); }
  100% { transform: scale(1.06); box-shadow: 0 0 40px rgba(245, 158, 11, 0.8); }
}

.soundwave-bars {
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
  height: 18px;
}

.soundwave-bar {
  width: 3px;
  background: #fff;
  border-radius: 2px;
  animation: barBounce 0.6s ease-in-out infinite alternate;
}

.soundwave-bar:nth-child(1) { height: 6px; animation-delay: 0.1s; }
.soundwave-bar:nth-child(2) { height: 16px; animation-delay: 0.3s; }
.soundwave-bar:nth-child(3) { height: 10px; animation-delay: 0.2s; }
.soundwave-bar:nth-child(4) { height: 18px; animation-delay: 0.4s; }
.soundwave-bar:nth-child(5) { height: 12px; animation-delay: 0.15s; }

@keyframes barBounce {
  0% { height: 4px; }
  100% { height: 20px; }
}

/* Slogan Street Stamp */
.update-stamp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-impact);
  font-size: 1rem;
  color: #fff;
  background: var(--color-crimson);
  padding: 4px 12px;
  border-radius: 6px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transform: rotate(-3deg);
  box-shadow: 0 4px 14px rgba(239, 68, 68, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.35);
  animation: stampFloat 3s ease-in-out infinite alternate;
}

@keyframes stampFloat {
  0% { transform: rotate(-3deg) translateY(0); }
  100% { transform: rotate(-1deg) translateY(-4px); }
}

/* UPDATE! Sound Blast Pop Overlay */
.update-blast-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  background: rgba(14, 16, 24, 0.98);
  border: 2px solid var(--color-crimson);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.95), 0 0 40px rgba(239, 68, 68, 0.6);
  border-radius: var(--radius-lg);
  padding: 36px 44px;
  text-align: center;
  z-index: 3000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.update-blast-modal.active {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.update-blast-title {
  font-family: var(--font-impact);
  font-size: 3.8rem;
  color: #fff;
  letter-spacing: 2px;
  line-height: 1;
  text-shadow: 0 0 24px rgba(239, 68, 68, 0.8);
  margin-bottom: 10px;
}

.update-blast-sub {
  font-size: 1.05rem;
  color: var(--color-gold-light);
  font-weight: 700;
}

/* ==========================================================================
   MODALS: VIDEO & BOOK PREVIEW
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

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

.modal-content-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 760px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9);
  transform: scale(0.95);
  transition: transform var(--transition-smooth);
}

.modal-overlay.active .modal-content-box {
  transform: scale(1);
}

.modal-close-trigger {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid var(--border-subtle);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}

.video-embed-holder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-embed-holder iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-modal-details {
  padding: 22px 26px;
}

.book-reader-layout {
  padding: 30px;
}

.reader-header {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-subtle);
}

.reader-cover-thumb {
  width: 90px;
  height: 125px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.reader-body-text {
  font-size: 0.96rem;
  line-height: 1.8;
  color: #e2e8f0;
  max-height: 320px;
  overflow-y: auto;
  padding-right: 10px;
}

.reader-body-text p {
  margin-bottom: 16px;
}

.reader-body-text h3 {
  color: var(--color-gold);
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 18px 0 10px;
}

/* Toast Notification */
.toast-notice {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: rgba(16, 18, 28, 0.96);
  border: 1px solid var(--color-gold);
  color: #fff;
  padding: 11px 22px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 20px var(--color-gold-glow);
  z-index: 2000;
  pointer-events: none;
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.toast-notice.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

/* Tablet & Intermediate Desktop Breakpoints (1024px - 1200px) */
@media (max-width: 1200px) {
  .nav-ig-btn .ig-handle-text {
    display: none;
  }
  .nav-ig-btn {
    padding: 8px 10px;
  }
}

/* Below 1024px: Switch cleanly to mobile hamburger navigation */
@media (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }

  .nav-ig-btn {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-media-wrap {
    max-width: 500px;
    margin: 0 auto;
  }

  .story-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .featured-video-stage {
    grid-template-columns: 1fr;
  }

  .books-author-spotlight {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

/* Mobile Screens (<= 768px) */
@media (max-width: 768px) {
  .site-header .container.navbar {
    height: 66px;
  }

  .brand-logo-icon {
    width: 36px;
    height: 36px;
    font-size: 1.25rem;
  }

  .brand-name {
    font-size: 1.05rem;
  }

  .brand-tagline {
    display: none;
  }

  .hero-section {
    padding: 36px 0 70px;
  }

  .hero-title {
    font-size: clamp(2rem, 7vw, 2.8rem);
  }

  .hero-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 28px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    justify-content: center;
    width: 100%;
    padding: 13px;
  }

  .hero-stats-row {
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    gap: 14px;
    text-align: center;
  }

  .stat-value {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.7rem;
  }

  .hero-img {
    height: 400px;
  }

  /* Safe positioning for badges on mobile: keep inside card */
  .floating-pill-card {
    left: 12px;
    top: 12px;
    padding: 8px 12px;
  }

  .floating-author-badge {
    right: 12px;
    bottom: 20px;
    padding: 8px 12px;
  }

  /* Story Collage on Mobile */
  .story-photos-collage {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .story-photo-item {
    width: 100%;
    height: 280px;
  }

  .story-pillars-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .section {
    padding: 60px 0;
  }

  /* Merch Filter Scroll on Mobile */
  .merch-filter-nav {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .merch-filter-nav::-webkit-scrollbar {
    display: none;
  }

  .merch-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .book-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .book-cover-wrap {
    width: 120px;
  }

  .book-card-actions {
    justify-content: center;
  }

  .featured-video-info {
    padding: 24px 18px;
  }

  .community-box {
    padding: 36px 18px;
  }

  .newsletter-form {
    flex-direction: column;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.04);
    gap: 8px;
    padding: 8px;
  }

  .newsletter-form .btn-primary {
    width: 100%;
    justify-content: center;
    border-radius: var(--radius-md);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  /* Cart Drawer Full Width on Mobile */
  .cart-drawer {
    max-width: 100%;
  }

  .modal-content-box {
    width: 95vw;
    max-height: 85vh;
  }

  .reader-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .book-reader-layout {
    padding: 20px;
  }
}

/* Small mobile devices (<= 400px) */
@media (max-width: 400px) {
  .brand-name {
    font-size: 0.98rem;
  }

  .currency-btn {
    padding: 3px 6px;
    font-size: 0.68rem;
  }

  .cart-trigger-btn {
    width: 36px;
    height: 36px;
  }

  .mobile-menu-toggle {
    width: 36px;
    height: 36px;
  }
}

/* ==========================================================================
   THE CAUSE / GOFUNDME CAMPAIGN STYLING
   ========================================================================== */
.cause-section {
  position: relative;
  background: 
    radial-gradient(circle at 80% 20%, rgba(0, 185, 100, 0.07) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(245, 158, 11, 0.05) 0%, transparent 45%),
    var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.nav-badge-cause {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  background: #00b964;
  color: #fff;
  padding: 2px 6px;
  border-radius: 9999px;
  margin-left: 4px;
  vertical-align: middle;
  letter-spacing: 0.5px;
}

.gofundme-verified-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 185, 100, 0.12);
  border: 1px solid rgba(0, 185, 100, 0.35);
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #00b964;
  margin-bottom: 14px;
}

.gofundme-logo-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #00b964;
  color: #fff;
  padding: 2px 8px;
  border-radius: 9999px;
  font-size: 0.72rem;
}

.gofundme-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: start;
}

.gofundme-story-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-card);
}

.gofundme-heading {
  font-family: var(--font-display);
  font-size: 1.65rem;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 20px;
}

.gofundme-quote-box {
  background: rgba(10, 12, 18, 0.85);
  border-left: 3px solid #00b964;
  padding: 18px 22px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 22px;
  font-style: italic;
  color: #f1f5f9;
  line-height: 1.65;
}

.gofundme-quote-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  font-style: normal;
}

.author-avatar-sm {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-gold);
}

.gofundme-quote-author strong {
  display: block;
  font-size: 0.88rem;
  color: #fff;
}

.gofundme-quote-author span {
  font-size: 0.74rem;
  color: var(--text-muted);
}

.cause-pillars-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

.cause-pillar-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.cause-pillar-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(0, 185, 100, 0.12);
  border: 1px solid rgba(0, 185, 100, 0.25);
  color: #00b964;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.cause-pillar-title {
  font-family: var(--font-display);
  font-size: 0.98rem;
  color: #fff;
  margin-bottom: 4px;
}

.cause-pillar-desc {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* Right GoFundMe Widget Card */
.gofundme-card {
  background: #11141f;
  border: 1px solid rgba(0, 185, 100, 0.3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.8);
  position: sticky;
  top: 100px;
}

.gofundme-card-header {
  padding: 16px 20px;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-subtle);
}

.gofundme-brand-mark {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gofundme-icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #00b964;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.gofundme-brand-name {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: #fff;
  letter-spacing: -0.5px;
  display: block;
}

.gofundme-campaign-status {
  font-size: 0.68rem;
  color: #00b964;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

.gofundme-tax-tag {
  font-size: 0.7rem;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  padding: 3px 8px;
  border-radius: 4px;
}

.gofundme-card-media {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.gofundme-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gofundme-media-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  display: flex;
  justify-content: space-between;
  font-size: 0.74rem;
  color: #fff;
  font-weight: 600;
}

.gofundme-card-body {
  padding: 24px;
}

.gofundme-amount-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
}

.gofundme-amount-raised {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-right: 8px;
}

.gofundme-amount-target {
  font-size: 0.84rem;
  color: var(--text-secondary);
}

.gofundme-percent-badge {
  background: rgba(0, 185, 100, 0.18);
  color: #00b964;
  font-weight: 800;
  font-size: 0.76rem;
  padding: 4px 10px;
  border-radius: 9999px;
  border: 1px solid rgba(0, 185, 100, 0.35);
}

.gofundme-progress-track {
  width: 100%;
  height: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  overflow: hidden;
  margin-bottom: 20px;
}

.gofundme-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #00b964, #26d07c);
  border-radius: 9999px;
  transition: width 1s ease-in-out;
}

.gofundme-stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px 8px;
  text-align: center;
  margin-bottom: 22px;
}

.gofundme-stat-item strong {
  display: block;
  font-size: 1.1rem;
  font-family: var(--font-display);
  color: #fff;
}

.gofundme-stat-item span {
  font-size: 0.68rem;
  color: var(--text-muted);
}

.gofundme-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.btn-gofundme-donate {
  background: #00b964;
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  padding: 15px 24px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all var(--transition-fast);
  box-shadow: 0 8px 24px rgba(0, 185, 100, 0.35);
}

.btn-gofundme-donate:hover {
  background: #009e54;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 185, 100, 0.45);
}

.btn-gofundme-share {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid var(--border-subtle);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 11px 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--transition-fast);
}

.btn-gofundme-share:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.gofundme-security-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 18px;
}

.gofundme-security-note i {
  color: #00b964;
  font-size: 1rem;
  flex-shrink: 0;
}

.gofundme-recent-donations {
  border-top: 1px solid var(--border-subtle);
  padding-top: 16px;
}

.recent-donations-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.recent-donations-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.donor-pill {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.76rem;
}

.donor-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(0, 185, 100, 0.2);
  color: #00b964;
  font-weight: 800;
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.donor-pill strong {
  display: block;
  color: #fff;
  font-size: 0.78rem;
}

.donor-pill p {
  color: var(--text-secondary);
  font-size: 0.74rem;
  line-height: 1.35;
  margin-top: 2px;
}

.donor-time {
  margin-left: auto;
  font-size: 0.68rem;
  color: var(--text-muted);
  flex-shrink: 0;
}

/* ==========================================================================
   FREE BOOK SPOTLIGHT: SINGLE DAD DIARIES
   ========================================================================== */
.free-book-spotlight {
  background: 
    linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(16, 18, 26, 0.95) 45%, rgba(9, 10, 15, 0.98) 100%);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: var(--radius-lg);
  padding: 44px;
  margin-bottom: 50px;
  box-shadow: 0 20px 60px -15px rgba(245, 158, 11, 0.15);
  position: relative;
  overflow: hidden;
}

.free-book-spotlight::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.free-book-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 46px;
  align-items: center;
}

.free-book-cover-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.free-book-cover-frame {
  position: relative;
  width: 260px;
  max-width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 
    0 22px 45px -10px rgba(0, 0, 0, 0.9),
    0 0 35px rgba(245, 158, 11, 0.2);
  border: 2px solid rgba(245, 158, 11, 0.4);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.free-book-cover-frame:hover {
  transform: translateY(-6px) rotate(1deg) scale(1.02);
}

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

.free-book-ribbon {
  position: absolute;
  top: 14px;
  right: -32px;
  background: #00b964;
  color: #fff;
  font-weight: 800;
  font-size: 0.7rem;
  padding: 4px 34px;
  transform: rotate(45deg);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.5px;
}

.free-book-tagline-pill {
  margin-top: 16px;
  font-size: 0.78rem;
  font-style: italic;
  color: var(--color-gold-light);
  text-align: center;
  line-height: 1.4;
  max-width: 280px;
}

.free-book-badge-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.free-book-title {
  font-family: var(--font-impact);
  font-size: 2.8rem;
  letter-spacing: 1.5px;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 4px;
}

.free-book-author {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.free-book-desc {
  color: var(--text-secondary);
  font-size: 0.94rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.free-book-perks-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.free-book-perk {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: #f1f5f9;
  font-weight: 600;
}

/* Download Form Card */
.free-book-form-card {
  background: rgba(10, 12, 18, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 24px;
  backdrop-filter: blur(10px);
}

.form-header-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #f1f5f9;
  font-weight: 600;
  margin-bottom: 16px;
}

.free-book-inputs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}

.input-field-wrap {
  display: flex;
  flex-direction: column;
}

.form-input-label {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.required-star {
  color: var(--color-crimson);
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-icon i {
  position: absolute;
  left: 14px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.form-text-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: #fff;
  padding: 12px 14px 12px 40px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.88rem;
  transition: all var(--transition-fast);
}

.form-text-input:focus {
  outline: none;
  border-color: var(--color-gold);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

/* Mandatory Consent Box */
.consent-checkbox-wrap {
  background: rgba(245, 158, 11, 0.06);
  border: 1px solid rgba(245, 158, 11, 0.25);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
}

.consent-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.custom-checkbox {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--color-gold);
  cursor: pointer;
  flex-shrink: 0;
}

.consent-text {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

.consent-text strong {
  color: #fff;
}

.form-action-row {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn-download-ebook {
  flex: 1;
  padding: 14px 22px;
  font-size: 0.92rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-read-sample-inline {
  padding: 14px 18px;
  font-size: 0.85rem;
}

.form-privacy-guarantee {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 12px;
  justify-content: center;
}

/* Success Box */
.free-book-success-box {
  text-align: center;
  padding: 20px 10px;
}

.success-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 185, 100, 0.18);
  border: 2px solid #00b964;
  color: #00b964;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.success-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 8px;
}

.success-subtitle {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto 20px;
}

.success-actions-cluster {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.book-card-highlight {
  border: 1px solid rgba(0, 185, 100, 0.4);
  box-shadow: 0 10px 30px rgba(0, 185, 100, 0.1);
}

.book-card-highlight:hover {
  border-color: #00b964;
}

/* Mobile responsive adjustments */
@media (max-width: 900px) {
  .gofundme-grid {
    grid-template-columns: 1fr;
  }

  .gofundme-card {
    position: static;
  }

  .free-book-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .free-book-spotlight {
    padding: 28px 20px;
  }

  .free-book-inputs-grid {
    grid-template-columns: 1fr;
  }

  .form-action-row {
    flex-direction: column;
  }

  .btn-download-ebook,
  .btn-read-sample-inline {
    width: 100%;
  }
}
