/*
Theme Name: Mompreneur CEO
Author: Codex
Description: WordPress theme converted from the mompreneur-ceo-theme HTML landing page.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: mompreneur-ceo
*/

/* ─── DESIGN TOKENS ─── */
    :root {
      /* Mocha Mousse 2025 palette */
      --mocha:        #9E7B5E;
      --mocha-dark:   #6B4332;
      --espresso:     #2C1A10;
      --espresso-mid: #4A2E1E;
      --caramel:      #B8865C;
      --latte:        #D4B896;
      --cream:        #FAF6EF;
      --ivory:        #F5EDD8;
      --warm-white:   #FFFCF7;

      /* Gold accent */
      --gold:         #C9A96E;
      --gold-light:   #E8D5A3;
      --gold-dark:    #9E7A3A;
      --gold-pale:    #F5ECD4;

      /* Cherry accent */
      --cherry:       #8B2635;
      --cherry-light: #C4516A;
      --cherry-pale:  #F5D5DB;

      --ink:          #1A0F08;
      --ink-soft:     #5C3D2A;
      --ink-muted:    #9E8070;
      --border:       rgba(158,123,94,0.16);
      --border-gold:  rgba(201,169,110,0.3);

      --font-display: 'Gloock', 'Georgia', serif;
      --font-serif:   'Rufina', 'Georgia', serif;
      --font-body:    'Plus Jakarta Sans', sans-serif;

      --radius-xs: 4px;
      --radius-sm: 8px;
      --radius-md: 16px;
      --radius-lg: 28px;
      --radius-xl: 56px;

      --shadow-warm:  0 4px 32px rgba(107,67,50,0.12);
      --shadow-card:  0 2px 20px rgba(107,67,50,0.08);
      --shadow-lift:  0 16px 56px rgba(44,26,16,0.16);
      --shadow-gold:  0 8px 32px rgba(201,169,110,0.28);
    }

    /* ─── BASE ─── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-body);
      background: var(--warm-white);
      color: var(--ink);
      line-height: 1.6;
      overflow-x: hidden;
    }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    img { max-width: 100%; display: block; }

    /* ─── UTILITY ─── */
    .container { max-width: 1220px; margin: 0 auto; padding: 0 28px; }
    .tag {
      display: inline-block;
      font-family: var(--font-body);
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      background: var(--gold-pale);
      color: var(--gold-dark);
      padding: 4px 11px;
      border-radius: 100px;
      border: 1px solid var(--border-gold);
    }
    .tag-cherry {
      background: var(--cherry-pale);
      color: var(--cherry);
      border-color: rgba(139,38,53,0.2);
    }
    .tag-mocha {
      background: var(--ivory);
      color: var(--mocha-dark);
      border-color: var(--border);
    }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      background: var(--gold);
      color: var(--espresso);
      font-family: var(--font-body);
      font-size: 0.88rem;
      font-weight: 600;
      padding: 14px 26px;
      border-radius: var(--radius-xs);
      border: none;
      cursor: pointer;
      letter-spacing: 0.02em;
      transition: all 0.25s ease;
      position: relative;
      overflow: hidden;
    }
    .btn-primary::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(255,255,255,0.15);
      transform: translateX(-100%);
      transition: transform 0.3s ease;
    }
    .btn-primary:hover::after { transform: translateX(0); }
    .btn-primary:hover {
      background: var(--gold-dark);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: var(--shadow-gold);
    }
    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: transparent;
      color: var(--gold);
      font-family: var(--font-body);
      font-size: 0.85rem;
      font-weight: 600;
      padding: 13px 22px;
      border-radius: var(--radius-xs);
      border: 1.5px solid var(--gold);
      cursor: pointer;
      letter-spacing: 0.02em;
      transition: all 0.22s ease;
    }
    .btn-ghost:hover {
      background: var(--gold);
      color: var(--espresso);
    }
    .btn-dark {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      background: var(--espresso);
      color: var(--gold-light);
      font-family: var(--font-body);
      font-size: 0.88rem;
      font-weight: 600;
      padding: 14px 26px;
      border-radius: var(--radius-xs);
      border: none;
      cursor: pointer;
      letter-spacing: 0.03em;
      transition: all 0.25s ease;
    }
    .btn-dark:hover {
      background: var(--espresso-mid);
      transform: translateY(-2px);
      box-shadow: var(--shadow-lift);
    }
    .btn-cherry {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      background: var(--cherry);
      color: #fff;
      font-family: var(--font-body);
      font-size: 0.88rem;
      font-weight: 600;
      padding: 14px 26px;
      border-radius: var(--radius-xs);
      border: none;
      cursor: pointer;
      letter-spacing: 0.02em;
      transition: all 0.25s ease;
    }
    .btn-cherry:hover {
      background: #6E1D28;
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(139,38,53,0.3);
    }
    .eyebrow {
      font-family: var(--font-body);
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 14px;
    }
    .eyebrow::after {
      content: '';
      flex: 1;
      max-width: 40px;
      height: 1px;
      background: linear-gradient(90deg, var(--gold), transparent);
    }
    .section-title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 3.2rem);
      color: var(--espresso);
      line-height: 1.1;
      margin-bottom: 16px;
    }
    .section-title em {
      font-style: italic;
      color: var(--mocha);
    }
    .section-subtitle {
      font-size: 1rem;
      color: var(--ink-soft);
      line-height: 1.75;
      max-width: 520px;
    }
    .gold-line {
      width: 56px;
      height: 2px;
      background: linear-gradient(90deg, var(--gold), var(--latte));
      margin-bottom: 28px;
    }

    /* ─── TICKER / ANNOUNCEMENT ─── */
    .ticker-wrap {
      background: var(--espresso);
      overflow: hidden;
      padding: 10px 0;
      position: relative;
    }
    .ticker {
      display: flex;
      white-space: nowrap;
      animation: ticker 28s linear infinite;
    }
    .ticker-item {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      color: var(--latte);
      padding: 0 32px;
    }
    .ticker-dot { color: var(--gold); font-size: 0.6rem; }
    @keyframes ticker {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* ─── HEADER ─── */
    header {
      position: sticky;
      top: 0;
      z-index: 200;
      background: rgba(255,252,247,0.94);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
      transition: box-shadow 0.3s;
    }
    .nav-inner {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      height: 72px;
      gap: 24px;
    }
    .logo {
      display: flex;
      align-items: center;
      gap: 0;
    }
    .logo-icon {
      width: 40px;
      height: 40px;
      background: var(--espresso);
      border-radius: var(--radius-xs);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      margin-right: 12px;
      flex-shrink: 0;
    }
    .logo-wordmark {
      display: flex;
      flex-direction: column;
    }
    .logo-name {
      font-family: var(--font-display);
      font-size: 1.25rem;
      color: var(--espresso);
      line-height: 1;
    }
    .logo-tagline {
      font-size: 0.58rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 600;
    }
    .nav-center ul {
      display: flex;
      align-items: center;
      gap: 2px;
    }
    .nav-center ul li a {
      font-size: 0.83rem;
      font-weight: 500;
      color: var(--ink-soft);
      padding: 8px 14px;
      border-radius: var(--radius-xs);
      transition: all 0.2s;
    }
    .nav-center ul li a:hover { color: var(--espresso); background: var(--ivory); }
    .nav-right {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 10px;
    }
    .nav-cart {
      width: 38px;
      height: 38px;
      background: var(--ivory);
      border-radius: var(--radius-xs);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      cursor: pointer;
      border: none;
      transition: all 0.2s;
      position: relative;
    }
    .nav-cart:hover { background: var(--gold-pale); }
    .cart-badge {
      position: absolute;
      top: -4px;
      right: -4px;
      width: 16px;
      height: 16px;
      background: var(--cherry);
      border-radius: 50%;
      font-size: 0.6rem;
      font-weight: 700;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* ─── HERO ─── */
    .hero {
      background: var(--espresso);
      position: relative;
      overflow: hidden;
      min-height: 92vh;
      display: flex;
      align-items: center;
    }
    /* Grain texture overlay */
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      z-index: 1;
      pointer-events: none;
    }
    /* Warm glow spots */
    .hero-glow-1 {
      position: absolute;
      top: -10%;
      right: 5%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(201,169,110,0.15) 0%, transparent 70%);
      z-index: 0;
    }
    .hero-glow-2 {
      position: absolute;
      bottom: 0;
      left: 30%;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(158,123,94,0.1) 0%, transparent 70%);
      z-index: 0;
    }
    /* Diagonal gold rule */
    .hero-rule {
      position: absolute;
      top: 0;
      left: 46%;
      width: 1px;
      height: 100%;
      background: linear-gradient(to bottom, transparent 0%, rgba(201,169,110,0.25) 30%, rgba(201,169,110,0.12) 70%, transparent 100%);
      z-index: 1;
    }
    .hero-inner {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 72px;
      align-items: center;
      padding: 80px 0;
    }
    .hero-content { }
    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(201,169,110,0.12);
      border: 1px solid rgba(201,169,110,0.25);
      border-radius: 100px;
      padding: 6px 14px;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold-light);
      margin-bottom: 28px;
    }
    .hero-eyebrow-dot {
      width: 6px;
      height: 6px;
      background: var(--gold);
      border-radius: 50%;
      animation: pulse 2s ease-in-out infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(0.7); }
    }
    .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(3rem, 6vw, 5.5rem);
      color: var(--cream);
      line-height: 1.03;
      margin-bottom: 24px;
      letter-spacing: -0.01em;
    }
    .hero h1 em {
      font-style: italic;
      color: var(--gold);
    }
    .hero h1 .hero-word-break { display: block; }
    .hero-desc {
      font-size: 1.02rem;
      color: rgba(250,246,239,0.62);
      line-height: 1.8;
      margin-bottom: 36px;
      max-width: 440px;
      font-weight: 300;
    }
    .hero-cta-row {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 48px;
    }
    .hero-metrics {
      display: flex;
      gap: 32px;
      padding-top: 36px;
      border-top: 1px solid rgba(201,169,110,0.15);
    }
    .metric {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }
    .metric-num {
      font-family: var(--font-display);
      font-size: 1.8rem;
      color: var(--gold);
      line-height: 1;
    }
    .metric-label {
      font-size: 0.72rem;
      color: rgba(250,246,239,0.45);
      font-weight: 400;
    }

    /* Hero right panel */
    .hero-panel {
      position: relative;
    }
    .hero-card {
      background: rgba(255,252,247,0.05);
      border: 1px solid rgba(201,169,110,0.2);
      border-radius: var(--radius-md);
      backdrop-filter: blur(8px);
      overflow: hidden;
    }
    .hero-card-top {
      background: linear-gradient(135deg, var(--mocha-dark) 0%, var(--espresso-mid) 100%);
      padding: 32px;
      position: relative;
      height: 240px;
      display: flex;
      align-items: flex-end;
    }
    .hero-card-top::after {
      content: '✦';
      position: absolute;
      top: 20px;
      right: 20px;
      font-size: 1.8rem;
      color: rgba(201,169,110,0.3);
    }
    .hct-big {
      font-size: 5rem;
      line-height: 1;
      margin-bottom: 8px;
    }
    .hero-card-bottom {
      padding: 24px 28px 28px;
    }
    .hero-card-bottom h3 {
      font-family: var(--font-display);
      font-size: 1.3rem;
      color: var(--cream);
      margin-bottom: 6px;
    }
    .hero-card-bottom p {
      font-size: 0.8rem;
      color: rgba(250,246,239,0.55);
      margin-bottom: 18px;
      line-height: 1.55;
    }
    .hero-card-price-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .hcp-prices .hcp-was {
      font-size: 0.72rem;
      color: rgba(250,246,239,0.35);
      text-decoration: line-through;
    }
    .hcp-prices .hcp-now {
      font-family: var(--font-display);
      font-size: 1.8rem;
      color: var(--gold);
      line-height: 1;
    }

    /* Floating elements */
    .hero-float-a {
      position: absolute;
      top: -16px;
      right: -16px;
      background: var(--gold);
      border-radius: var(--radius-sm);
      padding: 16px 18px;
      text-align: center;
      min-width: 100px;
    }
    .hero-float-a .hfa-num {
      font-family: var(--font-display);
      font-size: 1.6rem;
      color: var(--espresso);
      line-height: 1;
    }
    .hero-float-a .hfa-label {
      font-size: 0.65rem;
      font-weight: 600;
      color: rgba(44,26,16,0.7);
      line-height: 1.3;
    }
    .hero-float-b {
      position: absolute;
      bottom: 32px;
      left: -32px;
      background: var(--cream);
      border-radius: var(--radius-sm);
      padding: 14px 18px;
      display: flex;
      align-items: center;
      gap: 12px;
      box-shadow: var(--shadow-lift);
    }
    .hfb-icon {
      width: 38px;
      height: 38px;
      background: var(--gold-pale);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      flex-shrink: 0;
    }
    .hfb-text { font-size: 0.78rem; color: var(--ink-soft); line-height: 1.4; }
    .hfb-text strong { color: var(--espresso); display: block; font-size: 0.85rem; }

    /* ─── BRANDS / PROOF BAR ─── */
    .proof-bar {
      background: var(--ivory);
      border-bottom: 1px solid var(--border);
      padding: 22px 0;
    }
    .proof-inner {
      display: flex;
      align-items: center;
      gap: 0;
    }
    .proof-label {
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--ink-muted);
      white-space: nowrap;
      padding-right: 28px;
      border-right: 1px solid var(--border);
      flex-shrink: 0;
    }
    .proof-logos {
      display: flex;
      align-items: center;
      gap: 36px;
      padding-left: 28px;
      flex-wrap: wrap;
    }
    .proof-logo {
      font-family: var(--font-serif);
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--mocha-dark);
      opacity: 0.38;
      letter-spacing: -0.01em;
      transition: opacity 0.2s;
    }
    .proof-logo:hover { opacity: 0.7; }

    /* ─── VALUE STRIP ─── */
    .value-strip {
      background: var(--espresso);
      padding: 52px 0;
      position: relative;
      overflow: hidden;
    }
    .value-strip::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }
    .value-strip::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }
    .value-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: rgba(201,169,110,0.1);
    }
    .value-item {
      padding: 0 36px;
      background: var(--espresso);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .value-icon {
      font-size: 1.8rem;
      margin-bottom: 12px;
    }
    .value-title {
      font-family: var(--font-display);
      font-size: 1.05rem;
      color: var(--gold-light);
      margin-bottom: 6px;
    }
    .value-desc {
      font-size: 0.78rem;
      color: rgba(250,246,239,0.45);
      line-height: 1.55;
    }

    /* ─── CATEGORIES - Horizontal Editorial Strip ─── */
    .categories {
      padding: 88px 0 0;
    }
    .cats-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 40px;
    }
    .cats-scroll {
      display: flex;
      gap: 16px;
      overflow-x: auto;
      padding-bottom: 8px;
      scrollbar-width: none;
      margin-bottom: 88px;
    }
    .cats-scroll::-webkit-scrollbar { display: none; }
    .cat-card {
      flex: 0 0 260px;
      background: var(--ivory);
      border-radius: var(--radius-sm);
      overflow: hidden;
      cursor: pointer;
      border: 1.5px solid transparent;
      transition: all 0.28s ease;
      position: relative;
    }
    .cat-card:hover {
      border-color: var(--gold);
      transform: translateY(-4px);
      box-shadow: var(--shadow-gold);
    }
    .cat-card-img {
      height: 140px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 3rem;
      position: relative;
    }
    .cat-card-img.c1 { background: linear-gradient(135deg, #3D2314 0%, #6B4332 100%); }
    .cat-card-img.c2 { background: linear-gradient(135deg, #9E7A3A 0%, #C9A96E 100%); }
    .cat-card-img.c3 { background: linear-gradient(135deg, #4A2E1E 0%, #9E7B5E 100%); }
    .cat-card-img.c4 { background: linear-gradient(135deg, #6E1D28 0%, #C4516A 100%); }
    .cat-card-img.c5 { background: linear-gradient(135deg, #2C1A10 0%, #B8865C 100%); }
    .cat-card-body {
      padding: 18px 20px 20px;
    }
    .cat-card-body h3 {
      font-family: var(--font-display);
      font-size: 1.05rem;
      color: var(--espresso);
      margin-bottom: 4px;
    }
    .cat-card-body p {
      font-size: 0.76rem;
      color: var(--ink-muted);
      margin-bottom: 10px;
      line-height: 1.45;
    }
    .cat-count {
      font-size: 0.68rem;
      font-weight: 700;
      color: var(--gold-dark);
      letter-spacing: 0.06em;
    }

    /* ─── FEATURED PRODUCT HERO BAND ─── */
    .featured-band {
      background: var(--espresso-mid);
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }
    .featured-band::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent 10%, var(--gold) 50%, transparent 90%);
    }
    .featured-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: center;
    }
    .featured-visual {
      position: relative;
    }
    .featured-mockup {
      background: rgba(255,252,247,0.07);
      border: 1px solid rgba(201,169,110,0.22);
      border-radius: var(--radius-md);
      overflow: hidden;
    }
    .fm-top {
      background: linear-gradient(135deg, var(--mocha-dark) 0%, #3D2314 100%);
      height: 220px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 5rem;
      position: relative;
    }
    .fm-top .fm-badge {
      position: absolute;
      top: 16px;
      right: 16px;
      background: var(--gold);
      color: var(--espresso);
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 5px 11px;
      border-radius: 100px;
    }
    .fm-body { padding: 24px 26px 26px; }
    .fm-body h3 {
      font-family: var(--font-display);
      font-size: 1.35rem;
      color: var(--cream);
      margin-bottom: 8px;
    }
    .fm-body p {
      font-size: 0.82rem;
      color: rgba(250,246,239,0.52);
      margin-bottom: 18px;
      line-height: 1.6;
    }
    .fm-includes {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-bottom: 20px;
    }
    .fm-tag {
      font-size: 0.65rem;
      background: rgba(201,169,110,0.12);
      color: var(--gold-light);
      padding: 4px 10px;
      border-radius: 100px;
      border: 1px solid rgba(201,169,110,0.2);
      font-weight: 500;
    }
    .fm-price-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .fm-price {
      display: flex;
      flex-direction: column;
    }
    .fm-price .was {
      font-size: 0.72rem;
      color: rgba(250,246,239,0.3);
      text-decoration: line-through;
    }
    .fm-price .now {
      font-family: var(--font-display);
      font-size: 2rem;
      color: var(--gold);
      line-height: 1;
    }
    /* Floats on featured */
    .feat-float-1 {
      position: absolute;
      top: -14px;
      left: -24px;
      background: var(--gold);
      border-radius: var(--radius-sm);
      padding: 14px 18px;
      text-align: center;
    }
    .feat-float-1 .ff1-num {
      font-family: var(--font-display);
      font-size: 1.4rem;
      color: var(--espresso);
      line-height: 1;
    }
    .feat-float-1 .ff1-label { font-size: 0.62rem; font-weight: 700; color: rgba(44,26,16,0.65); }
    .feat-float-2 {
      position: absolute;
      bottom: 24px;
      right: -20px;
      background: var(--cream);
      border-radius: var(--radius-sm);
      padding: 12px 16px;
      display: flex;
      align-items: center;
      gap: 10px;
      box-shadow: var(--shadow-warm);
    }
    .ff2-icon { font-size: 1.2rem; }
    .ff2-text { font-size: 0.75rem; color: var(--ink-soft); line-height: 1.3; }
    .ff2-text strong { color: var(--espresso); display: block; font-size: 0.8rem; }
    .featured-content { }
    .featured-content .eyebrow { color: var(--latte); }
    .featured-content .eyebrow::after { background: linear-gradient(90deg, var(--latte), transparent); }
    .featured-content h2 {
      font-family: var(--font-display);
      font-size: clamp(2rem, 3.5vw, 3rem);
      color: var(--cream);
      line-height: 1.12;
      margin-bottom: 18px;
    }
    .featured-content h2 em { color: var(--gold); font-style: italic; }
    .featured-content p {
      font-size: 0.97rem;
      color: rgba(250,246,239,0.6);
      line-height: 1.8;
      margin-bottom: 28px;
      max-width: 440px;
    }
    .feat-bullets { display: flex; flex-direction: column; gap: 12px; margin-bottom: 34px; }
    .feat-bullet {
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }
    .bullet-marker {
      width: 22px;
      height: 22px;
      background: rgba(201,169,110,0.15);
      border: 1px solid rgba(201,169,110,0.3);
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.65rem;
      color: var(--gold);
      flex-shrink: 0;
      margin-top: 1px;
    }
    .feat-bullet p { font-size: 0.88rem; color: rgba(250,246,239,0.7); margin: 0; line-height: 1.5; }

    /* ─── SHOP ─── */
    .shop-section {
      padding: 88px 0;
      background: var(--warm-white);
    }
    .shop-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 48px;
      gap: 24px;
    }
    .products-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      margin-bottom: 48px;
    }
    .product-card {
      background: #fff;
      border-radius: var(--radius-sm);
      overflow: hidden;
      border: 1.5px solid var(--border);
      transition: all 0.28s ease;
      cursor: pointer;
      position: relative;
    }
    .product-card:hover {
      border-color: var(--gold);
      transform: translateY(-5px);
      box-shadow: var(--shadow-gold);
    }
    .pc-badge {
      position: absolute;
      top: 14px;
      left: 14px;
      z-index: 2;
      background: var(--cherry);
      color: #fff;
      font-size: 0.6rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 100px;
    }
    .pc-badge.new { background: var(--espresso); }
    .pc-badge.free { background: var(--gold-dark); }
    .product-img {
      height: 210px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 3.5rem;
      position: relative;
    }
    .product-img.p1 { background: linear-gradient(160deg, var(--ivory) 0%, var(--latte) 100%); }
    .product-img.p2 { background: linear-gradient(160deg, var(--gold-pale) 0%, var(--gold-light) 100%); }
    .product-img.p3 { background: linear-gradient(160deg, var(--cherry-pale) 0%, #EFAABB 100%); }
    .pc-body { padding: 20px 22px 22px; }
    .pc-rating {
      display: flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 8px;
    }
    .stars { color: var(--gold); font-size: 0.8rem; letter-spacing: 1px; }
    .rc { font-size: 0.7rem; color: var(--ink-muted); }
    .product-card h3 {
      font-family: var(--font-display);
      font-size: 1.1rem;
      color: var(--espresso);
      margin-bottom: 6px;
      line-height: 1.25;
    }
    .pc-desc {
      font-size: 0.79rem;
      color: var(--ink-soft);
      line-height: 1.55;
      margin-bottom: 14px;
    }
    .pc-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 5px;
      margin-bottom: 16px;
    }
    .pc-chip {
      font-size: 0.65rem;
      background: var(--ivory);
      color: var(--mocha-dark);
      padding: 3px 9px;
      border-radius: 100px;
      font-weight: 600;
      border: 1px solid var(--border);
    }
    .pc-price-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .pc-price { display: flex; flex-direction: column; gap: 1px; }
    .pc-was { font-size: 0.7rem; color: var(--ink-muted); text-decoration: line-through; }
    .pc-now { font-family: var(--font-display); font-size: 1.4rem; color: var(--espresso); line-height: 1; }
    .add-btn {
      width: 38px;
      height: 38px;
      background: var(--espresso);
      border: none;
      border-radius: var(--radius-xs);
      color: var(--gold);
      font-size: 1.1rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
      flex-shrink: 0;
    }
    .add-btn:hover { background: var(--mocha-dark); transform: scale(1.08); }
    .shop-footer { text-align: center; }

    /* ─── BLOG — MAGAZINE LAYOUT ─── */
    .blog-section {
      padding: 88px 0;
      background: var(--ivory);
    }
    .blog-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 48px;
      gap: 24px;
    }
    .blog-magazine {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto;
      gap: 22px;
    }
    /* Large featured article left */
    .blog-mag-main {
      grid-row: 1 / 3;
      background: #fff;
      border-radius: var(--radius-sm);
      overflow: hidden;
      border: 1.5px solid var(--border);
      cursor: pointer;
      transition: all 0.25s ease;
    }
    .blog-mag-main:hover {
      border-color: var(--gold);
      box-shadow: var(--shadow-warm);
    }
    .blog-mag-main .bm-img {
      height: 320px;
      background: linear-gradient(160deg, var(--espresso) 0%, var(--mocha-dark) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 5rem;
      position: relative;
    }
    .bm-img-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(44,26,16,0.6), transparent 50%);
    }
    .bm-img-tag {
      position: absolute;
      bottom: 18px;
      left: 18px;
    }
    .bm-body { padding: 24px 26px 28px; }
    .bm-body h2 {
      font-family: var(--font-display);
      font-size: 1.6rem;
      color: var(--espresso);
      line-height: 1.2;
      margin-bottom: 10px;
    }
    .bm-body p {
      font-size: 0.85rem;
      color: var(--ink-soft);
      line-height: 1.65;
      margin-bottom: 18px;
    }
    .bm-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 14px;
      border-top: 1px solid var(--border);
    }
    .bm-author {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .bm-avatar {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: var(--latte);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8rem;
    }
    .bm-author-name { font-size: 0.78rem; font-weight: 600; color: var(--ink-soft); }
    .bm-time { font-size: 0.72rem; color: var(--ink-muted); }
    .read-link {
      font-size: 0.76rem;
      font-weight: 600;
      color: var(--gold-dark);
      display: flex;
      align-items: center;
      gap: 4px;
    }
    .read-link:hover { color: var(--cherry); }

    /* Small side posts */
    .blog-side-post {
      background: #fff;
      border-radius: var(--radius-sm);
      overflow: hidden;
      border: 1.5px solid var(--border);
      cursor: pointer;
      transition: all 0.25s ease;
      display: grid;
      grid-template-columns: 110px 1fr;
    }
    .blog-side-post:hover {
      border-color: var(--gold);
      box-shadow: var(--shadow-card);
    }
    .bsp-img {
      height: 100%;
      min-height: 120px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
    }
    .bsp-img.s1 { background: linear-gradient(135deg, var(--gold-pale), var(--gold-light)); }
    .bsp-img.s2 { background: linear-gradient(135deg, var(--cherry-pale), #efaabb); }
    .bsp-img.s3 { background: linear-gradient(135deg, var(--ivory), var(--latte)); }
    .bsp-body { padding: 16px 18px; }
    .bsp-body h3 {
      font-family: var(--font-display);
      font-size: 0.98rem;
      color: var(--espresso);
      margin-bottom: 6px;
      line-height: 1.3;
    }
    .bsp-body p { font-size: 0.75rem; color: var(--ink-soft); margin-bottom: 8px; line-height: 1.5; }
    .bsp-time { font-size: 0.68rem; color: var(--ink-muted); }

    /* ─── EMAIL OPTIN ─── */
    .optin-section {
      padding: 100px 0;
      background: var(--espresso);
      position: relative;
      overflow: hidden;
    }
    .optin-section::before {
      content: '';
      position: absolute;
      top: -200px;
      right: -100px;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(201,169,110,0.1) 0%, transparent 70%);
    }
    .optin-top {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      position: relative;
      z-index: 1;
    }
    .optin-content { }
    .optin-content .eyebrow {
      color: var(--latte);
    }
    .optin-content .eyebrow::after { background: linear-gradient(90deg, var(--latte), transparent); }
    .optin-content h2 {
      font-family: var(--font-display);
      font-size: clamp(2rem, 3.5vw, 3rem);
      color: var(--cream);
      line-height: 1.1;
      margin-bottom: 18px;
    }
    .optin-content h2 em { color: var(--gold); font-style: italic; }
    .optin-content p {
      color: rgba(250,246,239,0.58);
      line-height: 1.8;
      margin-bottom: 28px;
      font-size: 0.97rem;
    }
    .optin-perks { display: flex; flex-direction: column; gap: 11px; }
    .optin-perk {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 0.87rem;
      color: rgba(250,246,239,0.75);
    }
    .perk-check {
      width: 20px;
      height: 20px;
      background: rgba(201,169,110,0.15);
      border: 1px solid rgba(201,169,110,0.3);
      border-radius: var(--radius-xs);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.6rem;
      color: var(--gold);
      flex-shrink: 0;
    }
    /* Optin form */
    .optin-form-box {
      background: rgba(255,252,247,0.05);
      border: 1px solid rgba(201,169,110,0.18);
      border-radius: var(--radius-md);
      padding: 44px 38px;
      backdrop-filter: blur(8px);
      position: relative;
    }
    .optin-form-box::before {
      content: '✦ FREE DOWNLOAD ✦';
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--gold);
      color: var(--espresso);
      font-size: 0.6rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      padding: 5px 16px;
      border-radius: 100px;
      white-space: nowrap;
    }
    .freebie-box {
      background: rgba(201,169,110,0.08);
      border: 1px solid rgba(201,169,110,0.15);
      border-radius: var(--radius-sm);
      padding: 14px 16px;
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 24px;
    }
    .fb-icon { font-size: 2rem; }
    .fb-text { font-size: 0.78rem; color: rgba(250,246,239,0.65); line-height: 1.45; }
    .fb-text strong { color: var(--gold-light); display: block; font-size: 0.85rem; margin-bottom: 2px; }
    .form-field { margin-bottom: 14px; }
    .form-field label {
      display: block;
      font-size: 0.72rem;
      font-weight: 600;
      color: rgba(250,246,239,0.6);
      margin-bottom: 7px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }
    .form-field input {
      width: 100%;
      background: rgba(255,252,247,0.07);
      border: 1.5px solid rgba(201,169,110,0.15);
      border-radius: var(--radius-xs);
      padding: 13px 16px;
      font-family: var(--font-body);
      font-size: 0.9rem;
      color: var(--cream);
      transition: all 0.2s;
      outline: none;
    }
    .form-field input::placeholder { color: rgba(250,246,239,0.25); }
    .form-field input:focus {
      border-color: var(--gold);
      background: rgba(255,252,247,0.1);
    }
    .optin-submit {
      width: 100%;
      background: var(--gold);
      color: var(--espresso);
      border: none;
      border-radius: var(--radius-xs);
      padding: 15px;
      font-family: var(--font-body);
      font-size: 0.93rem;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.25s;
      margin-top: 6px;
      letter-spacing: 0.02em;
    }
    .optin-submit:hover { background: var(--gold-dark); color: #fff; transform: translateY(-1px); }
    .optin-small {
      font-size: 0.68rem;
      color: rgba(250,246,239,0.3);
      text-align: center;
      margin-top: 12px;
    }

    /* ─── TESTIMONIALS ─── */
    .testi-section {
      padding: 88px 0;
      background: var(--cream);
    }
    .testi-header {
      text-align: center;
      margin-bottom: 56px;
    }
    .testi-header .eyebrow { justify-content: center; }
    .testi-header .eyebrow::after { display: none; }
    .testi-header .eyebrow::before {
      content: '';
      flex: 1;
      max-width: 40px;
      height: 1px;
      background: linear-gradient(270deg, var(--gold), transparent);
    }
    .testi-header .section-title { text-align: center; }
    .testi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .testi-card {
      background: #fff;
      border-radius: var(--radius-sm);
      padding: 30px 26px;
      border: 1.5px solid var(--border);
      transition: all 0.25s ease;
      cursor: default;
      position: relative;
    }
    .testi-card:hover {
      border-color: var(--gold);
      box-shadow: var(--shadow-warm);
    }
    .testi-card.is-dark {
      background: var(--espresso);
      border-color: transparent;
    }
    .tc-stars { color: var(--gold); font-size: 0.88rem; letter-spacing: 2px; margin-bottom: 14px; }
    .tc-quote {
      font-family: var(--font-serif);
      font-size: 0.98rem;
      font-style: italic;
      color: var(--espresso);
      line-height: 1.72;
      margin-bottom: 22px;
    }
    .testi-card.is-dark .tc-quote { color: rgba(250,246,239,0.85); }
    .tc-author {
      display: flex;
      align-items: center;
      gap: 12px;
      padding-top: 16px;
      border-top: 1px solid var(--border);
    }
    .testi-card.is-dark .tc-author { border-top-color: rgba(201,169,110,0.12); }
    .tc-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--latte);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      flex-shrink: 0;
    }
    .testi-card.is-dark .tc-avatar { background: rgba(201,169,110,0.18); }
    .tc-name { font-size: 0.88rem; font-weight: 600; color: var(--espresso); }
    .testi-card.is-dark .tc-name { color: var(--gold-light); }
    .tc-role { font-size: 0.73rem; color: var(--ink-muted); }
    .testi-card.is-dark .tc-role { color: rgba(250,246,239,0.38); }
    .tc-corner {
      position: absolute;
      top: 20px;
      right: 22px;
      font-family: var(--font-display);
      font-size: 3rem;
      color: var(--border-gold);
      line-height: 1;
    }
    .testi-card.is-dark .tc-corner { color: rgba(201,169,110,0.12); }

    /* ─── ABOUT ─── */
    .about-section {
      padding: 88px 0;
      background: var(--warm-white);
    }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 80px;
      align-items: center;
    }
    .about-content { }
    .about-content .section-title { margin-bottom: 18px; }
    .about-content p {
      font-size: 0.97rem;
      color: var(--ink-soft);
      line-height: 1.8;
      margin-bottom: 18px;
    }
    .about-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin: 28px 0 32px;
    }
    .astat {
      background: var(--ivory);
      border-radius: var(--radius-sm);
      padding: 18px;
      text-align: center;
      border: 1px solid var(--border);
    }
    .astat-num {
      font-family: var(--font-display);
      font-size: 1.7rem;
      color: var(--espresso);
      line-height: 1;
      margin-bottom: 4px;
    }
    .astat-label { font-size: 0.7rem; color: var(--ink-muted); line-height: 1.4; }
    /* Visual side */
    .about-visual { position: relative; }
    .about-main-card {
      background: var(--espresso);
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: var(--shadow-lift);
    }
    .amc-top {
      height: 280px;
      background: linear-gradient(160deg, var(--mocha-dark) 0%, var(--espresso-mid) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 5rem;
      position: relative;
    }
    .amc-top::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 80px;
      background: linear-gradient(to top, var(--espresso), transparent);
    }
    .amc-body { padding: 28px; }
    .amc-body p {
      font-family: var(--font-serif);
      font-style: italic;
      font-size: 1.05rem;
      color: rgba(250,246,239,0.75);
      line-height: 1.7;
      margin-bottom: 16px;
    }
    .amc-sig { font-family: var(--font-display); font-size: 1.2rem; color: var(--gold); }
    .about-badge {
      position: absolute;
      bottom: -16px;
      right: -16px;
      width: 100px;
      height: 100px;
      background: var(--gold);
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow-gold);
    }
    .ab-num {
      font-family: var(--font-display);
      font-size: 1.5rem;
      color: var(--espresso);
      line-height: 1;
    }
    .ab-text { font-size: 0.6rem; font-weight: 700; color: rgba(44,26,16,0.65); text-align: center; line-height: 1.3; }

    /* ─── LATEST POSTS LIST ─── */
    .latest-section {
      padding: 88px 0;
      background: var(--ivory);
    }
    .latest-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr;
      gap: 56px;
    }
    .latest-posts { }
    .lp-header {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      margin-bottom: 28px;
    }
    .lp-header .section-title { font-size: 1.8rem; margin-bottom: 0; }
    .post-list { display: flex; flex-direction: column; }
    .pli {
      display: grid;
      grid-template-columns: 72px 1fr;
      gap: 16px;
      align-items: center;
      padding: 18px 0;
      border-bottom: 1px solid var(--border);
      cursor: pointer;
      transition: all 0.2s;
    }
    .pli:last-child { border-bottom: none; }
    .pli:hover .pli-title { color: var(--mocha-dark); }
    .pli-num {
      font-family: var(--font-display);
      font-size: 2rem;
      color: var(--latte);
      text-align: center;
      line-height: 1;
    }
    .pli-tag { margin-bottom: 5px; }
    .pli-title {
      font-family: var(--font-display);
      font-size: 1rem;
      color: var(--espresso);
      margin-bottom: 3px;
      line-height: 1.3;
      transition: color 0.2s;
    }
    .pli-meta { font-size: 0.7rem; color: var(--ink-muted); }

    /* Sidebar */
    .latest-sidebar { }
    .sb-widget {
      background: #fff;
      border-radius: var(--radius-sm);
      padding: 24px 22px;
      border: 1.5px solid var(--border);
      margin-bottom: 18px;
    }
    .sb-widget-title {
      font-family: var(--font-display);
      font-size: 1.05rem;
      color: var(--espresso);
      margin-bottom: 16px;
      padding-bottom: 12px;
      border-bottom: 1.5px solid var(--border);
    }
    .sb-popular { display: flex; flex-direction: column; gap: 14px; }
    .sbp-item {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      cursor: pointer;
    }
    .sbp-item:hover .sbp-title { color: var(--mocha-dark); }
    .sbp-thumb {
      width: 50px;
      height: 50px;
      border-radius: var(--radius-xs);
      background: var(--ivory);
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      border: 1px solid var(--border);
    }
    .sbp-title {
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--espresso);
      line-height: 1.35;
      margin-bottom: 3px;
      transition: color 0.2s;
    }
    .sbp-date { font-size: 0.68rem; color: var(--ink-muted); }
    .tag-cloud { display: flex; flex-wrap: wrap; gap: 7px; }
    .tag-cloud a {
      font-size: 0.72rem;
      background: var(--ivory);
      color: var(--mocha-dark);
      padding: 5px 12px;
      border-radius: 100px;
      font-weight: 600;
      border: 1px solid var(--border);
      transition: all 0.2s;
    }
    .tag-cloud a:hover { background: var(--espresso); color: var(--gold-light); border-color: transparent; }

    /* Mini offer widget */
    .sb-offer {
      background: var(--espresso);
      border-radius: var(--radius-sm);
      padding: 26px 22px;
      text-align: center;
    }
    .sb-offer .so-icon { font-size: 2.2rem; margin-bottom: 12px; }
    .sb-offer h4 {
      font-family: var(--font-display);
      font-size: 1.1rem;
      color: var(--cream);
      margin-bottom: 8px;
    }
    .sb-offer p {
      font-size: 0.77rem;
      color: rgba(250,246,239,0.52);
      line-height: 1.55;
      margin-bottom: 16px;
    }
    .sb-offer .so-price {
      font-family: var(--font-display);
      font-size: 1.5rem;
      color: var(--gold);
      margin-bottom: 14px;
    }

    /* ─── FOOTER ─── */
    footer {
      background: var(--espresso);
      padding: 72px 0 0;
      border-top: 1px solid rgba(201,169,110,0.12);
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.2fr;
      gap: 48px;
      padding-bottom: 56px;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .fb-about p {
      font-size: 0.82rem;
      color: rgba(250,246,239,0.4);
      line-height: 1.7;
      margin: 16px 0 22px;
      max-width: 280px;
    }
    .social-row { display: flex; gap: 8px; }
    .sc-link {
      width: 36px;
      height: 36px;
      border-radius: var(--radius-xs);
      background: rgba(255,255,255,0.06);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      color: rgba(255,255,255,0.4);
      transition: all 0.2s;
    }
    .sc-link:hover { background: var(--gold); color: var(--espresso); }
    .footer-col h4 {
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(250,246,239,0.28);
      margin-bottom: 16px;
    }
    .footer-col ul { display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul li a {
      font-size: 0.84rem;
      color: rgba(250,246,239,0.5);
      transition: color 0.2s;
    }
    .footer-col ul li a:hover { color: var(--gold-light); }
    .footer-nl p {
      font-size: 0.79rem;
      color: rgba(250,246,239,0.4);
      margin-bottom: 14px;
      line-height: 1.6;
    }
    .nl-form { display: flex; flex-direction: column; gap: 8px; }
    .nl-form input {
      background: rgba(255,255,255,0.06);
      border: 1.5px solid rgba(201,169,110,0.14);
      border-radius: var(--radius-xs);
      padding: 11px 14px;
      font-family: var(--font-body);
      font-size: 0.83rem;
      color: #fff;
      outline: none;
      transition: all 0.2s;
    }
    .nl-form input::placeholder { color: rgba(255,255,255,0.2); }
    .nl-form input:focus { border-color: var(--gold); }
    .nl-form button {
      background: var(--gold);
      border: none;
      border-radius: var(--radius-xs);
      color: var(--espresso);
      padding: 11px;
      font-family: var(--font-body);
      font-size: 0.83rem;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.2s;
    }
    .nl-form button:hover { background: var(--gold-dark); color: #fff; }
    .footer-bottom {
      padding: 22px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }
    .footer-bottom p { font-size: 0.73rem; color: rgba(255,255,255,0.2); }
    .footer-links { display: flex; gap: 20px; }
    .footer-links a {
      font-size: 0.73rem;
      color: rgba(255,255,255,0.2);
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--gold); }

    /* ─── ANIMATIONS ─── */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }
    .reveal.in-view { opacity: 1; transform: translateY(0); }
    .reveal:nth-child(2) { transition-delay: 0.1s; }
    .reveal:nth-child(3) { transition-delay: 0.2s; }
    .reveal:nth-child(4) { transition-delay: 0.3s; }

    /* Mobile sticky */
    .sticky-cta-bar {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 300;
      background: var(--espresso);
      border-top: 1px solid rgba(201,169,110,0.2);
      padding: 12px 20px;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
    }
    .scb-text { font-size: 0.83rem; color: rgba(250,246,239,0.7); }
    .scb-text strong { color: var(--gold-light); display: block; }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1024px) {
      .hero-inner, .featured-inner, .about-grid, .optin-top { grid-template-columns: 1fr; gap: 48px; }
      .hero-panel, .about-visual { display: none; }
      .hero { min-height: auto; padding: 60px 0; }
      .value-grid { grid-template-columns: repeat(2, 1fr); }
      .products-grid { grid-template-columns: repeat(2, 1fr); }
      .testi-grid { grid-template-columns: 1fr 1fr; }
      .blog-magazine { grid-template-columns: 1fr; }
      .blog-mag-main { grid-row: auto; }
      .blog-side-post { grid-template-columns: 100px 1fr; }
      .latest-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
      nav.nav-center, .nav-right .btn-primary { display: none; }
    }
    @media (max-width: 640px) {
      .cats-scroll { gap: 12px; }
      .cat-card { flex: 0 0 220px; }
      .products-grid { grid-template-columns: 1fr; }
      .testi-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .hero h1 { font-size: 2.8rem; }
      .value-grid { grid-template-columns: 1fr 1fr; }
      .sticky-cta-bar { display: flex; }
      .proof-logos { gap: 18px; }
    }

/* WordPress compatibility */
body.admin-bar header {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar header {
    top: 46px;
  }
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

.site-main {
  display: block;
}

.entry-content > * + * {
  margin-top: 1.25rem;
}

.page-content-wrap {
  padding: 72px 0 96px;
}

.entry-header {
  margin-bottom: 28px;
}

.entry-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.4rem);
  line-height: 1.08;
  color: var(--espresso);
}

.archive-intro {
  margin-bottom: 42px;
}

.archive-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 34px;
}

.archive-posts {
  display: grid;
  gap: 22px;
}

.archive-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.archive-card-inner {
  padding: 28px;
}

.archive-card .entry-title {
  font-size: clamp(1.55rem, 2vw, 2rem);
  margin-bottom: 12px;
}

.archive-card .entry-title a:hover {
  color: var(--mocha-dark);
}

.archive-meta {
  color: var(--ink-muted);
  font-size: 0.88rem;
  margin-bottom: 14px;
}

.archive-excerpt {
  color: var(--ink-soft);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.nav-links a,
.nav-links span {
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--mocha-dark);
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 600;
  justify-content: center;
  min-width: 42px;
  padding: 10px 16px;
}

.nav-links .current {
  background: var(--espresso);
  border-color: var(--espresso);
  color: var(--gold-light);
}

.widget-area .widget {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 24px;
}

.widget-area .widget + .widget {
  margin-top: 22px;
}

.widget-area .widget-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 14px;
}

.widget-area ul {
  display: grid;
  gap: 10px;
  list-style: none;
  padding: 0;
}

.widget-area a:hover {
  color: var(--mocha-dark);
}

.single-post-wrap {
  max-width: 860px;
  margin: 0 auto;
}

.entry-meta {
  color: var(--ink-muted);
  font-size: 0.88rem;
}

.archive-description {
  color: var(--ink-soft);
  margin-top: 12px;
  max-width: 720px;
}

.template-intro {
  margin-bottom: 32px;
}

.template-layout {
  display: grid;
  gap: 32px;
  align-items: start;
}

.template-about-layout,
.template-product-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.template-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.template-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 28px;
}

.template-panel .entry-content > * + * {
  margin-top: 1rem;
}

.hero-card-top img,
.cat-card-img img,
.fm-top img,
.product-img img,
.bm-img img,
.bsp-img img,
.amc-top img,
.sbp-thumb img,
.so-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.post-navigation {
  margin-top: 32px;
}

.post-navigation .nav-links {
  justify-content: space-between;
}

.front-page-builder,
.builder-page {
  display: block;
}

.front-page-builder .entry-content,
.builder-page .entry-content {
  margin-top: 0;
}

.front-page-builder .entry-content > * + *,
.builder-page .entry-content > * + * {
  margin-top: 0;
}

@media (max-width: 1024px) {
  .archive-grid {
    grid-template-columns: 1fr;
  }

  .template-about-layout,
  .template-product-layout {
    grid-template-columns: 1fr;
  }
}

.woocommerce-archive-intro .term-description,
.woocommerce-archive-intro .page-description {
  max-width: 720px;
  margin-top: 1rem;
  color: var(--ink-soft);
}

.woocommerce-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 28px;
}

.woocommerce ul.products,
.woocommerce-page ul.products {
  margin: 0;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 18px;
}

.woocommerce ul.products li.product a img,
.woocommerce-page ul.products li.product a img,
.woocommerce div.product div.images img {
  border-radius: calc(var(--radius-md) - 4px);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce div.product .product_title {
  color: var(--espresso);
  font-family: var(--font-display);
}

.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--gold-dark);
  font-weight: 700;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce #respond input#submit.alt {
  background: var(--gold);
  border-radius: 999px;
  color: var(--espresso);
  font-weight: 700;
  padding: 0.9rem 1.5rem;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce #respond input#submit.alt:hover {
  background: var(--gold-dark);
  color: var(--warm-white);
}

.woocommerce span.onsale {
  background: var(--cherry);
  color: var(--warm-white);
}
