/*
Theme Name: Itihaaskar Child V5.9.1
Theme URI: https://example.com
Description: Child theme for Kadence.
Author: Itihaaskar
Template: kadence
Version: 5.9.1
Text Domain: itihaaskar-child
*/
/* ============================================================
   2. GLOBAL BASE OVERRIDES
   ============================================================ */
body {
  background-color: var(--clr-cream);
  color: var(--clr-body);
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  line-height: 1.7;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6,
.wp-block-kadence-advancedheading {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  color: var(--clr-ink);
  line-height: 1.25;
  letter-spacing: -0.01em;
  font-weight: 700;
}

/* Mobile readability: comfortable size, tighter section rhythm */
@media (max-width: 600px) {
  body { font-size: 16px; line-height: 1.62; }
  p { margin-top: 0.5em; margin-bottom: 0.5em; }
}

a { color: var(--clr-maroon); transition: color var(--transition); }
a:hover { color: var(--clr-gold-dark); }
/* Gradient overlay — applied via CSS class "hero-section" on the Kadence Row */
.hero-section .kb-row-layout-overlay,
.hero-section::before {
  background: linear-gradient(
    160deg,
    rgba(92, 43, 43, 0.90) 0%,
    rgba(92, 43, 43, 0.72) 100%
  ) !important;
}

.hero-section .kb-row-layout-inner {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 80px;
}
/* ============================================================
   4. BUTTONS
   ============================================================ */
.btn-primary,
.btn-primary a,
.kb-btns-wrap a.btn-primary,
.kt-button.btn-primary,
.edd-submit.btn-primary,
button.btn-primary {
  display: inline-block;
  background: var(--clr-gold) !important;
  color: var(--clr-slate) !important;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 30px;
  min-height: 48px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent !important;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.btn-primary:hover,
.btn-primary a:hover,
.kb-btns-wrap a.btn-primary:hover,
.kt-button.btn-primary:hover {
  background: var(--clr-gold-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,175,55,0.40) !important;
  color: var(--clr-slate) !important;
}

/* Outline button */
.btn-outline,
.btn-outline a,
.kb-btns-wrap a.btn-outline,
.kt-button.btn-outline {
  display: inline-block;
  background: transparent !important;
  color: var(--clr-maroon) !important;
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 29px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--clr-maroon) !important;
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
}
.btn-outline:hover,
.btn-outline a:hover,
.kb-btns-wrap a.btn-outline:hover,
.kt-button.btn-outline:hover {
  background: var(--clr-maroon) !important;
  color: var(--clr-white) !important;
  transform: translateY(-2px);
}

/* Outline on dark background (hero) */
.hero-section .btn-outline,
.hero-section .btn-outline a,
.hero-section .kt-button.btn-outline,
.dark-bg .btn-outline,
.dark-bg .btn-outline a {
  color: var(--clr-white) !important;
  border-color: var(--clr-white) !important;
}
.hero-section .btn-outline:hover,
.hero-section .kt-button.btn-outline:hover {
  background: rgba(255,255,255,0.15) !important;
}

/* Bundle CTA — special larger button */
.btn-bundle,
.btn-bundle a,
.kt-button.btn-bundle {
  display: inline-block;
  background: var(--clr-gold) !important;
  color: var(--clr-slate) !important;
  font-weight: 800;
  font-size: 1.15rem;
  padding: 18px 40px;
  border-radius: var(--radius-sm);
  border: none !important;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(212,175,55,0.45);
  transition: all var(--transition);
  letter-spacing: 0.02em;
  cursor: pointer;
}
.btn-bundle:hover,
.btn-bundle a:hover,
.kt-button.btn-bundle:hover {
  background: var(--clr-gold-dark) !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(212,175,55,0.55) !important;
  color: var(--clr-slate) !important;
}

/* EDD purchase button inherits */
.edd-submit,
#edd-purchase-button,
.edd_checkout_button {
  background: var(--clr-gold) !important;
  color: var(--clr-slate) !important;
  border: none !important;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.edd-submit:hover { background: var(--clr-gold-dark) !important; transform: translateY(-2px); }.trust-bar-item .kt-svg-icon-wrap,
.trust-bar-item .kt-blocks-icon {
  color: var(--clr-gold) !important;
  fill: var(--clr-gold) !important;
}
.trust-bar-item h4,
.trust-bar-item .kt-adv-heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-slate);
  margin: 0.5rem 0 0.25rem;
}
/* ============================================================
   6. MODULE CARDS
   ============================================================ */
.module-card,
.wp-block-kadence-rowlayout.module-card,
.kb-row-layout-wrap.module-card {
  background: var(--clr-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border-top: 4px solid var(--clr-maroon);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  padding: 1.75rem !important;
}
.module-card:hover,
.kb-row-layout-wrap.module-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-top-color: var(--clr-gold);
}
/* ============================================================
   7. PRICING TABLE
   ============================================================ */
.pricing-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 -1rem;
  padding: 0 1rem;
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-md);
  overflow: hidden;
  font-size: 0.95rem;
  box-shadow: var(--shadow-card);
}
.pricing-table th {
  background: var(--clr-maroon);
  color: var(--clr-white);
  font-weight: 700;
  padding: 14px 16px;
  text-align: left;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pricing-table th:last-child,
.pricing-table td:last-child { text-align: center; }
.pricing-table td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--clr-border);
  color: var(--clr-slate);
  vertical-align: middle;
}
.pricing-table tr:nth-child(odd) td  { background: var(--clr-cream); }
.pricing-table tr:nth-child(even) td { background: var(--clr-white); }
.pricing-table tr:hover td { background: #FEF3E2 !important; }.pricing-row:hover td { background: #FEF3E2 !important; }

.pricing-table .price-mrp {
  text-decoration: line-through;
  color: var(--clr-muted);
  font-size: 0.85rem;
}
.pricing-table .price-sell {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--clr-maroon);
}
.pricing-table .price-save {
  background: #FFF0F0;
  color: var(--clr-maroon);
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: 2px 8px;
  font-size: 0.8rem;
}
/* Tablet: stacked rows with labels */
@media (max-width: 768px) {
  .pricing-table, .pricing-table thead,
  .pricing-table tbody, .pricing-table th,
  .pricing-table td, .pricing-table tr { display: block; }

  .pricing-table thead tr { position: absolute; top: -9999px; left: -9999px; }

  .pricing-table tr {
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    background: var(--clr-white);
    box-shadow: var(--shadow-card);
    padding: 0.5rem 0;
  }
  .pricing-table tr:nth-child(odd) td,
  .pricing-table tr:nth-child(even) td { background: transparent; }

  .pricing-table td {
    border: none;
    border-bottom: 1px solid #f3f4f6;
    position: relative;
    padding-left: 45%;
    text-align: right;
  }
  .pricing-table td::before {
    position: absolute;
    top: 50%; left: 16px;
    transform: translateY(-50%);
    font-weight: 700;
    color: var(--clr-maroon);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
  }
  .pricing-table td:nth-child(1)::before { content: 'Module'; }
  .pricing-table td:nth-child(2)::before { content: 'MRP'; }
  .pricing-table td:nth-child(3)::before { content: 'Selling Price'; }
  .pricing-table td:nth-child(4)::before { content: 'You Save'; }
  .pricing-table td:nth-child(5)::before { content: 'Buy Now'; }
  .pricing-table td:last-child { border-bottom: none; }
}

/* Mobile: full card */
@media (max-width: 480px) {
  .pricing-table td { padding-left: 40%; font-size: 0.9rem; }
  .bundle-price-main { font-size: 2.2rem; }
  .bundle-card { padding: 1.5rem 1rem; }
}

/* ============================================================
   8. FAQ ACCORDION (Kadence override)
   ============================================================ */
.kt-accordion-wrap .kt-accordion-header-btn,
.kt-accordion-wrap .kt-blocks-accordion-header {
  background: var(--clr-white) !important;
  color: var(--clr-maroon) !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  border-bottom: 2px solid var(--clr-border) !important;
  padding: 18px 20px !important;
  text-align: left !important;
  width: 100% !important;
  transition: background var(--transition), border-color var(--transition) !important;
}
.kt-accordion-wrap .kt-accordion-header-btn:hover,
.kt-accordion-wrap .kt-blocks-accordion-header:hover {
  background: #FFF8F0 !important;
  border-bottom-color: var(--clr-gold) !important;
}
/* Active pane */
.kt-accordion-wrap .kt-accordion-pane.kt-accordion-panel-active .kt-accordion-header-btn,
.kt-accordion-wrap .kt-accordion-pane.kt-accordion-panel-active .kt-blocks-accordion-header {
  background: var(--clr-cream) !important;
  border-bottom-color: var(--clr-maroon) !important;
  color: var(--clr-maroon) !important;
}
.kt-accordion-wrap .kt-accordion-pane .kt-accordion-panel-inner {
  padding: 20px !important;
  background: var(--clr-cream);
  color: var(--clr-slate);
  font-size: 0.95rem;
  line-height: 1.75;
  border-bottom: 2px solid var(--clr-gold);
}
/* Icon color */
.kt-accordion-wrap .kt-accordion-icon-trigger svg,
.kt-accordion-wrap .kt-accordion-icon-trigger {
  color: var(--clr-gold) !important;
  fill: var(--clr-gold) !important;
}.text-center, .align-center { text-align: center !important; }
/* ============================================================
   11. HEADER / NAV
   ============================================================ */
.site-header.is-sticky,
.kadence-sticky-header.is-sticky { box-shadow: 0 2px 12px rgba(0,0,0,0.10); }

/* ============================================================
   12. RESPONSIVE — TABLET (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  h1, .entry-title { font-size: clamp(1.75rem, 6vw, 2.4rem) !important; }
  h2 { font-size: clamp(1.4rem, 5vw, 1.9rem) !important; }
  .hero-section { min-height: 60vh; }
  .hero-section .kb-row-layout-inner { padding-top: 60px !important; padding-bottom: 60px !important; }
  .kb-btns-wrap { flex-direction: column !important; align-items: center !important; gap: 0.75rem; }
  .kb-btns-wrap .kb-btn-wrap-link { width: 100%; }
  .kb-btns-wrap a.kt-button { width: 100%; text-align: center; }
  .module-card { margin-bottom: 1rem; }
  .bundle-card::before { display: none; }
}

/* ============================================================
   13. RESPONSIVE — MOBILE (≤480px)
   ============================================================ */
@media (max-width: 480px) {
  body { font-size: 16px; }
  h1 { font-size: clamp(1.5rem, 7vw, 2rem) !important; }
  .hero-section { min-height: 55vh; }
  .bundle-price-main { font-size: 2rem; }
  .btn-primary, .btn-outline, .btn-bundle,
  .kt-button.btn-primary, .kt-button.btn-outline { font-size: 0.92rem; padding: 12px 20px; }
}

/* ============================================================
   14. EDD CART / CHECKOUT OVERRIDES
   ============================================================ */
#edd_checkout_cart th { background: var(--clr-maroon); color: var(--clr-white); }
#edd_checkout_cart .edd_cart_item { border-bottom: 1px solid var(--clr-border); }
.edd_errors li { background: #FFF0F0; border: 1px solid var(--clr-maroon); color: var(--clr-maroon); }
#edd-purchase-button { width: 100%; font-size: 1.05rem; padding: 16px; }

/* ============================================================
   15. UTILITY
   ============================================================ */
.kb-spacer { display: block; }.pill {
  display: inline-block;
  border-radius: 100px;
  padding: 3px 14px;
  font-size: 0.78rem;
  font-weight: 600;
}.pill-gold   { background: #FEF3C7; color: #92400E; border: 1px solid var(--clr-gold); }
/* ============================================================
   17. MODULE CARDS v2 — compact, gradient, golden glow
   ============================================================ */
.mc2 {
  background: linear-gradient(145deg, #ffffff 0%, #FFF9F2 100%);
  border-radius: 10px;
  border-top: 3px solid #0F172A;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06), 0 0 0 1px rgba(212,175,55,0.12);
  padding: 1.25rem 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  height: 100%;
  box-sizing: border-box;
}
.mc2:hover {
  box-shadow: 0 8px 28px rgba(212,175,55,0.28), 0 0 0 1px rgba(212,175,55,0.40);
  transform: translateY(-3px);
}
.mc2-top {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.mc2-num {
  background: #0F172A;
  color: #fff;
  min-width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}
.mc2-info { flex: 1; min-width: 0; }
.mc2-name {
  font-size: 0.97rem;
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 3px;
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.3;
}
.mc2-stats {
  font-size: 0.72rem;
  color: #64748B;
  font-weight: 500;
}.mc2-divider {
  border: none;
  border-top: 1px solid rgba(212,175,55,0.20);
  margin: 0;
}.mc2-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.55rem;
  border-top: 1px solid rgba(212,175,55,0.15);
}.mc2-buy {
  display: inline-block;
  background: #D4AF37;
  color: #0F172A;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}
.mc2-buy:hover { background: #BFA133; color: #0F172A; }
.mc2-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1080px;
  margin: 0 auto;
}
.mc2-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 726px;
  margin: 18px auto 0;
}
@media (max-width: 768px) {
  .mc2-grid-3, .mc2-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .mc2-grid-3, .mc2-grid-2 { grid-template-columns: 1fr; }
}@media (max-width: 768px) {
  .trust-cred-grid { grid-template-columns: repeat(2, 1fr); border-radius: 8px; }
  .trust-cred { border-bottom: 1px solid rgba(212,175,55,0.12); }
  .trust-cred:nth-child(2n) { border-right: none; }
  .trust-cred:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 480px) {
  .trust-cred-grid { grid-template-columns: 1fr; }
  .trust-cred { border-right: none; }
  .trust-cred:last-child { border-bottom: none; }
}@media (max-width: 768px) {
  .why-grid-v2 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .why-grid-v2 { grid-template-columns: 1fr; }
}@media (max-width: 480px) {
  .sample-compact-grid { grid-template-columns: 1fr; }
}@media (max-width: 768px) {
  .testi-grid-v2 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .testi-grid-v2 { grid-template-columns: 1fr; }
}

/* ============================================================
   22. PREMIUM POLISH LAYER
   ============================================================ */
:root {
  --glow-gold: 0 0 0 1px rgba(212,175,55,0.30), 0 8px 30px rgba(212,175,55,0.18);
  --premium-shadow: 0 10px 40px rgba(31,41,55,0.10);
}

/* Hero refinement — subtle vignette + grain feel */
.hero-section .kb-row-layout-overlay {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212,175,55,0.10), transparent 60%),
    linear-gradient(165deg, rgba(15,23,42,0.94) 0%, rgba(92,43,43,0.78) 55%, rgba(48,18,18,0.92) 100%) !important;
}

/* Section eyebrow — gold divider line accent */
.prem-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #D4AF37;
}
.prem-eyebrow::before,
.prem-eyebrow::after {
  content: '';
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #D4AF37);
}
.prem-eyebrow::after { background: linear-gradient(90deg, #D4AF37, transparent); }

.prem-h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  color: #0F172A;
  font-weight: 700;
  margin: 14px 0 12px;
  line-height: 1.22;
  letter-spacing: -0.3px;
}
.prem-sub {
  color: #64748B;
  font-size: 0.97rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}
.prem-head { text-align: center; margin-bottom: 44px; }@media (max-width: 600px) {
  .hero-proof-divider { display: none; }
  .hero-proof-inner { gap: 14px; }
  .hero-proof-item { font-size: 0.76rem; }
}
/* Module cards — premium gold-edge glow */
.mc2 {
  background: linear-gradient(155deg, #ffffff 0%, #FFFAF4 100%);
  border-top: none;
  position: relative;
}
.mc2::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  padding: 1px;
  background: linear-gradient(145deg, rgba(212,175,55,0.45), rgba(180,83,9,0.12), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.mc2:hover {
  box-shadow: 0 12px 36px rgba(212,175,55,0.30), 0 0 0 1px rgba(212,175,55,0.45);
}

/* Pricing table premium frame */
.pricing-table {
  box-shadow: var(--premium-shadow), 0 0 0 1px rgba(212,175,55,0.18);
}
/* FAQ premium frame */
.kt-accordion-wrap .kt-accordion-header-btn {
  border-radius: 8px !important;
  border: 1px solid rgba(212,175,55,0.20) !important;
  margin-bottom: 10px !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03) !important;
}@keyframes heroFloat {
  0%   { transform: translateY(40px) rotate(0deg);   opacity: 0; }
  15%  { opacity: 0.8; }
  85%  { opacity: 0.8; }
  100% { transform: translateY(-120px) rotate(8deg); opacity: 0; }
}@keyframes heroSweep {
  0%   { left: -40%; }
  100% { left: 120%; }
}@keyframes underlinePulse {
  0%, 100% { opacity: 0.4; transform: scaleX(0.7); }
  50%      { opacity: 1;   transform: scaleX(1); }
}@keyframes ctaRise {
  from { transform: translateY(14px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-glyph, .hero-shimmer, .hero-underline::after, .hero-cta-a { animation: none !important; }
  .hero-glyph { opacity: 0.5 !important; }
}.why3-lead {
  font-size: 1.12rem;
  color: #0F172A;
  line-height: 1.7;
  font-weight: 500;
  margin: 0 0 1.3rem;
}
.why3-lead strong { color: #0F172A; }
.why3-para {
  font-size: 0.97rem;
  color: #475569;
  line-height: 1.8;
  margin: 0 0 1.2rem;
}
.why3-signature {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  color: #0F172A;
  font-style: italic;
  margin: 1.5rem 0 0.2rem;
}
.why3-sig-role {
  font-size: 0.82rem;
  color: #94A3B8;
  letter-spacing: 0.03em;
}@media (max-width: 820px) {
  .why3-wrap { grid-template-columns: 1fr; gap: 32px; }
  .why3-photo { max-width: 380px; margin: 0 auto; }
  .why3-content h2 { text-align: center !important; }
  .why3-lead, .why3-para { text-align: left; }
}
@media (max-width: 768px) {
  .mt3-grid-3, .mt3-grid-2 { grid-template-columns: 1fr; max-width: 420px; }
}@media (max-width: 768px) {
  .price3-bundle-inner { grid-template-columns: 1fr; }
  .price3-bundle-right { border-left: none; border-top: 1px solid rgba(212,175,55,0.2); }
  .price3-bundle-feats { grid-template-columns: 1fr; }
  /* responsive pricing table: horizontal scroll */
  .price3-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .price3-table { min-width: 640px; }
}@media (max-width: 768px) {
  .sample3 { grid-template-columns: 1fr; gap: 40px; }
  .sample3-left h2 { text-align: center !important; }
  .sample3-tag { justify-content: center; }
}@media (max-width: 880px) { .testi3-masonry { column-count: 2; } }
@media (max-width: 560px) { .testi3-masonry { column-count: 1; } }@media (max-width: 860px) {
  .ihfooter-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 480px) {
  .ihfooter-grid { grid-template-columns: 1fr; }
  .ihfooter-bottom { flex-direction: column; text-align: center; }
}@keyframes hero3Glow {
  0%, 100% { box-shadow: 0 0 0 1px rgba(212,175,55,0.35), 0 0 40px rgba(212,175,55,0.22), 0 30px 80px rgba(15,23,42,0.45); }
  50%      { box-shadow: 0 0 0 1px rgba(212,175,55,0.55), 0 0 60px rgba(212,175,55,0.40), 0 30px 80px rgba(15,23,42,0.50); }
}@keyframes hero3Float {
  0%   { transform: translateY(40px) rotate(0deg); opacity: 0; }
  15%  { opacity: 0.85; }
  85%  { opacity: 0.85; }
  100% { transform: translateY(-120px) rotate(8deg); opacity: 0; }
}@keyframes hero3Sweep { 0% { left: -40%; } 100% { left: 120%; } }@keyframes hero3Pulse {
  0%, 100% { opacity: 0.4; transform: scaleX(0.7); }
  50%      { opacity: 1; transform: scaleX(1); }
}@keyframes hero3Rise { from { transform: translateY(14px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }@media (prefers-reduced-motion: reduce) {
  .hero3, .hero3-glyph, .hero3-shimmer, .hero3-underline::after, .hero3-cta { animation: none !important; }
  .hero3-glyph { opacity: 0.5 !important; }
}
@media (max-width: 600px) {
  .hero3-inner { padding: 50px 18px 46px; }
  .hero3-btn-gold, .hero3-btn-ghost { width: 100%; text-align: center; }
}@keyframes hero3Glow {
  0%,100% { box-shadow: 0 0 0 1px rgba(212,175,55,0.4), 0 0 45px rgba(212,175,55,0.22), 0 30px 80px rgba(15,23,42,0.45); }
  50%     { box-shadow: 0 0 0 1px rgba(212,175,55,0.6), 0 0 70px rgba(212,175,55,0.42), 0 30px 80px rgba(15,23,42,0.5); }
}@keyframes hero3Sweep { 0% { left: -40%; } 100% { left: 130%; } }@keyframes hero3Pulse { 0%,100% { opacity: 0.4; transform: scaleX(0.7);} 50% { opacity: 1; transform: scaleX(1);} }@keyframes heroFadeUp { from { transform: translateY(16px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  .hero3, .hero3-shimmer, .hero3-underline::after,
  .hero3-pill, .hero3-line, .hero3-sub, .hero3-cta, .hero3-trust { animation: none !important; opacity: 1 !important; }
}
@media (max-width: 600px) {
  .hero3-inner { padding: 54px 18px 50px; }
  .hero3-btn-gold, .hero3-btn-ghost { width: 100%; text-align: center; }
}.faq3 { max-width: 800px; margin: 0 auto; }
.faq3-item {
  background: #fff;
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.faq3-item[open] {
  border-color: #D4AF37;
  box-shadow: 0 6px 22px rgba(212,175,55,0.15);
}
.faq3-q {
  list-style: none;
  cursor: pointer;
  padding: 18px 52px 18px 22px;
  font-weight: 700;
  font-size: 1rem;
  color: #0F172A;
  position: relative;
  user-select: none;
  font-family: 'Inter', sans-serif;
  line-height: 1.45;
}
.faq3-q::-webkit-details-marker { display: none; }
.faq3-q::after {
  content: '+';
  position: absolute;
  right: 20px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 400;
  color: #D4AF37;
  transition: transform 0.25s;
  line-height: 1;
}
.faq3-item[open] .faq3-q::after { transform: translateY(-50%) rotate(45deg); }
.faq3-q:hover { background: #FFFBF5; }
.faq3-a {
  padding: 0 22px 20px;
  color: #475569;
  font-size: 0.93rem;
  line-height: 1.75;
  animation: faqReveal 0.3s ease-out;
}
.faq3-a p { margin: 0 0 0.85rem; }
.faq3-a p:last-child { margin-bottom: 0; }
.faq3-a ul { margin: 0 0 0.85rem; padding-left: 20px; }
.faq3-a li { padding: 3px 0; }
@keyframes faqReveal { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }@media (max-width: 860px) {
  .ihf2-main { grid-template-columns: 1fr 1fr; gap: 30px; }
  .ihf2-cta { flex-direction: column; text-align: center; }
  .ihf2-cta-text h3 { font-size: 1.2rem; }
}
@media (max-width: 480px) {
  .ihf2-main { grid-template-columns: 1fr; }
  .ihf2-bottom { flex-direction: column; text-align: center; }
}

/* ════════════════════════════════════════════════════════════
   34. FRONT PAGE — remove title bar & top gap above hero
   ════════════════════════════════════════════════════════════ */
/* Hide Kadence's page title hero on the front page only */
.home .entry-hero,
.home .entry-hero-container-inner,
.home .kadence-breadcrumbs,
.home header.entry-header.page-title,
.home .page-title,
.page-template-front-page .entry-hero {
  display: none !important;
}
/* Remove default content top padding on the homepage so hero sits flush under nav */
.home .content-area,
.home .content-container,
.home .site-content,
.home .entry-content {
  padding-top: 0 !important;
  margin-top: 0 !important;
}
/* Kill any empty leading paragraph/spacer the editor may leave */
.home .entry-content > p:empty,
.home .entry-content > .wp-block-spacer:first-child {
  display: none !important;
  margin: 0 !important;
  height: 0 !important;
}html[lang="hi"] h1, html[lang="hi"] h2, html[lang="hi"] h3,
html[lang="hi"] .prem-h2, html[lang="hi"] .hero3-h1,
[lang="hi"] h1, [lang="hi"] h2, [lang="hi"] h3 {
  font-family: 'Noto Sans Devanagari', 'Playfair Display', Georgia, serif;
  letter-spacing: 0;
}
/* Devanagari text anywhere gets the right font automatically */
:lang(hi) { font-family: 'Noto Sans Devanagari', 'Inter', sans-serif; }
/* ════════════════════════════════════════════════════════════
   37. LATEST FROM BLOG cards
   ════════════════════════════════════════════════════════════ */
.ih-latest-posts.wp-block-latest-posts.is-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1080px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}
.ih-latest-posts.wp-block-latest-posts.is-grid li {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 14px rgba(0,0,0,0.06);
  border: 1px solid rgba(212,175,55,0.14);
  transition: transform 0.25s, box-shadow 0.25s;
  margin: 0;
}.ih-latest-posts .wp-block-latest-posts__featured-image img { width: 100%; height: 170px; object-fit: cover; }
.ih-latest-posts .wp-block-latest-posts__post-title {
  display: block; padding: 14px 18px 0; font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem; color: #0F172A; font-weight: 700; line-height: 1.3; text-decoration: none;
}
.ih-latest-posts .wp-block-latest-posts__post-date { padding: 6px 18px 0; font-size: 0.75rem; color: #94A3B8; }
.ih-latest-posts .wp-block-latest-posts__post-excerpt { padding: 8px 18px 18px; font-size: 0.85rem; color: #475569; line-height: 1.6; }
@media (max-width: 768px) { .ih-latest-posts.wp-block-latest-posts.is-grid { grid-template-columns: 1fr; } }@media (max-width: 768px) { .fs-grid { grid-template-columns: 1fr; } }@media (max-width:600px){ .author-strip{ flex-direction:column; text-align:center; } .author-strip-name{ justify-content:center; } }@media (max-width:860px){ .upsc-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .upsc-grid{ grid-template-columns:1fr; } }@media (max-width:680px){ .upsc-syllabus{ grid-template-columns:1fr; } }@media (max-width:600px){ .price3-urgency{ grid-template-columns:1fr; gap:14px; text-align:center; } }

/* ════════════════════════════════════════════════════════════
   45. STICKY BUNDLE BUY BAR
   ════════════════════════════════════════════════════════════ */
.ih-sticky-buy {
  position:fixed; left:0; right:0; bottom:0; z-index:9999;
  background:linear-gradient(135deg,#0F172A,#1E293B); color:#fff;
  display:flex; align-items:center; justify-content:center; gap:18px;
  padding:12px 20px; box-shadow:0 -4px 20px rgba(0,0,0,0.25);
  transform:translateY(100%); transition:transform 0.35s ease;
}
.ih-sticky-buy.is-visible { transform:translateY(0); }
.ih-sticky-buy.is-closed { display:none; }
.ih-sticky-text { font-size:0.9rem; }
.ih-sticky-text s { color:rgba(255,255,255,0.5); }
.ih-sticky-text strong { color:#D4AF37; font-size:1.1rem; }
.ih-sticky-text em { color:rgba(255,255,255,0.75); font-style:normal; font-size:0.8rem; }
.ih-sticky-cta { background:#D4AF37; color:#0F172A !important; font-weight:800; padding:10px 24px; border-radius:7px; text-decoration:none; font-size:0.9rem; white-space:nowrap; transition:background 0.2s; }
.ih-sticky-cta:hover { background:#d9b87c; color:#0F172A !important; }
.ih-sticky-close { background:none; border:none; color:rgba(255,255,255,0.7); font-size:1.4rem; cursor:pointer; line-height:1; padding:0 4px; }
.ih-sticky-close:hover { color:#fff; }
/* Prevent the bar from covering content / mobile safe area */
body { padding-bottom:0; }
.ih-sticky-buy.is-visible ~ * { }
@media (max-width:600px){
  .ih-sticky-buy { flex-wrap:wrap; gap:10px; padding:10px 14px; }
  .ih-sticky-text { width:100%; text-align:center; font-size:0.82rem; }
  .ih-sticky-cta { flex:1; text-align:center; }
}/* sticky table header on desktop */
@media (min-width:769px){
  .price3-table thead th { position:sticky; top:0; z-index:2; }
}.vid-filter.is-active { background:#0F172A; color:#fff; border-color:#0F172A; }@media (max-width:860px){ .vid-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .vid-grid{ grid-template-columns:1fr; } }.about-story-col h2 { text-align:left !important; }.about-timeline { max-width:760px; margin:0 auto; position:relative; padding-left:30px; }
.about-timeline::before { content:''; position:absolute; left:7px; top:6px; bottom:6px; width:2px; background:linear-gradient(#D4AF37,#0F172A); }
.atl-item { position:relative; margin-bottom:20px; }
.atl-dot { position:absolute; left:-30px; top:6px; width:16px; height:16px; border-radius:50%; background:#D4AF37; border:3px solid #fff; box-shadow:0 0 0 2px #D4AF37; }
.atl-card { background:#fff; border:1px solid rgba(212,175,55,0.18); border-radius:10px; padding:14px 18px; box-shadow:0 2px 10px rgba(0,0,0,0.04); }
.atl-year { font-family:'Playfair Display', Georgia, serif; font-weight:700; color:#0F172A; font-size:1rem; margin-bottom:3px; }
.atl-card p { margin:0; font-size:0.86rem; color:#475569; line-height:1.55; }
@media (max-width:820px){ .about-story{ grid-template-columns:1fr; gap:30px; } .about-photo-col{ max-width:360px; margin:0 auto; } .about-story-col h2{ text-align:center !important; } }.ih-lightbox.is-open { display:flex; }
/* ════════════════════════════════════════════════════════════
   50. CTA3 (final cta animated, used on multiple pages)
   ════════════════════════════════════════════════════════════ */
.cta3 { position:relative; max-width:1100px; margin:0 auto; border-radius:20px; overflow:hidden;
  background:radial-gradient(ellipse at 20% 0%,rgba(212,175,55,0.22),transparent 55%),linear-gradient(150deg,#0F172A,#1E293B);
  box-shadow:0 0 0 1px rgba(212,175,55,0.35),0 20px 60px rgba(15,23,42,0.4); }
.cta3-shimmer { position:absolute; top:0; left:-40%; width:40%; height:100%; background:linear-gradient(100deg,transparent,rgba(212,175,55,0.1),transparent); animation:hero3Sweep 8s ease-in-out infinite; }
.cta3-inner { position:relative; z-index:2; text-align:center; padding:54px 28px; }
.cta3-h2 { font-family:'Playfair Display', Georgia, serif; font-size:clamp(1.6rem,4vw,2.3rem); color:#fff; margin:0 0 14px; font-weight:700; }
.cta3-sub { color:rgba(255,255,255,0.85); font-size:1rem; margin:0 0 26px; line-height:1.6; }
.cta3-btn { background:#D4AF37; color:#0F172A !important; padding:16px 38px; border-radius:8px; font-size:1.04rem; font-weight:800; text-decoration:none; display:inline-block; box-shadow:0 8px 28px rgba(212,175,55,0.5); transition:transform 0.2s; }
.cta3-btn:hover { transform:translateY(-2px); color:#0F172A !important; }@media (max-width: 600px) {
  .ihf2-bottom { flex-direction: column; text-align: center; gap: 10px; }
}

/* Ensure language switcher in Kadence sticky header is vertically centered */
.site-header-item .ihl-header-wrap,
.header-navigation .ihl-header-wrap { display: inline-flex; align-items: center; }

/* Footer social grid responsive */
@media (max-width: 480px) { .ihf2-social-grid { grid-template-columns: 1fr; } }@media (max-width:820px){ .why4{ grid-template-columns:1fr; gap:32px; } .why4-photo{ max-width:360px; margin:0 auto; } .why4-content h2{ text-align:center !important; } }.mtab-btn.is-active { background:linear-gradient(135deg,#0F172A,#1E293B); color:#fff; border-color:#0F172A; box-shadow:0 8px 22px rgba(180,83,9,0.25); }.mtab-panel.is-active { display:block; }
@keyframes mtabFade { from{ opacity:0; transform:translateY(8px); } to{ opacity:1; transform:translateY(0); } }.ih-video-modal.is-open { display:flex; animation:mtabFade 0.25s ease; }@media (max-width:600px){ .hero3-btn-video{ width:100%; justify-content:center; } .ih-video-modal-close{ top:-40px; } }

/* ════════════════════════════════════════════════════════════
   56. SCOPED EN/HINDI TOGGLE
   ════════════════════════════════════════════════════════════ */
.ih-lang-toggle { display:inline-flex; align-items:center; gap:4px; background:#fff; border:1px solid rgba(180,83,9,0.2); border-radius:100px; padding:4px 6px; margin:0 auto 22px; box-shadow:0 2px 10px rgba(0,0,0,0.05); }
.ih-lang-toggle { display:flex; width:fit-content; }.ih-lang-opt { background:none; border:none; color:#64748B; font-weight:700; font-size:0.82rem; padding:6px 14px; border-radius:100px; cursor:pointer; transition:all 0.2s; font-family:'Noto Sans Devanagari','Inter',sans-serif; }
.ih-lang-opt:hover { color:#0F172A; }
.ih-lang-opt.is-active { background:linear-gradient(135deg,#0F172A,#1E293B); color:#fff; }
/* Center the toggle above the modules header */
.prem-head + .ih-lang-toggle, .ih-lang-toggle { margin-left:auto; margin-right:auto; }
/* When Hindi is active, render Devanagari nicely */
[data-hi] { font-feature-settings:"kern"; }
.ih-lang-opt[data-lang="hi"] { font-family:'Noto Sans Devanagari',sans-serif; }.hero3-sound.is-on { background: #D4AF37; border-color: #D4AF37; }
.hero3-sound.is-on .hero3-sound-on { color: #0F172A; }
@media (max-width: 600px) { .hero3-sound { width: 38px; height: 38px; font-size: 0.95rem; top: 12px; right: 12px; } }

/* ════════════════════════════════════════════════════════════
   58. PREMIUM POLISH LAYER — golden accents, refined hovers
   ════════════════════════════════════════════════════════════ */

/* 58.1 Consistent gold hairline accents on section headers */
.prem-eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.prem-eyebrow::before,
.prem-eyebrow::after {
  content: "";
  width: 26px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold, #D4AF37));
  opacity: 0.8;
}
.prem-eyebrow::after { background: linear-gradient(90deg, var(--gold, #D4AF37), transparent); }

/* 58.2 Gold gradient underline accent beneath every prem-h2 */
.prem-h2 { position: relative; }
.prem-head .prem-h2::after {
  content: "";
  display: block;
  width: 56px; height: 3px;
  margin: 14px auto 0;
  border-radius: 3px;
  background: linear-gradient(90deg, #D4AF37, #0F172A);
  opacity: 0.9;
}
.why4-content .prem-h2::after,
.about-story-col .prem-h2::after { margin-left: 0; }
/* 58.4 Gold shimmer sweep on primary buttons (hover) */
.hero3-btn-gold, .price3-bundle-btn, .cta3-btn, .ih-sticky-cta, .mt3-buy, .price3-buy {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hero3-btn-gold::after, .price3-bundle-btn::after, .cta3-btn::after,
.ih-sticky-cta::after, .mt3-buy::after, .price3-buy::after {
  content: "";
  position: absolute; top: 0; left: -120%;
  width: 60%; height: 100%; z-index: -1;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-18deg);
  transition: left 0.6s ease;
}
.hero3-btn-gold:hover::after, .price3-bundle-btn:hover::after, .cta3-btn:hover::after,
.ih-sticky-cta:hover::after, .mt3-buy:hover::after, .price3-buy:hover::after {
  left: 130%;
}
/* 58.9 Refined focus-visible states for accessibility (gold ring) */
a:focus-visible, button:focus-visible, .mtab-btn:focus-visible, .ih-lang-opt:focus-visible {
  outline: 2px solid #D4AF37;
  outline-offset: 2px;
  border-radius: 4px;
}@keyframes chakraSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .hero3::after, .hero3-hasvideo::after { animation: none; } }
@media (max-width: 600px) { .hero3::after, .hero3-hasvideo::after { width: 140px; height: 140px; top: -24px; right: -24px; } }@media (max-width: 700px) { .ihf2::after { display: none; } }.hero3-sound.is-on::after { content: "On"; }
/* ════════════════════════════════════════════════════════════
   61. PREMIUM NAVIGATION BAR (#1)
   Soft cream/maroon sticky header with elegant elevation.
   ════════════════════════════════════════════════════════════ */
.site-header,
.site-header-row,
.site-main-header-wrap {
  background: linear-gradient(180deg, #FFFFFF 0%, #FCFAF4 100%) !important;
}
/* Sticky header gets a refined shadow + faint gold underline */
.site-header-row-container,
header#masthead {
  box-shadow: 0 2px 18px rgba(15,23,42,0.07), 0 1px 0 rgba(212,175,55,0.25);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.kadence-sticky-header.item-is-fixed,
.site-header-row-container-inner.kadence-sticky-header.item-is-fixed {
  background: rgba(251,248,243,0.92) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 24px rgba(15,23,42,0.12), 0 1px 0 rgba(212,175,55,0.4);
}
/* Nav links — refined spacing + gold hover underline */
.header-navigation .menu-item > a,
.site-header .menu-item > a {
  position: relative;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: color 0.25s ease;
}
.header-navigation .menu-item > a::after,
.site-header .menu-item > a::after {
  content: "";
  position: absolute; left: 12px; right: 12px; bottom: 6px;
  height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, #D4AF37, #0F172A);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.28s cubic-bezier(.2,.7,.2,1);
}
.header-navigation .menu-item > a:hover::after,
.header-navigation .menu-item > a:focus-visible::after,
.header-navigation .current-menu-item > a::after,
.header-navigation .current-menu-ancestor > a::after,
.site-header .menu-item > a:hover::after {
  transform: scaleX(1);
}
.header-navigation .menu-item > a:hover,
.site-header .menu-item > a:hover { color: #0F172A; }
/* Buttons share the lift + glow */
.hero3-btn-gold, .price3-buy, .mt3-buy, .upsc-btn, .cta3-btn,
.price3-bundle-btn, .ih-sticky-cta, .vid-subscribe {
  transition: transform 0.22s cubic-bezier(.2,.7,.2,1), box-shadow 0.25s ease, filter 0.2s ease;
}
.hero3-btn-gold:hover, .price3-buy:hover, .mt3-buy:hover, .upsc-btn:hover,
.cta3-btn:hover, .price3-bundle-btn:hover, .ih-sticky-cta:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 30px rgba(212,175,55,0.4);
}@media (min-width: 900px) { .ihf2-social-grid { grid-template-columns: 1fr 1fr; } }

/* ════════════════════════════════════════════════════════════
   66. GLOBAL SPACING COMPRESSION (mobile-first, continuous flow)
   Forcibly reduces every section's vertical padding ~35-45% so
   blocks feel connected, not isolated. Overrides inline paddings.
   ════════════════════════════════════════════════════════════ */
.kb-row-layout-wrap[class*="kb-row-layout-id"] {
  padding-top: var(--sec-pad) !important;
  padding-bottom: var(--sec-pad) !important;
}
.kt-inside-inner-col { padding-top: 0 !important; padding-bottom: 0 !important; }
/* tighten common heading/section-intro margins */
.prem-head { margin-bottom: 22px !important; }
.prem-head .prem-h2, .sec-h2 { margin-bottom: 8px !important; }
.entry-content > * { margin-top: 0; margin-bottom: 0; }

@media (max-width: 600px) {
  .kb-row-layout-wrap[class*="kb-row-layout-id"] {
    padding-top: var(--sec-pad-m) !important;
    padding-bottom: var(--sec-pad-m) !important;
  }
  .prem-head { margin-bottom: 16px !important; }
}

/* ════════════════════════════════════════════════════════════
   67. INNER PAGES — remove big hero, use compact title + breadcrumb
   Hide Kadence's default page-title hero everywhere (homepage has
   its own hero; inner pages use the .ihead compact bar below).
   ════════════════════════════════════════════════════════════ */
.entry-hero, .entry-hero-container-inner, header.entry-header.page-title,
.kadence-breadcrumbs.entry-hero, .home .page-title {
  display: none !important;
}
.content-area, .content-container, .site-content, .site-main, .entry-content {
  padding-top: 0 !important; margin-top: 0 !important;
}
.entry-content > .alignfull:first-child { margin-top: 0 !important; }

/* Compact inner-page head (title + breadcrumb) */
.ihead {
  background: linear-gradient(135deg, #0F172A, #1E293B);
  color: #fff;
  padding: 22px 20px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ihead::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background: radial-gradient(ellipse at 20% 0%, rgba(212,175,55,0.18), transparent 60%);
}
.ihead-inner { position: relative; z-index: 1; max-width: 1080px; margin: 0 auto; }
.ihead h1 {
  color: #fff !important; font-size: clamp(1.4rem, 4.5vw, 2rem);
  margin: 0 0 6px; font-weight: 800; line-height: 1.2;
}
.ihead p { color: rgba(255,255,255,0.82); font-size: 0.92rem; margin: 0; line-height: 1.5; }
.ihead-crumb {
  display: inline-flex; flex-wrap: wrap; justify-content: center; gap: 6px;
  font-size: 0.74rem; color: rgba(255,255,255,0.7); margin-top: 8px;
}
.ihead-crumb a { color: #E9D9B8; text-decoration: none; }
.ihead-crumb a:hover { color: #fff; }
.ihead-crumb span { opacity: 0.6; }
@media (max-width: 600px) { .ihead { padding: 18px 16px 16px; } }

/* ════════════════════════════════════════════════════════════
   68. TWO-PANE PDF VIEWER (free samples + module pages)
   ════════════════════════════════════════════════════════════ */
.spv { display: grid; grid-template-columns: 280px 1fr; gap: 18px; max-width: 1080px; margin: 0 auto; align-items: start; }
.spv-list { background: #fff; border: 1px solid rgba(212,175,55,0.25); border-radius: 14px; padding: 14px; box-shadow: 0 4px 16px rgba(0,0,0,0.05); position: sticky; top: 84px; }
.spv-list-head { font-family: 'Playfair Display', Georgia, serif; font-size: 1rem; font-weight: 700; color: #0F172A; margin: 4px 4px 10px; }
.spv-item { display: flex; align-items: center; gap: 11px; width: 100%; text-align: left; background: transparent; border: 1px solid transparent; border-radius: 10px; padding: 11px; margin-bottom: 5px; cursor: pointer; font-family: 'Inter',sans-serif; font-size: 0.9rem; font-weight: 600; color: #0F172A; transition: background .18s, border-color .18s, transform .18s; }
.spv-item:hover { background: #FCFAF4; border-color: rgba(212,175,55,0.4); transform: translateX(2px); }
.spv-item.is-active { background: linear-gradient(135deg,#0F172A,#1E293B); color: #fff; border-color: #0F172A; }
.spv-item.is-active .spv-item-ic { background: rgba(255,255,255,0.18); color: #E6C257; }
.spv-item.is-active .spv-item-sub { color: rgba(255,255,255,0.7); }
.spv-item-ic { flex-shrink: 0; width: 32px; height: 32px; border-radius: 8px; background: rgba(212,175,55,0.16); color: #0F172A; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; }
.spv-item-tx { display: flex; flex-direction: column; line-height: 1.2; }
.spv-item-sub { font-size: 0.72rem; font-weight: 500; color: #94A3B8; margin-top: 2px; }
.spv-stage { background: #fff; border: 1px solid rgba(212,175,55,0.25); border-radius: 14px; overflow: hidden; box-shadow: 0 8px 24px rgba(0,0,0,0.08); display: flex; flex-direction: column; min-height: 520px; }
.spv-stage-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 12px 16px; background: #F8F4ED; border-bottom: 1px solid rgba(212,175,55,0.25); }
.spv-stage-title { font-weight: 700; color: #0F172A; font-size: 0.92rem; }
.spv-open { font-size: 0.8rem; font-weight: 700; text-decoration: none; color: #0F172A; border: 1px solid rgba(180,83,9,0.3); padding: 6px 13px; border-radius: 100px; white-space: nowrap; transition: background .18s, color .18s; }
.spv-open:hover { background: #0F172A; color: #fff; }
.spv-frame-wrap { position: relative; flex: 1; background: #525659; min-height: 480px; }
.spv-frame { width: 100%; height: 100%; min-height: 480px; border: 0; display: block; }
.spv-empty { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; text-align: center; color: #E2E8F0; padding: 24px; }
.spv-empty-ic { font-size: 2.2rem; opacity: 0.6; }
@media (max-width: 840px) {
  .spv { grid-template-columns: 1fr; gap: 12px; }
  .spv-list { position: static; display: flex; flex-wrap: wrap; gap: 8px; }
  .spv-list-head { width: 100%; }
  .spv-item { width: auto; flex: 1 1 calc(50% - 8px); margin-bottom: 0; }
  .spv-stage { min-height: 460px; }
  .spv-frame-wrap, .spv-frame { min-height: 420px; }
}
@media (max-width: 480px) { .spv-item { flex: 1 1 100%; } }

/* ════════════════════════════════════════════════════════════
   69. TRUST SIGNALS — payment badges + verified-student tags
   ════════════════════════════════════════════════════════════ */
.trust-badges { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px 16px; margin: 16px auto 0; max-width: 560px; }
.trust-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 0.74rem; font-weight: 600; color: #64748B; background: #fff; border: 1px solid var(--clr-border); border-radius: 100px; padding: 6px 13px; }
.trust-badge svg { width: 15px; height: 15px; }
.trust-badge-secure { color: #166534; border-color: rgba(21,128,61,0.3); }.verified-tag { display: inline-flex; align-items: center; gap: 4px; font-size: 0.68rem; font-weight: 700; color: #166534; background: rgba(21,128,61,0.08); border: 1px solid rgba(21,128,61,0.25); border-radius: 100px; padding: 2px 8px; vertical-align: middle; }
.verified-tag::before { content: "\2713"; font-size: 0.7rem; }

/* ════════════════════════════════════════════════════════════
   70. SITE-WIDE FOOTER (.ihf) — social + columns + Legal
   ════════════════════════════════════════════════════════════ */
.site-footer, footer#colophon, .site-footer-row-container, .site-footer-wrap { display: none !important; }
.ihf { position: relative; background: linear-gradient(180deg,#0F172A,#0B1220); color: rgba(255,255,255,0.62); }
.ihf::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, transparent, #D4AF37, transparent); }
.ihf-inner { max-width: 1100px; margin: 0 auto; padding: 32px 20px 20px; position: relative; }
.ihf-head { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.ihf-brand { flex: 1 1 340px; max-width: 540px; }
.ihf-logo { font-family: 'Playfair Display', Georgia, serif; font-size: 1.7rem; font-weight: 800; color: #fff; letter-spacing: 0.02em; }
.ihf-logo span { color: #D4AF37; }
.ihf-orn { display: flex; align-items: center; gap: 10px; margin: 6px 0 10px; color: #D4AF37; font-size: 0.85rem; }
.ihf-orn::after { content: ""; width: 72px; height: 1px; background: linear-gradient(90deg, rgba(212,175,55,0.7), transparent); }
.ihf-tag { color: rgba(255,255,255,0.6); font-size: 0.9rem; max-width: 480px; margin: 0; line-height: 1.6; }
.ihf-social { flex: 0 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.ihf-s { display: flex; align-items: center; gap: 11px; padding: 7px 20px 7px 7px; border: 1px solid rgba(212,175,55,0.35); border-radius: 100px; background: rgba(255,255,255,0.04); text-decoration: none; transition: transform .2s, background .2s, border-color .2s, box-shadow .2s; }
.ihf-s-ic { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ihf-s-ic svg { width: 18px; height: 18px; fill: #fff; }
.ihf-s-label { color: rgba(255,255,255,0.88); font-weight: 700; font-size: 0.86rem; white-space: nowrap; }
.ihf-s-yt .ihf-s-ic { background: #FF0000; } .ihf-s-wa .ihf-s-ic { background: #25D366; }
.ihf-s-tg .ihf-s-ic { background: #229ED9; } .ihf-s-ig .ihf-s-ic { background: linear-gradient(45deg,#F58529,#DD2A7B,#8134AF); }
.ihf-s:hover { transform: translateY(-2px); border-color: #D4AF37; background: rgba(212,175,55,0.12); box-shadow: 0 8px 20px rgba(0,0,0,0.3); }
.ihf-s:hover .ihf-s-label { color: #fff; }
.ihf-cols { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; padding: 26px 0; }
.ihf-col h4 { color: #fff; font-family: 'Playfair Display', Georgia, serif; font-size: 1rem; margin: 0 0 12px; }
.ihf-col a { display: block; color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.86rem; padding: 5px 0; transition: color .18s, padding-left .18s; }
.ihf-col a:hover { color: #D4AF37; padding-left: 4px; }
.ihf-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.08); font-size: 0.78rem; color: rgba(255,255,255,0.45); }
.ihf-pay { color: rgba(255,255,255,0.55); }
.ihf-mail { color: #D4AF37; text-decoration: none; }
@media (max-width: 760px) {
  .ihf-inner { padding: 26px 18px 18px; }
  .ihf-head { flex-direction: column; align-items: center; text-align: center; gap: 18px; padding-bottom: 18px; }
  .ihf-brand { flex: 0 0 auto; max-width: 540px; }
  .ihf-orn { justify-content: center; margin: 4px 0 8px; }
  .ihf-orn::after { display: none; }
  .ihf-tag { margin: 0 auto; font-size: 0.85rem; }
  .ihf-social { width: 100%; max-width: 420px; gap: 8px; }
  .ihf-cols { grid-template-columns: 1fr 1fr; gap: 16px 14px; padding: 20px 0; }
  .ihf-bottom { justify-content: center; text-align: center; }
}
@media (max-width: 460px) { .ihf-social { grid-template-columns: 1fr; } }
@media (max-width: 420px) { .ihf-cols { grid-template-columns: 1fr; text-align: center; } }

/* ════════════════════════════════════════════════════════════
   71. GLOBAL INTERACTIVITY — hover, click, gold-swipe, glow
   Applies on EVERY page. Buttons get a gold sheen swipe + lift +
   press state; tiles/cards get a glowing golden border on hover.
   ════════════════════════════════════════════════════════════ */
.ih-btn, .ih-btn-ghost, a.kt-button, .wp-block-button__link,
.price3-buy, .mc2-buy, .price3-bundle-btn, .spv-open,
.ihm-buy, .ihm-cart, .ihead-crumb a {
  position: relative;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, color .22s ease, background .22s ease;
  -webkit-tap-highlight-color: transparent;
}
/* gold sheen swipe */
.ih-btn::after, .ih-btn-ghost::after, a.kt-button::after, .wp-block-button__link::after,
.price3-buy::after, .mc2-buy::after, .price3-bundle-btn::after, .ihm-buy::after {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.5) 50%, transparent 100%);
  transform: translateX(-130%); transition: transform .55s ease; pointer-events: none;
}
.ih-btn:hover::after, .ih-btn-ghost:hover::after, a.kt-button:hover::after, .wp-block-button__link:hover::after,
.price3-buy:hover::after, .mc2-buy:hover::after, .price3-bundle-btn:hover::after, .ihm-buy:hover::after {
  transform: translateX(130%);
}
.ih-btn:hover, a.kt-button:hover, .wp-block-button__link:hover,
.price3-buy:hover, .mc2-buy:hover, .price3-bundle-btn:hover, .ihm-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(212,175,55,0.5);
}
.ih-btn:active, a.kt-button:active, .wp-block-button__link:active,
.price3-buy:active, .mc2-buy:active, .price3-bundle-btn:active,
.ihm-buy:active, .ihm-cart:active { transform: translateY(0) scale(0.97); }
.ihm-cart:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(180,83,9,0.22); }

/* Tiles / cards — glowing golden border + lift on hover */
.ih-tile, .ihm-card, .ih-card {
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  will-change: transform;
}
.ih-tile:hover, .ihm-card:hover, .ih-card:hover {
  transform: translateY(-5px);
  border-color: var(--clr-gold) !important;
  box-shadow: 0 0 0 1.5px var(--clr-gold), 0 16px 34px rgba(212,175,55,0.34), 0 0 22px rgba(212,175,55,0.28);
}
@media (prefers-reduced-motion: reduce) {
  .ih-btn::after, a.kt-button::after, .wp-block-button__link::after, .price3-buy::after, .mc2-buy::after, .price3-bundle-btn::after, .ihm-buy::after { display: none; }
  .ih-tile, .ihm-card, .ih-card, .ih-btn, .ihm-row { transition: none; }
}

/* ════════════════════════════════════════════════════════════
   72. SITE-WIDE HISTORICAL WATERMARK (very subtle, non-distracting)
   Faint repeating manuscript/chakra motif behind all content.
   ════════════════════════════════════════════════════════════ */
body {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300' viewBox='0 0 300 300'%3E%3Cg fill='none' stroke='%238B2A2A' stroke-width='1.1' opacity='0.05'%3E%3Ccircle cx='150' cy='150' r='66'/%3E%3Ccircle cx='150' cy='150' r='18'/%3E%3Cg stroke-width='0.9'%3E%3Cline x1='150' y1='84' x2='150' y2='216'/%3E%3Cline x1='84' y1='150' x2='216' y2='150'/%3E%3Cline x1='103' y1='103' x2='197' y2='197'/%3E%3Cline x1='197' y1='103' x2='103' y2='197'/%3E%3Cline x1='121' y1='90' x2='179' y2='210'/%3E%3Cline x1='210' y1='121' x2='90' y2='179'/%3E%3Cline x1='179' y1='90' x2='121' y2='210'/%3E%3Cline x1='90' y1='121' x2='210' y2='179'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 300px 300px;
  background-attachment: fixed;
  background-position: center;
}

/* ════════════════════════════════════════════════════════════
   73. ANIMATED ARTEFACT + GOLD SWEEP (hero, bundle, final CTA)
   Pure CSS — a slow-rotating faint chakra + periodic gold sweep.
   Add class ih-relic to a dark section; it layers behind content.
   ════════════════════════════════════════════════════════════ */
.ih-relic { position: relative; overflow: hidden; }
.ih-relic > * { position: relative; z-index: 2; }
.ih-relic::before {  /* faint rotating chakra artefact */
  content: ""; position: absolute; z-index: 0; right: -90px; top: 50%;
  width: 340px; height: 340px; transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='340' height='340' viewBox='0 0 340 340'%3E%3Cg fill='none' stroke='%23C9A66B' stroke-width='2' opacity='0.5'%3E%3Ccircle cx='170' cy='170' r='150'/%3E%3Ccircle cx='170' cy='170' r='128'/%3E%3Ccircle cx='170' cy='170' r='34'/%3E%3Cg%3E%3Cline x1='170' y1='20' x2='170' y2='320'/%3E%3Cline x1='20' y1='170' x2='320' y2='170'/%3E%3Cline x1='64' y1='64' x2='276' y2='276'/%3E%3Cline x1='276' y1='64' x2='64' y2='276'/%3E%3Cline x1='108' y1='30' x2='232' y2='310'/%3E%3Cline x1='310' y1='108' x2='30' y2='232'/%3E%3Cline x1='232' y1='30' x2='108' y2='310'/%3E%3Cline x1='30' y1='108' x2='310' y2='232'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
  opacity: 0.10; animation: ihSpin 90s linear infinite; pointer-events: none;
}
.ih-relic::after {  /* slow gold sweep */
  content: ""; position: absolute; z-index: 1; top: 0; left: -60%;
  width: 55%; height: 100%; pointer-events: none;
  background: linear-gradient(100deg, transparent, rgba(212,175,55,0.12), transparent);
  animation: ihSweep 7s ease-in-out infinite;
}
@keyframes ihSpin { to { transform: translateY(-50%) rotate(360deg); } }
@keyframes ihSweep { 0% { left: -60%; } 55% { left: 120%; } 100% { left: 120%; } }
@media (prefers-reduced-motion: reduce) {
  .ih-relic::before { animation: none; } .ih-relic::after { display: none; }
}

/* ════════════════════════════════════════════════════════════
   74. MOBILE GRID FIXES — Why & Testimonials stack cleanly
   ════════════════════════════════════════════════════════════ */
.ih-why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.ih-testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; text-align: left; }
@media (max-width: 820px) {
  .ih-why-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .ih-testi-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .ih-why-grid { grid-template-columns: 1fr; gap: 10px; }
  .ih-testi-grid { grid-template-columns: 1fr; gap: 12px; }
  .ih-why-grid > div, .ih-testi-grid > div { text-align: left; }
}

/* ════════════════════════════════════════════════════════════
   75. MODULE PRICING CARDS (homepage) — MRP, price, save, Buy + Cart
   ════════════════════════════════════════════════════════════ */
.ihm-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.ihm-card {
  background: #fff; border: 1px solid rgba(212,175,55,0.28); border-radius: 14px;
  padding: 18px 16px 16px; box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  display: flex; flex-direction: column; border-top: 4px solid var(--accent, #0F172A);
}
.ihm-name { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; color: #0F172A; font-size: 1.02rem; margin: 0 0 2px; }
.ihm-meta { font-size: 0.78rem; color: #64748B; margin-bottom: 12px; }
.ihm-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.ihm-mrp { color: #94A3B8; text-decoration: line-through; font-size: 0.9rem; }
.ihm-now { color: #0F172A; font-weight: 800; font-size: 1.5rem; font-family: 'Playfair Display', Georgia, serif; }
.ihm-save { display: inline-block; background: #DCFCE7; color: #166534; font-weight: 700; font-size: 0.72rem; padding: 2px 9px; border-radius: 100px; margin-bottom: 14px; align-self: flex-start; }
.ihm-btns { margin-top: auto; display: flex; gap: 8px; }
.ihm-buy { flex: 1; text-align: center; background: linear-gradient(135deg,#E6C257,#D4AF37); color: #422006 !important; padding: 11px; border-radius: 9px; font-weight: 800; text-decoration: none; font-size: 0.9rem; }
.ihm-cart { flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; gap: 5px; background: #fff; color: #0F172A !important; border: 1.5px solid rgba(180,83,9,0.35); padding: 11px 13px; border-radius: 9px; font-weight: 700; text-decoration: none; font-size: 0.9rem; }
.ihm-cart:hover { background: #0F172A; color: #fff !important; border-color: #0F172A; }
@media (max-width: 820px) { .ihm-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .ihm-grid { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════════════════════════
   76. SCHOLARLY HERITAGE — CTA buttons (terracotta), links (emerald)
   Buttons made terracotta (overrides any inline gold), white text.
   Gold is reserved for savings/stars/badges only.
   ════════════════════════════════════════════════════════════ */
.ih-btn, .ihm-buy, .cta3-btn, .price3-buy, .price3-bundle-btn, .mc2-buy {
  background: linear-gradient(135deg, #C2410C, #B45309) !important;
  color: #FFF7ED !important;
  border: none !important;
}
.ih-btn:hover, .ihm-buy:hover, .cta3-btn:hover, .price3-buy:hover, .price3-bundle-btn:hover, .mc2-buy:hover {
  background: linear-gradient(135deg, #9A3412, #B45309) !important;
  box-shadow: 0 12px 28px rgba(180,83,9,0.42) !important;
}
.ihm-cart { color: #B45309 !important; border-color: rgba(180,83,9,0.4) !important; }
.ihm-cart:hover { background: #B45309 !important; color: #fff !important; border-color: #B45309 !important; }
/* content links -> emerald */
.entry-content a:not(.ih-btn):not(.ihm-buy):not(.ihm-cart):not([class*="btn"]) { color: var(--clr-emerald); text-decoration: underline; text-underline-offset: 2px; }
.entry-content a:hover:not(.ih-btn):not(.ihm-buy):not(.ihm-cart) { color: #14532D; }

/* ════════════════════════════════════════════════════════════
   77. PARCHMENT TEXTURE (very light) — replaces the chakra wash
   Subtle warm grain for a manuscript feel; optimized inline SVG.
   ════════════════════════════════════════════════════════════ */
body {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E"),
    radial-gradient(circle at 18% 12%, rgba(180,83,9,0.04), transparent 40%),
    radial-gradient(circle at 82% 78%, rgba(212,175,55,0.05), transparent 42%);
  background-attachment: fixed, fixed, fixed;
  background-size: 160px 160px, cover, cover;
}

/* ════════════════════════════════════════════════════════════
   78. STICKY PREMIUM HEADER (nav was not sticky)
   ════════════════════════════════════════════════════════════ */
#masthead, .site-header {
  position: -webkit-sticky; position: sticky; top: 0; z-index: 999;
  background: rgba(248,244,237,0.97);
  -webkit-backdrop-filter: saturate(1.1) blur(8px); backdrop-filter: saturate(1.1) blur(8px);
  box-shadow: 0 2px 14px rgba(15,23,42,0.07);
  border-bottom: 1px solid rgba(180,83,9,0.12);
}
.site-header .menu-container .menu-item > a, #masthead nav a {
  position: relative; font-family: 'Inter', sans-serif; font-weight: 600; color: var(--clr-ink);
}
.site-header .menu-item > a::after, #masthead nav .menu-item > a::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: 6px; height: 2px;
  background: var(--clr-terracotta); transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.site-header .menu-item:hover > a::after, #masthead nav .menu-item:hover > a::after { transform: scaleX(1); }
.site-header .menu-item > a:hover, #masthead nav a:hover { color: var(--clr-terracotta); }

/* ════════════════════════════════════════════════════════════
   79. BLOG FIX — stop posts being cropped (mobile + desktop)
   ════════════════════════════════════════════════════════════ */
html, body { overflow-x: hidden; max-width: 100%; }
.single .entry-content, .single-post .entry-content,
.blog .content-area, .archive .content-area, .single .content-area {
  max-width: 760px; margin-left: auto; margin-right: auto;
  padding-left: 18px; padding-right: 18px; box-sizing: border-box;
}
.blog .site-main, .archive .site-main, .single .site-main { overflow-x: hidden; }
.entry-content img, .entry-content figure, .wp-block-image img, .wp-block-latest-posts img { max-width: 100%; height: auto; }
.entry-content > *, .wp-block-latest-posts { max-width: 100%; box-sizing: border-box; }
.wp-block-latest-posts.is-grid { margin-left: 0; padding-left: 0; gap: 16px; }
@media (max-width: 600px) {
  .single .entry-content, .single-post .entry-content,
  .blog .content-area, .archive .content-area { padding-left: 16px; padding-right: 16px; }
  .wp-block-latest-posts.is-grid { grid-template-columns: 1fr !important; }
}

/* ════════════════════════════════════════════════════════════
   80. PRICING PROGRESS BARS (savings visual)
   ════════════════════════════════════════════════════════════ */
.ihm-bar-label { font-size: 0.72rem; color: var(--clr-emerald); font-weight: 700; margin: 2px 0 5px; display: flex; justify-content: space-between; }
.ihm-bar { height: 7px; background: #EDE7DA; border-radius: 100px; overflow: hidden; margin: 0 0 14px; }
.ihm-bar > span { display: block; height: 100%; border-radius: 100px; background: linear-gradient(90deg, var(--clr-gold), var(--clr-terracotta)); }

/* ════════════════════════════════════════════════════════════
   81. LANGUAGE TOGGLE — premium pill, sits at start of notes info
   ════════════════════════════════════════════════════════════ */
.ih-lang-toggle {
  display: inline-flex; align-items: center; gap: 3px;
  background: #fff; border: 1px solid rgba(180,83,9,0.3); border-radius: 100px;
  padding: 3px; box-shadow: 0 2px 8px rgba(15,23,42,0.06);
}
.ih-lang-toggle .ih-lang-opt {
  border: 0; background: transparent; cursor: pointer;
  font-family: 'Inter', sans-serif; font-size: 0.78rem; font-weight: 700; color: var(--clr-muted);
  padding: 6px 16px; border-radius: 100px; transition: all .2s ease;
}
.ih-lang-toggle .ih-lang-opt.is-active { background: linear-gradient(135deg,#C2410C,#B45309); color: #fff; box-shadow: 0 2px 8px rgba(180,83,9,0.35); }
.ih-lang-note { font-size: 0.78rem; color: var(--clr-muted); margin-right: 8px; font-weight: 600; }
.ih-lang-bar { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px; margin: 0 0 18px; }

/* ════════════════════════════════════════════════════════════
   82. NAV CONTRAST FIX — force solid parchment header + ink text
   (overrides Kadence transparent/dark header so menu is readable)
   ════════════════════════════════════════════════════════════ */
#masthead, .site-header, .site-header-wrap, .site-main-header-wrap,
.site-header-inner-wrap, .site-header-row-container, .site-header-row-container-inner,
.site-top-header-wrap, .site-main-header-wrap-inner,
body.transparent-header #masthead, body.transparent-header .site-header-wrap,
body.transparent-header .site-main-header-wrap {
  background-color: #F8F4ED !important;
  background-image: none !important;
}
#masthead {
  position: -webkit-sticky !important; position: sticky !important; top: 0; z-index: 9999;
  box-shadow: 0 2px 16px rgba(15,23,42,0.09);
  border-bottom: 1px solid rgba(180,83,9,0.16);
  -webkit-backdrop-filter: none; backdrop-filter: none;
}
#masthead a, .site-header a, .header-navigation .menu-item > a,
.site-title a, .site-branding a, #masthead .menu-link, .header-navigation a {
  color: #0F172A !important;
}
#masthead a:hover, .header-navigation .menu-item:hover > a,
.header-navigation .menu-item > a:hover, #masthead .menu-item.current-menu-item > a {
  color: #B45309 !important;
}
/* mobile hamburger lines + close icon */
.menu-toggle, .menu-toggle-open, .kadence-menu-mobile-toggle, .mobile-toggle-open-container .menu-toggle {
  color: #0F172A !important;
}
.menu-toggle .menu-toggle-icon::before, .menu-toggle .menu-toggle-icon::after,
.menu-toggle .menu-toggle-icon, .kadence-menu-mobile-toggle .menu-toggle-icon { background-color: #0F172A !important; }
/* dropdown submenus */
.header-navigation .sub-menu, .header-menu-container ul.sub-menu {
  background: #ffffff !important; border: 1px solid #E2E8F0 !important; box-shadow: 0 12px 28px rgba(15,23,42,0.12) !important;
}
.header-navigation .sub-menu a { color: #0F172A !important; }
.header-navigation .sub-menu a:hover { color: #B45309 !important; background: #FCFAF4 !important; }

/* ════════════════════════════════════════════════════════════
   83. FOOTER SOCIAL RIBBONS — bold, branded, click-worthy
   ════════════════════════════════════════════════════════════ */
.ihf-social { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }@media (max-width: 420px) { .ihf-social { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════════════════════════
   84. HOMEPAGE BLOG — card grid (no crop) + subtle gridline pattern
   Scoped to the homepage blog column (66_g02).
   ════════════════════════════════════════════════════════════ */
.kb-row-layout-id66_g01 {
  background-color: #FCFAF4 !important;
  background-image:
    linear-gradient(rgba(180,83,9,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(180,83,9,0.045) 1px, transparent 1px) !important;
  background-size: 30px 30px, 30px 30px !important;
}
.kb-column-id66_g02 { overflow: visible; }
.kb-column-id66_g02 .wp-block-latest-posts,
.kb-column-id66_g02 ul.wp-block-latest-posts__list {
  display: grid !important; grid-template-columns: repeat(3, 1fr); gap: 18px;
  list-style: none !important; margin: 0 auto !important; padding: 0 !important;
  max-width: 1000px; width: 100%; box-sizing: border-box;
}
.kb-column-id66_g02 .wp-block-latest-posts > li {
  background: #fff; border: 1px solid #E2E8F0; border-radius: 14px; overflow: hidden;
  margin: 0 !important; box-shadow: 0 4px 14px rgba(15,23,42,0.06);
  display: flex; flex-direction: column; text-align: left;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.kb-column-id66_g02 .wp-block-latest-posts > li:hover {
  transform: translateY(-4px); border-color: var(--clr-gold);
  box-shadow: 0 0 0 1.5px var(--clr-gold), 0 16px 32px rgba(212,175,55,0.26);
}
.kb-column-id66_g02 .wp-block-latest-posts__featured-image { margin: 0; line-height: 0; }
.kb-column-id66_g02 .wp-block-latest-posts__featured-image img { width: 100%; height: 168px; object-fit: cover; display: block; }
.kb-column-id66_g02 .wp-block-latest-posts__post-title { display: block; padding: 14px 16px 0; font-family: 'Playfair Display', Georgia, serif; font-size: 1.06rem; font-weight: 700; color: #0F172A !important; text-decoration: none; line-height: 1.3; }
.kb-column-id66_g02 .wp-block-latest-posts__post-title:hover { color: #B45309 !important; }
.kb-column-id66_g02 .wp-block-latest-posts__post-date { display: block; padding: 7px 16px 0; font-size: 0.74rem; color: #94A3B8; }
.kb-column-id66_g02 .wp-block-latest-posts__post-excerpt { padding: 8px 16px 16px; margin: 0; font-size: 0.85rem; color: #475569; line-height: 1.55; }
.kb-column-id66_g02 .wp-block-latest-posts:not(.has-featured-image) > li { padding: 4px 0; }
@media (max-width: 820px) { .kb-column-id66_g02 .wp-block-latest-posts, .kb-column-id66_g02 ul.wp-block-latest-posts__list { grid-template-columns: 1fr 1fr !important; } }
@media (max-width: 560px) { .kb-column-id66_g02 .wp-block-latest-posts, .kb-column-id66_g02 ul.wp-block-latest-posts__list { grid-template-columns: 1fr !important; } }

/* ════════════════════════════════════════════════════════════
   85. FOOTER RIBBONS v2 — premium, high-contrast, click-worthy
   (overrides §83; brand glow on hover, circular arrow badge)
   ════════════════════════════════════════════════════════════ */
.ihf-social { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }@media (max-width: 440px) { .ihf-social { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════════════════════════
   86. REUSABLE RESOURCE LIST (Free Resources pages)
   Add/remove a resource = copy ONE <a class="ih-res-item"> line in
   the block editor. All styling lives here, never per-item.
   ════════════════════════════════════════════════════════════ */
.ih-reslist { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; max-width: 880px; margin: 0 auto; }
.ih-reslist.is-single { grid-template-columns: 1fr; max-width: 680px; }
.ih-res-item {
  display: flex; align-items: center; gap: 13px;
  background: #fff; border: 1px solid #E2E8F0; border-left: 4px solid var(--clr-terracotta);
  border-radius: 12px; padding: 14px 16px; text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.ih-res-item:hover { transform: translateY(-3px); border-color: var(--clr-gold); box-shadow: 0 0 0 1.5px var(--clr-gold), 0 12px 26px rgba(212,175,55,0.24); }
.ih-res-ic { width: 44px; height: 44px; border-radius: 11px; background: rgba(180,83,9,0.10); color: var(--clr-terracotta); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; flex-shrink: 0; }
.ih-res-tx { flex: 1; min-width: 0; }
.ih-res-tx strong { display: block; color: var(--clr-ink); font-size: 0.96rem; line-height: 1.3; font-family: 'Inter', sans-serif; font-weight: 700; }
.ih-res-tx small { display: block; color: var(--clr-muted); font-size: 0.8rem; margin-top: 2px; }
.ih-res-dl { font-size: 0.82rem; font-weight: 800; color: var(--clr-terracotta); white-space: nowrap; display: inline-flex; align-items: center; gap: 4px; }
.ih-res-item:hover .ih-res-dl { color: var(--clr-terracotta-dk); }
@media (max-width: 600px) { .ih-reslist { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════════════════════════
   82. HERO (centered, animated Ashoka-chakra motif — no photo)
   ════════════════════════════════════════════════════════════ */
.ih-hero { position: relative; overflow: hidden; max-width: 900px; margin: 0 auto; padding: 22px 12px; text-align: center; }
.ih-hero > * { position: relative; z-index: 1; }
.ih-hero-text { display: flex; flex-direction: column; align-items: center; animation: ihFadeUp .9s ease both; }
/* layered, slowly counter-rotating Ashoka chakras — the animated historical motif (no photo) */
.ih-hero::before, .ih-hero::after { content: ""; position: absolute; left: 50%; top: 50%; pointer-events: none; }
.ih-hero::before { width: 540px; height: 540px; opacity: 0.06; background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='540' height='540' viewBox='0 0 540 540'%3E%3Cg fill='none' stroke='%230F172A' stroke-width='2.2'%3E%3Ccircle cx='270' cy='270' r='240'/%3E%3Ccircle cx='270' cy='270' r='206'/%3E%3Ccircle cx='270' cy='270' r='54'/%3E%3Cg%3E%3Cline x1='270' y1='30' x2='270' y2='510'/%3E%3Cline x1='30' y1='270' x2='510' y2='270'/%3E%3Cline x1='100' y1='100' x2='440' y2='440'/%3E%3Cline x1='440' y1='100' x2='100' y2='440'/%3E%3Cline x1='172' y1='40' x2='368' y2='500'/%3E%3Cline x1='500' y1='172' x2='40' y2='368'/%3E%3Cline x1='368' y1='40' x2='172' y2='500'/%3E%3Cline x1='40' y1='172' x2='500' y2='368'/%3E%3Cline x1='130' y1='62' x2='410' y2='478'/%3E%3Cline x1='478' y1='130' x2='62' y2='410'/%3E%3Cline x1='410' y1='62' x2='130' y2='478'/%3E%3Cline x1='62' y1='130' x2='478' y2='410'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); animation: ihSpinC 150s linear infinite; }
.ih-hero::after { width: 320px; height: 320px; opacity: 0.16; background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='320' viewBox='0 0 320 320'%3E%3Cg fill='none' stroke='%23D4AF37' stroke-width='1.6'%3E%3Ccircle cx='160' cy='160' r='150' stroke-dasharray='3 9'/%3E%3Ccircle cx='160' cy='160' r='120'/%3E%3Ccircle cx='160' cy='160' r='150'/%3E%3C/g%3E%3C/svg%3E"); animation: ihSpinCRev 80s linear infinite; }
.ih-hero-eyebrow { display: inline-block; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #B45309; border: 1px solid rgba(180,83,9,0.4); border-radius: 100px; padding: 6px 16px; margin-bottom: 18px; background: rgba(255,255,255,0.55); }
.ih-hero-h1 { font-size: clamp(2rem, 5.2vw, 3.3rem); line-height: 1.12; margin: 0 0 6px; color: #0F172A; font-weight: 800; }
.ih-hero-rule { width: 130px; height: 3px; margin: 16px auto 20px; border-radius: 3px; background: linear-gradient(90deg, transparent, #D4AF37, #B45309, #D4AF37, transparent); background-size: 200% 100%; animation: ihShimmer 4.5s linear infinite; }
.ih-hero-sub { color: #475569; font-size: 1.08rem; line-height: 1.66; margin: 0 auto 24px; max-width: 600px; }
.ih-hero-cta { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 20px; }
.ih-hero-cta .ih-btn, .ih-hero-cta .ih-btn-ghost { padding: 14px 28px; border-radius: 10px; font-weight: 800; text-decoration: none; font-size: 1rem; display: inline-block; }
.ih-btn-ghost { background: transparent; color: #166534 !important; border: 1.5px solid rgba(22,101,52,0.45); transition: background .2s, color .2s; }
.ih-btn-ghost:hover { background: #166534; color: #fff !important; }
.ih-hero-trust { display: flex; flex-wrap: wrap; gap: 8px 18px; justify-content: center; font-size: 0.84rem; color: #64748B; }
@keyframes ihSpinC { from { transform: translate(-50%,-50%) rotate(0deg); } to { transform: translate(-50%,-50%) rotate(360deg); } }
@keyframes ihSpinCRev { from { transform: translate(-50%,-50%) rotate(0deg); } to { transform: translate(-50%,-50%) rotate(-360deg); } }
@keyframes ihFadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes ihShimmer { from { background-position: 200% 0; } to { background-position: -200% 0; } }
@media (max-width: 820px) {
  .ih-hero { padding: 14px 6px; }
  .ih-hero::before { width: 420px; height: 420px; }
  .ih-hero::after { width: 250px; height: 250px; }
  .ih-hero-sub { font-size: 1rem; }
}
@media (prefers-reduced-motion: reduce) { .ih-hero::before, .ih-hero::after, .ih-hero-rule, .ih-hero-text { animation: none; } }

/* ════════════════════════════════════════════════════════════
   83. MODULE CARD EXTRAS — chapter previews, view link, bundle card
   ════════════════════════════════════════════════════════════ */
.ihm-samples { margin: 2px 0 12px; }
.ihm-samples-h { font-size: 0.72rem; font-weight: 700; color: #64748B; text-transform: uppercase; letter-spacing: 0.04em; }
.ihm-samples ul { list-style: none; margin: 6px 0 0; padding: 0; }
.ihm-samples li { font-size: 0.84rem; color: #475569; padding: 3px 0 3px 16px; position: relative; line-height: 1.35; }
.ihm-samples li::before { content: ""; position: absolute; left: 2px; top: 10px; width: 5px; height: 5px; border-radius: 50%; background: var(--accent, #B45309); }
.ihm-view { display: inline-block; font-size: 0.82rem; font-weight: 700; color: #166534; text-decoration: none; margin: 0 0 14px; }
.ihm-view:hover { color: #14532D; text-decoration: underline; }
/* ════════════════════════════════════════════════════════════
   84. REDESIGNED BUNDLE DEAL (on-brand, premium parchment card)
   ════════════════════════════════════════════════════════════ */
.ih-deal { position: relative; max-width: 900px; margin: 0 auto; background: linear-gradient(160deg,#FFFDF7,#FAF1DC); border: 1.5px solid rgba(212,175,55,0.55); border-radius: 20px; box-shadow: 0 20px 50px rgba(15,23,42,0.13); overflow: hidden; }
.ih-deal-ribbon { background: linear-gradient(135deg,#E6C257,#D4AF37); color: #422006; font-weight: 800; font-size: 0.74rem; letter-spacing: 0.09em; text-transform: uppercase; text-align: center; padding: 9px 12px; }
.ih-deal-body { display: grid; grid-template-columns: 1.25fr 1fr; }
.ih-deal-left { padding: 26px 28px; position: relative; }
.ih-deal-left::after { content: ""; position: absolute; top: 22px; bottom: 22px; right: 0; width: 1px; background: repeating-linear-gradient(to bottom, rgba(180,83,9,0.35) 0 6px, transparent 6px 12px); }
.ih-deal-right { padding: 26px 28px; text-align: center; display: flex; flex-direction: column; justify-content: center; background: rgba(212,175,55,0.07); }
.ih-deal h2 { font-size: clamp(1.4rem,3.4vw,1.85rem); color: #0F172A; margin: 0 0 6px; line-height: 1.2; }
.ih-deal-tagline { color: #64748B; font-size: 0.9rem; margin: 0 0 16px; }
.ih-deal-feats { list-style: none; margin: 0; padding: 0; }
.ih-deal-feats li { font-size: 0.9rem; color: #334155; padding: 5px 0 5px 26px; position: relative; }
.ih-deal-feats li::before { content: "\2713"; position: absolute; left: 0; top: 5px; color: #166534; font-weight: 800; }
.ih-deal-mrp { color: #94A3B8; text-decoration: line-through; font-size: 1.05rem; }
.ih-deal-now { color: #B45309; font-weight: 900; font-size: 2.6rem; font-family: 'Playfair Display', Georgia, serif; line-height: 1; }
.ih-deal-save { display: inline-block; background: linear-gradient(135deg,#E6C257,#D4AF37); color: #422006; font-weight: 800; font-size: 0.78rem; padding: 4px 12px; border-radius: 100px; margin: 10px 0 14px; }
.ih-deal-urgency { color: #64748B; font-size: 0.82rem; margin: 0 0 14px; }
.ih-deal-urgency strong { color: #B45309; }
.ih-deal .ih-btn { padding: 14px 30px; border-radius: 10px; font-weight: 800; font-size: 1.02rem; text-decoration: none; display: inline-block; }
.ih-deal .trust-badges { margin-top: 16px; }
@media (max-width: 680px) {
  .ih-deal-body { grid-template-columns: 1fr; }
  .ih-deal-left::after { display: none; }
  .ih-deal-left { border-bottom: 1px dashed rgba(180,83,9,0.3); }
}

/* ════════════════════════════════════════════════════════════
   85. HISTORY-WEBSITE BACKGROUND FEEL (subtle, fixed)
   Parchment grain (set in §77) + soft sepia vignette + a faint
   corner Ashoka chakra watermark — museum/manuscript atmosphere.
   ════════════════════════════════════════════════════════════ */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(180,83,9,0.05), transparent 55%),
    radial-gradient(120% 80% at 50% 110%, rgba(15,23,42,0.05), transparent 55%);
}
body::after {
  content: ""; position: fixed; right: -120px; bottom: -120px; z-index: -1; pointer-events: none;
  width: 440px; height: 440px; opacity: 0.05;
  background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='440' height='440' viewBox='0 0 440 440'%3E%3Cg fill='none' stroke='%23B45309' stroke-width='2.4'%3E%3Ccircle cx='220' cy='220' r='196'/%3E%3Ccircle cx='220' cy='220' r='168'/%3E%3Ccircle cx='220' cy='220' r='44'/%3E%3Cg%3E%3Cline x1='220' y1='24' x2='220' y2='416'/%3E%3Cline x1='24' y1='220' x2='416' y2='220'/%3E%3Cline x1='82' y1='82' x2='358' y2='358'/%3E%3Cline x1='358' y1='82' x2='82' y2='358'/%3E%3Cline x1='140' y1='34' x2='300' y2='406'/%3E%3Cline x1='406' y1='140' x2='34' y2='300'/%3E%3Cline x1='300' y1='34' x2='140' y2='406'/%3E%3Cline x1='34' y1='140' x2='406' y2='300'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* ════════════════════════════════════════════════════════════
   86. MODULE PAGE — chapter list + purchase card (buy after chapters)
   ════════════════════════════════════════════════════════════ */
.ih-mod { max-width: 880px; margin: 0 auto; }
.ih-mod-h { font-size: clamp(1.4rem,4vw,1.85rem); text-align: center; margin: 0 0 4px; }
.ih-mod-sub { text-align: center; color: #64748B; font-size: 0.95rem; margin: 0 0 16px; }
.ih-chapters { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.ih-chapters li { display: flex; gap: 11px; align-items: flex-start; background: #fff; border: 1px solid #E2E8F0; border-radius: 10px; padding: 11px 13px; font-size: 0.9rem; color: #334155; line-height: 1.4; transition: border-color .18s, box-shadow .18s, transform .18s; }
.ih-chapters li:hover { border-color: rgba(212,175,55,0.6); box-shadow: 0 6px 16px rgba(15,23,42,0.06); transform: translateY(-1px); }
.ih-chapters .ch-no { flex-shrink: 0; width: 26px; height: 26px; border-radius: 7px; background: rgba(180,83,9,0.1); color: #B45309; font-weight: 800; font-size: 0.78rem; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', Georgia, serif; }
@media (max-width: 680px) { .ih-chapters { grid-template-columns: 1fr; } }

.ih-purchase { max-width: 680px; margin: 0 auto; background: linear-gradient(160deg,#FFFDF7,#FAF1DC); border: 1.5px solid rgba(212,175,55,0.5); border-radius: 18px; padding: 26px 24px; text-align: center; box-shadow: 0 14px 40px rgba(15,23,42,0.1); }
.ih-purchase-meta { font-size: 0.82rem; color: #64748B; margin-bottom: 8px; }
.ih-purchase-price { display: flex; align-items: baseline; justify-content: center; gap: 10px; }
.ih-purchase-price .ihm-mrp { font-size: 1.05rem; }
.ih-purchase-price .ihm-now { font-size: 2.4rem; }
.ih-purchase .ihm-save { display: inline-block; background: linear-gradient(135deg,#E6C257,#D4AF37); color: #422006; font-weight: 800; font-size: 0.78rem; padding: 4px 13px; border-radius: 100px; margin: 8px 0 16px; }
.ih-purchase .ihm-btns { justify-content: center; max-width: 380px; margin: 0 auto; }
.ih-purchase .ihm-buy { padding: 13px 22px; border-radius: 9px; font-weight: 800; font-size: 0.98rem; }
.ih-purchase-note { font-size: 0.74rem; color: #94A3B8; margin-top: 12px; }@media (max-width: 560px) { .ih-contact { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════════════════════════
   88. SINGLE-SAMPLE VIEWER (module pages — one sample, like homepage)
   ════════════════════════════════════════════════════════════ */
.ih-onesample { max-width: 820px; margin: 0 auto; background: #fff; border: 1px solid #E2E8F0; border-radius: 14px; box-shadow: 0 10px 30px rgba(15,23,42,0.07); overflow: hidden; }
.ih-onesample-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 12px 16px; background: linear-gradient(135deg,#0F172A,#1E293B); color: #fff; }
.ih-onesample-head span { font-weight: 700; font-size: 0.92rem; }
.ih-onesample-open { color: #D4AF37; text-decoration: none; font-weight: 700; font-size: 0.85rem; white-space: nowrap; }
.ih-onesample-open:hover { color: #fff; }
.ih-onesample-frame { width: 100%; height: 560px; border: 0; display: block; background: #F1F5F9; }
@media (max-width: 600px) { .ih-onesample-frame { height: 420px; } }

/* ════════════════════════════════════════════════════════════
   89. BLOG GRID (mobile-first card grid for the Blog page)
   ════════════════════════════════════════════════════════════ */
.ih-blog { max-width: 1100px; margin: 0 auto; }
/* Force the Latest Posts block into a proper responsive grid regardless of Kadence wrapper */
.ih-blog ul.wp-block-latest-posts__list,
.ih-blog .wp-block-latest-posts__list,
.ih-blog .wp-block-latest-posts.is-grid {
  list-style: none !important; margin: 0 !important; padding: 0 !important;
  display: grid !important; gap: 22px !important;
  grid-template-columns: 1fr !important;
}
.ih-blog ul.wp-block-latest-posts__list > li,
.ih-blog .wp-block-latest-posts__list > li {
  background: #fff; border: 1px solid #E2E8F0; border-radius: 14px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  width: auto !important; max-width: none !important; margin: 0 !important;
}
.ih-blog ul.wp-block-latest-posts__list > li:hover,
.ih-blog .wp-block-latest-posts__list > li:hover {
  transform: translateY(-4px); border-color: rgba(212,175,55,0.6);
  box-shadow: 0 14px 34px rgba(15,23,42,0.12);
}
.ih-blog .wp-block-latest-posts__featured-image { margin: 0 !important; }
.ih-blog .wp-block-latest-posts__featured-image a { display: block; overflow: hidden; }
.ih-blog .wp-block-latest-posts__featured-image img {
  width: 100% !important; height: 200px !important;
  object-fit: cover !important; display: block !important;
  transition: transform .35s; margin: 0 !important;
}
.ih-blog .wp-block-latest-posts__featured-image a:hover img { transform: scale(1.04); }
.ih-blog .wp-block-latest-posts__post-title {
  display: block; padding: 16px 18px 0;
  font-family: 'Playfair Display', Georgia, serif; font-size: 1.1rem;
  line-height: 1.3; color: #0F172A; text-decoration: none; font-weight: 700;
}
.ih-blog .wp-block-latest-posts__post-title:hover { color: #B45309; }
.ih-blog .wp-block-latest-posts__post-date {
  padding: 5px 18px 0; color: #94A3B8; font-size: 0.76rem;
}
.ih-blog .wp-block-latest-posts__post-excerpt {
  padding: 8px 18px 18px; color: #475569; font-size: 0.88rem;
  line-height: 1.6; margin: 0; flex: 1;
}
/* 2-col on tablet, 3-col on desktop */
@media (min-width: 580px) {
  .ih-blog ul.wp-block-latest-posts__list,
  .ih-blog .wp-block-latest-posts__list,
  .ih-blog .wp-block-latest-posts.is-grid { grid-template-columns: 1fr 1fr !important; }
}
@media (min-width: 880px) {
  .ih-blog ul.wp-block-latest-posts__list,
  .ih-blog .wp-block-latest-posts__list,
  .ih-blog .wp-block-latest-posts.is-grid { grid-template-columns: 1fr 1fr 1fr !important; }
}

/* About story without photo — single centered column */
.about-story-single { max-width: 820px; margin: 0 auto; }
.about-story-single .about-story-col { width: 100%; }

/* Account page — login / register two-up */
.ih-acct-grid { max-width: 880px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.ih-acct-card { background: #fff; border: 1px solid #E2E8F0; border-radius: 14px; padding: 20px 20px 8px; box-shadow: 0 4px 14px rgba(15,23,42,0.07); }
.ih-acct-h { font-family: 'Playfair Display', Georgia, serif; font-size: 1.25rem; color: #0F172A; margin: 0 0 10px; }
.ih-acct-note { font-size: 0.86rem; color: #64748B; line-height: 1.5; margin: 0 0 10px; }
@media (max-width: 680px) { .ih-acct-grid { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════════════════════════
   90. CHECKOUT MENU BUTTON (standout nav item)
   ════════════════════════════════════════════════════════════ */
.primary-navigation .menu-item-checkout,
.header-navigation .menu-item-checkout,
li.menu-item-checkout { display: flex; align-items: center; }
li.menu-item-checkout > a {
  background: #B45309 !important;
  color: #FFFFFF !important;
  padding: 8px 22px !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em;
  border: 1px solid #B45309 !important;
  box-shadow: 0 2px 8px rgba(180,83,9,0.22);
  transition: background .18s ease, box-shadow .18s ease, transform .18s ease;
}
li.menu-item-checkout > a:hover,
li.menu-item-checkout > a:focus,
li.menu-item-checkout.current-menu-item > a {
  background: #9A3412 !important;
  color: #FFFFFF !important;
  transform: translateY(-1px);
  box-shadow: 0 5px 16px rgba(154,52,18,0.34);
}
/* no emoji glyph, no gold underline on the button */
li.menu-item-checkout > a::before { content: none !important; }
li.menu-item-checkout > a::after { display: none !important; }
@media (max-width: 1024px) {
  li.menu-item-checkout { margin-top: 4px; }
  li.menu-item-checkout > a { display: inline-block; padding: 10px 22px !important; }
}

/* ════════════════════════════════════════════════════════════
   91. BLOG PAGE — horizontal magazine cards (image left, text right)
   Single column → never renders as narrow columns. Stacks on mobile.
   ════════════════════════════════════════════════════════════ */
.ih-blog2 { max-width: 860px; margin: 0 auto; }
.ih-blog2 .wp-block-post-template {
  list-style: none !important; margin: 0 !important; padding: 0 !important;
  display: flex !important; flex-direction: column !important; gap: 20px !important;
}
.ih-blog2 .wp-block-post-template > li { margin: 0 !important; padding: 0 !important; max-width: none !important; width: 100% !important; }
.ih-bcard {
  display: flex !important; flex-direction: row !important; align-items: stretch; gap: 0 !important;
  background: #fff; border: 1px solid #E2E8F0; border-radius: 14px; overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.ih-bcard:hover { transform: translateY(-3px); border-color: rgba(212,175,55,0.6); box-shadow: 0 14px 32px rgba(15,23,42,0.11); }
.ih-bcard-img { flex: 0 0 38% !important; max-width: 38% !important; margin: 0 !important; overflow: hidden; }
.ih-bcard-img img { width: 100% !important; height: 100% !important; min-height: 175px; object-fit: cover !important; display: block; transition: transform .35s ease; }
.ih-bcard:hover .ih-bcard-img img { transform: scale(1.05); }
.ih-bcard-body { flex: 1 1 auto !important; padding: 20px 24px !important; display: flex; flex-direction: column; justify-content: center; }
.ih-bcard-title { margin: 0 0 6px !important; font-family: 'Playfair Display', Georgia, serif; font-size: 1.3rem; line-height: 1.28; }
.ih-bcard-title a { color: #0F172A !important; text-decoration: none; }
.ih-bcard-title a:hover { color: #B45309 !important; }
.ih-bcard-date { color: #94A3B8; font-size: 0.78rem; margin: 0 0 9px !important; }
.ih-bcard-excerpt { color: #475569; font-size: 0.93rem; line-height: 1.62; margin: 0 !important; }
.ih-bcard-excerpt .wp-block-post-excerpt__more-link { display: inline-block; margin-top: 8px; color: #166534; font-weight: 700; text-decoration: none; }
.ih-bcard-excerpt .wp-block-post-excerpt__more-link:hover { color: #B45309; }
.ih-blog-empty { text-align: center; color: #64748B; background: #fff; border: 1px dashed #E2E8F0; border-radius: 14px; padding: 34px 18px; font-size: 0.95rem; }
@media (max-width: 640px) {
  .ih-bcard { flex-direction: column !important; }
  .ih-bcard-img { flex: none !important; max-width: 100% !important; }
  .ih-bcard-img img { height: 200px !important; min-height: 0; }
  .ih-bcard-body { padding: 18px 20px !important; }
  .ih-bcard-title { font-size: 1.18rem; }
}
