/* ==========================================================================
   Royal Wealth Theme - Main CSS v2.0
   Single-page sales letter with inline WooCommerce checkout
   Design: Dark luxury theme (#0D0D0D + #C6A94A gold)
   ========================================================================== */

/* ---------- CSS VARIABLES ---------- */
:root {
  --gold: #c6a94a;
  --gold-light: #d4bc6a;
  --gold-dark: #a68a2e;
  --bg-primary: #0d0d0d;
  --bg-secondary: #141414;
  --bg-tertiary: #1a1a1a;
  --bg-card: #1e1e1e;
  --text-primary: #e8e4dc;
  --text-secondary: #9a9590;
  --text-muted: #6b6560;
  --white: #ffffff;
  --border-color: rgba(198, 169, 74, 0.15);
  --border-light: rgba(255, 255, 255, 0.08);
  --font-serif: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-elegant: "Cormorant Garamond", Georgia, serif;
  --max-width: 1200px;
  --header-height: 72px;
  --transition: all 0.3s ease;
  --shadow-gold: 0 4px 30px rgba(198, 169, 74, 0.15);
  --shadow-dark: 0 20px 60px rgba(0, 0, 0, 0.5);
  --input-bg: #1a1a1a;
  --input-border: rgba(255, 255, 255, 0.12);
  --input-focus: rgba(198, 169, 74, 0.4);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--gold-light);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  font-weight: 400;
}

.serif {
  font-family: var(--font-serif);
}

.center {
  text-align: center;
}

/* ---------- UTILITY ---------- */
.section-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}

.gold-label {
  color: var(--gold);
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--text-primary);
  margin-bottom: 20px;
  font-weight: 500;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin-bottom: 50px;
  line-height: 1.8;
}

.section-subtitle.center {
  margin-left: auto;
  margin-right: auto;
}

.section-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.875rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 12px;
  opacity: 0.7;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  border-radius: 2px;
}

.btn-gold {
  background-color: var(--gold);
  color: var(--bg-primary);
}

.btn-gold:hover {
  background-color: var(--gold-light);
  color: var(--bg-primary);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn-large {
  padding: 20px 50px;
  font-size: 0.9rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: var(--transition);
}

.text-link.gold {
  color: var(--gold);
}

.text-link:hover {
  gap: 16px;
  color: var(--gold-light);
}

/* ---------- HEADER ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(13, 13, 13, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.header-nav {
  display: none;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition);
}

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

.nav-cta {
  background: var(--gold);
  color: var(--bg-primary) !important;
  padding: 10px 24px;
  border-radius: 2px;
  font-weight: 600;
}

.nav-cta:hover {
  background: var(--gold-light);
  color: var(--bg-primary) !important;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-cart {
  color: var(--gold);
  font-size: 1.1rem;
  padding: 8px;
}

.header-cart:hover {
  color: var(--gold-light);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger-line {
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
}

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

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

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: var(--bg-secondary);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
  border-bottom: 1px solid var(--border-light);
  z-index: 999;
}

.mobile-menu.open {
  max-height: 400px;
  padding: 24px;
}

.mobile-link {
  display: block;
  padding: 14px 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid var(--border-light);
}

.mobile-link:hover {
  color: var(--gold);
}

.mobile-cta {
  color: var(--gold) !important;
  border-bottom: none;
  margin-top: 8px;
}

/* ---------- HERO SECTION ---------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-height) + 40px) 24px 60px;
  background: var(--bg-primary);
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 30% 20%,
      rgba(198, 169, 74, 0.06) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 70% 80%,
      rgba(198, 169, 74, 0.04) 0%,
      transparent 60%
    );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  animation: fadeInUp 1s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(198, 169, 74, 0.1);
  border: 1px solid var(--border-color);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 20px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.7;
  font-family: var(--font-elegant);
  font-size: 1.2rem;
}

.hero-book-image {
  max-width: 420px;
  margin: 0 auto 32px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-dark);
  transition: transform 0.5s ease;
}

.hero-book-image:hover {
  transform: scale(1.02);
}

.hero-book-image img {
  width: 100%;
  border-radius: 6px;
}

.hero-pricing {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-price-now {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
}

.hero-price-was {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.hero-discount {
  background: rgba(198, 169, 74, 0.15);
  color: var(--gold);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.hero-cta {
  margin-bottom: 16px;
}

.hero-trust {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.hero-trust i {
  margin-right: 4px;
  color: var(--gold-dark);
}

/* Hero book preview image — floating + hover lift */
.hero-image {
  display: block;
  max-width: 500px;
  width: 100%;
  margin: 28px auto 0;
  border-radius: 10px;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(198, 169, 74, 0.12);
  animation: heroFloat 4s ease-in-out infinite;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  will-change: transform;
}

.hero-image:hover {
  transform: translateY(-12px);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.7),
    0 0 80px rgba(198, 169, 74, 0.25);
  animation-play-state: paused;
}

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

/* ---------- NARRATIVE SECTION ---------- */
.narrative-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.narrative-content {
  max-width: 720px;
  margin: 0 auto;
}

.narrative-content .section-title {
  font-family: var(--font-serif);
  font-style: italic;
}

.narrative-text {
  position: relative;
}

.drop-cap {
  font-family: var(--font-serif);
  float: left;
  font-size: 5rem;
  line-height: 0.75;
  padding-right: 12px;
  padding-top: 8px;
  color: var(--gold);
  font-weight: 600;
}

.narrative-text p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  text-align: justify;
  font-size: 0.95rem;
  line-height: 1.85;
}

.narrative-text strong {
  color: var(--text-primary);
}

.narrative-highlight {
  font-family: var(--font-elegant) !important;
  font-size: 1.4rem !important;
  font-style: italic;
  color: var(--gold) !important;
  text-align: center !important;
  margin-top: 32px !important;
  margin-bottom: 0 !important;
}

/* ---------- COLLECTION SECTION ---------- */
.collection-section {
  padding: 100px 0;
  background: var(--bg-primary);
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 36px 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: var(--border-color);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(198, 169, 74, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 1.2rem;
}

.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ---------- TESTIMONIALS SECTION ---------- */
.testimonials-section {
  padding: 100px 24px;
  background: linear-gradient(
    135deg,
    var(--bg-tertiary) 0%,
    var(--bg-primary) 100%
  );
  text-align: center;
  position: relative;
  overflow: hidden;
}

.testimonials-slider {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  min-height: 280px;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.testimonial-slide.active {
  opacity: 1;
  position: relative;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--gold);
  line-height: 0.5;
  opacity: 0.6;
}

.testimonial-text {
  font-family: var(--font-elegant);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.7;
  margin: 20px 0;
}

.testimonial-author {
  margin-top: 24px;
}

.author-name {
  display: block;
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  margin-bottom: 6px;
}

.author-title {
  display: block;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
}

.testimonial-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 30px;
}

.testimonial-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

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

/* ---------- AUTHOR SECTION ---------- */
.author-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.author-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 60px 40px;
  max-width: 800px;
  margin: 0 auto;
}

.author-card-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 32px;
  font-weight: 600;
}

.author-quote {
  font-family: var(--font-elegant);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
  padding-left: 20px;
  border-left: 2px solid var(--border-color);
}

.author-signature {
  max-width: 160px;
  margin: 32px 0;
  opacity: 0.8;
}

.author-stats {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.stat-icon {
  color: var(--gold);
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.stat-content h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.stat-content p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ---------- PURCHASE / CHECKOUT SECTION ---------- */
.purchase-section {
  padding: 100px 0;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-light);
}

.purchase-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: start;
}

.purchase-info .featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(198, 169, 74, 0.1);
  border: 1px solid var(--border-color);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.purchase-info .featured-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}

.purchase-info .featured-pricing {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 24px;
}

.purchase-info .price-now {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
}

.purchase-info .price-was {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.purchase-info .featured-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

.purchase-benefits {
  list-style: none;
  margin-bottom: 28px;
}

.purchase-benefits li {
  color: var(--text-secondary);
  font-size: 0.92rem;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.purchase-benefits li i {
  color: var(--gold);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.purchase-info .featured-urgency {
  color: var(--gold);
  font-family: var(--font-elegant);
  font-size: 1.1rem;
  font-style: italic;
}

/* ---------- CHECKOUT FORM WRAPPER ---------- */
.checkout-form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.checkout-header {
  background: linear-gradient(
    135deg,
    rgba(198, 169, 74, 0.15) 0%,
    rgba(198, 169, 74, 0.05) 100%
  );
  padding: 24px 32px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.checkout-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
}

.checkout-total-display {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.checkout-total-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.checkout-total-amount {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}

.checkout-form-container {
  padding: 32px;
}

.checkout-trust-badges {
  display: flex;
  gap: 20px;
  justify-content: center;
  padding: 16px 32px 24px;
  border-top: 1px solid var(--border-light);
}

.checkout-trust-badges span {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.checkout-trust-badges i {
  color: var(--gold-dark);
}

/* ---------- WOOCOMMERCE CHECKOUT FORM OVERRIDES ---------- */
.woocommerce-checkout,
.woocommerce {
  color: var(--text-primary);
}

/* Remove WooCommerce notices styling that clashes */
.woocommerce-checkout .woocommerce-info,
.woocommerce-checkout .woocommerce-message {
  background: rgba(198, 169, 74, 0.1);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 0.88rem;
}

.woocommerce-checkout .woocommerce-info::before,
.woocommerce-checkout .woocommerce-message::before {
  color: var(--gold);
}

.woocommerce-checkout .woocommerce-error {
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  color: #ff6b6b;
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 20px;
  list-style: none;
  font-size: 0.88rem;
}

/* Form rows */
.woocommerce-checkout .form-row {
  margin-bottom: 20px;
}

.woocommerce-checkout .form-row-first {
  width: 48%;
  float: left;
}

.woocommerce-checkout .form-row-last {
  width: 48%;
  float: right;
}

.woocommerce-checkout .form-row-wide {
  width: 100%;
  clear: both;
}

.woocommerce-checkout .form-row::after {
  content: "";
  display: table;
  clear: both;
}

/* Labels */
.woocommerce-checkout label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.woocommerce-checkout label .required {
  color: var(--gold);
}

.woocommerce-checkout label .optional {
  color: var(--text-muted);
  font-size: 0.75rem;
  font-style: italic;
  text-transform: none;
}

/* Inputs & Selects */
.woocommerce-checkout input[type="text"],
.woocommerce-checkout input[type="email"],
.woocommerce-checkout input[type="tel"],
.woocommerce-checkout input[type="password"],
.woocommerce-checkout input[type="number"],
.woocommerce-checkout select,
.woocommerce-checkout textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: 6px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.woocommerce-checkout input:focus,
.woocommerce-checkout select:focus,
.woocommerce-checkout textarea:focus {
  border-color: var(--input-focus);
  box-shadow: 0 0 0 3px rgba(198, 169, 74, 0.1);
}

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

.woocommerce-checkout select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239A9590' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* Select2 overrides (WooCommerce uses select2) */
.woocommerce-checkout .select2-container .select2-selection--single {
  background: var(--input-bg) !important;
  border: 1px solid var(--input-border) !important;
  border-radius: 6px !important;
  height: 48px !important;
  padding: 10px 16px !important;
}

.woocommerce-checkout
  .select2-container
  .select2-selection--single
  .select2-selection__rendered {
  color: var(--text-primary) !important;
  line-height: 26px !important;
  padding: 0 !important;
}

.woocommerce-checkout
  .select2-container
  .select2-selection--single
  .select2-selection__arrow {
  top: 12px !important;
  right: 12px !important;
}

/* Order Review Table */
.woocommerce-checkout #order_review,
.woocommerce-checkout #order_review_heading {
  width: 100%;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table th,
.woocommerce-checkout .woocommerce-checkout-review-order-table td {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.woocommerce-checkout .woocommerce-checkout-review-order-table th {
  text-align: left;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table td {
  text-align: right;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table .product-name {
  text-align: left;
  color: var(--text-primary);
  font-weight: 500;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table .order-total td,
.woocommerce-checkout .woocommerce-checkout-review-order-table .order-total th {
  border-bottom: none;
  font-size: 1rem;
  color: var(--gold);
  font-weight: 700;
  padding-top: 16px;
}

.woocommerce-checkout
  .woocommerce-checkout-review-order-table
  .order-total
  .woocommerce-Price-amount {
  font-family: var(--font-serif);
  font-size: 1.3rem;
}

/* Hide cart subtotal row (only show total) */
.woocommerce-checkout .woocommerce-checkout-review-order-table .cart-subtotal {
  display: none;
}

/* Payment Methods */
.woocommerce-checkout #payment {
  background: transparent;
  border-radius: 0;
}

.woocommerce-checkout #payment ul.payment_methods {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  border-bottom: 1px solid var(--border-light);
}

.woocommerce-checkout #payment .payment_method {
  padding: 16px 0;
  border-top: 1px solid var(--border-light);
}

.woocommerce-checkout #payment .payment_method:first-child {
  border-top: none;
}

.woocommerce-checkout #payment .payment_method label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-primary);
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  margin-bottom: 0;
}

.woocommerce-checkout #payment .payment_method label img {
  max-height: 24px;
  display: inline-block;
}

.woocommerce-checkout #payment .payment_method input[type="radio"] {
  accent-color: var(--gold);
  width: 16px;
  height: 16px;
}

.woocommerce-checkout #payment .payment_box {
  background: rgba(198, 169, 74, 0.05);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 16px;
  margin-top: 12px;
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* Stripe-specific styles */
.woocommerce-checkout .wc-stripe-elements-field,
.woocommerce-checkout .stripe-card-group,
.woocommerce-checkout #stripe-card-element,
.woocommerce-checkout #stripe-exp-element,
.woocommerce-checkout #stripe-cvc-element,
.woocommerce-checkout .wc-stripe-iban-element-field {
  background: var(--input-bg) !important;
  border: 1px solid var(--input-border) !important;
  border-radius: 6px !important;
  padding: 14px 16px !important;
  transition: var(--transition);
}

.woocommerce-checkout .wc-stripe-elements-field:focus-within {
  border-color: var(--input-focus) !important;
  box-shadow: 0 0 0 3px rgba(198, 169, 74, 0.1) !important;
}

/* Stripe inline form elements */
.woocommerce-checkout .wc-stripe-elements-field iframe {
  min-height: 20px;
}

/* Payment request button (Apple Pay / Google Pay) */
.woocommerce-checkout #wc-stripe-payment-request-wrapper {
  margin-bottom: 20px;
}

/* Place Order Button */
.woocommerce-checkout #place_order {
  width: 100%;
  padding: 18px 40px;
  background: var(--gold);
  color: var(--bg-primary);
  border: none;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 8px;
}

/* Legal checkboxes (GDPR + Digital Waiver) */
.royal-legal-checkboxes {
  margin: 16px 0 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
}

.royal-legal-checkbox {
  margin-bottom: 12px !important;
}

.royal-legal-checkbox:last-child {
  margin-bottom: 0 !important;
}

.royal-legal-checkbox label {
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px;
  font-size: 0.78rem !important;
  color: var(--text-secondary) !important;
  line-height: 1.55 !important;
  cursor: pointer;
}

.royal-legal-checkbox input[type="checkbox"] {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px;
  margin: 1px 0 0 0 !important;
  accent-color: var(--gold);
  cursor: pointer;
  background: var(--input-bg) !important;
  border: 1px solid var(--input-border) !important;
  border-radius: 3px;
  -webkit-appearance: auto;
  appearance: auto;
}

.royal-legal-checkbox label a {
  color: var(--gold) !important;
  text-decoration: underline !important;
}

.royal-legal-checkbox label em {
  font-style: italic;
  color: var(--text-muted);
}

.royal-legal-checkbox .required {
  color: var(--gold) !important;
}

.woocommerce-checkout #place_order:hover {
  background: var(--gold-light);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.woocommerce-checkout #place_order:active {
  transform: translateY(0);
}

/* Privacy policy text */
.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper {
  margin-bottom: 16px;
}

.woocommerce-checkout .woocommerce-privacy-policy-text p {
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.woocommerce-checkout .woocommerce-privacy-policy-text a {
  color: var(--gold-dark);
}

/* Hide things we don't need */
.woocommerce-checkout .woocommerce-additional-fields,
.woocommerce-checkout h3#ship-to-different-address-checkbox,
.woocommerce-checkout .woocommerce-shipping-fields {
  display: none;
}

/* WooCommerce loading overlay */
.woocommerce-checkout .blockUI.blockOverlay {
  background: rgba(13, 13, 13, 0.7) !important;
}

.woocommerce-checkout .blockUI.blockOverlay::before {
  border-color: var(--gold) transparent transparent !important;
}

/* Clearfix for form rows */
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper::after,
.woocommerce-checkout #customer_details::after {
  content: "";
  display: table;
  clear: both;
}

/* ---------- CTA SECTION ---------- */
.cta-section {
  padding: 100px 24px;
  background: linear-gradient(
    135deg,
    var(--bg-tertiary) 0%,
    var(--bg-primary) 100%
  );
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(198, 169, 74, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.cta-section .section-title {
  color: var(--gold);
  margin-bottom: 24px;
  position: relative;
}

.cta-text {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cta-text strong {
  color: var(--gold);
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
}

.footer-top {
  padding: 80px 0 50px;
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

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

.footer-grid-simple {
  grid-template-columns: 1fr;
}

.footer-brand .logo-text {
  font-size: 1.3rem;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-top: 12px;
  line-height: 1.6;
}

.footer-heading {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

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

.footer-links a:hover {
  color: var(--text-primary);
  padding-left: 4px;
}

.footer-contact {
  color: var(--text-secondary);
  font-size: 0.88rem;
  margin-bottom: 8px;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(198, 169, 74, 0.1);
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--bg-primary);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 100;
  box-shadow: 0 4px 20px rgba(198, 169, 74, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

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

/* ---------- RESPONSIVE: TABLET (768px) ---------- */
@media (min-width: 768px) {
  .header-nav {
    display: flex;
  }

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

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid-simple {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .purchase-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

  .woocommerce-checkout .form-row-first {
    width: 48%;
  }
  .woocommerce-checkout .form-row-last {
    width: 48%;
  }
}

/* ---------- RESPONSIVE: DESKTOP (1024px) ---------- */
@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .hero-book-image {
    max-width: 480px;
  }

  .author-card {
    padding: 80px 60px;
  }

  .purchase-wrapper {
    gap: 80px;
  }
}

/* ---------- RESPONSIVE: LARGE (1280px) ---------- */
@media (min-width: 1280px) {
  .hero-section {
    min-height: 100vh;
  }

  .section-container {
    padding: 0 40px;
  }
}

/* ---------- RESPONSIVE: MOBILE CHECKOUT ---------- */
@media (max-width: 767px) {
  .checkout-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 20px 24px;
  }

  .checkout-form-container {
    padding: 24px;
  }

  .checkout-trust-badges {
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 24px 20px;
  }

  .woocommerce-checkout .form-row-first,
  .woocommerce-checkout .form-row-last {
    width: 100%;
    float: none;
  }

  .hero-pricing {
    flex-wrap: wrap;
    gap: 8px;
  }

  .purchase-info .price-now {
    font-size: 2rem;
  }
}

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-dark);
}

/* ---------- SELECTION ---------- */
::selection {
  background: var(--gold);
  color: var(--bg-primary);
}

::-moz-selection {
  background: var(--gold);
  color: var(--bg-primary);
}
:root {
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --gold-dim: #8a6a20;
  --black: #0a0906;
  --off-black: #111009;
  --dark: #161410;
  --mid: #1c1812;
  --text: #f0ede6;
  --muted: #8a8070;
  --red: #c0392b;
}

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

body {
  background: var(--black);
  color: var(--text);
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── URGENCY BAR ── */
.urgency-bar {
  background: var(--red);
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  position: sticky;
  top: 0;
  z-index: 100;
}
.urgency-bar span {
  color: #fff;
}
.urgency-bar .price-old {
  text-decoration: line-through;
  opacity: 0.7;
  margin-right: 6px;
}
.urgency-bar .price-new {
  color: #ffd700;
  font-size: 15px;
}

/* ── HERO ── */
.hero {
  background: radial-gradient(
    ellipse at center,
    #1c1812 0%,
    #111009 40%,
    #0a0906 100%
  );
  padding: 30px 24px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 85% 55% at 50% 30%,
    rgba(201, 168, 76, 0.1),
    transparent 70%
  );
  pointer-events: none;
}
/* grain */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='4' height='4' viewBox='0 0 4 4' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='0' width='1' height='1' fill='%23ffffff' fill-opacity='0.015'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 16px;
  margin-bottom: 32px;
  animation: fadeDown 0.5s ease both 0.1s;
  opacity: 0;
}

/* THE SHIMMER HEADLINE — exact Playfair Display, left-to-right sweep */
.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 30px;
  background: linear-gradient(
    135deg,
    #a07830 0%,
    #e0c070 35%,
    #ffffff 50%,
    #e0c070 65%,
    #a07830 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: owShimmer 6s linear infinite;
}

@keyframes owShimmer {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

.hero h1 em {
  font-style: italic;
}
.ow-crown {
  font-size: 2.8rem;
  margin-bottom: 28px;
  display: block;
  color: #c9a84c;
  filter: drop-shadow(0 0 18px rgba(201, 168, 76, 0.9));
  animation: owCrownPulse 3s ease-in-out infinite;
}
@keyframes owCrownPulse {
  0%,
  100% {
    filter: drop-shadow(0 0 14px rgba(201, 168, 76, 0.6));
  }
  50% {
    filter: drop-shadow(0 0 35px rgba(201, 168, 76, 1));
  }
}

.hero-sub {
  font-size: clamp(14px, 2vw, 17px);
  color: #b5a98a;
  max-width: 600px;
  margin: 0 auto 36px;
  font-weight: 300;
  line-height: 1.7;
  animation: fadeUp 0.6s ease both 0.35s;
  opacity: 0;
}
.hero-sub strong {
  color: #fff;
  font-weight: 600;
}

/* AUTHOR ROW with real photo */
.author-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 36px;
  animation: fadeUp 0.6s ease both 0.45s;
  opacity: 0;
}
.author-avatar-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(201, 168, 76, 0.35);
}
.author-info {
  text-align: left;
}
.author-name {
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  font-family: "Playfair Display", serif;
}
.author-title {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

/* STATS STRIP */
.stats-strip {
  display: flex;
  justify-content: center;
  border: 1px solid rgba(201, 168, 76, 0.2);
  overflow: hidden;
  max-width: 480px;
  margin: 0 auto 40px;
  animation: fadeUp 0.6s ease both 0.5s;
  opacity: 0;
}
.stat-item {
  flex: 1;
  padding: 14px 10px;
  text-align: center;
  background: rgba(201, 168, 76, 0.04);
  border-right: 1px solid rgba(201, 168, 76, 0.15);
}
.stat-item:last-child {
  border-right: none;
}
.stat-num {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  display: block;
}
.stat-label {
  font-size: 9px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 2px;
  display: block;
}

/* CTA */
.cta-primary {
  display: inline-block;
  background: linear-gradient(135deg, #b8882a, #e8c060, #b8882a);
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 18px 20px;
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
  box-shadow: 0 6px 36px rgba(201, 168, 76, 0.4);
  cursor: pointer;
  border: none;
  width: 100%;
  max-width: 420px;
  animation: fadeUp 0.6s ease both 0.6s;
  opacity: 0;
}
.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 48px rgba(201, 168, 76, 0.55);
}
.cta-sub {
  font-size: 11px;
  color: var(--muted);
  margin-top: 10px;
  letter-spacing: 0.03em;
}

/* ── SECTIONS ── */
section {
  padding: 48px 24px;
}
.container {
  max-width: 660px;
  margin: 0 auto;
}

.section-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(26px, 5vw, 40px);
  line-height: 1.18;
  margin-bottom: 20px;
  color: #fff;
}

/* ── WHO THIS IS FOR ── */
.for-section {
  background: var(--off-black);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.for-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}
.for-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 22px;
  background: rgba(201, 168, 76, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-left: 3px solid var(--gold);
}
.for-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}
.for-title {
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  margin-bottom: 5px;
}
.for-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.transformation-box {
  margin-top: 36px;
  padding: 28px 24px;
  background: linear-gradient(
    135deg,
    rgba(201, 168, 76, 0.08),
    rgba(201, 168, 76, 0.03)
  );
  border: 1px solid rgba(201, 168, 76, 0.35);
  position: relative;
}
.transformation-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.transform-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}
.transform-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.transform-row:last-child {
  margin-bottom: 0;
}
.transform-from {
  font-size: 13px;
  color: var(--muted);
  flex: 1;
  padding: 10px 14px;
  background: rgba(192, 57, 43, 0.08);
  border-left: 2px solid var(--red);
}
.transform-arrow {
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
}
.transform-to {
  font-size: 13px;
  color: #c8c0b0;
  flex: 1;
  padding: 10px 14px;
  background: rgba(201, 168, 76, 0.07);
  border-left: 2px solid var(--gold);
  font-weight: 600;
}

/* ── AGITATE ── */
.agitate {
  background: var(--dark);
}
.pain-list {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pain-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.02);
  border-left: 2px solid var(--red);
  font-size: 14px;
  color: #c8c0b0;
  line-height: 1.55;
}
.pain-list li::before {
  content: "✕";
  color: var(--red);
  font-weight: 700;
  font-size: 12px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ── PROOF ── */
.proof-section {
  background: var(--off-black);
}
.testimonial-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}
.testimonial {
  background: rgba(201, 168, 76, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.15);
  padding: 20px;
}
.testimonial-text {
  font-size: 14px;
  color: #c8c0b0;
  line-height: 1.65;
  margin-bottom: 14px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.t-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2a2010, #4a3820);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.t-name {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}
.t-detail {
  font-size: 11px;
  color: var(--muted);
}
.stars {
  color: var(--gold);
  font-size: 13px;
  margin-bottom: 8px;
}
.proof-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 22px;
}
.proof-num-box {
  background: rgba(201, 168, 76, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.15);
  padding: 16px;
  text-align: center;
}
.proof-num-box .big {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  color: var(--gold);
  font-weight: 700;
  display: block;
}
.proof-num-box .small {
  font-size: 10px;
  color: var(--muted);
  margin-top: 4px;
  display: block;
}

/* ── MODULES ── */
.modules-section {
  background: var(--mid);
}
.module-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}
.module-item {
  display: flex;
  gap: 16px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.2s;
}
.module-item:hover {
  border-color: rgba(201, 168, 76, 0.3);
}
.module-num {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--gold-dim);
  min-width: 28px;
  line-height: 1;
  padding-top: 2px;
}
.module-title {
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  margin-bottom: 4px;
}
.module-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.55;
}

/* ── BONUSES ── */
.bonuses-section {
  background: var(--off-black);
}
.bonus-card {
  border: 1px solid rgba(201, 168, 76, 0.25);
  padding: 24px;
  margin-bottom: 14px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(201, 168, 76, 0.04);
  position: relative;
}
.bonus-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 168, 76, 0.5),
    transparent
  );
}
.bonus-icon {
  font-size: 28px;
  flex-shrink: 0;
}
.bonus-title {
  font-weight: 700;
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 5px;
  font-family: "Playfair Display", serif;
}
.bonus-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

/* BONUS VALUE — make it stand out */
.bonus-value-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 8px 14px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.4);
}
.bonus-value-badge .val-was {
  font-size: 12px;
  color: var(--muted);
  text-decoration: line-through;
}
.bonus-value-badge .val-free {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
}
.bonus-value-badge .val-today {
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ── UPSELL ACCORDION ── */
.upsell-accordion {
  margin-top: 28px;
  background: linear-gradient(
    160deg,
    rgba(30, 22, 8, 0.95),
    rgba(15, 12, 6, 0.98)
  );
  border: 1px solid rgba(201, 168, 76, 0.4);
  position: relative;
  overflow: hidden;
}
.upsell-accordion::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.upsell-accordion-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s;
}
.upsell-accordion-header:hover {
  background: rgba(201, 168, 76, 0.05);
}
.upsell-accordion-left {
  flex: 1;
  min-width: 0;
}
.upsell-accordion-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(15px, 3vw, 20px);
  color: #fff;
  line-height: 1.3;
  margin-top: 8px;
}
.upsell-accordion-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.upsell-cart-btn {
  flex-shrink: 0;
  border: 2px solid var(--gold);
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s;
  padding: 8px 18px;
}
.upsell-cart-btn:hover {
  background: var(--gold);
  color: #000;
  transform: scale(1.1);
}
.upsell-cart-btn.added {
  background: #2a7a2a;
  border-color: #4caf50;
  color: #fff;
  pointer-events: none;
}
.upsell-accordion-arrow {
  font-size: 28px;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.3s;
  width: 28px;
  text-align: center;
}
.upsell-accordion.open .upsell-accordion-arrow {
  transform: rotate(45deg);
}
.upsell-accordion-body {
  display: none;
  padding: 0 24px 24px;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}
.upsell-accordion.open .upsell-accordion-body {
  display: block;
}
.upsell-accordion-body .upsell-desc {
  margin-top: 20px;
}
@media (max-width: 600px) {
  .upsell-accordion-header {
    flex-wrap: wrap;
    gap: 12px;
    padding: 16px;
    justify-content: center;
    text-align: center;
  }
  .upsell-accordion-left {
    width: 100%;
    text-align: center;
    order: 1;
  }
  .upsell-accordion-left .upsell-badge {
    margin-left: auto;
    margin-right: auto;
  }
  .upsell-accordion-right {
    width: 100%;
    justify-content: center;
    order: 2;
  }
  .upsell-accordion-arrow {
    order: 4;
    width: 100%;
    text-align: center;
    padding: 8px 0;
    font-size: 32px;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(201, 168, 76, 0.2);
  }
  .upsell-cart-btn {
    width: 100%;
    order: 3;
    padding: 12px;
  }
  .upsell-accordion-body {
    padding: 0 16px 20px;
  }
}
.upsell-badge {
  display: inline-block;
  background: var(--gold);
  color: #000;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 14px;
  margin-bottom: 20px;
}
.upsell-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(22px, 4vw, 34px);
  line-height: 1.2;
  color: #fff;
  margin-bottom: 16px;
  background: linear-gradient(
    90deg,
    #a07830,
    #e8d080,
    #ffffff,
    #e8d080,
    #a07830
  );
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: heroShimmer 4s linear infinite;
}
.upsell-desc {
  font-size: 14px;
  color: #b5a98a;
  line-height: 1.7;
  margin-bottom: 24px;
}
.upsell-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.upsell-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #c8c0b0;
}
.upsell-points li::before {
  content: "🔒";
  flex-shrink: 0;
}
.upsell-price-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.upsell-price-now {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.upsell-price-was {
  font-size: 20px;
  color: var(--muted);
  text-decoration: line-through;
}
.upsell-discount {
  background: rgba(201, 168, 76, 0.15);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 12px;
}

/* +17 MODULES CALLOUT */
.more-modules {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(201, 168, 76, 0.07);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-left: 3px solid var(--gold);
}
.more-plus {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
}
.more-text {
  font-size: 12px;
  color: #c8c0b0;
  line-height: 1.6;
}
.more-text strong {
  color: #fff;
  font-weight: 600;
}

/* UPSELL POINTS — card style matching main modules */
.upsell-module-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}
.upsell-module-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.2s;
}
.upsell-module-list li:hover {
  border-color: rgba(201, 168, 76, 0.3);
}
.upsell-module-list li .uml-icon {
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}
.upsell-module-list li .uml-title {
  font-weight: 600;
  font-size: 13px;
  color: #fff;
  margin-bottom: 2px;
}
.upsell-module-list li .uml-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.about-section {
  background: var(--mid);
}
.about-card {
  background: rgba(201, 168, 76, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.15);
  padding: 32px 24px;
  margin-top: 24px;
}
.about-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}
.about-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.3);
  flex-shrink: 0;
}
.about-name {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  color: #fff;
  font-weight: 700;
}
.about-role {
  font-size: 12px;
  color: var(--gold);
  margin-top: 3px;
  letter-spacing: 0.04em;
}
.about-text {
  font-size: 14px;
  color: #b5a98a;
  line-height: 1.75;
}
.about-text strong {
  color: #fff;
}

/* ── PRICE / BUY ── */
.price-section {
  background: var(--off-black);
}
.price-box {
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 36px 28px;
  text-align: center;
  background: linear-gradient(
    160deg,
    rgba(201, 168, 76, 0.07),
    rgba(201, 168, 76, 0.02)
  );
  margin-top: 24px;
  position: relative;
  overflow: hidden;
}
.price-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.price-was {
  font-size: 15px;
  color: var(--muted);
  text-decoration: line-through;
  margin-bottom: 4px;
}
.price-now {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.price-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
  margin-bottom: 28px;
}
.includes-list {
  text-align: left;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.includes-list li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  color: #c8c0b0;
  list-style: none;
}
.includes-list li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.stripe-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(99, 91, 255, 0.1);
  border: 1px solid rgba(99, 91, 255, 0.3);
  color: #a8a4ff;
  font-size: 11px;
  font-weight: 600;
  padding: 8px 16px;
  letter-spacing: 0.04em;
  margin-top: 14px;
}

/* ── URGENCY ── */
.urgency-footer {
  background: rgba(192, 57, 43, 0.1);
  border: 1px solid rgba(192, 57, 43, 0.3);
  padding: 14px 20px;
  text-align: center;
  margin-top: 18px;
  font-size: 13px;
  color: #e07060;
  font-weight: 500;
}
#countdown {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  color: #ff6b5a;
  font-weight: 700;
}

/* ── FAQ ── */
.faq-section {
  background: var(--black);
}
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px 0;
}
.faq-q {
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-q::after {
  content: "+";
  color: var(--gold);
  font-size: 20px;
  font-weight: 300;
}
.faq-a {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin-top: 10px;
  display: none;
}
.faq-item.open .faq-q::after {
  content: "−";
}
.faq-item.open .faq-a {
  display: block;
}

/* ── FOOTER ── */
footer {
  background: #050403;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 30px 24px;
  text-align: center;
  font-size: 11px;
  color: #444;
  line-height: 1.8;
}

/* ── GENERIC PAGE CONTENT ── */
.site-content {
  min-height: 60vh;
}
.entry-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(24px, 5vw, 40px);
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.3;
}
.entry-content {
  color: var(--text, #f0ede6);
  font-size: 15px;
  line-height: 1.8;
}
.entry-content h2,
.entry-content h3,
.entry-content h4 {
  color: #fff;
  margin-top: 28px;
  margin-bottom: 12px;
}
.entry-content p {
  margin-bottom: 16px;
}
.entry-content a {
  color: var(--gold);
  text-decoration: underline;
}
.entry-content ul,
.entry-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.entry-content li {
  margin-bottom: 6px;
}

.gold-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 0 auto 24px;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .transform-row {
    flex-direction: column;
    gap: 6px;
  }
  .transform-arrow {
    transform: rotate(90deg);
  }
}

/* ── CROWN NAME ── */
.crown-name {
  font-family: "Playfair Display", serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
  background: linear-gradient(
    135deg,
    #a07830 0%,
    #e0c070 35%,
    #ffffff 50%,
    #e0c070 65%,
    #a07830 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: owShimmer 6s linear infinite;
}

/* ── DESKTOP / MOBILE VISIBILITY ── */
.desktop-only {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }
  .mobile-only {
    display: block !important;
  }
}

/* ── MOBILE REVIEW SLIDER ── */
.testimonial-slider-mobile {
  position: relative;
  overflow: hidden;
}

.testimonial-slides-wrapper {
  position: relative;
  min-height: 260px;
}

.testimonial-slide-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

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

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.slider-arrow {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  background: rgba(201, 168, 76, 0.05);
  color: var(--gold);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.slider-arrow:hover {
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--gold);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--muted);
  cursor: pointer;
  transition: all 0.3s;
}

.slider-dots .dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ── ORDER ACCORDION ── */
.order-accordion {
  margin-bottom: 0;
}
.order-acc-item {
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}
.order-acc-item:last-child {
  border-bottom: none;
}
.order-acc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  cursor: pointer;
  font-size: 14px;
  user-select: none;
}
.order-acc-header:hover {
  opacity: 0.85;
}
.order-acc-title {
  color: #f0ede6;
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  min-width: 0;
}
.acc-right-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-left: 8px;
}
.acc-whats-inside {
  display: inline-flex;
  align-items: center;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
  border: 1.5px solid rgba(201, 168, 76, 0.6);
  padding: 8px 16px;
  border-radius: 4px;
  transition:
    border-color 0.3s ease,
    opacity 0.3s ease;
}
.order-acc-header:hover .acc-whats-inside {
  border-color: rgba(201, 168, 76, 0.9);
}
.order-acc-item.acc-open .acc-whats-inside {
  display: none;
}
.acc-price-tag {
  color: #c9a84b;
  opacity: 0.95;
  font-size: 12px;
  text-decoration: line-through;
  white-space: nowrap;
}
.acc-price-tag.free {
  color: #4caf50;
  font-weight: 700;
  text-decoration: none;
  opacity: 1;
}
.acc-price-tag.active {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  opacity: 1;
}
.acc-chevron {
  width: 18px;
  height: 18px;
  color: var(--gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  opacity: 0.6;
}
.order-acc-item.acc-open .acc-chevron {
  transform: rotate(180deg);
}
.order-acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.order-acc-item.acc-open .order-acc-body {
  max-height: 3000px;
}
.acc-body-inner {
  padding: 0 0 14px;
}
.acc-module-item {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid rgba(201, 168, 76, 0.04);
}
.acc-module-num {
  font-family: "Playfair Display", serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--gold-dim);
  min-width: 24px;
  padding-top: 1px;
}
.acc-module-title {
  font-weight: 600;
  font-size: 12px;
  color: #fff;
  margin-bottom: 3px;
}
.acc-module-desc {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.55;
}
.acc-more {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 0;
  border-top: 1px solid rgba(201, 168, 76, 0.04);
}
.acc-more-plus {
  font-family: "Playfair Display", serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--gold-dim);
  min-width: 24px;
}
.acc-more-text {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.55;
}
.acc-law-title {
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
  font-size: 12px;
  padding-top: 4px;
}
.acc-law-item {
  padding: 5px 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.55;
}
.acc-desc-text {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.65;
  padding: 4px 0 8px;
}
.acc-locked-item {
  padding: 8px 0;
  border-top: 1px solid rgba(201, 168, 76, 0.04);
}
.acc-locked-title {
  font-weight: 600;
  font-size: 12px;
  color: #fff;
  margin-bottom: 3px;
}
.acc-locked-desc {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.55;
}

/* ── ORDER COUNTDOWN ── */
#order-countdown {
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

/* ── BOOKS SHOWCASE SECTION ── */
.books-showcase {
  background: var(--bg-dark, #0c0a06);
  padding: 40px 16px 36px;
  text-align: center;
}
.bsec-eye {
  font-family: "Cinzel", serif;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold, #c9a030);
  margin-bottom: 8px;
}
.bsec-heading {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  color: #f0dfa0;
  margin-bottom: 6px;
  font-weight: 700;
}
.bsec-sub {
  font-family: "Cinzel", serif;
  font-size: 11px;
  color: #6b5a2a;
  letter-spacing: 1px;
  margin-bottom: 32px;
}
.books-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 16px;
  max-width: 420px;
  margin: 0 auto 24px;
}
.bwrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.book-img-wrap {
  position: relative;
  display: inline-block;
  animation: floatBook 4s ease-in-out infinite;
}
.book-img-wrap::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 110%;
  height: 110%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.6) 0%,
    rgba(255, 255, 255, 0.3) 35%,
    rgba(255, 255, 255, 0.1) 55%,
    rgba(255, 255, 255, 0) 75%
  );
  filter: blur(28px);
  z-index: 0;
  pointer-events: none;
}
.book-img {
  display: block;
  width: 160px;
  height: auto;
  position: relative;
  z-index: 1;
}
.bwrap:nth-child(2) .book-img-wrap {
  animation-delay: 0.6s;
}
.bwrap:nth-child(3) .book-img-wrap {
  animation-delay: 1.2s;
}
.bwrap:nth-child(4) .book-img-wrap {
  animation-delay: 1.8s;
}
@keyframes floatBook {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-9px);
  }
}
.lbl {
  text-align: center;
}
.lbl-t {
  font-family: "Cinzel", serif;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 3px;
  letter-spacing: 0.5px;
}
.lbl-s {
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  font-weight: 600;
  color: #7a6830;
  letter-spacing: 0.3px;
}

@media (min-width: 600px) {
  .books-grid {
    max-width: 580px;
    gap: 40px 24px;
  }
}
