/* ==========================================================================
   99 Life — app.css
   Satu stylesheet. Nilai token & susun atur diambil VERBATIM dari design
   `99 Life.dc.html`. Guna CSS custom properties untuk semua token warna.
   ========================================================================== */

/* ---------- Font self-host (variable woff2) ---------- */
@font-face {
  font-family: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/bricolage-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/bricolage-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/figtree-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/figtree-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- Token ---------- */
:root {
  --green: #1E7A45;
  --green-dark: #14532B;
  --ink: #17251B;
  --bg: #FBFAF6;
  --cream-1: #F4EEE3;
  --cream-2: #F2EBDD;
  --cream-3: #EFEBDF;
  --border: #E7E3D8;
  --border-2: #DCD7C9;
  --muted: #5A6B5E;
  --muted-2: #6B7A6E;
  --on-dark: #EAF3EC;
  --on-dark-soft: #8FCBA3;
  --on-dark-soft-2: #B9D6C3;
  --tag-bg: #E8F2EA;
  --nav: #3A4A3E;
  --maxw: 1180px;
}

/* ---------- Reset & asas ---------- */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  font-family: Figtree, system-ui, -apple-system, sans-serif;
  color: var(--ink);
  font-size: 16.5px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green-dark); }
h1, h2, h3, h4 { font-family: 'Bricolage Grotesque', sans-serif; }
button { font-family: Figtree, sans-serif; }
.life99-shell { width: 100%; overflow-x: hidden; }
.container { max-width: var(--maxw); margin: 0 auto; padding-left: 24px; padding-right: 24px; }
.kicker { font-size: 12.5px; font-weight: 700; letter-spacing: 0.09em; color: var(--green); text-transform: none; }
em.accent { font-style: italic; color: var(--green); }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: #fff; padding: 15px 28px;
  border-radius: 999px; font-size: 16px; font-weight: 600; border: 0; cursor: pointer;
  transition: background .15s;
}
.btn-primary:hover { background: var(--green-dark); color: #fff; }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--ink); border: 1px solid var(--border-2);
  padding: 15px 28px; border-radius: 999px; font-size: 16px; font-weight: 600;
  transition: border-color .15s, color .15s;
}
.btn-secondary:hover { border-color: var(--green); color: var(--green); }

/* ==========================================================================
   Bar pengumuman
   ========================================================================== */
.announce {
  background: var(--green-dark); color: #DFF0E4;
  overflow: hidden; white-space: nowrap; padding: 9px 0;
  font-size: 13px; letter-spacing: 0.04em;
}
.announce-track {
  display: inline-flex; gap: 40px;
  animation: marquee 32s linear infinite; will-change: transform;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,250,246,0.92);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 18px 24px;
  display: flex; align-items: center; gap: 16px 28px; flex-wrap: wrap;
}
.logo-link { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-link img { width: 78px; height: 78px; object-fit: cover; border-radius: 14px; }
.main-nav {
  display: flex; align-items: center; gap: 16px 30px; flex-wrap: wrap;
  font-size: 16.5px; font-weight: 500; color: var(--nav);
}
.main-nav > a, .nav-shop-toggle { color: var(--nav); }
.main-nav > a:hover, .nav-shop-toggle:hover { color: var(--green); }
.main-nav a.is-active, .nav-shop-toggle[data-active="1"] { color: var(--green); font-weight: 700; }
.nav-shop { position: relative; display: flex; align-items: center; padding: 12px 0; margin: -12px 0; }
.nav-shop-toggle { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; }
.caret { font-size: 11px; transition: transform .18s; display: inline-block; }
.nav-shop.open .caret { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute; top: 100%; left: -8px; margin-top: 2px; min-width: 230px;
  background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 8px;
  box-shadow: 0 16px 40px rgba(23,37,27,0.12);
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0; transform: translateY(-6px); pointer-events: none;
  transition: opacity .16s, transform .16s;
}
.nav-shop.open .nav-dropdown { opacity: 1; transform: translateY(0); pointer-events: auto; }
.nav-dropdown a { padding: 9px 16px; font-size: 14.5px; color: var(--nav); border-radius: 10px; }
.nav-dropdown a:hover { background: #F1F6F2; color: var(--green); }

.cart-link {
  margin-left: auto; position: relative; display: inline-flex; align-items: center; justify-content: center;
  width: 50px; height: 50px; border-radius: 999px; border: 1px solid var(--border-2);
  background: #fff; color: var(--ink); flex-shrink: 0; transition: border-color .15s, color .15s;
}
.cart-link:hover { border-color: var(--green); color: var(--green); }
.cart-count {
  position: absolute; top: -3px; right: -3px; min-width: 19px; height: 19px; padding: 0 5px;
  border-radius: 999px; background: var(--green); color: #fff; font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

.hamburger { display: none; align-items: center; justify-content: center; width: 46px; height: 46px;
  border-radius: 12px; border: 1px solid var(--border-2); background: #fff; color: var(--ink); cursor: pointer; padding: 0; flex-shrink: 0; }
.mobile-menu { display: none; flex-direction: column; padding: 8px 24px 20px; background: var(--bg); border-bottom: 1px solid var(--border); }
.mobile-menu.is-open { display: flex; }
.mobile-menu a { border-bottom: 1px solid var(--cream-3); }
.mobile-menu .mm-top { padding: 14px 4px; font-size: 17px; font-weight: 600; color: var(--ink); }
.mobile-menu .mm-sub { padding: 12px 4px 12px 18px; font-size: 15.5px; color: var(--muted); }
.mobile-menu .mm-last { border-bottom: 0; }

/* ==========================================================================
   Seksyen umum
   ========================================================================== */
.section { max-width: var(--maxw); margin: 0 auto; padding: clamp(52px,7vw,88px) 24px; }
.section-head { display: flex; flex-direction: column; gap: 10px; max-width: 640px; }
.section-head h2 {
  font-size: clamp(28px,5vw,42px); line-height: 1.1; letter-spacing: -0.025em;
  font-weight: 800; margin: 0; color: var(--ink);
}
.section-dark { background: var(--green-dark); color: var(--on-dark); }
.section-dark h2 { color: #fff; }
.section-dark .kicker { color: var(--on-dark-soft); }
.section-cream { background: var(--cream-2); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative; background-image: url('../images/hero-99life.jpg');
  background-size: cover; background-position: center bottom; background-color: var(--cream-1);
  background-repeat: no-repeat; min-height: clamp(560px,74vh,780px);
  display: flex; align-items: center; overflow: hidden;
}
.hero-inner {
  position: relative; z-index: 1; max-width: 1440px; width: 100%; margin: 0 auto;
  padding: clamp(40px,6vw,72px) clamp(24px,3vw,40px) clamp(40px,6vw,72px) clamp(20px,2vw,28px);
  display: flex; flex-direction: column; align-items: flex-start; gap: 20px;
  animation: floatUp .6s ease both;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; background: var(--tag-bg); color: var(--green);
  padding: 7px 14px; border-radius: 999px; font-size: 12.5px; font-weight: 700; letter-spacing: 0.09em;
}
.hero-title {
  font-family: 'Bricolage Grotesque', sans-serif; font-size: clamp(34px,7vw,60px); line-height: 1.05;
  letter-spacing: -0.032em; font-weight: 800; margin: 0; color: var(--ink);
  text-wrap: balance; max-width: min(500px,88%);
}
.hero-sub { font-size: 19px; line-height: 1.55; color: #4A5B4E; margin: 0; max-width: min(440px,88%); }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; padding-top: 6px; }
.hero-stats { display: flex; gap: 26px; padding-top: 14px; flex-wrap: wrap; }
.hero-stats > div { display: flex; flex-direction: column; gap: 2px; }
.hero-stats .num { font-family: 'Bricolage Grotesque', sans-serif; font-size: 26px; font-weight: 800; color: var(--green); }
.hero-stats .lbl { font-size: 13px; color: var(--muted-2); }

/* ==========================================================================
   Grid produk (homepage) + kad produk boleh guna semula
   ========================================================================== */
.produk-section { max-width: var(--maxw); margin: 0 auto; padding: 20px 24px 90px; display: flex; flex-direction: column; gap: 34px; scroll-margin-top: 88px; }
.produk-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
.produk-head .head-left { display: flex; flex-direction: column; gap: 10px; }
.produk-head h2 { font-size: clamp(28px,5vw,42px); line-height: 1.1; letter-spacing: -0.025em; font-weight: 800; margin: 0; }
.link-arrow { font-size: 15px; font-weight: 600; }

.grid-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 22px; }

.card-produk {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--border);
  border-radius: 24px; overflow: hidden; transition: border-color .15s, transform .15s;
}
.card-produk:hover { border-color: var(--green); transform: translateY(-3px); }
.card-produk .card-media { position: relative; width: 100%; aspect-ratio: 1/1; }
.card-produk .card-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; }
.card-produk .card-body { display: flex; flex-direction: column; gap: 12px; padding: 24px; flex: 1; }
.card-produk .card-tag { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; color: var(--green); }
.card-produk h3 { font-size: 24px; font-weight: 700; margin: 0; letter-spacing: -0.015em; }
.card-produk h3 a { color: var(--ink); }
.card-produk h3 a:hover { color: var(--green); }
.card-produk .card-desc { font-size: 15.5px; line-height: 1.55; color: var(--muted); margin: 0; }
.card-produk .card-points { margin: 0; padding-left: 18px; display: flex; flex-direction: column; gap: 6px; font-size: 14.5px; color: var(--muted); }
.card-produk .card-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 14px; }
.card-produk .card-price { font-family: 'Bricolage Grotesque', sans-serif; font-size: 20px; font-weight: 800; }
.card-produk .card-cta {
  background: var(--ink); color: #fff; padding: 11px 18px; border-radius: 999px; font-size: 14px; font-weight: 600;
  transition: background .15s;
}
.card-produk .card-cta:hover { background: var(--green); color: #fff; }
.card-produk.card-shop .card-price { font-size: 22px; }
.card-produk.card-shop .card-cta { padding: 11px 20px; }

/* ==========================================================================
   Keperluan (dark)
   ========================================================================== */
.keperluan-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 18px; }
.keperluan-card {
  display: flex; flex-direction: column; gap: 14px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14); border-radius: 20px; padding: 26px; color: var(--on-dark);
  transition: background .15s;
}
.keperluan-card:hover { background: rgba(255,255,255,0.12); color: #fff; }
.keperluan-card strong { font-family: 'Bricolage Grotesque', sans-serif; font-size: 21px; line-height: 1.25; font-weight: 700; color: #fff; }
.keperluan-card .k-desc { font-size: 15px; color: var(--on-dark-soft-2); line-height: 1.5; }
.keperluan-card .k-link { font-size: 15px; font-weight: 600; color: var(--on-dark-soft); margin-top: auto; }

/* ==========================================================================
   Bahan (tab)
   ========================================================================== */
.bahan-section { display: flex; flex-direction: column; gap: 30px; }
.bahan-tabs { display: flex; gap: 10px; flex-wrap: wrap; }
.bahan-tabs button {
  padding: 11px 20px; border-radius: 999px; font-size: 15px; font-weight: 600; cursor: pointer;
  background: #fff; color: var(--nav); border: 1px solid var(--border-2); transition: all .15s;
}
.bahan-tabs button.is-active { background: var(--green); color: #fff; border-color: var(--green); }
.bahan-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 18px; }
.bahan-panel { display: none; }
.bahan-panel.is-active { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 18px; }
.bahan-item { display: flex; flex-direction: column; gap: 12px; background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 20px; }
.bahan-item .b-media { position: relative; width: 100%; aspect-ratio: 1/1; border-radius: 14px; overflow: hidden; background: var(--cream-2); }
.bahan-item .b-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.bahan-item .b-produk { font-size: 11.5px; font-weight: 700; letter-spacing: 0.07em; color: var(--green); }
.bahan-item h3 { font-size: 19px; font-weight: 700; margin: 0; letter-spacing: -0.01em; }
.bahan-item p { font-size: 14.5px; line-height: 1.5; color: var(--muted); margin: 0; }

/* ==========================================================================
   Kenapa pilih (cream)
   ========================================================================== */
.kenapa-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 18px; }
.kenapa-card { display: flex; flex-direction: column; gap: 10px; background: #fff; border-radius: 22px; padding: 30px; }
.kenapa-card h3 { font-size: 22px; font-weight: 700; margin: 0; }
.kenapa-card p { font-size: 16px; line-height: 1.55; color: var(--muted); margin: 0; }

/* ==========================================================================
   Sains (homepage split)
   ========================================================================== */
.sains-split { max-width: var(--maxw); margin: 0 auto; padding: clamp(52px,7vw,88px) 24px; display: grid; grid-template-columns: repeat(auto-fit, minmax(320px,1fr)); gap: 52px; align-items: center; scroll-margin-top: 88px; }
.sains-media { position: relative; width: 100%; aspect-ratio: 4/5; background: var(--tag-bg); border-radius: 26px; padding: 16px; }
.sains-media img { position: absolute; inset: 16px; width: calc(100% - 32px); height: calc(100% - 32px); object-fit: cover; border-radius: 16px; }
.sains-body { display: flex; flex-direction: column; gap: 18px; }
.sains-body h2 { font-size: clamp(28px,5vw,42px); line-height: 1.1; letter-spacing: -0.025em; font-weight: 800; margin: 0; }
.sains-body > p { font-size: 17px; line-height: 1.6; color: var(--muted); margin: 0; max-width: 52ch; }
.sains-points { display: flex; flex-direction: column; gap: 14px; padding-top: 6px; }
.sains-points .pt { display: flex; gap: 14px; align-items: flex-start; }
.sains-points .dot { width: 8px; height: 8px; border-radius: 99px; background: var(--green); margin-top: 9px; flex-shrink: 0; }
.sains-points p { margin: 0; font-size: 16px; line-height: 1.55; color: var(--nav); }

/* ==========================================================================
   Ulasan (carousel)
   ========================================================================== */
.ulasan-section { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); scroll-margin-top: 88px; }
.ulasan-inner { max-width: var(--maxw); margin: 0 auto; padding: clamp(52px,7vw,84px) 24px; display: flex; flex-direction: column; gap: 30px; }
.ulasan-head { display: flex; flex-direction: column; gap: 10px; max-width: 660px; margin: 0 auto; text-align: center; align-items: center; }
.ulasan-head h2 { font-size: clamp(28px,5vw,42px); line-height: 1.1; letter-spacing: -0.025em; font-weight: 800; margin: 0; }
.rev-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px,1fr)); gap: 18px; padding: 22px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.rev-stats > div { display: flex; flex-direction: column; gap: 3px; }
.rev-stats .num { font-family: 'Bricolage Grotesque', sans-serif; font-size: 30px; font-weight: 800; color: var(--green); }
.rev-stats .lbl { font-size: 13.5px; color: var(--muted-2); }
.rev-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.rev-chips button {
  padding: 10px 18px; border-radius: 999px; font-size: 14.5px; cursor: pointer;
  background: #fff; color: var(--nav); border: 1px solid var(--border-2); font-weight: 500;
}
.rev-chips button.is-active { background: var(--green); color: #fff; border-color: var(--green); font-weight: 700; }
.rev-viewport { position: relative; margin: 0 -24px; padding: 0 24px 4px; overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%); }
.rev-track { display: flex; width: max-content; animation: marquee 46s linear infinite; }
.rev-track:hover { animation-play-state: paused; }
.rev-card { display: flex; flex-direction: column; gap: 13px; margin: 0 18px 0 0; background: var(--bg); border: 1px solid var(--border); border-radius: 20px; padding: 24px; width: 330px; flex-shrink: 0; }
.rev-card .stars { color: var(--green); font-size: 15px; letter-spacing: 2px; }
.rev-card .r-produk { font-size: 12px; font-weight: 700; letter-spacing: 0.07em; color: #8A9A8E; }
.rev-card blockquote { margin: 0; font-size: 16px; line-height: 1.6; color: #2C3B30; }
.rev-card .r-foot { display: flex; align-items: center; gap: 10px; margin-top: auto; padding-top: 6px; }
.rev-card .r-avatar { width: 34px; height: 34px; border-radius: 99px; background: var(--tag-bg); color: var(--green); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-section { max-width: 860px; margin: 0 auto; padding: clamp(52px,7vw,88px) 24px; display: flex; flex-direction: column; gap: 28px; scroll-margin-top: 88px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-section details { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 20px 24px; }
.faq-section summary { list-style: none; cursor: pointer; font-family: 'Bricolage Grotesque', sans-serif; font-size: 19px; font-weight: 700; color: var(--ink); }
.faq-section summary::-webkit-details-marker { display: none; }
.faq-section details p { margin: 14px 0 0; font-size: 16px; line-height: 1.6; color: var(--muted); }

/* ==========================================================================
   CTA akhir
   ========================================================================== */
.cta-wrap { max-width: var(--maxw); margin: 0 auto 88px; padding: 0 24px; }
.cta-box { background: var(--green); border-radius: 28px; padding: clamp(36px,5vw,60px) clamp(24px,4vw,48px); display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; }
.cta-box .cta-left { display: flex; flex-direction: column; gap: 12px; max-width: 52ch; }
.cta-box h2 { font-size: clamp(26px,4.5vw,38px); line-height: 1.12; letter-spacing: -0.025em; font-weight: 800; margin: 0; color: #fff; }
.cta-box p { font-size: 17px; line-height: 1.55; color: #D5EADC; margin: 0; }
.cta-box .cta-btn { background: #fff; color: var(--green-dark); padding: 16px 30px; border-radius: 999px; font-size: 16px; font-weight: 700; flex-shrink: 0; }
.cta-box .cta-btn:hover { background: var(--ink); color: #fff; }

/* ==========================================================================
   Komuniti / newsletter (dark)
   ========================================================================== */
.komuniti-grid { max-width: var(--maxw); margin: 0 auto; padding: clamp(52px,7vw,84px) 24px; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 40px; align-items: center; }
.komuniti-copy { display: flex; flex-direction: column; gap: 12px; }
.komuniti-copy h2 { font-size: clamp(28px,5vw,42px); line-height: 1.1; letter-spacing: -0.025em; font-weight: 800; margin: 0; color: #fff; }
.komuniti-copy p { font-size: 17px; line-height: 1.6; color: var(--on-dark-soft-2); margin: 0; max-width: 46ch; }
.news-form { display: flex; flex-direction: column; gap: 12px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.16); border-radius: 22px; padding: 28px; }
.news-form strong { font-family: 'Bricolage Grotesque', sans-serif; font-size: 19px; color: #fff; }
.news-form .n-sub { font-size: 15px; line-height: 1.55; color: var(--on-dark-soft-2); }
.news-form input[type=email] { font-family: Figtree, sans-serif; font-size: 15.5px; padding: 14px 16px; border: 1px solid rgba(255,255,255,0.2); border-radius: 12px; background: rgba(255,255,255,0.08); color: #fff; }
.news-form input[type=email]::placeholder { color: rgba(234,243,236,0.6); }
.news-form button { background: #fff; color: var(--green-dark); border: 0; padding: 14px 24px; border-radius: 999px; font-family: Figtree, sans-serif; font-size: 15.5px; font-weight: 700; cursor: pointer; transition: background .15s; }
.news-form button:hover { background: var(--on-dark-soft); }
.news-note { font-size: 13px; color: var(--on-dark-soft); }
.news-success { font-size: 14.5px; font-weight: 600; color: var(--on-dark-soft); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--ink); color: #B9C4BB; }
.footer-top { max-width: var(--maxw); margin: 0 auto; padding: 64px 24px 28px; display: flex; flex-wrap: wrap; gap: 40px; align-items: flex-start; }
.footer-brand { display: flex; flex-direction: column; gap: 16px; flex: 1 1 300px; min-width: 260px; }
.footer-brand img { width: 40px; height: 40px; object-fit: cover; border-radius: 9px; }
.footer-brand p { font-size: 15px; line-height: 1.6; margin: 0; max-width: 34ch; text-align: justify; }
.footer-col { display: flex; flex-direction: column; gap: 12px; flex: 0 0 auto; white-space: nowrap; }
.footer-top .footer-col:first-of-type { margin-left: auto; }
.footer-col h3 { font-size: 13px; font-weight: 700; letter-spacing: 0.08em; color: #fff; margin: 0; }
.footer-col a { font-size: 15px; color: #B9C4BB; }
.footer-col a:hover { color: var(--on-dark-soft); }
.footer-bottom { max-width: var(--maxw); margin: 0 auto; padding: 20px 24px 40px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13.5px; color: #8A9A8E; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 13.5px; color: #8A9A8E; }
.footer-legal a:hover { color: var(--on-dark-soft); }

/* ==========================================================================
   Keyframes
   ========================================================================== */
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes floatUp { from { transform: translateY(6px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* PDP, Shop, halaman statik & WooCommerce digayakan dalam assets/css/pages.css
   (dienqueue berasingan selepas app.css dalam functions.php). */

/* ==========================================================================
   Responsif
   ========================================================================== */
@media (max-width: 860px) {
  .main-nav { display: none !important; }
  .header-inner { padding: 10px 18px !important; position: relative; }
  .hamburger { display: inline-flex !important; width: 40px; height: 40px; border-radius: 10px; }
  .hamburger svg { width: 19px; height: 19px; }
  .logo-link { position: absolute; left: 50%; transform: translateX(-50%); margin: 0; }
  .logo-link img { width: 46px; height: 46px; }
  .cart-link { width: 40px; height: 40px; }
  .cart-link svg { width: 19px; height: 19px; }
  .hero-badge { font-size: 10.5px; padding: 6px 12px; letter-spacing: 0.07em; }
}
@media (max-width: 720px) {
  .hero {
    background-image: url('../images/ADF4816B-C8E7-4AA3-A5E7-A5314B69C3CE.jpg') !important;
    background-size: cover !important; background-position: center bottom !important;
    background-repeat: no-repeat !important; background-color: #EDE6DA !important;
    min-height: 148vw !important; align-items: flex-start !important;
  }
  .hero-inner { padding: 22px 22px 0 !important; gap: 12px !important; }
  .hero-title { max-width: 100% !important; font-size: 30px !important; }
  .hero-sub { max-width: 100% !important; font-size: 14.5px !important; }
  .hero-cta { width: auto; flex-direction: row; flex-wrap: wrap; gap: 8px !important; }
  .hero-cta a { padding: 11px 18px !important; font-size: 14px !important; }
  .hero-stats { display: none !important; }

  .footer-top { gap: 32px 20px !important; }
  .footer-brand { flex: 1 1 100% !important; min-width: 0 !important; }
  .footer-col { flex: 1 1 0 !important; min-width: 0 !important; margin-left: 0 !important; white-space: normal !important; }
  .footer-top .footer-col:first-of-type { margin-left: 0 !important; }
  .footer-col a { font-size: 14px !important; }

  .faq-list { gap: 20px !important; }
  .faq-section details { padding: 15px 18px !important; border-radius: 14px !important; }
  .faq-section summary { font-size: 15.5px !important; }
  .faq-section details p { font-size: 14px !important; margin-top: 10px !important; }

  .rev-stats { grid-template-columns: repeat(2,1fr) !important; gap: 22px 12px !important; text-align: center; }
  .rev-stats > div { align-items: center; }
  .rev-chips { flex-wrap: nowrap !important; justify-content: flex-start; gap: 6px !important; overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; padding-bottom: 2px; }
  .rev-chips::-webkit-scrollbar { display: none; }
  .rev-chips button { padding: 7px 12px !important; font-size: 12.5px !important; white-space: nowrap; }

  .bahan-tabs { flex-wrap: nowrap !important; overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; gap: 8px !important; }
  .bahan-tabs::-webkit-scrollbar { display: none; }
  .bahan-tabs button { padding: 9px 14px !important; font-size: 13px !important; white-space: nowrap; }

  .footer-bottom { flex-direction: column; align-items: flex-start !important; text-align: left; gap: 16px !important; border-top: 0 !important; }
  .footer-bottom > span { width: 100%; }
}
