/* ================= CSS VARIABLES ================= */
:root {
  --primary-purple: #1b0631;
  --primary-gold: #ffb703;
  --primary-gold-hover: #ffc947;
  --bg-light: #f8f9fa;
  --bg-gray: #f1f1f1;
  --text-dark: #1a1a1a;
  --text-gray: #666;
  --success-green: #067d62;
  --error-red: #b12704;
  --white: #ffffff;
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 10px 40px rgba(27,6,49,0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --transition: all 0.3s ease;
}

/* ================= RESET & BASE ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ================= NAVIGATION ================= */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: var(--primary-purple);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
}

.logo-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: var(--transition);
  z-index: 1001;
}

.logo-link:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
}

.logo img {
  height: 40px;
  width: auto;
}

.logo span {
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

/* ORDER Nav Styling - NOW EMPHASIZED (moved from Support) */
.order-nav {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%) !important;
  color: white !important;
  padding: 0.6rem 1.25rem !important;
  border-radius: 50px;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(238, 90, 111, 0.4);
  transition: var(--transition);
}

.order-nav:hover {
  background: linear-gradient(135deg, #ff5252 0%, #d32f2f 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(238, 90, 111, 0.6);
}

/* Support Nav - NOW NORMAL (removed emphasis) */
.support-nav {
  font-weight: 600;
  color: var(--white) !important;
  background: transparent !important;
  padding: 0.5rem 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.support-nav:hover {
  color: var(--primary-gold) !important;
  transform: none !important;
  box-shadow: none !important;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

nav ul {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(27, 6, 49, 0.98);
  backdrop-filter: blur(10px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 2rem;
  list-style: none;
  display: flex;
}

nav ul.active {
  opacity: 1;
  visibility: visible;
}

nav ul li a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.3rem;
  position: relative;
  transition: var(--transition);
  padding: 0.5rem 0;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--primary-gold);
}

/* Remove old last-child styling that affected Support button */
nav ul li:last-child a {
  /* Reset to default */
  background: transparent;
  color: var(--white);
  padding: 0.5rem 0;
  border-radius: 0;
  font-weight: 600;
  font-size: 1.3rem;
}

nav ul li:last-child a:hover {
  background: transparent;
  transform: none;
  box-shadow: none;
  color: var(--primary-gold);
}

/* ================= HERO SECTION - MOBILE FIRST ================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 8rem 1.5rem 2rem;
  text-align: center;
  overflow: hidden;
}

.hero > img:first-child {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.launch-badge {
  position: absolute;
  top: 5.5rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 16px;
  background: linear-gradient(135deg, #ffb703, #ff8800);
  color: #000;
  font-weight: 900;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 30px;
  z-index: 4;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  animation: pulse 2.5s ease-in-out infinite;
  white-space: nowrap;
}

@keyframes pulse {
  0%, 100% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(1.05); }
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 100%;
  z-index: 3;
  margin-bottom: 2rem;
  margin-top: 2rem;
}

.hero-content h1 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
  color: white;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: white;
  line-height: 1.6;
}

.cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: 300px;
}

.cta a {
  padding: 12px 24px;
  background: #ffb703;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: 0.3s ease;
  text-align: center;
}

.cta a:last-child {
  background: transparent;
  border: 2px solid #ffb703;
  color: #ffb703;
}

.cta a:hover {
  transform: translateY(-2px);
}

.heroimg {
  position: relative;
  max-width: 280px;
  width: 80%;
  z-index: 2;
  animation: float 4s ease-in-out infinite;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 2px solid rgb(205, 192, 192);
  border-radius: 8px;
  margin-top: 1rem;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* ================= ABOUT SECTION - MOBILE ================= */
.about-section {
  padding: 3rem 1rem;
  background: var(--white);
}

.about-row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.about-image.book-image {
  order: 1;
}

.about-text.book-text {
  order: 2;
}

.about-image.author-image {
  order: 3;
}

.about-text.author-text {
  order: 4;
}

.about-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.blob {
  position: absolute;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-purple) 100%);
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.3;
  animation: blob-pulse 4s ease-in-out infinite;
}

@keyframes blob-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.about-image img {
  position: relative;
  z-index: 2;
  max-width: 250px;
  height: auto;
}

.about-text h2 {
  font-size: 1.8rem;
  color: var(--primary-purple);
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.about-text h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 4px;
  background: var(--primary-gold);
  border-radius: 2px;
}

.about-text p {
  color: var(--text-gray);
  margin-bottom: 1rem;
  line-height: 1.8;
  font-size: 0.95rem;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-purple);
  text-decoration: none;
  font-weight: 700;
  transition: var(--transition);
  font-size: 0.9rem;
}

/* ================= REVIEWS CAROUSEL - MOBILE ================= */
.reviews {
  padding: 3rem 1rem;
  background: var(--bg-light);
  text-align: center;
}

.reviews h2 {
  font-size: 1.8rem;
  color: var(--primary-purple);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--text-gray);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.reviews-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  min-height: auto;
}

.review {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  max-width: 100%;
  width: 100%;
  text-align: left;
  position: relative;
  transition: var(--transition);
  border: 1px solid rgba(27,6,49,0.05);
}

.review .stars {
  color: var(--primary-gold);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(6,125,98,0.1);
  color: var(--success-green);
  padding: 0.3rem 0.6rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.review-text {
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-style: italic;
  font-size: 0.95rem;
}

.review-author {
  color: var(--primary-purple);
  font-weight: 700;
  font-size: 0.9rem;
}

/* Empty Reviews State */
.empty-reviews {
  text-align: center;
  padding: 3rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px dashed rgba(27, 6, 49, 0.15);
  margin: 1rem 0;
}

.empty-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.7;
}

.empty-reviews h3 {
  color: var(--primary-purple);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.empty-reviews p {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

/* Hide empty state when reviews exist */
.reviews.has-reviews .empty-reviews {
  display: none;
}

/* Hide reviews carousel when empty */
.reviews.no-reviews .reviews-row {
  display: none;
}

.reviews.no-reviews .carousel-dots {
  display: none;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--primary-gold);
  transform: scale(1.2);
}

.view-all-reviews {
  margin-top: 1.5rem;
}

.btn-outline {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--primary-purple);
  color: var(--primary-purple);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  font-size: 0.9rem;
}

.btn-outline:hover {
  background: var(--primary-purple);
  color: var(--white);
}

/* ================= PODCAST SECTION - MOBILE ================= */
.podcast-section {
  position: relative;
  padding: 3rem 1rem;
  background: var(--primary-purple);
  overflow: hidden;
}

.podcast-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
}

.podcast-overlay-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(27,6,49,0.9), rgba(27,6,49,0.95));
}

.podcast-container {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 2rem;
}

.section-title {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.podcast-container .section-subtitle {
  color: rgba(255,255,255,0.7);
  margin-bottom: 0;
}

/* YouTube Channel Link - NEW */
.youtube-channel-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ff0000;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 1.5rem;
  transition: var(--transition);
  font-size: 0.9rem;
}

.youtube-channel-link:hover {
  background: #cc0000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}

.yt-icon {
  font-size: 1.2rem;
}

.podcast-grid {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  position: relative;
  z-index: 2;
  padding-bottom: 1rem;
}

.podcast-card {
  flex: 0 0 85%;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
  scroll-snap-align: start;
}

.podcast-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
}
.podcast-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.podcast-info {
  padding: 1rem;
}

.podcast-info h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.podcast-info p {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
}

.podcast-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
  position: relative;
  z-index: 2;
}

.btn-nav {
  padding: 0.6rem 1.2rem;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--white);
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
  font-size: 0.85rem;
}

.btn-nav:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-gold);
}

/* Floating Player */
.floating-player {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 400px;
  height: 200px;
  background: var(--primary-purple);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  display: none;
  overflow: hidden;
  border: 2px solid var(--primary-gold);
}

.floating-player.active {
  display: block;
}

.close-player {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 30px;
  height: 30px;
  background: rgba(255,255,255,0.2);
  border: none;
  color: var(--white);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.video-error-message {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--white);
  background: rgba(0, 0, 0, 0.8);
  padding: 1rem;
  border-radius: var(--radius-md);
  width: 90%;
  max-width: 300px;
}

.video-error-message p {
  margin: 0;
  font-size: 0.9rem;
}

.video-error-message a {
  color: var(--primary-gold);
  text-decoration: underline;
}

.video-error-message a:hover {
  color: var(--primary-gold-hover);
}

/* ================= SUPPORT SECTION ================= */
.support-section {
  padding: 4rem 1.5rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8e0f0 100%);
  position: relative;
  overflow: hidden;
}

.support-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,183,3,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.support-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.support-content {
  text-align: center;
}

.support-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  display: inline-block;
  animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  10% { transform: scale(1.1); }
  20% { transform: scale(1); }
  30% { transform: scale(1.1); }
  40% { transform: scale(1); }
}

.support-content h2 {
  font-size: 2rem;
  color: var(--primary-purple);
  margin-bottom: 1rem;
}

.support-content > p {
  color: var(--text-gray);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.support-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

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

.stat-label {
  font-size: 0.85rem;
  color: var(--text-gray);
  font-weight: 600;
}

.btn-support {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--primary-gold) 0%, #ff8800 100%);
  color: var(--primary-purple);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(255, 183, 3, 0.4);
}

.btn-support:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 183, 3, 0.5);
}

.support-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.support-image img {
  max-width: 250px;
  filter: drop-shadow(0 10px 30px rgba(27, 6, 49, 0.2));
  animation: float 4s ease-in-out infinite;
}

/* ================= ENGAGEMENT SECTION - MOBILE ================= */
.engagement-section {
  padding: 3rem 1rem;
  background: var(--white);
}

.engagement-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.engagement-card {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(27,6,49,0.05);
  position: relative;
  overflow: hidden;
}

.engagement-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.engagement-card h3 {
  font-size: 1.3rem;
  color: var(--primary-purple);
  margin-bottom: 0.5rem;
}

.card-subtitle {
  color: var(--text-gray);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

/* Buy Card */
.buy-card {
  background: linear-gradient(135deg, var(--primary-purple) 0%, #2d0b4e 100%);
  color: var(--white);
}

.buy-card h3 {
  color: var(--white);
}

.best-seller-badge {
  position: absolute;
  top: 0.75rem;
  right: -2.5rem;
  background: var(--primary-gold);
  color: var(--primary-purple);
  padding: 0.4rem 2.5rem;
  font-weight: 700;
  font-size: 0.7rem;
  transform: rotate(45deg);
  box-shadow: var(--shadow-sm);
}

.book-wrapper {
  margin: 0.5rem 0 1.5rem;
}

.book-cover {
  max-width: 120px;
  filter: drop-shadow(0 8px 15px rgba(0,0,0,0.3));
}

.format-options {
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
}

.price-tag {
  margin-bottom: 1rem;
}

.price-tag .from {
  display: block;
  font-size: 0.8rem;
  opacity: 0.8;
}

.price-tag .amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-gold);
}

.shipping-note {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
}

.btn-primary {
  display: inline-block;
  padding: 0.875rem 1.5rem;
  background: var(--primary-gold);
  color: var(--primary-purple);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn-primary:hover {
  background: var(--primary-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 183, 3, 0.3);
}

/* Review Card */
.star-rating {
  margin: 0.75rem 0;
}

.rating-label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-gray);
  font-size: 0.85rem;
}

.stars-input {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.star {
  font-size: 1.5rem;
  color: #ddd;
  cursor: pointer;
  transition: var(--transition);
}

.star:hover,
.star.active {
  color: var(--primary-gold);
}

.review-form input,
.review-form textarea,
.review-form select {
  width: 100%;
  padding: 0.875rem;
  margin-bottom: 0.75rem;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9rem;
  transition: var(--transition);
  }
  
  .review-form input:focus,
  .review-form textarea:focus,
  .review-form select:focus {
    outline: none;
    border-color: var(--primary-gold);
}

/* Contact Card */
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  border: 1px solid transparent;
}

.contact-item:hover {
  border-color: var(--primary-gold);
  transform: translateX(5px);
}
.contact-item .icon {
  font-size: 1.25rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,183,3,0.1);
  border-radius: 50%;
  flex-shrink: 0;
}

.contact-details {
  text-align: left;
  min-width: 0;
  overflow: hidden;
}

.contact-details .label {
  display: block;
  font-size: 0.7rem;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-details .value {
  display: block;
  font-weight: 600;
  color: var(--primary-purple);
  font-size: 0.85rem;
  word-break: break-word;
  line-height: 1.4;
}

/* Fixed Email Styling - Prevents broken 'k' */
.email-straight {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 500;
  letter-spacing: 0.3px;
  word-break: break-all;
  line-height: 1.4;
  font-size: 0.8rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.social-icon:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.social-icon svg {
  width: 20px;
  height: 20px;
}

/* ================= FOOTER - MOBILE ================= */
footer {
  background: var(--primary-purple);
  color: var(--white);
  padding: 2rem 1rem 1.5rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo {
  height: 35px;
  width: auto;
}

.footer-left {
  font-size: 0.85rem;
  opacity: 0.8;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.footer-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition);
}

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

/* ================= MODALS - MOBILE ================= */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(5px);
  padding: 1rem;
  overflow-y: auto;
}

.modal-content {
  background: var(--white);
  margin: 2rem auto;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  max-width: 100%;
  position: relative;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.close {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--text-gray);
  cursor: pointer;
  transition: var(--transition);
}

.close:hover {
  color: var(--primary-purple);
}

.modal-content h2 {
  color: var(--primary-purple);
  margin-bottom: 1rem;
  font-size: 1.4rem;
  padding-right: 2rem;
}

.modal-body {
  color: var(--text-gray);
  line-height: 1.7;
  font-size: 0.9rem;
}

/* ================= TABLET BREAKPOINT (481px - 768px) ================= */
@media (min-width: 481px) {
  .logo span {
    font-size: 1rem;
  }
  
  .logo img {
    height: 45px;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .heroimg {
    max-width: 320px;
  }
  
  .cta {
    flex-direction: row;
    justify-content: center;
    max-width: none;
  }
  
  .about-text h2 {
    font-size: 2rem;
  }
  
  .reviews h2,
  .section-title {
    font-size: 2rem;
  }
  
  .podcast-card {
    flex: 0 0 45%;
  }
  
  .engagement-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  
  .engagement-card:last-child {
    grid-column: 1 / -1;
  }

  .support-container {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .support-content {
    text-align: left;
  }

  .support-content > p {
    margin-left: 0;
    margin-right: 0;
  }

  .support-stats {
    justify-content: flex-start;
  }

  /* Email fix for tablet */
  .email-straight {
    font-size: 0.85rem;
  }
}

/* ================= LAPTOP/DESKTOP BREAKPOINT (769px - 1024px) ================= */
@media (min-width: 769px) {
  .container {
    padding: 0 2rem;
  }
  
  nav {
    padding: 1.25rem 2rem;
  }
  
  .menu-toggle {
    display: none;
  }
  
  nav ul {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    flex-direction: row;
    opacity: 1;
    visibility: visible;
    padding: 0;
    gap: 1.5rem;
  }
  
  nav ul li a {
    font-size: 0.9rem;
    padding: 0.5rem 0;
  }
  
  nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: var(--transition);
  }
  
  nav ul li a:hover::after,
  nav ul li a.active::after {
    width: 100%;
  }
  
  /* Desktop ORDER button styling */
  .order-nav {
    padding: 0.5rem 1rem !important;
    font-size: 0.85rem !important;
  }
  
  .order-nav::after {
    display: none !important;
  }
  
  /* Desktop Support button - normal */
  .support-nav {
    font-size: 0.9rem;
    padding: 0.5rem 0 !important;
  }
  
  .support-nav::after {
    display: block !important;
  }
  
  nav ul li:last-child a {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    background: transparent;
    color: var(--white);
    border-radius: 0;
  }
  
  nav ul li:last-child a:hover {
    background: transparent;
    transform: none;
    box-shadow: none;
    color: var(--primary-gold);
  }
  
  .hero {
    flex-direction: row;
    text-align: left;
    padding: 0 3rem;
    justify-content: space-between;
    align-items: center;
  }
  
  .launch-badge {
    top: 6rem;
    left: 3rem;
    transform: none;
    font-size: 0.85rem;
    padding: 10px 18px;
  }
  
  @keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
  }
  
  .hero-content {
    align-items: flex-start;
    text-align: left;
    max-width: 50%;
    margin-bottom: 0;
    margin-top: 0;
  }
  
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .cta {
    justify-content: flex-start;
  }
  
  .heroimg {
    position: relative;
    top: auto;
      right: auto;
      transform: none;
    max-width: 300px;
    width: 35%;
    margin-top: 0;
  }
  
  .about-section {
    padding: 4rem 2rem;
  }
  
  .about-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }
  
                                .about-image.book-image,
                                .about-text.book-text,
                                .about-image.author-image,
                                .about-text.author-text {
    order: 0;
  }
  
  .about-image img {
    max-width: 100%;
  }
  
  .reviews {
    padding: 4rem 2rem;
  }
  
  .reviews-row {
    gap: 1.5rem;
  }
  
  .review {
    max-width: 350px;
    flex: 1;
  }
  
  .podcast-section {
    padding: 4rem 2rem;
  }
  
  .podcast-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    overflow-x: visible;
  }
  
  .podcast-card {
    flex: none;
  }
  
  .podcast-card img {
    height: 160px;
  }
  
  .engagement-section {
    padding: 4rem 2rem;
  }
  
  .engagement-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  
  .engagement-card:last-child {
    grid-column: auto;
  }
  
  .floating-player {
    right: 2rem;
    left: auto;
    transform: none;
    width: 400px;
    height: 225px;
    bottom: 2rem;
  }
  
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  
  .footer-brand {
    flex-direction: row;
    align-items: center;
  }
  
  .footer-links {
    gap: 2rem;
  }
  
  .modal-content {
    max-width: 700px;
    padding: 2.5rem;
    margin: 5% auto;
  }

  .support-section {
    padding: 6rem 2rem;
  }

  .support-content h2 {
    font-size: 2.5rem;
  }

  .support-image img {
    max-width: 300px;
  }

  /* Email fix for desktop */
  .email-straight {
    font-size: 0.85rem;
    word-break: normal;
  }
}

/* ================= LARGE DESKTOP (1025px+) ================= */
@media (min-width: 1025px) {
  .container {
    max-width: 1400px;
    padding: 0 3rem;
  }
  
  nav {
    padding: 1.5rem 3rem;
  }
  
  .logo span {
    font-size: 1.2rem;
  }
  
  .logo img {
    height: 50px;
  }
  
  nav ul {
    gap: 2.5rem;
  }
  
  /* Large desktop ORDER button */
  .order-nav {
    padding: 0.6rem 1.25rem !important;
    font-size: 0.9rem !important;
  }
  
  .hero {
    padding: 0 5rem;
  }
  
  .hero-content h1 {
    font-size: 3.5rem;
  }
  
  .hero-content p {
    font-size: 1.25rem;
  }
  
  .heroimg {
    max-width: 380px;
  }
  
  .about-section {
    padding: 6rem 3rem;
  }
  
  .about-row {
    gap: 4rem;
  }
  
  .about-text h2 {
    font-size: 2.5rem;
  }
  
  .reviews {
    padding: 6rem 3rem;
  }
  
  .reviews h2 {
    font-size: 2.5rem;
  }
  
  .review {
    max-width: 380px;
    padding: 2.5rem;
  }
  
  .podcast-section {
    padding: 6rem 3rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .podcast-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }
  
  .engagement-section {
    padding: 6rem 3rem;
  }
  
  .engagement-card {
    padding: 2.5rem;
  }
  
  .book-cover {
    max-width: 150px;
  }

  .support-section {
    padding: 8rem 3rem;
  }

  .support-content h2 {
    font-size: 3rem;
  }

  .support-image img {
    max-width: 350px;
  }

  /* Email fix for large desktop */
  .email-straight {
    font-size: 0.9rem;
  }
}

/* Add to your style.css */
.hidden {
  display: none !important;
}

.no-reviews .reviews-row {
  display: none;
}

.has-reviews .empty-reviews {
  display: none;
}

/* ================= UTILITY CLASSES ================= */
.hidden {
  display: none !important;
}

.text-center {
  text-align: center;
}

.loading-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--primary-purple);
  font-size: 1rem;
  padding: 2rem;
}

.loading-spinner::after {
  content: '';
  width: 20px;
  height: 20px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid var(--primary-gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Carousel Styles for Dynamic Reviews */
.carousel-wrapper {
  position: relative;
  overflow: hidden;
  padding: 0 40px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.review-slide {
  flex: 0 0 100%;
  padding: 0 0.5rem;
}

@media (min-width: 769px) {
  .review-slide {
    flex: 0 0 33.333%;
  }
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--primary-purple);
  color: var(--primary-purple);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: var(--primary-purple);
  color: var(--white);
}

.carousel-btn.prev {
  left: 0;
}

.carousel-btn.next {
  right: 0;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
  margin: 0 0.25rem;
}

.carousel-dot.active {
  background: var(--primary-gold);
  transform: scale(1.2);
}

/* Quick Review Success Message */
.quick-review-success {
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}