/*
Theme Name:  Cokelat nDalem
Theme URI:   https://cokelat-ndalem.com
Description: Cultural chocolate shop theme for Cokelat nDalem — hybrid catalog & shop, WooCommerce compatible.
Version:     1.0.4
Author:      nDalem
Author URI:  https://cokelatndalem.com
License:     Private
Text Domain: ndalem
Tags:        e-commerce, woocommerce, custom
*/

/* ─── GOOGLE FONTS IMPORT ─────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Varela+Round&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300&display=swap');

/* ─── DESIGN TOKENS ──────────────────────────────────────── */
:root {
  --white:        #F7F6F2;
  --off-white:    #EFEDE7;
  --sage-pale:    #E8EEE4;
  --sage:         #B8C9AE;
  --sage-deep:    #6E9464;
  --pink-pale:    #FAF0ED;
  --pink:         #F2C4BB;
  --orange-pale:  #FBF3E8;
  --orange:       #F0C49A;
  --charcoal:     #25282F;
  --charcoal-75:  rgba(37,40,47,.75);
  --charcoal-50:  rgba(37,40,47,.5);
  --charcoal-20:  rgba(37,40,47,.2);
  --charcoal-08:  rgba(37,40,47,.08);
  --gold:         #C9943A;
  --gold-light:   #E8BE7A;
  --gold-pale:    #F5E6C8;
  --dark-green:   #1A2410;
  --dark-quote:   #2A2D34;
  --font-d:       'Varela Round', sans-serif;
  --font-b:       'Poppins', sans-serif;
  --nav-h:        64px;
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  background: var(--white);
  color: var(--charcoal);
  font-family: var(--font-b);
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
}
a   { color: inherit; text-decoration: none; }
a:hover { opacity: .85; }
img { display: block; max-width: 100%; }
button { font-family: var(--font-b); cursor: pointer; }
section { position: relative; }

/* ─── REVEAL ANIMATION ───────────────────────────────────── */
.reveal { opacity:0; transform:translateY(24px); transition:opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal.d1 { transition-delay:.12s; }
.reveal.d2 { transition-delay:.24s; }
.reveal.d3 { transition-delay:.36s; }

/* ─── NAV ────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0 5vw;
  background: rgba(247,246,242,.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.nav.scrolled { border-bottom-color: var(--charcoal-08); }

.nav-logo {
  font-family: var(--font-d); font-size: 19px;
  color: var(--charcoal); display: flex; align-items: center; gap: 7px;
  flex-shrink: 0;
}
.logo-dot {
  width: 9px; height: 9px; background: var(--gold);
  display: inline-block; flex-shrink: 0;
}

.nav-links {
  display: flex; align-items: center; gap: 2px;
  list-style: none; margin-left: clamp(16px,3vw,40px);
}
.nav-links a {
  font-size: 13px; font-weight: 400;
  color: var(--charcoal-75); padding: 6px 10px;
  transition: color .2s, background .2s; white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.current-menu-item { color: var(--charcoal); background: var(--charcoal-08); }

/* ── NAV: AFILIASI BADGE (Pill Style) ── */
.nav-links .nav-affiliate { margin: 0 2px; }
.nav-links .nav-affiliate a {
  display: inline-flex; align-items: center; gap: 4px;
  border: 1px solid var(--charcoal-20);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 12px; font-weight: 500;
  transition: all .2s ease;
  white-space: nowrap;
}
.nav-links .nav-affiliate a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-pale);
}

.nav-right { margin-left: auto; display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

/* Language toggle */
.nav-lang { display: flex; align-items: center; border: 1px solid var(--charcoal-20); overflow: hidden; margin-right: 4px; }
.nav-lang button { font-size: 11px; font-weight: 500; padding: 4px 9px; border: none; background: transparent; color: var(--charcoal-50); transition: all .2s; }
.nav-lang button.active { background: var(--charcoal); color: var(--white); }

/* Beli Sekarang CTA */
.btn-nav {
  font-size: 13px; font-weight: 600;
  padding: 8px 20px; background: var(--gold); color: var(--white);
  border: none; white-space: nowrap; transition: background .2s;
  display: inline-block;
}
.btn-nav:hover { background: var(--charcoal); color: var(--white); }

/* Cart icon */
.nav-cart {
  position: relative; display: flex; align-items: center;
  justify-content: center; width: 36px; height: 36px;
  color: var(--charcoal-75); transition: color .2s;
}
.nav-cart:hover { color: var(--charcoal); }
.nav-cart svg { width: 18px; height: 18px; }
.cart-badge {
  display: none; position: absolute; top: 4px; right: 4px;
  width: 14px; height: 14px; background: var(--gold);
  border-radius: 50%; font-size: 8px; font-weight: 700;
  color: var(--white); align-items: center; justify-content: center;
}
.cart-badge.visible { display: flex; }

/* Mobile hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 36px; height: 36px; align-items: center; justify-content: center;
  background: none; border: none; padding: 0;
}
.nav-hamburger span { display: block; width: 20px; height: 1.5px; background: var(--charcoal); transition: all .3s; }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 199; overflow-y: auto;
  padding: 2rem 5vw 6rem; flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 22px; font-weight: 300; color: var(--charcoal); padding: 1.2rem 0; border-bottom: 1px solid var(--charcoal-08); display: block; }
.mobile-menu .mobile-cta { margin-top: 2rem; text-align: center; background: var(--gold); color: var(--white); font-size: 16px; font-weight: 600; padding: 16px 32px; }

/* ─── PAGE WRAPPER ───────────────────────────────────────── */
.site-main { padding-top: var(--nav-h); min-height: 60vh; }

/* ─── SECTION BASE ───────────────────────────────────────── */
.section       { padding: 5rem 8vw; }
.section.alt   { background: var(--off-white); }
.section.dark  { background: var(--charcoal); color: var(--white); }

/* ─── TYPOGRAPHY UTILITIES ───────────────────────────────── */
.eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: .75rem;
  display: flex; align-items: center; gap: .75rem;
}
.eyebrow::before { content:''; width:28px; height:1px; background:var(--gold-light); display:block; }
.sec-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--charcoal-50); margin-bottom: .75rem; }
.sec-title { font-family: var(--font-d); font-size: clamp(28px,4vw,44px); font-weight: 400; line-height: 1.15; margin-bottom: 1.25rem; }
.sec-title .accent { color: var(--gold); }

/* ─── BUTTON UTILITIES ───────────────────────────────────── */
.btn-primary { display: inline-block; padding: 13px 32px; background: var(--gold); color: var(--white); font-size: 13px; font-weight: 600; border: none; transition: opacity .2s; }
.btn-primary:hover { opacity: .88; color: var(--white); }
.btn-ghost   { display: inline-block; padding: 12px 32px; border: 1px solid var(--charcoal-20); color: var(--charcoal-75); font-size: 13px; transition: all .2s; }
.btn-ghost:hover { border-color: var(--charcoal); color: var(--charcoal); }

/* ─── BREADCRUMB ─────────────────────────────────────────── */
.breadcrumb { padding: .875rem 5vw; font-size: 12px; color: var(--charcoal-50); display: flex; gap: .5rem; align-items: center; border-bottom: 1px solid var(--charcoal-08); }
.breadcrumb a { color: var(--charcoal-50); transition: color .2s; }
.breadcrumb a:hover { color: var(--charcoal); }
.breadcrumb-sep { color: var(--charcoal-20); }

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer { background: var(--charcoal) !important; color: var(--white) !important; padding: 5rem 5vw 2rem; margin-top: 0; border-top: none; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand-name { font-family: var(--font-d); font-size: 18px; margin-bottom: .5rem; display: flex; align-items: center; gap: 7px; }
.footer-brand-desc { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.8; margin-bottom: 1.25rem; max-width: 260px; }
.footer-social { display: flex; gap: .75rem; }
.footer-social a { font-size: 12px; color: rgba(255,255,255,.45); border: 1px solid var(--charcoal-20); padding: 5px 10px; transition: all .2s; }
.footer-social a:hover { color: rgba(255,255,255,.45); border-color: rgba(255,255,255,.45); }
.footer-col-title { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 1rem; }
.footer-col-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-col-links a { font-size: 13px; color: rgba(255,255,255,.55); transition: color .2s; }
.footer-col-links a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 1.5rem; border-top: 1px solid var(--charcoal-08); font-size: 12px; color: rgba(255,255,255,.08); flex-wrap: wrap; gap: 1rem; }
.footer-bottom a { color: rgba(255,255,255,.3); transition: color .2s; }
.footer-bottom a:hover { color: rgba(255,255,255,.6); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom p { color: rgba(255,255,255,.3); }

/* ─── WOOCOMMERCE BASE OVERRIDES ─────────────────────────── */
.woocommerce-notices-wrapper { padding: 1rem 5vw; }
.woocommerce-message, .woocommerce-error, .woocommerce-info {
  padding: .875rem 1.25rem; margin-bottom: 1rem;
  font-size: 14px; display: flex; align-items: center; gap: .75rem;
}
.woocommerce-message { background: var(--sage-pale); border-left: 3px solid var(--sage-deep); }
.woocommerce-error   { background: var(--pink-pale);  border-left: 3px solid var(--pink); }
.woocommerce-info    { background: var(--gold-pale);  border-left: 3px solid var(--gold); }
.woocommerce-message a.button,
.woocommerce-error a.button   { background: var(--gold); color: var(--white); padding: 6px 16px; font-size: 12px; font-weight: 600; }

/* ─── IMAGE PLACEHOLDER COLORS (fallback while no image) ─── */
.img-hero          { background-color: #2A3D2A; }
.img-zona-classic  { background-color: #3D2314; }
.img-zona-tropical { background-color: #E8A030; }
.img-zona-adventure{ background-color: #3D6B4A; }
.img-zona-spice    { background-color: #6B2020; }
.img-zona-artisan  { background-color: #1C1C1C; }
.img-origin        { background-color: #4A6B3A; }
.img-gift1         { background-color: #C8B090; }
.img-gift2         { background-color: #3A4A6B; }
.img-gift3         { background-color: #8B5E3C; }
.img-manifesto     { background-color: #3A5C2A; }
.img-prod1         { background-color: var(--sage-pale); }
.img-prod2         { background-color: var(--orange-pale); }
.img-prod3         { background-color: var(--pink-pale); }

/* ============================================
   FRONT PAGE CUSTOM STYLES (from front-page.php)
   ============================================ */

/* ── SECTION 1: HERO ── */
.hero-section {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: var(--dark-green); overflow: hidden; padding: 0 8vw;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: brightness(.4); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 800px; color: #fff; padding-bottom: 4rem; }
.hero-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
}
.hero-eyebrow::before { content: ''; width: 30px; height: 1px; background: var(--gold); display: block; }
.hero-title {
  font-family: var(--font-d); font-size: clamp(42px, 6vw, 80px);
  line-height: 1.05; margin-bottom: 1.5rem; color: #fff;
}
.hero-title .accent { font-style: italic; color: var(--gold); font-weight: 400; }
.hero-sub {
  font-size: 17px; font-weight: 300; color: rgba(255,255,255,.85);
  margin-bottom: 2.5rem; max-width: 550px; line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Buttons */
.btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 32px; background: var(--gold); color: #fff;
  font-size: 14px; font-weight: 600; font-family: var(--font-b); border: none; cursor: pointer;
  transition: background .2s, transform .2s;
}
.btn-gold:hover { background: #B5822E; transform: translateY(-2px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 32px; background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,.3);
  font-size: 14px; font-weight: 400; font-family: var(--font-b); cursor: pointer;
  transition: border-color .2s, color .2s;
}
.btn-outline:hover { border-color: #fff; color: #fff; }

/* Scroll Indicator */
.scroll-indicator {
  position: absolute; bottom: 2rem; right: 5vw;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,.5); font-size: 11px; letter-spacing: .1em;
  writing-mode: vertical-rl; transform: rotate(180deg);
}
.scroll-line { width: 1px; height: 60px; background: rgba(255,255,255,.3); position: relative; overflow: hidden; }
.scroll-line::after {
  content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
  background: var(--gold); animation: scrollDown 2s infinite;
}
@keyframes scrollDown { 0% {top: -100%;} 100% {top: 100%;} }

/* ── SECTION 2: QUOTE ── */
.quote-banner {
  padding: 4rem 8vw; background: var(--dark-quote); color: #fff;
  display: flex; align-items: center; justify-content: space-between; gap: 4rem;
  flex-wrap: wrap;
}
.quote-left { flex: 2; }
.quote-text {
  font-family: var(--font-b); font-size: clamp(18px, 2vw, 24px);
  font-weight: 400; line-height: 1.5;
}
.quote-text .gold { color: var(--gold); font-weight: 600; }
.quote-text .white { color: #fff; font-weight: 400; }
.quote-right {
  flex: 1; border-left: 1px solid rgba(255,255,255,.15); padding-left: 3rem;
  display: flex; flex-direction: column; gap: 4px;
}
.quote-author { font-size: 14px; font-weight: 600; color: #fff; }
.quote-location { font-size: 13px; color: rgba(255,255,255,.5); font-weight: 300; }

/* ── SECTION 3: ATLAS RASA (ZONES) ── */
.zones-section { padding: 0; background: var(--white); overflow: hidden; }
.zones-header { padding: 4rem 5vw 1.5rem; display: flex; justify-content: space-between; align-items: flex-end; border-bottom: 1px solid var(--charcoal-08); }
.zones-header .left { text-align: left; }
.zones-header .right { text-align: right; }

/* ZONES GRID - Container utama */
.zones-grid {
  display: flex;
  width: 100%;
  min-height: 550px;
  transition: all 0.3s ease;
}

/* ZONE CARD - Base style */
.zone-card {
  position: relative;
  flex: 1;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: flex 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  min-width: 80px;
}

/* Overlay untuk zona cards agar teks tetap terbaca */
.zone-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
  transition: background 0.3s ease;
  pointer-events: none;
}
.zone-card:hover .zone-overlay {
  background: rgba(0, 0, 0, 0.5);
}

/* Pastikan konten di atas overlay */
.zone-content, 
.zone-arrow {
  z-index: 2;
}

/* Efek hover: card yang di-hover melebar */
.zones-grid:hover .zone-card {
  flex: 0.8;
}
.zones-grid .zone-card:hover {
  flex: 2.2;
}

/* Warna background tiap zona (fallback jika tidak ada gambar) */
.zone-1 { background: #4A2C1E; color: #fff; }
.zone-2 { background: #D4901A; color: #fff; }
.zone-3 { background: #4A7048; color: #fff; }
.zone-4 { background: #7A2520; color: #fff; }
.zone-5 { background: #252525; color: #fff; }

/* Konten dalam zona */
.zone-content { 
  z-index: 2; 
  transition: transform 0.4s ease;
}
.zone-num { 
  font-family: var(--font-d); 
  font-size: 12px; 
  opacity: 0.7; 
  margin-bottom: 0.5rem; 
  transition: opacity 0.3s;
}
.zone-name { 
  font-family: var(--font-d); 
  font-size: 20px; 
  margin-bottom: 0.25rem; 
  font-weight: 500;
}
.zone-desc { 
  font-size: 12px; 
  opacity: 0; 
  max-height: 0;
  transition: opacity 0.3s ease, max-height 0.3s ease;
  margin-top: 8px;
}

/* Saat hover, tampilkan deskripsi */
.zone-card:hover .zone-desc { 
  opacity: 0.85; 
  max-height: 60px;
}

/* Arrow icon */
.zone-arrow { 
  position: absolute; 
  top: 1.5rem; 
  right: 1.5rem; 
  width: 36px; 
  height: 36px; 
  border: 1px solid rgba(255,255,255,0.3); 
  border-radius: 50%;
  display: flex; 
  align-items: center; 
  justify-content: center; 
  opacity: 0; 
  transform: translateX(10px);
  transition: all 0.3s ease;
}
.zone-card:hover .zone-arrow { 
  opacity: 1; 
  transform: translateX(0);
}
.zone-arrow svg { width: 14px; height: 14px; }

/* Overlay gelap saat hover untuk readability teks */
.zone-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.3s ease;
  z-index: 1;
  pointer-events: none;
}
.zone-card:hover::after {
  background: rgba(0,0,0,0.2);
}

/* ── SECTION 4: PRODUK PILIHAN ── */
.products-section { padding: 5rem 5vw; background: var(--off-white); }
.prod-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; flex-wrap: wrap; gap: 1.5rem; }
.prod-header-title { max-width: 600px; }
.prod-header-desc { max-width: 350px; font-size: 14px; line-height: 1.7; color: var(--charcoal-50); }
.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.prod-card { background: #fff; border: 1px solid var(--charcoal-08); overflow: hidden; transition: transform 0.3s; }
.prod-card:hover { transform: translateY(-5px); }
.prod-img { aspect-ratio: 1/1; background: var(--off-white); }
.prod-img img { width: 100%; height: 100%; object-fit: cover; }
.prod-body { padding: 1.5rem; }
.prod-tag { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.75rem; display: flex; align-items: center; gap: 6px; color: var(--charcoal-50); }
.prod-name { font-family: var(--font-d); font-size: 20px; margin-bottom: 0.75rem; color: var(--charcoal); }
.prod-desc { font-size: 13px; color: var(--charcoal-50); line-height: 1.6; }

/* ── SECTION 5: WHITE LABEL ── */
.wl-section { padding: 5rem 5vw; background: #2A2D34; color: #fff; }
.wl-layout { display: flex; gap: 4rem; max-width: 1200px; margin: 0 auto; align-items: flex-start; flex-wrap: wrap; }
.wl-left { flex: 1; }
.wl-left .section-eyebrow { color: var(--gold); margin-bottom: 1rem; }
.wl-left .section-title { color: #fff; margin-bottom: 1.25rem; }
.wl-left .section-title em { font-style: italic; color: var(--gold); }
.wl-left > p { color: rgba(255,255,255,.7); line-height: 1.7; margin-bottom: 2rem; }
.wl-actions { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }
.wl-link { color: rgba(255,255,255,.6); font-size: 14px; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.3); padding-bottom: 2px; transition: all .2s; }
.wl-link:hover { color: #fff; border-color: #fff; }
.wl-right { flex: 1; padding-left: 3rem; border-left: 1px solid rgba(255,255,255,.1); display: flex; flex-direction: column; gap: 1.5rem; }
.wl-feature { display: flex; gap: 1rem; align-items: flex-start; }
.wl-icon { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; margin-top: 4px; }
.wl-feature h4 { font-size: 15px; font-weight: 600; margin-bottom: .25rem; color: #fff; }
.wl-feature p { font-size: 13px; color: rgba(255,255,255,.5); margin: 0; line-height: 1.5; }

/* ── SECTION 6: FILOSOFI ── */
.philosophy-section { padding: 0; background: var(--off-white); }
.philo-top { position: relative; padding: 6rem 5vw; background: linear-gradient(135deg, #0F1A10 0%, #4A7048 100%); color: #fff; }
.philo-top .section-eyebrow { color: var(--gold); margin-bottom: 1rem; }
.philo-top .section-title { color: #fff; max-width: 650px; line-height: 1.3; margin-bottom: 2rem; }
.philo-top .section-title em { font-style: italic; color: var(--gold); }
.philo-link { color: var(--gold); font-size: 14px; font-weight: 600; text-decoration: none; border-bottom: 1px solid var(--gold); padding-bottom: 3px; transition: opacity .2s; display: inline-flex; align-items: center; gap: 6px; }
.philo-link:hover { opacity: .8; }
.philo-bottom { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 1200px; margin: 0 auto; }
.philo-card { padding: 2.5rem 2rem; border-right: 1px solid rgba(37,40,47,.08); }
.philo-card:last-child { border-right: none; }
.philo-card .num { font-size: 12px; font-weight: 700; color: var(--gold); margin-bottom: .75rem; display: block; letter-spacing: 0.1em; }
.philo-card h3 { font-size: 17px; font-weight: 600; color: var(--charcoal); margin-bottom: .5rem; }
.philo-card p { font-size: 14px; color: var(--charcoal-75); line-height: 1.65; margin: 0; }

/* Filosofi section dengan background image */
.philo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.philo-content {
  position: relative;
  z-index: 2;
}

/* ── SECTION 7: ORIGIN STORY ── */
.origin-section { display: flex; background: var(--white); flex-wrap: wrap; }
.origin-left {
  flex: 1;
  position: relative;
  min-height: 760px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.origin-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  z-index: 1;
}
.origin-quote-box {
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  z-index: 2;
  background: transparent;
  padding: 0;
  border-left: none;
  box-shadow: none;
  max-width: 360px;
  text-align: left;
}
.origin-quote-box p {
  font-style: normal;
  font-size: 28px;
  line-height: 1.45;
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 600;
}
.origin-quote-box span {
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  display: block;
}
.origin-right {
  flex: 1;
  padding: 5.5rem 5vw 5rem 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #232834;
}
.origin-right .section-eyebrow { margin-bottom: .9rem; }
.origin-right .section-title { margin-bottom: 1.5rem; color: #fff; }
.origin-right .section-title em { font-style: normal; color: var(--gold); }
.origin-right .desc {
  color: rgba(255,255,255,.72);
  line-height: 1.9;
  margin-bottom: 2rem;
  font-size: 15px;
  max-width: 640px;
}
.origin-stats {
  display: flex;
  gap: 3rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.08);
  flex-wrap: wrap;
}
.origin-stat .val {
  font-size: 56px;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: .45rem;
  font-family: var(--font-d);
}
.origin-stat .label {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ── SECTION 8: GIFTING ── */
.gifting-section { padding: 5rem 5vw; background: var(--off-white); }
.gifting-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: center; }
.gifting-pills { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.5rem; }
.pill { padding: 8px 16px; border: 1px solid var(--charcoal-20); font-size: 12px; color: var(--charcoal-75); border-radius: 2px; background: transparent; transition: all .2s; cursor: pointer; }
.pill:hover { border-color: var(--gold); color: var(--gold); }
.gifting-img { margin-bottom: 2rem; font-size: 14px; line-height: 1.8; }
.btn-dark { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; background: var(--gold); color: #fff; font-size: 13px; font-weight: 600; font-family: var(--font-b); border: none; cursor: pointer; transition: background .2s, transform .2s; }
.btn-dark:hover { background: #1A1D22; transform: translateY(-2px); }
.gifting-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.gallery-card { position: relative; aspect-ratio: 4/3; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem; color: #fff; cursor: pointer; }
.gallery-card.tall { grid-row: span 2; aspect-ratio: auto; }
.gallery-bg { position: absolute; inset: 0; transition: transform .4s ease; }
.gallery-card:hover .gallery-bg { transform: scale(1.05); }
.bg-lebaran { background: linear-gradient(to top, #4A3B2A, #C4A47A); }
.bg-corporate { background: linear-gradient(to top, #1A2530, #4A5D70); }
.bg-oleh { background: linear-gradient(to top, #2A1A10, #8A5A3A); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.6), transparent); }
.gallery-content { position: relative; z-index: 2; }
.gallery-tag { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; background: var(--gold); color: #fff; padding: 3px 8px; display: inline-block; margin-bottom: .5rem; width: fit-content; }
.gallery-title { font-family: var(--font-d); font-size: 17px; margin-bottom: .25rem; }
.gallery-desc { font-size: 12px; opacity: .9; }

/* ── SECTION 9: AFILIASI ── */
.affiliate-promo { 
  padding: 5rem 5vw; 
  background: var(--gold-pale); 
  text-align: center; 
}
.affiliate-promo .section-eyebrow { 
  color: var(--gold); 
  margin-bottom: 1rem; 
  font-size: 12px;
  letter-spacing: 0.2em;
  font-weight: 700;
}
.affiliate-promo .section-title { 
  color: var(--charcoal); 
  margin-bottom: 1.5rem;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.2;
  font-family: var(--font-d);
}
.affiliate-promo .section-title em { 
  color: var(--gold); 
  font-style: italic;
  font-weight: 500;
}
.affiliate-promo p { 
  color: var(--charcoal-75); 
  max-width: 550px; 
  margin: 0 auto 2rem; 
  font-size: 16px;
  line-height: 1.7; 
}
.affiliate-promo .btn-gold {
  font-size: 15px;
  padding: 16px 36px;
  background: var(--gold);
}
.affiliate-promo .btn-gold:hover {
  background: #1A1D22;
  transform: translateY(-2px);
}

/* ── SECTION EYEBROW (for front page) ── */
.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold-light);
  display: block;
}
.section-title {
  font-family: var(--font-d);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
}
.section-title .accent {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}
.section-title.light {
  color: #fff;
}
.section-title.light .accent {
  color: var(--gold);
}

/* ── RESPONSIVE (FRONT PAGE SPECIFIC) ── */
@media(max-width: 1000px) {
  .quote-banner { flex-direction: column; align-items: flex-start; gap: 2rem; }
  .quote-right { padding-left: 0; border-left: none; border-top: 1px solid rgba(255,255,255,.15); padding-top: 2rem; width: 100%; }
  
  .zones-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    min-height: auto;
  }
  .zone-card { min-height: 250px; }
  .zones-grid:hover .zone-card,
  .zones-grid .zone-card:hover {
    flex: 1;
  }
  .zone-card::after { display: none; }
  
  .wl-layout, .origin-section { flex-direction: column; }
  .wl-right { padding-left: 0; border-left: none; border-top: 1px solid rgba(255,255,255,.1); padding-top: 2rem; margin-top: 2rem; }
  .origin-left { min-height: 350px; }
  .origin-right { padding: 3rem 5vw; }
  .prod-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .philo-bottom { grid-template-columns: 1fr; }
  .philo-card { border-right: none; border-bottom: 1px solid rgba(37,40,47,.08); }
  .gifting-layout { grid-template-columns: 1fr; }
  .gallery-card.tall { grid-row: auto; aspect-ratio: 4/3; }
}
@media(max-width: 768px) {
  .hero-section { padding: 0 5vw; justify-content: center; text-align: center; }
  .hero-content { max-width: 100%; padding-bottom: 6rem; }
  .hero-eyebrow { justify-content: center; }
  .hero-eyebrow::before { display: none; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .scroll-indicator { display: none; }
  .zones-grid { grid-template-columns: repeat(2, 1fr); }
  .prod-grid, .philosophy-grid, .gifting-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .wl-actions { flex-direction: column; align-items: flex-start; }
  .origin-quote-box { left: 1.5rem; bottom: 1.5rem; padding: 1.25rem; max-width: calc(100% - 3rem); }
  .origin-stats { flex-wrap: wrap; gap: 2rem; }
  .gifting-gallery { grid-template-columns: 1fr; }
}
@media(max-width: 480px) {
  .zones-grid { grid-template-columns: 1fr; }
}

/* ─── CHECKOUT NAV (minimal) ─────────────────────────────── */
.nav-checkout { justify-content: space-between; }
.checkout-steps { display: flex; align-items: center; gap: .75rem; font-size: 13px; }
.checkout-step { color: var(--charcoal-50); }
.checkout-step.active { color: var(--charcoal); font-weight: 500; }
.checkout-step-sep { color: var(--charcoal-20); }

/* ─── WOOCOMMERCE PAGINATION ─────────────────────────────── */
.woocommerce-pagination ul { display: flex; gap: .5rem; list-style: none; justify-content: center; padding: 2rem 0; flex-wrap: wrap; }
.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border: 1px solid var(--charcoal-20); font-size: 13px; transition: all .2s; }
.woocommerce-pagination ul li a:hover { border-color: var(--gold); color: var(--gold); }
.woocommerce-pagination ul li span.current { background: var(--gold); color: #fff; border-color: var(--gold); }

/* ─── OBJECT-FIT FOR ALL REFACTORED IMG TAGS ────────────── */
img.hero-photo, img.shop-hero-photo, img.checkout-hero-photo,
img.zona-col-photo, img.prod-img, img.g-photo,
img.manifesto-editorial-photo, img.origin-photo,
img.farmer-photo-img, img.farmer-mini-img,
img.main-photo, img.recommended-photo,
img.product-card-photo-inner, img.card-photo-inner,
img.featured-photo-inner, img.reading-hero-photo,
img.related-card-photo, img.bs-card-photo,
img.cat-card-photo-inner, img.order-thumb,
img.sum-photo, img.detail-thumb, img.prod-card-photo {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}

/* Perbesar logo di header dan footer */
.nav-logo img,
.site-footer .footer-brand-name img {
    max-height: 42px !important;  /* 32px × 130% = 41.6px → 42px */
    width: auto;
}

/* ==============================================
   nDalem — CSS Fixes (migrated from Customizer)
   ============================================== */
/* ============================================================
   nDalem — CSS Fixes via Additional CSS
   Auditor: Claude | Date: 2026-05-01
   ============================================================ */

/* ----------------------------------------------------------
   1. NAVBAR: Active state untuk halaman yang sedang aktif
   ---------------------------------------------------------- */
.current-menu-item > a,
.current-menu-item > a:hover {
  color: #C8922A !important;
  font-weight: 700 !important;
  border-bottom: 2px solid #C8922A;
  padding-bottom: 2px;
}

/* ----------------------------------------------------------
   2. NAVBAR: Teks readable di scroll-top homepage
   ---------------------------------------------------------- */
.site-header.is-transparent .main-navigation a,
body.home .site-header:not(.scrolled) .main-navigation a {
  color: #ffffff !important;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

body.home .site-header:not(.scrolled) .current-menu-item > a {
  color: #C8922A !important;
  text-shadow: none;
}

/* ----------------------------------------------------------
   3. FOOTER: Normalisasi warna link "White Label"
   ---------------------------------------------------------- */
.site-footer a {
  color: inherit;
}
.site-footer a:hover {
  color: #C8922A;
}

/* ----------------------------------------------------------
   4. BUTTON: "Pakai" promo button — konsistensi desain
   ---------------------------------------------------------- */
.coupon button,
.woocommerce-cart .coupon .button,
button.apply-coupon {
  background-color: transparent !important;
  color: #1a1a1a !important;
  border: 2px solid #1a1a1a !important;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
}
.coupon button:hover,
.woocommerce-cart .coupon .button:hover {
  background-color: #1a1a1a !important;
  color: #ffffff !important;
}

/* ----------------------------------------------------------
   5. CHECKOUT: Disabled state clarity
   ---------------------------------------------------------- */
#place_order:disabled,
.wc-proceed-to-checkout .checkout-button:disabled,
button[type="submit"]:disabled {
  background-color: #cccccc !important;
  color: #888888 !important;
  border-color: #cccccc !important;
  cursor: not-allowed !important;
  opacity: 0.7;
  transform: none !important;
  box-shadow: none !important;
}

/* ----------------------------------------------------------
   6. HERO: Kontras teks di Hampers & White Label
   ---------------------------------------------------------- */
.hero-section.hero--light {
  background-color: #1a1a1a;
}
.hero-section.hero--light .hero-title,
.hero-section.hero--light .hero-subtitle,
.hero-section.hero--light .eyebrow {
  color: #ffffff !important;
}

/* ----------------------------------------------------------
   7. BANTUAN: Fix whitespace berlebihan di atas konten
   ---------------------------------------------------------- */
body.page-id-bantuan .site-main,
body.page-id-bantuan main {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* ----------------------------------------------------------
   8. SHOP: Kurangi dead-space hero area
   ---------------------------------------------------------- */
body.woocommerce-shop .woocommerce-products-header {
  min-height: auto !important;
  padding: 60px 0 40px !important;
}

/* ----------------------------------------------------------
   9. AFILIASI: Fix scroll-snap agresif
   ---------------------------------------------------------- */
body.page-id-afiliasi,
body.page-id-afiliasi .site-main {
  scroll-snap-type: none !important;
}
body.page-id-afiliasi section,
body.page-id-afiliasi .elementor-section {
  scroll-snap-align: none !important;
}

/* ----------------------------------------------------------
   10. SCROLL INDICATOR: Animasi bounce
   ---------------------------------------------------------- */
.scroll-indicator,
.hero-scroll-text,
[class*="scroll-text"] {
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(-90deg) translateY(0px); opacity: 1; }
  50% { transform: rotate(-90deg) translateY(6px); opacity: 0.6; }
}

/* 11. Testimoni section */
.testimonials-section {
  background: #F7F6F2;
  padding: 80px 5%;
}
.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
}
.testimonials-section .section-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #C8922A;
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonials-section .section-eyebrow::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  background: #C8922A;
}
.testimonials-section .section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 48px;
  line-height: 1.2;
}
.testimonials-section .section-title .accent {
  color: #C8922A;
  font-style: italic;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}
.testimonial-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.10);
}
.testimonial-stars {
  color: #C8922A;
  font-size: 1.1rem;
  letter-spacing: 2px;
}
.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #444;
  flex: 1;
  font-style: italic;
  margin: 0;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid #EFEDE7;
}
.testimonial-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: #1a1a1a;
}
.testimonial-loc {
  font-size: 0.85rem;
  color: #888;
}

/* 13. Testimoni section — dark ash grey background */
.testimonials-section {
  background: #2A2D34 !important;
  padding: 80px 5%;
}
.testimonials-section .section-eyebrow {
  color: #C8922A !important;
}
.testimonials-section .section-eyebrow::before {
  background: #C8922A !important;
}
.testimonials-section .section-title {
  color: #ffffff !important;
}
.testimonials-section .section-title .accent {
  color: #C8922A !important;
}
.testimonial-card {
  background: #363A42 !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25) !important;
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.35) !important;
}
.testimonial-text {
  color: #e0e0e0 !important;
}
.testimonial-name {
  color: #ffffff !important;
}
.testimonial-loc {
  color: #aaaaaa !important;
}
.testimonial-author {
  border-top: 1px solid #454A54 !important;
}

/* ─── MOBILE: NAV ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none !important; }
  .nav-hamburger { display: flex !important; }
}

/* ─── MOBILE: FOOTER ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .site-footer { padding: 4rem 5vw 2rem; }
  .hero-actions { flex-direction: column; align-items: center; gap: 0.75rem; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .origin-left { min-height: 280px; }
}


/* ─── MIGRATED FROM CUSTOMIZER ─────────────────────────────────── */
/* Moved from Appearance → Customize → Additional CSS             */
/* Date: 2026-05-05 | Previously: wp-custom-css                   */
/* ─────────────────────────────────────────────────────────────── */
/* ----------------------------------------------------------
   1. NAVBAR: Active state untuk halaman yang sedang aktif
   ---------------------------------------------------------- */
.current-menu-item > a,
.current-menu-item > a:hover {
  color: #C8922A !important;
  font-weight: 700 !important;
  border-bottom: 2px solid #C8922A;
  padding-bottom: 2px;
}

/* ----------------------------------------------------------
   2. NAVBAR: Teks readable di scroll-top homepage
   ---------------------------------------------------------- */
.site-header.is-transparent .main-navigation a,
body.home .site-header:not(.scrolled) .main-navigation a {
  color: #ffffff !important;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

body.home .site-header:not(.scrolled) .current-menu-item > a {
  color: #C8922A !important;
  text-shadow: none;
}

/* ----------------------------------------------------------
   3. FOOTER: Normalisasi warna link "White Label"
   ---------------------------------------------------------- */
.site-footer a {
  color: inherit;
}
.site-footer a:hover {
  color: #C8922A;
}

/* ----------------------------------------------------------
   4. BUTTON: "Pakai" promo button — konsistensi desain
   ---------------------------------------------------------- */
.coupon button,
.woocommerce-cart .coupon .button,
button.apply-coupon {
  background-color: transparent !important;
  color: #1a1a1a !important;
  border: 2px solid #1a1a1a !important;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
}
.coupon button:hover,
.woocommerce-cart .coupon .button:hover {
  background-color: #1a1a1a !important;
  color: #ffffff !important;
}

/* ----------------------------------------------------------
   5. CHECKOUT: Disabled state clarity
   ---------------------------------------------------------- */
#place_order:disabled,
.wc-proceed-to-checkout .checkout-button:disabled,
button[type="submit"]:disabled {
  background-color: #cccccc !important;
  color: #888888 !important;
  border-color: #cccccc !important;
  cursor: not-allowed !important;
  opacity: 0.7;
  transform: none !important;
  box-shadow: none !important;
}

/* ----------------------------------------------------------
   6. HERO: Kontras teks di Hampers & White Label
   ---------------------------------------------------------- */
.hero-section.hero--light {
  background-color: #1a1a1a;
}
.hero-section.hero--light .hero-title,
.hero-section.hero--light .hero-subtitle,
.hero-section.hero--light .eyebrow {
  color: #ffffff !important;
}

/* ----------------------------------------------------------
   7. BANTUAN: Fix whitespace berlebihan di atas konten
   ---------------------------------------------------------- */
body.page-id-bantuan .site-main,
body.page-id-bantuan main {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* ----------------------------------------------------------
   8. SHOP: Kurangi dead-space hero area
   ---------------------------------------------------------- */
body.woocommerce-shop .woocommerce-products-header {
  min-height: auto !important;
  padding: 60px 0 40px !important;
}

/* ----------------------------------------------------------
   9. AFILIASI: Fix scroll-snap agresif
   ---------------------------------------------------------- */
body.page-id-afiliasi,
body.page-id-afiliasi .site-main {
  scroll-snap-type: none !important;
}
body.page-id-afiliasi section,
body.page-id-afiliasi .elementor-section {
  scroll-snap-align: none !important;
}

/* ----------------------------------------------------------
   10. SCROLL INDICATOR: Animasi bounce
   ---------------------------------------------------------- */
.scroll-indicator,
.hero-scroll-text,
[class*="scroll-text"] {
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(-90deg) translateY(0px); opacity: 1; }
  50% { transform: rotate(-90deg) translateY(6px); opacity: 0.6; }
}

/* 11. Testimoni section */
.testimonials-section {
  background: #F7F6F2;
  padding: 80px 5%;
}
.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
}
.testimonials-section .section-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #C8922A;
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonials-section .section-eyebrow::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  background: #C8922A;
}
.testimonials-section .section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 48px;
  line-height: 1.2;
}
.testimonials-section .section-title .accent {
  color: #C8922A;
  font-style: italic;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}
.testimonial-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.10);
}
.testimonial-stars {
  color: #C8922A;
  font-size: 1.1rem;
  letter-spacing: 2px;
}
.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #444;
  flex: 1;
  font-style: italic;
  margin: 0;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid #EFEDE7;
}
.testimonial-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: #1a1a1a;
}
.testimonial-loc {
  font-size: 0.85rem;
  color: #888;
}

/* 12. Scroll-line — animasi vertikal (atas ke bawah) */
.scroll-line {
  display: block !important;
  width: 1px !important;
  height: 0 !important;
  background: rgba(255,255,255,0.7) !important;
  margin: 0 auto 8px !important;
  animation: scrollLineDown 1.8s ease-in-out infinite !important;
  transform: none !important;
}
@keyframes scrollLineDown {
  0%   { height: 0px; opacity: 0; margin-top: 0; }
  40%  { height: 36px; opacity: 1; }
  80%  { height: 36px; opacity: 0; margin-top: 36px; }
  100% { height: 0px; opacity: 0; margin-top: 36px; }
}

/* 13. Testimoni section — dark ash grey background */
.testimonials-section {
  background: #2A2D34 !important;
  padding: 80px 5%;
}
.testimonials-section .section-eyebrow {
  color: #C8922A !important;
}
.testimonials-section .section-eyebrow::before {
  background: #C8922A !important;
}
.testimonials-section .section-title {
  color: #ffffff !important;
}
.testimonials-section .section-title .accent {
  color: #C8922A !important;
}
.testimonial-card {
  background: #363A42 !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25) !important;
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.35) !important;
}
.testimonial-text {
  color: #e0e0e0 !important;
}
.testimonial-name {
  color: #ffffff !important;
}
.testimonial-loc {
  color: #aaaaaa !important;
}
.testimonial-author {
  border-top: 1px solid #454A54 !important;
}