/* ── Book Hero ── */
.book-hero-section {
  background: linear-gradient(135deg, var(--smoke-color2) 0%, #e8f0e8 100%);
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}

.book-hero-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(1, 125, 3, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.book-cover-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.book-cover-img {
  max-width: 320px;
  width: 100%;
  border-radius: 12px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.22),
    0 8px 24px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  display: block;
}

.book-cover-img:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.28),
    0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Placeholder — remove when you have actual cover image */
.book-cover-placeholder {
  max-width: 320px;
  width: 100%;
  min-height: 440px;
  border-radius: 12px;
  background: linear-gradient(160deg, #1a3a1a 0%, #017d03 40%, #ff9c00 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.22),
    0 8px 24px rgba(0, 0, 0, 0.12);
  color: white;
  text-align: center;
  padding: 30px 20px;
  transition: transform 0.4s ease;
}

.book-cover-placeholder:hover {
  transform: translateY(-8px) rotate(1deg);
}

.book-cover-placeholder .ph-title {
  font-family: var(--title-font);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
}

.book-cover-placeholder .ph-line {
  width: 60px;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
  margin: 0 auto 16px;
}

.book-cover-placeholder .ph-author {
  font-family: var(--style-font);
  font-size: 18px;
  color: #ffd080;
}

.book-cover-badge {
  position: absolute;
  top: -12px;
  right: -12px;
  background: var(--theme-color2);
  color: white;
  font-family: var(--title-font);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 30px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(255, 156, 0, 0.4);
}

.book-genre-tag {
  display: inline-block;
  background: rgba(1, 125, 3, 0.1);
  color: var(--theme-color);
  font-family: var(--body-font);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 30px;
  border: 1px solid rgba(1, 125, 3, 0.2);
  margin-bottom: 20px;
}

.book-main-title {
  font-family: var(--title-font);
  font-size: 54px;
  font-weight: 800;
  color: var(--title-color);
  line-height: 1.1;
  margin-bottom: 10px;
  margin-top: 0;
}

.book-main-title span {
  color: var(--theme-color);
}

.book-author-line {
  font-family: var(--body-font);
  font-size: 17px;
  color: var(--body-color);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.book-author-line strong {
  color: var(--title-color);
  font-weight: 600;
}

.author-dot {
  width: 5px;
  height: 5px;
  background: var(--theme-color2);
  border-radius: 50%;
  display: inline-block;
}

.book-description {
  font-family: var(--body-font);
  font-size: 17px;
  line-height: 1.8;
  color: var(--body-color);
  margin-bottom: 34px;
  border-left: 3px solid var(--theme-color);
  padding-left: 20px;
}

.book-hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-amazon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ff9900;
  color: #111 !important;
  font-family: var(--body-font);
  font-size: 15px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 30px;
  border: none;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 24px rgba(255, 153, 0, 0.35);
  position: relative;
  overflow: hidden;
}

.btn-amazon:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(255, 153, 0, 0.5);
  color: #111 !important;
}

.btn-amazon .amazon-a {
  font-style: italic;
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 900;
}

.book-avail-note {
  font-family: var(--body-font);
  font-size: 14px;
  color: var(--body-color);
  display: flex;
  align-items: center;
  gap: 6px;
}

.book-avail-note .stars {
  color: var(--theme-color2);
  letter-spacing: 2px;
}

/* ── Toxin Strip ── */
.toxin-strip {
  background: linear-gradient(90deg, var(--title-color) 0%, #1a2a1a 100%);
  padding: 16px 0;
}

.toxin-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.toxin-strip-inner .ts-badge {
  background: var(--theme-color2);
  color: white;
  font-family: var(--title-font);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 12px;
  border-radius: 4px;
}

.toxin-strip-inner .ts-text {
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--body-font);
  font-size: 15px;
  font-weight: 500;
  margin: 0;
}

.toxin-strip-inner .ts-text strong {
  color: var(--theme-color2);
}

/* ── About the Book ── */
.about-book-section {
  padding: 100px 0;
  background: var(--white-color);
}

.about-book-card {
  background: linear-gradient(135deg, var(--smoke-color2) 0%, #f0f5f0 100%);
  border-radius: 30px;
  padding: 60px;
  position: relative;
  overflow: hidden;
}

.about-book-card::after {
  content: '"';
  position: absolute;
  right: 40px;
  bottom: -40px;
  font-family: Georgia, serif;
  font-size: 220px;
  color: rgba(1, 125, 3, 0.06);
  line-height: 1;
  pointer-events: none;
}

.about-book-card p {
  font-family: var(--body-font);
  font-size: 17px;
  line-height: 1.85;
  color: var(--body-color);
  margin-bottom: 20px;
}

.about-book-card p:last-child {
  margin-bottom: 0;
}

/* Highlight cards */
.highlights-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 56px auto 0;
}

.hlcard {
  background: var(--white-color);
  border-radius: 20px;
  padding: 30px 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hlcard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--theme-color);
  border-radius: 4px 0 0 4px;
}

.hlcard:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.hlcard .hl-icon {
  width: 50px;
  height: 50px;
  background: rgba(1, 125, 3, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--theme-color);
  margin-bottom: 16px;
}

.hlcard .hl-title {
  font-family: var(--title-font);
  font-size: 17px;
  font-weight: 700;
  color: var(--title-color);
  margin-bottom: 8px;
}

.hlcard .hl-text {
  font-family: var(--body-font);
  font-size: 14px;
  color: var(--body-color);
  line-height: 1.7;
  margin: 0;
}

/* ── Discover Section ── */
.discover-section {
  padding: 100px 0;
  background: linear-gradient(
    180deg,
    var(--smoke-color2) 0%,
    var(--white-color) 100%
  );
}

.discover-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 10px;
}

.ditem {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white-color);
  border-radius: 14px;
  padding: 20px 22px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.ditem:hover {
  box-shadow: 0 8px 30px rgba(1, 125, 3, 0.12);
  transform: translateY(-3px);
}

.ditem .di-dot {
  min-width: 36px;
  height: 36px;
  background: var(--theme-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.ditem p {
  font-family: var(--body-font);
  font-size: 15px;
  color: var(--title-color);
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
}

/* ── Who Should Read ── */
.who-section {
  padding: 100px 0;
  background: var(--white-color);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 10px;
}

.acard {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--smoke-color2);
  border-radius: 20px;
  padding: 28px 24px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.acard:hover {
  border-color: var(--theme-color);
  background: rgba(1, 125, 3, 0.04);
  transform: translateY(-3px);
}

.acard .ac-icon {
  min-width: 60px;
  height: 60px;
  background: var(--white-color);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--theme-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
  flex-shrink: 0;
}

.acard .ac-title {
  font-family: var(--title-font);
  font-size: 17px;
  font-weight: 700;
  color: var(--title-color);
  margin: 0 0 5px;
}

.acard .ac-desc {
  font-family: var(--body-font);
  font-size: 14px;
  color: var(--body-color);
  margin: 0;
  line-height: 1.6;
}

/* ── Bottom CTA ── */
.book-cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #012601 0%, #017d03 60%, #025902 100%);
  position: relative;
  overflow: hidden;
}

.book-cta-section::before {
  content: "";
  position: absolute;
  top: -150px;
  left: -150px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.book-cta-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 156, 0, 0.08);
  pointer-events: none;
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-eyebrow {
  display: inline-block;
  background: rgba(255, 156, 0, 0.2);
  color: var(--theme-color2);
  font-family: var(--body-font);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 7px 20px;
  border-radius: 30px;
  border: 1px solid rgba(255, 156, 0, 0.3);
  margin-bottom: 24px;
}

.cta-main-title {
  font-family: var(--title-font);
  font-size: 52px;
  font-weight: 800;
  color: white;
  line-height: 1.15;
  margin-bottom: 20px;
}

.cta-main-title span {
  color: var(--theme-color2);
}

.cta-sub-text {
  font-family: var(--body-font);
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.btn-amazon-lg {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #ff9900;
  color: #111 !important;
  font-family: var(--title-font);
  font-size: 17px;
  font-weight: 700;
  padding: 20px 44px;
  border-radius: 50px;
  border: none;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(255, 153, 0, 0.45);
}

.btn-amazon-lg:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 44px rgba(255, 153, 0, 0.6);
  color: #111 !important;
}

.cta-small-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  font-family: var(--body-font);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.cta-small-note i {
  color: var(--theme-color2);
}

.cta-book-thumb {
  max-width: 180px;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  display: block;
}

.cta-book-thumb-ph {
  max-width: 180px;
  min-height: 250px;
  border-radius: 10px;
  background: linear-gradient(160deg, #1a3a1a, #017d03, #ff9c00);
  margin: 0 auto 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--title-font);
  font-size: 22px;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .book-hero-section {
    padding: 60px 0 70px;
  }

  .book-main-title {
    font-size: 40px;
  }

  .book-cover-wrap {
    margin-bottom: 40px;
  }

  .highlights-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-book-card {
    padding: 40px 30px;
  }

  .discover-grid {
    grid-template-columns: 1fr;
  }

  .cta-main-title {
    font-size: 38px;
  }
}

@media (max-width: 767px) {
  .book-main-title {
    font-size: 34px;
  }

  .highlights-row {
    grid-template-columns: 1fr;
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }

  .about-book-section,
  .discover-section,
  .who-section,
  .book-cta-section {
    padding: 70px 0;
  }

  .cta-main-title {
    font-size: 30px;
  }

  .about-book-card {
    padding: 30px 20px;
  }

  .about-book-card::after {
    display: none;
  }
}

@media (max-width: 575px) {
  .book-main-title {
    font-size: 28px;
  }

  .book-hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-amazon-lg {
    padding: 16px 30px;
    font-size: 15px;
  }

  .cta-main-title {
    font-size: 26px;
  }
}
