/* ============================================================
   THE BOOK OF INNER LAW — Global Styles
   ============================================================ */

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

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

body {
  background-color: #060301;
  color: #c4c2c2;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

/* ============================================================
   UTILITY / CONTAINERS
   ============================================================ */

.container {
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn-order {
  display: inline-block;
  background: linear-gradient(84deg, #b14401, #e69a08);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 20px 35px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}

.btn-order:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 40px rgba(182, 74, 28, 0.55);
}

/* ============================================================
   FADE-IN ANIMATIONS
   ============================================================ */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeInUp 0.9s ease forwards;
}

.fade-in-delay {
  animation-delay: 0.3s;
}

.fade-in-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   HEADER
   ============================================================ */

#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: transparent;
  border-bottom: 1px solid rgba(201, 186, 186, 0.15);
  transition: background 0.3s ease;
}

#site-header.scrolled {
  background-color: #060301;
}

.header-inner {
  max-width: 1230px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.header-logo {
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  color: #fff;
}

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

.nav-link {
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #c0c0c2;
  transition: all 0.2s ease;
  background-image: none;
  -webkit-text-fill-color: currentColor;
}

.nav-link:hover {
  background-image: linear-gradient(55deg, #cc4c16, #ffce20);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Nav ORDER NOW — gradient border, dark interior */
.nav-cta {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 10px 22px;
  border-radius: 100px;
  background: linear-gradient(#060301, #060301) padding-box,
              linear-gradient(55deg, #b64a1c, #f7c40d) border-box;
  border: 1.5px solid transparent;
  color: #fff;
  -webkit-text-fill-color: #fff;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.nav-cta:hover {
  background: linear-gradient(55deg, #b64a1c, #f7c40d) padding-box,
              linear-gradient(55deg, #b64a1c, #f7c40d) border-box;
  box-shadow: 0 4px 24px rgba(182, 74, 28, 0.45);
  transform: none;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: #060301;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.mobile-nav-link {
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}

.mobile-order {
  margin-top: 12px;
  padding: 18px 40px;
}

/* ============================================================
   SECTION 1 — HERO
   ============================================================ */

.section-hero {
  position: relative;
  width: 100%;
  background: url('../assets/66cf7b9b388a735ce6b7810a_Stars_BG.jpg') 50% / cover no-repeat;
  padding-bottom: 200px;
  overflow: hidden;
}

.home-hero-big-wrapper {
  padding-top: 140px;
  padding-left: 15px;
  padding-right: 15px;
  max-width: 1230px;
  margin: 0 auto;
}

/* Moon centered — explicit height so absolute title has a reliable reference */
.hero-moon-center {
  position: relative;
  display: flex;
  justify-content: center;
  height: 624px;
}

/* Moon circle — eclipse image as background, positioning parent for title */
.hero-main-circle {
  width: 624px;
  height: 624px;
  border-radius: 50%;
  background-image: url('../assets/66cf7ecc65996e3899e81a05_Eclipse_BG.png');
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  will-change: transform;
  transition: transform 0.1s ease-out;
  overflow: visible;
}

/* Title — absolute child inside the moon, dead-centered */
.book-title-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 11;
  width: 100%;
  text-align: center;
  white-space: nowrap;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  pointer-events: none;
  animation: titleFade 0.9s ease forwards;
}

@keyframes titleFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.book-title-text .small {
  display: block;
  font-size: 24px;
  letter-spacing: 12px;
  font-weight: 700;
  margin-left: 0;
}

.book-title-text .large {
  display: block;
  font-size: 90px;
  letter-spacing: 6px;
  font-weight: 800;
  margin-left: 0;
  line-height: 0.92;
}

/* Below moon: subtitle left, CTA right */
.home-heading-wrapper {
  position: relative;
  z-index: 111;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: -170px;
}

.heading {
  font-size: 30px;
  font-weight: 500;
  max-width: 500px;
  margin-left: 10px;
  color: #fff;
  line-height: 1.3;
}

.cta-hero {
  font-size: 17px;
  line-height: 26px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
}

.hero-cta-tagline {
  color: #c4c2c2;
  font-weight: 300;
  text-align: right;
}

/* ============================================================
   TWO-COLUMN LAYOUT (shared)
   ============================================================ */

.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.col-text {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section-heading {
  font-weight: 700;
  font-size: 36px;
  line-height: 1.2;
  color: #fff;
  letter-spacing: 0.01em;
}

.section-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section-body p {
  font-weight: 300;
  font-size: 1rem;
  color: #c4c2c2;
  line-height: 1.75;
}

.col-media {
  width: 100%;
}

/* ============================================================
   SECTION 2 — PRODUCT / PURCHASE
   ============================================================ */

.section-product {
  background: #060301;
  padding: 100px 0;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: flex-start;
}

/* Gallery */
.product-gallery {
  position: sticky;
  top: 100px;
}

.gallery-main {
  width: 100%;
  position: relative;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
}

.gallery-main-inner {
  width: 100%;
  position: relative;
}

.gallery-item {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.gallery-item.active {
  opacity: 1;
  position: relative;
  pointer-events: auto;
}

.gallery-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  border: none;
  padding: 0;
  margin: 0;
  background: none;
  border-radius: 8px;
}

.gallery-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.gallery-thumb {
  flex: 1;
  min-width: 0;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.25s ease, opacity 0.25s ease;
  opacity: 0.55;
  background: none;
  padding: 0;
  margin: 0;
}

.gallery-thumb.active {
  border-color: #c56428;
  opacity: 1;
}

.gallery-thumb img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  pointer-events: none;
  border: none;
  background: none;
  border-radius: 8px;
}

/* Product info */
.product-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-top-review {
  border-left: 2px solid rgba(197, 100, 40, 0.45);
  padding-left: 14px;
  margin-bottom: 4px;
}

.product-top-review p {
  font-style: italic;
  font-size: 14px;
  color: #c4c2c2;
  line-height: 1.55;
}

.product-top-review footer {
  margin-top: 6px;
  font-size: 13px;
  color: #a0a0a0;
  font-style: normal;
}

.product-top-review strong {
  color: #fff;
}

.product-title {
  font-weight: 700;
  font-size: 32px;
  color: #fff;
  letter-spacing: 0.01em;
  margin-bottom: 5px;
}

.product-author {
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  margin-top: -7px;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stars {
  color: #e69a08;
  font-size: 14px;
  letter-spacing: 2px;
}

.half-star {
  opacity: 1;
}

.rating-count {
  font-size: 14px;
  color: #888;
}

.product-price {
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  margin-top: -2px;
}

.product-desc-intro {
  font-weight: 500;
  font-size: 15px;
  color: #ddd;
  line-height: 1.5;
  margin-top: 4px;
  margin-bottom: 10px;
}

.product-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}

.product-checklist li {
  font-size: 15px;
  color: #c4c2c2;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}

.check {
  color: #c56428;
  font-weight: 700;
  flex-shrink: 0;
}

/* Edition selector */
.edition-selector {
  padding-top: 22px;
}

.edition-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.edition-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.12);
}

.edition-label {
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #aaa;
  white-space: nowrap;
}

.edition-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.edition-card {
  display: block;
  cursor: pointer;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #0d0905;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  padding: 12px 14px;
}

.edition-card input[type="radio"] {
  display: none;
}

.edition-card.selected {
  border-color: #c56428;
  box-shadow: 0 0 18px rgba(197, 100, 40, 0.2);
}

.edition-card-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.edition-card-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.edition-radio-indicator {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  flex-shrink: 0;
  transition: border-color 0.2s ease;
  position: relative;
}

.edition-radio-indicator::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: #c56428;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.edition-card.selected .edition-radio-indicator {
  border-color: #c56428;
}

.edition-card.selected .edition-radio-indicator::after {
  opacity: 1;
}

.edition-name {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: #fff;
}

.edition-sub {
  display: block;
  font-size: 0.78rem;
  color: #888;
  margin-top: 2px;
}

.edition-price {
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.price-original {
  color: #888;
  text-decoration: line-through;
  font-weight: 400;
  font-size: 0.85rem;
}

/* Order button full width */
.btn-order-full {
  display: block;
  width: 100%;
  text-align: center;
}

/* Trust indicators */
.trust-indicators {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.78rem;
  font-weight: 500;
  color: #888;
  letter-spacing: 0.04em;
}

.trust-divider {
  color: rgba(255,255,255,0.2);
}

/* FAQ */
.faq-list {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 10px;
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 0;
  background: none;
  border: none;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  text-align: left;
  cursor: pointer;
  gap: 12px;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: #c56428;
}

.faq-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #c56428;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding-bottom: 18px;
  font-size: 0.88rem;
  color: #a0a0a0;
  line-height: 1.75;
}

/* ============================================================
   SECTION 3 — MANIFESTATION. MADE PRACTICAL.
   ============================================================ */

.section-manifestion {
  background: #0d0905;
  padding: 110px 0;
}

.video-container {
  width: 100%;
  height: 450px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ============================================================
   SECTION 4 — WHAT SHIFTS
   ============================================================ */

.section-what-shifts {
  background: #060301;
  padding: 110px 0;
}

.image-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  overflow: hidden;
  background: #111;
}

.image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-what-shifts .image-placeholder {
  width: 100%;
  aspect-ratio: unset;
  overflow: visible;
  background: none;
  border-radius: 0;
}

.section-what-shifts .image-placeholder img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 8px;
}


/* ============================================================
   SECTION 5 — ENDORSEMENTS
   ============================================================ */

.section-endorsements {
  position: relative;
  background: url('../assets/66cf7b9b388a735ce6b7810a_Stars_BG.jpg') 50% / cover no-repeat;
  padding: 80px 0 100px;
  overflow: hidden;
}

/* 1230px eclipse circle behind all review content */
.endorsements-eclipse {
  position: absolute;
  width: 1230px;
  height: 1230px;
  border-radius: 50%;
  background-image: url('../assets/66cf7ecc65996e3899e81a05_Eclipse_BG.png');
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

.endorsements-title {
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

/* Carousel */
.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 2;
}

.carousel-track-outer {
  flex: 1;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card {
  flex: 0 0 calc(50% - 10px);
  background-color: rgba(6, 3, 1, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  padding: 40px 60px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review-quote {
  font-style: italic;
  font-weight: 300;
  font-size: 15px;
  color: #c4c2c2;
  line-height: 26px;
}

.review-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.review-name {
  font-weight: 500;
  font-size: 16px;
  color: #c56428;
}

.review-desc {
  font-size: 0.8rem;
  color: #c56428;
  opacity: 0.7;
  font-weight: 400;
}

/* Carousel buttons */
.carousel-btn {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.carousel-btn:hover {
  background: linear-gradient(54deg, #b64a1c, #f7c40d);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(182, 74, 28, 0.45);
}

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
  position: relative;
  z-index: 2;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.carousel-dot.active {
  background: #c56428;
  transform: scale(1.25);
}

/* ============================================================
   SECTION 6 — ABOUT THE AUTHOR
   ============================================================ */

.section-author {
  background: #060301;
  padding: 110px 0;
  border-top: 1px solid rgba(201, 186, 186, 0.08);
}

.author-block {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-label-title {
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #aaa;
}

.author-name {
  font-weight: 600;
  font-size: 1.8rem;
  color: #c56428;
  letter-spacing: 0.03em;
}

.author-bio {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.author-bio p {
  font-weight: 300;
  font-size: 0.97rem;
  color: #c4c2c2;
  line-height: 1.8;
  text-align: left;
}

/* ============================================================
   SECTION 7 — SUBSCRIBE + FOOTER
   ============================================================ */

.section-subscribe {
  background: #060301;
  padding: 80px 0 0;
}

.subscribe-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.subscribe-form {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.subscribe-input {
  background: #0d0905;
  border: 1px solid rgba(201, 186, 186, 0.2);
  border-radius: 100px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  padding: 14px 24px;
  width: 320px;
  outline: none;
  transition: border-color 0.25s ease;
}

.subscribe-input::placeholder {
  color: #666;
}

.subscribe-input:focus {
  border-color: rgba(197, 100, 40, 0.5);
}

.subscribe-btn {
  font-size: 0.82rem;
  padding: 14px 28px;
}

.subscribe-success {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: #c56428;
  margin-top: 10px;
  display: none;
}

.subscribe-success.visible {
  display: block;
}

.subscribe-error {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  color: #ff6b6b;
  margin-top: 8px;
  display: none;
}

.subscribe-error.visible {
  display: block;
}

/* Social icons */
.social-icons {
  display: flex;
  gap: 14px;
}

.social-icon {
  width: 50px;
  height: 50px;
  border-radius: 7px;
  background-color: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.social-icon svg {
  width: 18px;
  height: 18px;
}

.social-icon:hover {
  background: linear-gradient(53deg, #b64a1c, #f7c40d);
  box-shadow: 0 4px 18px rgba(182, 74, 28, 0.4);
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(201, 186, 186, 0.15);
  padding: 100px 20px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  margin-top: 70px;
}

.footer-moon-wrap {
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-main-circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background-image: url('../assets/66cf7ecc65996e3899e81a05_Eclipse_BG.png');
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
}

.footer-brand {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #fff;
  margin-top: 8px;
}

.footer-author-credit {
  font-size: 12px;
  color: #c4c2c2;
  letter-spacing: 1px;
  margin-top: -8px;
}

.footer-copy {
  font-size: 11px;
  color: #c4c2c2;
  letter-spacing: 0.5px;
}

.currency-switcher {
  display: flex;
  align-items: center;
  gap: 10px;
}

.currency-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c4c2c2;
  font-family: 'Montserrat', sans-serif;
}

.currency-select {
  background: #0d0805;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  padding: 8px 34px 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23ffffff' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  transition: border-color 0.2s ease;
}

.currency-select:hover,
.currency-select:focus {
  border-color: rgba(255, 255, 255, 0.35);
}

.currency-select option {
  background: #0d0805;
  color: #fff;
}

/* ============================================================
   RESPONSIVE — TABLET (1024px)
   ============================================================ */

@media (max-width: 1024px) {
  .product-grid {
    gap: 50px;
  }

  .two-col-grid {
    gap: 50px;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (991px)
   ============================================================ */

@media (max-width: 991px) {

  .container {
    padding: 0 24px;
  }

  /* Header */
  .header-inner {
    padding: 16px 24px;
  }

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

  .header-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Hero */
  .section-hero {
    padding-bottom: 100px;
  }

  .home-hero-big-wrapper {
    padding-top: 80px;
  }

  .hero-moon-center {
    height: 500px;
  }

  .hero-main-circle {
    width: 500px;
    height: 500px;
  }

  .book-title-text .small {
    font-size: 16px;
    letter-spacing: 10px;
  }

  .book-title-text .large {
    font-size: 52px;
    letter-spacing: 4px;
  }

  /* Hero — vertical stack, fully centered */
  .home-heading-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
    margin-top: 40px;
  }

  .heading {
    font-size: 20px;
    max-width: 90%;
    margin-left: 0;
    padding: 0 20px;
    text-align: center;
  }

  .cta-hero {
    align-items: center;
    max-width: 100%;
    gap: 0;
    margin-top: 30px;
  }

  .hero-cta-tagline {
    font-size: 16px;
    text-align: center;
  }

  .cta-hero .btn-order {
    display: block;
    max-width: 280px;
    width: 100%;
    margin: 30px auto 0;
  }

  /* Product section */
  .product-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .product-gallery {
    position: static;
  }

  /* Two col */
  .two-col-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .reverse-mobile .col-media {
    order: -1;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (767px)
   ============================================================ */

@media (max-width: 767px) {

  /* Reviews */
  .review-card {
    flex: 0 0 100%;
    padding: 30px;
  }

  .endorsements-eclipse {
    width: 800px;
    height: 800px;
  }

  /* Author */
  .author-bio p {
    text-align: center;
  }

  /* Subscribe */
  .subscribe-row {
    flex-direction: column;
    gap: 20px;
  }

  .subscribe-form {
    flex-direction: column;
    width: 100%;
  }

  .subscribe-input {
    width: 100%;
  }

  .subscribe-btn {
    width: 100%;
    text-align: center;
  }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (479px)
   ============================================================ */

@media (max-width: 479px) {
  .section-manifestion,
  .section-what-shifts,
  .section-author {
    padding: 60px 15px;
  }

  .hero-moon-center {
    height: 340px;
  }

  .hero-main-circle {
    width: 340px;
    height: 340px;
  }

  .book-title-text .large {
    font-size: 44px;
    letter-spacing: 3px;
  }

  .book-title-text .small {
    font-size: 13px;
    letter-spacing: 8px;
  }

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

  .product-price {
    font-size: 22px;
  }
}

/* ============================================================
   DISCOUNT POPUP
   ============================================================ */

.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

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

.popup-modal {
  position: relative;
  max-width: 500px;
  min-height: 450px;
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-image: url('../assets/46544e20e1934047e53ee38c1a08c6a7.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-hidden {
  display: none !important;
}

/* Dark overlay on top of image */
.popup-modal::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

/* All content sits above the overlay */
.popup-modal > * {
  position: relative;
  z-index: 1;
}

#popup-form-state,
.popup-success {
  width: 100%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.popup-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s ease;
  z-index: 2;
}

.popup-close:hover {
  opacity: 1;
}

.popup-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 28px;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.popup-sub {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  text-align: center;
  margin-top: 15px;
  opacity: 0.9;
}

.popup-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.popup-error {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  color: #ff6b6b;
  min-height: 16px;
  margin-top: -4px;
  text-align: left;
  width: 100%;
}

.popup-input {
  width: 100%;
  padding: 15px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 8px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease;
}

.popup-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.popup-input:focus {
  border-color: #fff;
}

.popup-submit {
  width: 100%;
  padding: 15px;
  background: #fff;
  color: #060301;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.popup-submit:hover {
  background: #e0e0e0;
}

/* Success state */
.popup-success {
  text-align: center;
}

.popup-success-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 1px;
}

.popup-code-box {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: 4px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  padding: 18px 32px;
  margin-top: 20px;
  text-align: center;
}

.popup-copy-btn {
  margin-top: 18px;
  padding: 12px 32px;
  background: #fff;
  color: #060301;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease;
  min-width: 150px;
}

.popup-copy-btn:hover {
  background: #e0e0e0;
}

.popup-success-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 14px;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .popup-modal {
    width: 90%;
    min-height: 0;
    background-position: 60% center;
  }

  #popup-form-state,
  .popup-success {
    padding: 25px;
  }

  .popup-title {
    font-size: 22px;
    line-height: 1.2;
  }

  .popup-code-box {
    font-size: 28px;
    padding: 14px 24px;
  }
}
