/* ============================================================
   AL-WALIY SEJAHTERA — style.css
   Luxury Natural · Dark Green & Gold · Animated
   ============================================================ */

/* ── GOOGLE FONTS — Loaded via <link> in HTML for better performance ── */
/* Cormorant Garamond (display) + DM Sans (body) */

:root {
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}

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

:root {
  --green-dark: #1b4332;
  --green-mid: #2d6a4f;
  --green-light: #52b788;
  --gold: #c9a84c;
  --gold-light: #f0d080;
  --gold-pale: #fdf6e3;
  --cream: #f7f3eb;
  --white: #ffffff;
  --off-white: #f8faf8;
  --dark: #0d2318;
  --text-dark: #1a2e22;
  --text-mid: #3d5a47;
  --text-muted: #6b8c76;
  --shadow-sm: 0 2px 12px rgba(27, 67, 50, 0.08);
  --shadow-md: 0 8px 32px rgba(27, 67, 50, 0.12);
  --shadow-lg: 0 20px 60px rgba(27, 67, 50, 0.18);
  --shadow-gold: 0 8px 32px rgba(201, 168, 76, 0.3);
  --radius: 14px;
  --radius-sm: 8px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 0.3s;
  --t: 0.3s; /* alias, deprecated — gunakan --duration */
}
/* Disable semua animasi untuk user yg prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--text-dark);
  overflow-x: hidden;
  cursor: auto;
}

a[href],
button,
[role="button"],
[data-tab],
[data-filter],
[data-produk-id],
[data-article-id],
.kprod-card,
.produk-card,
.artikel-card,
.testi-card,
.vm-item,
.sertif-card,
.gal-item,
.wa-float,
.back-to-top,
.faq-q,
.apage-back,
.ppage-back,
.ann-close,
.ann-cta,
.testi-nav-btn,
.artikel-nav-btn,
.gal-lb-arrow,
.gal-lb-close {
  cursor: pointer;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideR {
  from {
    opacity: 0;
    transform: translateX(48px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes floatSlow {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  33% {
    transform: translateY(-8px) rotate(1.5deg);
  }
  66% {
    transform: translateY(-4px) rotate(-1deg);
  }
}
@keyframes spinSlow {
  to {
    transform: rotate(360deg);
  }
}
@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes pulseGold {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.5);
  }
  50% {
    box-shadow: 0 0 0 14px rgba(201, 168, 76, 0);
  }
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
@keyframes orb {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(40px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.95);
  }
}
@keyframes glowPulse {
  0%,
  100% {
    opacity: 1;
    filter: brightness(1);
  }
  50% {
    opacity: 0.85;
    filter: brightness(1.2);
  }
}
@keyframes borderGlow {
  0%,
  100% {
    box-shadow:
      0 0 8px rgba(201, 168, 76, 0.3),
      inset 0 0 8px rgba(201, 168, 76, 0.05);
  }
  50% {
    box-shadow:
      0 0 20px rgba(201, 168, 76, 0.6),
      0 0 40px rgba(201, 168, 76, 0.2),
      inset 0 0 12px rgba(201, 168, 76, 0.08);
  }
}

@keyframes slideUpBounce {
  0% {
    opacity: 0;
    transform: translateY(48px);
  }
  60% {
    transform: translateY(-8px);
  }
  80% {
    transform: translateY(3px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── CUSTOM CURSOR (dinonaktifkan) ───────────────────────── */
.cursor-outer,
.cursor-inner {
  display: none !important;
}

/* ── SCROLL PROGRESS BAR ──────────────────────────────────── */
#scrollProgressBar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  z-index: 99999;
  background: linear-gradient(
    90deg,
    var(--green-mid),
    var(--gold),
    var(--gold-light),
    var(--green-mid)
  );
  background-size: 300% 100%;
  animation: shimmer 4s linear infinite;
  box-shadow:
    0 0 8px rgba(201, 168, 76, 0.5),
    0 0 2px rgba(201, 168, 76, 0.8);
  border-radius: 0 2px 2px 0;
  transition: width 0.08s linear;
  pointer-events: none;
}

/* ── NAVBAR ───────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition:
    background var(--t),
    box-shadow var(--t),
    padding var(--t);
  opacity: 0.95;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}

.nav-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  animation: fadeIn 0.8s var(--ease) both;
}

.logo-ar {
  font-family: var(--font-body);
  font-size: 30px;
  line-height: 1;
  background: linear-gradient(
    90deg,
    var(--gold) 0%,
    var(--gold-light) 40%,
    var(--gold) 80%
  );
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
  filter: drop-shadow(0 0 8px rgba(201, 168, 76, 0.4));
}

.logo-divider {
  width: 1px;
  height: 34px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(201, 168, 76, 0.6),
    transparent
  );
}

.logo-en {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-dark);
  line-height: 1.2;
  text-shadow: none;
  position: relative;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  font-family: var(--font-body);
}

.logo-en em {
  display: block;
  font-style: italic;
  font-family: var(--font-display);
  color: var(--gold);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: none;
}

.navbar.scrolled .logo-en {
  color: var(--green-dark);
  text-shadow: none;
}
.navbar:not(.scrolled) .logo-en {
  color: var(--white);
  text-shadow:
    0 0 20px rgba(255, 255, 255, 0.3),
    0 0 40px rgba(255, 255, 255, 0.1);
}
.navbar:not(.scrolled) .logo-en em {
  color: var(--gold-light);
  text-shadow:
    0 0 12px rgba(240, 208, 128, 0.8),
    0 0 28px rgba(240, 208, 128, 0.5),
    0 0 50px rgba(240, 208, 128, 0.3);
  animation: glowPulse 2.5s ease-in-out infinite;
}
.navbar.scrolled .logo-en em {
  color: var(--gold);
  text-shadow:
    0 0 10px rgba(201, 168, 76, 0.6),
    0 0 22px rgba(201, 168, 76, 0.35);
  animation: glowPulse 2.5s ease-in-out infinite;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  transition: color var(--t);
  cursor: pointer;
}

.navbar.scrolled .nav-link {
  color: var(--text-mid);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width var(--t) var(--ease);
}

.nav-link:hover::after {
  width: 100%;
}
.nav-link:not(.nav-cta):hover {
  color: var(--gold-light) !important;
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--green-dark) !important;
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--t),
    box-shadow var(--t) !important;
}

.nav-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: rgba(255, 255, 255, 0.25);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}

.nav-cta:hover::before {
  left: 150%;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: var(--green-dark) !important;
}
.nav-cta::after {
  display: none !important;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--t);
}

.navbar.scrolled .nav-burger span {
  background: var(--green-dark);
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition:
    transform var(--t) var(--ease),
    box-shadow var(--t),
    background var(--t);
  position: relative;
  overflow: hidden;
  border: none;
}

.btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform var(--t);
}

.btn:hover svg {
  transform: translateX(4px);
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.btn:hover::before {
  transform: translateX(100%);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--green-dark);
}

.btn-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-gold);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
  border-radius: var(--radius-sm);
}

/* ── SCROLL REVEAL — Dynamic & Varied ────────────────────────── */

/* Base hidden state */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.88);
}

.reveal-rotate {
  opacity: 0;
  transform: translateY(30px) rotate(-2deg);
}

/* Visible state */
.reveal-up.visible,
.reveal-right.visible,
.reveal-left.visible,
.reveal-scale.visible,
.reveal-rotate.visible {
  opacity: 1;
  transform: none;
}

/* SECTION SHARED */
.section-eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  position: relative;
  padding-left: 28px;
}

.section-eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
}

/* For centered section headers — override to use bottom bar instead of left bar */
.section-header .section-eyebrow {
  padding-left: 0;
  padding-bottom: 12px;
  display: inline-block;
}

.section-header .section-eyebrow::before {
  display: none;
}

.section-header .section-eyebrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.2px;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 900;
}

.section-body {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.9;
  max-width: 540px;
}
.section-sub {
  font-size: 15px;
  color: var(--text-muted);
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(
    160deg,
    var(--green-dark) 0%,
    #163a28 50%,
    #1b4332 100%
  );
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 5% 80px;
  gap: 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  animation: orb 12s ease-in-out infinite;
  will-change: transform;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: var(--gold);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}
.hero-orb-2 {
  width: 350px;
  height: 350px;
  background: var(--green-light);
  bottom: -80px;
  left: -80px;
  animation-delay: -4s;
}
.hero-orb-3 {
  width: 200px;
  height: 200px;
  background: var(--gold-light);
  top: 40%;
  left: 30%;
  animation-delay: -8s;
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
}

.hero-content {
  flex: 1;
  max-width: 580px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(
    135deg,
    rgba(201, 168, 76, 0.25),
    rgba(240, 208, 128, 0.15)
  );
  border: 1.5px solid rgba(201, 168, 76, 0.7);
  color: #f0d080;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 30px;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
  box-shadow:
    0 0 18px rgba(201, 168, 76, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  text-shadow: 0 0 12px rgba(240, 208, 128, 0.6);
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}

.hero-title {
  font-family: var(--font-body);
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
  animation: fadeUp 0.8s var(--ease) both;
}

.hero-title-br {
  display: none;
}

@media (min-width: 768px) {
  .hero-title-br {
    display: block;
  }
}

.hero-title-em {
  font-style: italic;
  background: linear-gradient(
    90deg,
    var(--gold),
    var(--gold-light),
    var(--gold)
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

.hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.9;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat {
  text-align: center;
}

.stat-num {
  font-family: var(--font-body);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

.stat span:last-child {
  font-size: 1rem;
  color: var(--gold);
  font-weight: 600;
}

.stat-label {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 1px;
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
}

/* Hero Visual */
.hero-visual {
  flex: 1;
  max-width: 480px;
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
  margin-right: -1%;
}

.hero-img-frame {
  position: relative;
  width: 400px;
  height: 470px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Decorative outer ring */
.hero-img-frame::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.25);
  animation: spinSlow 30s linear infinite;
}

/* Decorative dashed inner ring */
.hero-img-frame::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px dashed rgba(201, 168, 76, 0.18);
  animation: spinSlow 20s linear infinite reverse;
}

.hero-img-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(
    circle at center,
    rgba(201, 168, 76, 0.18) 0%,
    rgba(27, 67, 50, 0.08) 45%,
    transparent 70%
  );
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

/* Logo display — circular medallion */
.hero-img {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.06);
  animation: floatSlow 7s ease-in-out infinite;
  border: none;
  box-shadow:
    0 24px 72px rgba(27, 67, 50, 0.3),
    0 0 0 2px rgba(201, 168, 76, 0.2),
    0 0 0 12px rgba(201, 168, 76, 0.06),
    inset 0 0 40px rgba(255, 255, 255, 0.05);
  padding: 16px;
  will-change: transform;
}

.hero-img-badge {
  position: absolute;
  bottom: 20px;
  right: -20px;
  width: 100px;
  height: 100px;
  /* No animation here — wrapper is controlled by parallax float */
}

.badge-svg-spin {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: spinSlow 18s linear infinite;
  transform-origin: center center;
}

.badge-circle-text {
  fill: var(--gold-light);
  font-size: 8.5px;
  letter-spacing: 2px;
  font-weight: 600;
}

.badge-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  animation: spinSlow 18s linear infinite reverse;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  animation: float 3s ease-in-out infinite;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
}

/* ── MARQUEE ───────────────────────────── */

/* wrapper utama */
.marquee-wrap {
  background: var(--green-dark);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
}

/* fade kiri kanan */
.marquee-fade {
  position: relative;
  overflow: hidden;
}

.marquee-fade::before,
.marquee-fade::before {
  left: 0;
  background: linear-gradient(to right, var(--green-dark), transparent);
}

.marquee-fade::after {
  right: 0;
  background: linear-gradient(to left, var(--green-dark), transparent);
}

/* track */
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marqueeSmooth 22s linear infinite;
}

/* hover dihandle via JS (slow down effect) */

/* item text */
.marquee-track span {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.5px;
  padding: 0 28px;
}

.marquee-track span.arabic {
  font-family: var(--font-body);
  font-size: 16px;
  direction: rtl;
}

/* pemisah */
.marquee-track .mx {
  color: var(--gold);
  padding: 0 10px;
}

/* animasi lebih smooth & pelan */
@keyframes marqueeSmooth {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ── SERTIFIKASI ──────────────────────────────────────────── */
.sertifikasi {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    #eef5f0 0%,
    var(--cream) 50%,
    #f0f7f2 100%
  );
  position: relative;
  overflow: hidden;
}

.sertifikasi::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(27, 67, 50, 0.03) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.sertifikasi-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: center;
}

.sertif-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* Single featured card layout */
.sertif-cards--single {
  grid-template-columns: 1fr;
  max-width: 680px;
}

.sertif-card--featured {
  padding: 40px 44px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  background: linear-gradient(135deg, #fffdf7 0%, var(--white) 100%);
}

.sertif-card--featured::before {
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--gold),
    var(--gold-light),
    var(--gold)
  );
}

/* Top row: logo + heading side by side */
.sertif-featured-top {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  margin-bottom: 28px;
}

.sertif-featured-heading h3 {
  font-size: 1.5rem;
  margin: 8px 0 10px;
  color: var(--green-dark);
}

.sertif-featured-heading p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* 3 bullet points */
.sertif-featured-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  padding: 20px 24px;
  background: rgba(201, 168, 76, 0.06);
  border-radius: 10px;
  border-left: 3px solid var(--gold);
}

.sertif-point {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-dark);
  font-weight: 500;
}

.sertif-point-icon {
  color: var(--gold);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.sertif-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(27, 67, 50, 0.07);
  position: relative;
  overflow: visible;
  transition:
    transform var(--t),
    box-shadow var(--t);
}

.sertif-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: var(--radius) var(--radius) 0 0;
  z-index: 0;
}

.sertif-card:last-child::before {
  background: linear-gradient(90deg, var(--green-mid), var(--green-light));
}

.sertif-icon-wrap svg {
  width: 36px;
  height: 36px;
}

.sertif-halal {
  background: linear-gradient(
    135deg,
    rgba(201, 168, 76, 0.12),
    rgba(201, 168, 76, 0.06)
  );
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.25);
}

/* Logo Halal punya banyak whitespace — scale up biar setara BPOM */
.sertif-halal .sertif-logo-img {
  transform: scale(1.45);
}

.sertif-card:hover .sertif-halal .sertif-logo-img {
  transform: scale(1.5) translateY(-2px);
}

.sertif-bpom {
  background: linear-gradient(
    135deg,
    rgba(45, 106, 79, 0.12),
    rgba(45, 106, 79, 0.06)
  );
  color: var(--green-mid);
  border: 1px solid rgba(45, 106, 79, 0.2);
}

.sertif-badge-label {
  display: inline-block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.sertif-card:last-child .sertif-badge-label {
  color: var(--green-mid);
  background: rgba(45, 106, 79, 0.08);
  border-color: rgba(45, 106, 79, 0.2);
}

.sertif-body h3 {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.sertif-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 18px;
}

.sertif-nomor {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 14px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  border-left: 2px solid var(--gold);
}

.sertif-card:last-child .sertif-nomor {
  border-left-color: var(--green-mid);
}

.sertif-nomor span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  font-weight: 600;
}

.sertif-nomor strong {
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.sertif-stamp {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 4px 10px;
  border-radius: 20px;
}

.sertif-stamp-green {
  color: var(--green-mid);
  background: rgba(45, 106, 79, 0.08);
  border-color: rgba(45, 106, 79, 0.3);
}

/* ── TENTANG ──────────────────────────────────────────────── */
.tentang {
  padding: 120px 0;
  background: linear-gradient(
    160deg,
    var(--cream) 0%,
    var(--off-white) 60%,
    #eef5f0 100%
  );
  position: relative;
  overflow: hidden;
}

/* Building photo — ghost layer, pojok kiri bawah, di balik stack foto */
.tentang-building-bg {
  position: absolute;
  bottom: 0;
  left: -40px;
  width: 480px;
  height: 560px;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  border-radius: 0 20px 0 0;
}

.tentang-building-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.09;
  filter: grayscale(60%) sepia(20%) brightness(0.85);
  display: block;
}

/* Mask: fade ke semua arah biar bener-bener menyatu */
.tentang-building-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, transparent 30%, var(--cream) 85%),
    linear-gradient(to bottom, var(--cream) 0%, transparent 30%),
    linear-gradient(to top, var(--cream) 0%, transparent 25%),
    linear-gradient(to left, var(--cream) 0%, transparent 20%);
}

/* Make grid relative above background */
.tentang-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.tentang::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.07) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.tentang::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(27, 67, 50, 0.06) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.tentang-img-stack {
  position: relative;
  height: 680px;
}

/* Aksen garis buat dua foto yang beda */
.tentang-img-stack::after {
  content: "";
  position: absolute;
  top: 60px;
  left: 260px;
  width: 2px;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  z-index: 1;
  opacity: 0.5;
}

.timg {
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.timg-1 {
  width: 290px;
  height: 380px;
  top: 0;
  left: 0;
  border: none;
  box-shadow:
    0 24px 64px rgba(27, 67, 50, 0.18),
    0 4px 16px rgba(27, 67, 50, 0.1);
  transition:
    transform var(--t),
    box-shadow var(--t);
}

.timg-1::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.timg-1:hover {
  transform: scale(1.03) rotate(-1deg);
  box-shadow:
    0 32px 80px rgba(27, 67, 50, 0.22),
    0 8px 24px rgba(27, 67, 50, 0.14);
}

.timg-2 {
  width: 280px;
  height: 330px;
  bottom: 0;
  right: 0;
  border: none;
  border-radius: 20px;
  box-shadow:
    0 20px 56px rgba(27, 67, 50, 0.22),
    0 4px 16px rgba(27, 67, 50, 0.1);
  transition:
    transform var(--t),
    box-shadow var(--t);
}

.timg-2 img {
  border-radius: 20px;
}

.timg-2:hover {
  transform: scale(1.03) rotate(1deg);
  box-shadow:
    0 28px 72px rgba(27, 67, 50, 0.28),
    0 8px 24px rgba(27, 67, 50, 0.16);
}

.tentang-badge-float {
  position: absolute;
  top: 390px;
  left: 150px;
  background: linear-gradient(135deg, var(--dark) 0%, #1b4332 100%);
  border-radius: 18px;
  padding: 20px 24px;
  box-shadow:
    0 20px 60px rgba(13, 35, 24, 0.4),
    0 0 0 1px rgba(201, 168, 76, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  animation: float 5s ease-in-out infinite;
  z-index: 3;
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.tentang-badge-float::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(201, 168, 76, 0.2),
    transparent 60%
  );
  pointer-events: none;
}

.tentang-badge-float::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 168, 76, 0.6),
    transparent
  );
}

.tbf-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.tbf-icon-wrap {
  width: 44px;
  height: 44px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tbf-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 3px;
}
.tbf-label {
  font-size: 9px;
  color: rgba(201, 168, 76, 0.7);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.tbf-year {
  font-size: 30px;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-body);
  line-height: 1;
  display: block;
  text-shadow: 0 0 20px rgba(201, 168, 76, 0.4);
}
.tbf-sublabel {
  font-size: 9px;
  color: rgba(201, 168, 76, 0.6);
  font-weight: 600;
  letter-spacing: 0.08em;
}

/* Legacy tbf-icon and tbf-text for old HTML structure */
.tbf-icon {
  font-size: 16px;
  color: var(--gold);
  width: 36px;
  height: 36px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tbf-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.4;
  font-weight: 500;
}
.tbf-text strong {
  display: block;
  font-family: var(--font-body);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 0 20px rgba(201, 168, 76, 0.5);
}

/* Visi Misi — dua kartu terbuka */
/* vm-cards styles now in TENTANG ENHANCEMENTS section above */
/* placeholder to maintain line positions */

/* ── TENTANG ENHANCEMENTS ─────────────────────────────────── */

/* Pattern background subtle */
.tentang-pattern-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.05) 1px,
    transparent 1px
  );
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

/* Intro header — centered above grid */
.tentang-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
  position: relative;
  z-index: 1;
}

.tentang-intro .section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.tentang-intro .section-eyebrow::before,
.tentang-intro .section-eyebrow::after {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.tentang-intro-line {
  display: none;
}

.tentang-intro-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-top: 20px;
  font-style: italic;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* Photo caption hover */
.timg-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(13, 35, 24, 0.9), transparent);
  color: rgba(255, 255, 255, 0.92);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 32px 16px 16px;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}
.timg-1:hover .timg-caption {
  opacity: 1;
  transform: translateY(0);
}

/* Quote float */
.tentang-quote-float {
  display: none;
}
.tqf-arabic,
.tqf-text {
  display: none;
}

/* ── Brand story — lebih premium ── */
.brand-story {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 28px;
  padding: 28px 32px;
  background: linear-gradient(135deg, #f9f5ec 0%, #f4f0e6 100%);
  border-radius: var(--radius);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-left: 3px solid var(--gold);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(27, 67, 50, 0.05);
}
.brand-story::after {
  content: '"';
  position: absolute;
  right: 20px;
  top: -10px;
  font-family: var(--font-display);
  font-size: 96px;
  color: rgba(201, 168, 76, 0.08);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.bs-accent {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.bs-year,
.bs-now {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
}
.bs-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, var(--gold), rgba(201, 168, 76, 0.15));
}
.bs-content p {
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.9;
  margin-bottom: 14px;
}
.bs-content p:last-child {
  margin-bottom: 0;
}
.bs-content strong {
  color: var(--green-dark);
  font-weight: 700;
}

/* ── Visi Misi — lebih elegan ── */
.vm-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 28px 0;
}

.vmc-card {
  padding: 26px 22px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition:
    transform var(--t),
    box-shadow var(--t);
}
.vmc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(27, 67, 50, 0.15);
}

.vmc-visi {
  background: linear-gradient(145deg, #0f2d1e 0%, var(--green-dark) 100%);
  border: 1px solid rgba(201, 168, 76, 0.12);
  box-shadow: 0 6px 24px rgba(13, 35, 24, 0.2);
}
.vmc-misi {
  background: linear-gradient(145deg, #fdf8ed 0%, #f7f0dc 100%);
  border: 1px solid rgba(201, 168, 76, 0.25);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.08);
}

.vmc-visi::before,
.vmc-misi::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
}
.vmc-visi::before {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 168, 76, 0.7),
    transparent
  );
}
.vmc-misi::before {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.vmc-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.vmc-icon {
  font-size: 9px;
}
.vmc-visi .vmc-icon {
  color: rgba(201, 168, 76, 0.8);
}
.vmc-misi .vmc-icon {
  color: var(--gold);
}

.vmc-top h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.vmc-visi .vmc-top h4 {
  color: var(--gold-light);
}
.vmc-misi .vmc-top h4 {
  color: var(--green-dark);
}

.vmc-visi p {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.9;
  font-style: italic;
}
.vmc-misi ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.vmc-misi ul li {
  font-size: 13.5px;
  color: var(--text-dark);
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
  font-weight: 500;
}
.vmc-misi ul li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 4px;
  font-size: 7px;
  color: var(--gold);
}

/* ── Keunggulan — lebih modern ── */
.tentang-keunggulan {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.keung-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid rgba(27, 67, 50, 0.07);
  box-shadow: 0 2px 8px rgba(27, 67, 50, 0.04);
  transition:
    transform var(--t),
    box-shadow var(--t),
    border-color var(--t);
  position: relative;
  overflow: hidden;
}
.keung-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--gold), var(--green-light));
  border-radius: 2px 0 0 2px;
}
.keung-item:hover {
  transform: translateX(6px);
  box-shadow: 0 6px 20px rgba(27, 67, 50, 0.09);
  border-color: rgba(201, 168, 76, 0.2);
}

.keung-icon {
  font-size: 18px;
  color: var(--gold);
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(201, 168, 76, 0.12),
    rgba(201, 168, 76, 0.05)
  );
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 8px;
  flex-shrink: 0;
}

.keung-item h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 2px;
}
.keung-item p {
  font-size: 13px;
  color: var(--text-mid);
  margin: 0;
  line-height: 1.5;
}

/* ── Milestone strip — lebih impactful ── */
.tentang-milestones {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 72px;
  padding: 44px 52px;
  background: linear-gradient(
    135deg,
    #0f2d1e 0%,
    var(--green-dark) 50%,
    #163a28 100%
  );
  border-radius: var(--radius);
  position: relative;
  z-index: 1;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(13, 35, 24, 0.25);
}
.tentang-milestones::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at top right,
      rgba(201, 168, 76, 0.1),
      transparent 55%
    ),
    radial-gradient(
      ellipse at bottom left,
      rgba(82, 183, 136, 0.08),
      transparent 50%
    );
  pointer-events: none;
}
.tentang-milestones::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1.5px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 168, 76, 0.5),
    transparent
  );
}

.milestone-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 8px;
}
.milestone-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 2px 12px rgba(201, 168, 76, 0.3);
}
.milestone-label {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 95px;
  line-height: 1.5;
  font-weight: 500;
}
.milestone-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.4);
  margin-top: 4px;
  border: 1px solid rgba(201, 168, 76, 0.3);
}
.milestone-dot--now {
  background: var(--gold);
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.6);
  border-color: var(--gold-light);
}
.milestone-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(201, 168, 76, 0.15),
    rgba(201, 168, 76, 0.4),
    rgba(201, 168, 76, 0.15)
  );
  min-width: 28px;
  margin-top: -22px;
}

/* ── SERTIFIKASI REDESIGN ──────────────────────────────────── */

/* Remove old inner grid */
.sertifikasi-inner {
  display: block;
}

/* Orb backgrounds senada hero */
.sertif-bg-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.sertif-bg-orb-1 {
  width: 500px;
  height: 500px;
  top: -200px;
  right: -150px;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.09),
    transparent 65%
  );
}
.sertif-bg-orb-2 {
  width: 400px;
  height: 400px;
  bottom: -150px;
  left: -100px;
  background: radial-gradient(circle, rgba(27, 67, 50, 0.07), transparent 65%);
}

/* Header centered */
.sertif-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}
.sertif-header-sub {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-top: 16px;
}

/* Main card — horizontal premium layout */
.sertif-main-card {
  display: flex;
  gap: 0;
  background: linear-gradient(135deg, #fffdf7 0%, #ffffff 60%, #f7fdf9 100%);
  border: 1px solid rgba(201, 168, 76, 0.22);
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(27, 67, 50, 0.1),
    0 4px 16px rgba(201, 168, 76, 0.1);
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  transition:
    transform var(--t),
    box-shadow var(--t);
}
.sertif-main-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 28px 72px rgba(27, 67, 50, 0.14),
    0 8px 24px rgba(201, 168, 76, 0.15);
}

/* Gold top border */
.sertif-main-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--gold),
    var(--gold-light),
    var(--gold)
  );
  z-index: 2;
}

/* Arabic watermark */
.sertif-arabic-watermark {
  position: absolute;
  bottom: -30px;
  right: -20px;
  font-family: var(--font-body);
  font-size: 140px;
  color: rgba(201, 168, 76, 0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* Left panel: seal + badge */
.sertif-main-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 52px 40px;
  background: linear-gradient(
    160deg,
    rgba(201, 168, 76, 0.1) 0%,
    rgba(201, 168, 76, 0.04) 100%
  );
  border-right: 1px solid rgba(201, 168, 76, 0.15);
  min-width: 220px;
  position: relative;
  z-index: 1;
}

/* Halal logo — langsung di panel kiri, tanpa wrapper */
.sertif-main-left .sertif-logo-img {
  width: 130px;
  height: 130px;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.sertif-main-left:hover .sertif-logo-img {
  transform: scale(1.04);
}
.sertif-main-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 5px 14px;
  border-radius: 20px;
}

/* Right panel: content */
.sertif-main-body {
  flex: 1;
  padding: 48px 48px 40px;
  position: relative;
  z-index: 1;
}

.sertif-main-title {
  font-family: var(--font-body);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--green-dark);
  margin: 16px 0 14px;
  line-height: 1.2;
}

.sertif-main-desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 24px;
}
.sertif-main-desc strong {
  color: var(--green-dark);
}

/* Footer row: nomor + CTA */
.sertif-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(27, 67, 50, 0.08);
}

.sertif-verify-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.4);
  padding: 10px 20px;
  border-radius: 30px;
  background: rgba(201, 168, 76, 0.06);
  transition: all var(--t);
  white-space: nowrap;
}
.sertif-verify-btn:hover {
  background: #6a1ea0;
  color: #ffffff;
  border-color: #6a1ea0;
  box-shadow: 0 8px 32px rgba(106, 30, 160, 0.35);
  transform: translateX(2px);
}

/* Trust strip below card */
.sertif-trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 40px;
  padding: 28px 40px;
  background: var(--white);
  border: 1px solid rgba(27, 67, 50, 0.07);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.sertif-trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  justify-content: center;
  text-align: left;
}
.sti-icon {
  font-size: 26px;
  flex-shrink: 0;
}
.sertif-trust-item strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 3px;
}
.sertif-trust-item span {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.5;
}
.sertif-trust-divider {
  width: 1px;
  height: 48px;
  background: rgba(27, 67, 50, 0.1);
  margin: 0 20px;
  flex-shrink: 0;
}

.produk {
  padding: 120px 0;
  background: linear-gradient(
    175deg,
    #f0f7f2 0%,
    var(--off-white) 40%,
    #fdf9f0 100%
  );
  position: relative;
  overflow: hidden;
}

.produk-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.produk-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(27, 67, 50, 0.06) 0%,
    transparent 70%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.produk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}

.produk-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(27, 67, 50, 0.08);
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--t),
    box-shadow var(--t),
    border-color var(--t);
  display: flex;
  flex-direction: column;
}

.produk-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 168, 76, 0.45);
  animation: borderGlow 2s ease-in-out infinite;
}

.pcard-img {
  height: 240px;
  position: relative;
  overflow: hidden;
}

.pcard-img img {
  transition: transform 0.5s ease;
}
.produk-card:hover .pcard-img img {
  transform: scale(1.08);
}

.pcard-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 67, 50, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t);
  backdrop-filter: blur(2px);
}

.produk-card:hover .pcard-overlay {
  opacity: 1;
}

.pcard-shop-btn {
  padding: 11px 26px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--green-dark);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  transform: translateY(12px);
  transition: transform var(--t);
  cursor: pointer;
}

.produk-card:hover .pcard-shop-btn {
  transform: translateY(0);
}

.pcard-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--green-dark);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 20px;
  text-transform: uppercase;
}

.pcard-badge-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--green-dark);
}

.pcard-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pcard-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 12px 0 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(27, 67, 50, 0.07);
}

.pcard-price small {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-muted);
}
.pcard-price-cta {
  font-size: 12px;
  color: var(--green-mid);
}

/* Marketplace */
.produk-cta {
  text-align: center;
}
.produk-cta > p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.marketplace-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.mplace-btn {
  padding: 10px 28px;
  border: 1.5px solid rgba(27, 67, 50, 0.2);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green-dark);
  cursor: pointer;
  transition: all var(--t);
}

/* Shopee — oranye */
.mplace-btn[href*="shopee"]:hover {
  background: #ee4d2d;
  color: #ffffff;
  border-color: #ee4d2d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(238, 77, 45, 0.35);
}

/* Tokopedia — hijau teal */
.mplace-btn[href*="tokopedia"]:hover {
  background: #03ac0e;
  color: #ffffff;
  border-color: #03ac0e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(3, 172, 14, 0.3);
}

/* Lazada — ungu */
.mplace-btn[href*="lazada"]:hover {
  background: #6e1fff;
  color: #ffffff;
  border-color: #6e1fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(110, 31, 255, 0.3);
}

/* Bukalapak — merah */
.mplace-btn[href*="bukalapak"]:hover {
  background: #e31f2b;
  color: #ffffff;
  border-color: #e31f2b;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(227, 31, 43, 0.3);
}

/* ── TESTIMONI ────────────────────────────────────────────── */
.testimoni {
  padding: 120px 0;
  background: linear-gradient(160deg, var(--green-dark), #163a28);
  overflow: hidden;
}

.testimoni .section-eyebrow {
  color: var(--gold-light);
}
.testimoni .section-eyebrow::before {
  background: var(--gold-light);
}
.testimoni .section-eyebrow::after {
  background: var(--gold-light);
}
.testimoni .section-title {
  color: var(--white);
}
.testimoni .section-title em {
  color: var(--gold-light);
}

.testi-slider {
  overflow: hidden;
}

.testi-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s var(--ease);
}

.testi-card {
  min-width: calc(33.333% - 16px);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 32px;
  transition:
    transform var(--t),
    background var(--t);
  cursor: pointer;
}

.testi-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.testi-stars {
  color: var(--gold);
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testi-card > p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8) !important;
  line-height: 1.9 !important;
  margin-bottom: 24px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.testi-avatar {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--green-dark);
  font-size: 16px;
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  color: var(--white);
  font-size: 14px;
}
.testi-author span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

/* Source badge — Google / Shopee */
.testi-source {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 9px 3px 6px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}
.testi-source--google {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.testi-source--shopee {
  background: rgba(238, 77, 45, 0.15);
  color: #ff9474;
  border: 1px solid rgba(238, 77, 45, 0.25);
}

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all var(--t);
}

.testi-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ── ARTIKEL ──────────────────────────────────────────────── */
.artikel {
  padding: 120px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.artikel::before {
  display: none;
}

.artikel::after {
  content: "";
  position: absolute;
  top: 60px;
  right: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.06) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.acard-img {
  height: 210px;
  position: relative;
  overflow: hidden;
  background: rgba(27, 67, 50, 0.08);
}

.acard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.artikel-card:hover .acard-img img {
  transform: scale(1.06);
}

/* Tag label positioned over the image */
.acard-img .acard-tag {
  position: absolute;
  top: 12px;
  left: 14px;
  z-index: 2;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 99px;
  background: rgba(13, 35, 24, 0.7);
  color: var(--gold-light);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.acard-body {
  padding: 22px 24px 24px;
}

.acard-date {
  font-size: 11.5px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  font-weight: 500;
}

.acard-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text-dark);
  line-height: 1.38;
  margin: 10px 0 12px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.acard-body p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 18px;
}

.acard-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
  transition:
    color var(--t),
    gap var(--t);
}

.acard-link:hover {
  color: var(--green-dark);
}

/* ── KONTAK ───────────────────────────────────────────────── */
.kontak {
  padding: 120px 0;
  position: relative;
  background: linear-gradient(160deg, var(--green-dark), #163a28);
}

.kontak .container {
  position: relative;
  z-index: 1;
}

.kontak-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.eyebrow-light {
  color: var(--gold-light);
}
.eyebrow-light::before {
  background: var(--gold-light);
}
.title-light {
  color: var(--white) !important;
}
.title-light em {
  color: var(--gold-light) !important;
}
.body-light {
  color: rgba(255, 255, 255, 0.65) !important;
  margin-bottom: 36px;
}

.kinfo-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

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

/* Pastikan teks di sebelah icon tidak meluber keluar container */
.kinfo-item > div {
  min-width: 0;
  flex: 1;
}

.kinfo-icon {
  width: 44px;
  height: 44px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--gold-light);
  flex-shrink: 0;
}

.kinfo-item span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
  display: block;
}
.kinfo-item a,
.kinfo-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin: 0;
  /* Pastikan email/nomor panjang bisa wrap dengan benar */
  word-break: break-word;
  overflow-wrap: break-word;
}
.kinfo-item a:hover {
  color: var(--gold-light);
}

/* Facebook — biru */
.sosmed-btn[href*="facebook"]:hover {
  background: #1877f2;
  color: #ffffff;
  border-color: #1877f2;
  box-shadow: 0 8px 24px rgba(24, 119, 242, 0.35);
  transition: 0.8ms;
}

/* Instagram — pink gradient */
.sosmed-btn[href*="instagram"]:hover {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
  color: #ffffff;
  border-color: #dd2a7b;
  box-shadow: 0 8px 24px rgba(221, 42, 123, 0.35);
  transition: 0.8ms;
}

/* TikTok — hitam */
.sosmed-btn[href*="tiktok"]:hover {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: 0.8ms;
}
/* FORM */
.kontak-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.kontak-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--gold),
    var(--gold-light),
    var(--green-mid),
    var(--gold)
  );
  background-size: 200%;
  animation: shimmer 4s linear infinite;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.form-group label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.form-group label::before {
  content: "";
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(27, 67, 50, 0.12);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-dark);
  background: #fafdf9;
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    background 0.25s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(107, 140, 118, 0.55);
  font-size: 13px;
  font-style: italic;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow:
    0 0 0 3px rgba(201, 168, 76, 0.12),
    0 2px 8px rgba(201, 168, 76, 0.08);
  background: #fffef8;
}

.form-group input:focus + .form-group label,
.form-group textarea:focus {
  resize: vertical;
  min-height: 110px;
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b8c76' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  color: var(--text-dark);
}

.form-group select option[value=""] {
  color: rgba(107, 140, 118, 0.55);
  font-style: italic;
}

/* ── KATALOG ──────────────────────────────────────────────── */
.katalog {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--green-dark) 0%, #163a28 100%);
  position: relative;
  overflow: hidden;
}

.katalog .section-eyebrow {
  color: var(--gold-light);
}
.katalog .section-eyebrow::before {
  background: var(--gold-light);
}
.katalog .section-eyebrow::after {
  background: var(--gold-light);
}
.katalog .section-title {
  color: var(--white);
}
.katalog .section-title em {
  color: var(--gold-light);
}
.katalog .section-sub {
  color: rgba(255, 255, 255, 0.6);
}

.katalog-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.katalog-orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(201, 168, 76, 0.12);
  top: -100px;
  right: -100px;
}
.katalog-orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(82, 183, 136, 0.08);
  bottom: -80px;
  left: -80px;
}

/* Filter Tabs */
.katalog-filter {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.kfilter-btn {
  padding: 9px 22px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all var(--t);
  font-family: inherit;
}

.kfilter-btn:hover {
  border-color: rgba(201, 168, 76, 0.4);
  color: var(--gold-light);
  background: rgba(201, 168, 76, 0.08);
}

.kfilter-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-color: transparent;
  color: var(--green-dark);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.35);
}

/* Grid */
.katalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

/* Card */

.kprod-card.hidden {
  display: none;
}

.kprod-img {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: rgba(27, 67, 50, 0.4);
}

.kprod-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.kprod-card:hover .kprod-img img {
  transform: scale(1.08);
}

.kprod-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 35, 24, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t);
  backdrop-filter: blur(4px);
}

.kprod-card:hover .kprod-overlay {
  opacity: 1;
}

.kprod-shop:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-gold);
}

.kprod-shop svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Badges */
.kprod-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 2;
}

.kprod-badge-new {
  background: var(--green-light);
  color: var(--green-dark);
}

/* Body */
.kprod-body {
  padding: 16px 18px 20px;
}

.kprod-cat {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}

.kprod-body h4 {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.2;
}

.kprod-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-light);
  margin: 0;
}

.kprod-price small {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
}

.kprod-price-soon {
  color: rgba(255, 255, 255, 0.3) !important;
  font-style: italic;
  font-size: 13px !important;
}

/* Coming soon card */
.kprod-coming {
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.1);
  opacity: 0.6;
}

.kprod-img-empty {
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
}

.kprod-coming-inner span {
  font-size: 28px;
  color: rgba(201, 168, 76, 0.3);
  display: block;
  margin-bottom: 8px;
}

.kprod-coming-inner p {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
}

/* CTA */
.katalog-cta {
  text-align: center;
}

.katalog-cta p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  margin-bottom: 20px;
}

/* Responsive */

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: var(--dark);
}

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

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

.footer-brand {
  max-width: 280px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 16px;
}

.footer-logo .logo-ar {
  font-size: 28px;
}
.footer-logo .logo-en {
  color: rgba(255, 255, 255, 0.6);
}
.footer-logo .logo-en em {
  color: var(--gold);
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8;
}

.footer-col h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--t);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

/* ── WA FLOAT ─────────────────────────────────────────────── */

.wa-float svg {
  width: 28px;
  height: 28px;
  fill: white;
}

/* ── SCROLLBAR ────────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--off-white);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold), var(--green-mid));
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--green-dark);
}

/* ── RESPONSIVE ───────────────────────────────────────────── */

/* ── ANNOUNCEMENT BANNER ──────────────────────────────────── */
.ann-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  background: linear-gradient(
    90deg,
    var(--green-dark),
    #1f5c40,
    var(--green-dark)
  );
  background-size: 200%;
  animation: shimmer 5s linear infinite;
  border-bottom: 1px solid rgba(201, 168, 76, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 48px 10px 16px;
  min-height: 44px;
  transition:
    transform 0.4s var(--ease),
    opacity 0.4s var(--ease);
}

.ann-banner.hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  height: 0;
  min-height: 0;
  padding: 0;
  border: none;
  overflow: hidden;
}

.ann-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.ann-badge {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--green-dark);
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.ann-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}

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

.ann-cta {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-light);
  border-bottom: 1px solid rgba(240, 208, 128, 0.5);
  padding-bottom: 1px;
  white-space: nowrap;
  transition:
    color var(--t),
    border-color var(--t);
}

.ann-cta:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.ann-close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  cursor: pointer;
  padding: 4px 6px;
  line-height: 1;
  border-radius: 4px;
  transition:
    color var(--t),
    background var(--t);
}

.ann-close:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

/* Push content down when banner is visible */
body.has-banner .navbar {
  top: 44px;
}

/* ── TESTIMONI NAV ARROWS ─────────────────────────────────── */
.testi-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.testi-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--t);
  backdrop-filter: blur(6px);
}

.testi-nav-btn svg {
  width: 18px;
  height: 18px;
}

.testi-nav-btn:hover {
  background: rgba(201, 168, 76, 0.15);
  border-color: rgba(201, 168, 76, 0.5);
  color: var(--gold-light);
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.2);
}

/* ── ARTIKEL SLIDER ───────────────────────────────────────── */
/* ── ARTIKEL SUBTITLE ──────────────────────────────────────── */
.artikel-subtitle {
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-top: 10px;
  margin-bottom: 0;
  line-height: 1.6;
}

/* ── ARTIKEL FILTER BUTTONS ────────────────────────────────── */
.artikel-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 32px 0 40px;
}

.artikel-filter-btn {
  font-size: 13px;
  font-weight: 500;
  padding: 7px 20px;
  border-radius: 999px;
  border: 1.5px solid rgba(27, 67, 50, 0.2);
  background: var(--white);
  color: var(--text-mid);
  cursor: pointer;
  transition: all var(--t);
  letter-spacing: 0.2px;
}

.artikel-filter-btn:hover {
  border-color: var(--green-dark);
  color: var(--green-dark);
}

.artikel-filter-btn.active {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--gold-light);
}

/* ── ARTIKEL GRID WRAP ─────────────────────────────────────── */
.artikel-grid-wrap {
  width: 100%;
}

.artikel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  grid-auto-flow: dense;
}

/* ── ARTIKEL CARD ──────────────────────────────────────────── */
.artikel-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(27, 67, 50, 0.1);
  background: var(--white);
  box-shadow: 0 2px 12px rgba(27, 67, 50, 0.05);
  transition:
    transform var(--t),
    box-shadow var(--t),
    border-color var(--t);
  cursor: pointer;
}

.artikel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(27, 67, 50, 0.13);
  border-color: rgba(201, 168, 76, 0.35);
}

/* Featured card — artikel paling baru, span 2 kolom */
.artikel-card-featured {
  grid-column: span 2;
}

.artikel-card-featured .acard-img {
  height: 260px;
}

.artikel-card-featured .acard-body h3 {
  font-size: 1.4rem;
}

.artikel-card-featured .acard-body p {
  font-size: 15px;
}

/* ── TOMBOL LIHAT SEMUA ────────────────────────────────────── */
.artikel-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.artikel-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 999px;
  border: 1.5px solid var(--green-dark);
  background: transparent;
  color: var(--green-dark);
  cursor: pointer;
  transition: all var(--t);
  letter-spacing: 0.3px;
}

.artikel-more-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}

.artikel-more-btn:hover {
  background: var(--green-dark);
  color: var(--gold-light);
}

/* ── MARQUEE DRAG CURSOR HINT ─────────────────────────────── */
.marquee-wrap.dragging {
  cursor: grabbing !important;
}
.marquee-wrap.dragging * {
  cursor: grabbing !important;
}

/* ═══════════════════════════════════════════════════════════
   NEW FEATURES — Added enhancements
   ═══════════════════════════════════════════════════════════ */

/* ── ACTIVE NAV (classList approach) ──────────────────────── */
.nav-link.active-nav {
  color: var(--gold) !important;
}

/* Navbar di atas section gelap — pastikan semua link terbaca */
.navbar.over-dark .nav-link:not(.nav-cta) {
  color: rgba(255, 255, 255, 0.85) !important;
}
.navbar.over-dark.scrolled .nav-link:not(.nav-cta) {
  color: rgba(255, 255, 255, 0.85) !important;
}
.navbar.over-dark .nav-link.active-nav {
  color: var(--gold) !important;
}
.navbar.over-dark .nav-cta,
.navbar.over-dark.scrolled .nav-cta {
  color: var(--dark) !important;
  background: linear-gradient(
    135deg,
    var(--gold),
    var(--gold-light)
  ) !important;
  box-shadow: 0 2px 14px rgba(201, 168, 76, 0.45) !important;
}
.navbar.over-dark.scrolled {
  background: rgba(13, 35, 24, 0.92) !important;
  backdrop-filter: blur(14px) saturate(180%);
}
.navbar.over-dark .nav-burger span {
  background: var(--white) !important;
}
.navbar.over-dark .logo-en {
  color: var(--white) !important;
}

/* ── BACK TO TOP ───────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 104px;
  right: 28px;
  z-index: 900;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(27, 67, 50, 0.12);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.3s var(--ease),
    transform 0.3s var(--ease),
    background 0.2s,
    border-color 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(27, 67, 50, 0.1);
}
.back-to-top svg {
  width: 18px;
  height: 18px;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--green-dark);
  color: var(--gold);
  border-color: var(--green-dark);
  box-shadow: 0 6px 20px rgba(27, 67, 50, 0.25);
}

/* ── PRODUCT CARD — review count & WA button ──────────────── */
.pcard-wa-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.pcard-wa-btn:hover {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
}

/* ── FAQ SECTION ───────────────────────────────────────────── */
.faq {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
}
.faq::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 168, 76, 0.3),
    transparent
  );
}
.faq-list {
  max-width: 780px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--white);
  border: 1px solid rgba(27, 67, 50, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    box-shadow 0.3s,
    border-color 0.3s;
}
.faq-item:hover {
  box-shadow: 0 4px 20px rgba(27, 67, 50, 0.08);
  border-color: rgba(27, 67, 50, 0.15);
}
.faq-item.open {
  border-color: rgba(201, 168, 76, 0.35);
  box-shadow: 0 6px 28px rgba(201, 168, 76, 0.1);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.5;
  transition: color 0.2s;
}
.faq-q:hover {
  color: var(--green-dark);
}
.faq-item.open .faq-q {
  color: var(--green-dark);
}
.faq-icon {
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 50%;
  padding: 2px;
  flex-shrink: 0;
  color: var(--gold);
  transition:
    transform 0.35s var(--ease),
    background 0.25s;
}
.faq-item.open .faq-icon {
  transform: rotate(180deg);
  background: rgba(201, 168, 76, 0.2);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.45s var(--ease),
    padding 0.3s;
  padding: 0 28px;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 28px 24px;
}
.faq-a p {
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.85;
  padding-top: 2px;
  border-top: 1px solid rgba(27, 67, 50, 0.06);
  padding-top: 16px;
}

/* ── SOSMED BUTTONS WITH ICONS ─────────────────────────────── */
.sosmed-list {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.sosmed-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s,
    transform 0.2s;
}
.sosmed-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.sosmed-btn:hover {
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ── MAPS EMBED ────────────────────────────────────────────── */
.maps-embed {
  margin-top: 24px;
}

/* ── FOOTER SOCIAL ICONS ───────────────────────────────────── */
.footer-social-list {
  display: flex;
  flex-direction: column;
  gap: 10px !important;
}
.footer-social-link {
  display: flex !important;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 14px;
  transition: color 0.2s !important;
}
.footer-social-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.footer-social-link:hover {
  color: var(--gold) !important;
}
.footer-social-link:hover svg {
  opacity: 1;
}

/* ── ARTIKEL PAGE OVERLAY ──────────────────────────────────── */
.artikel-page {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: #f8f6f1;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  /* Smooth font rendering for reading */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.artikel-page.open {
  transform: translateX(0);
}
.apage-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 245, 240, 0.88);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border-bottom: 1px solid rgba(201, 168, 76, 0.18);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.5),
    0 4px 24px rgba(27, 67, 50, 0.06);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 3rem;
  height: 72px;
}

/* Gold line at top */
.apage-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--gold) 30%,
    var(--gold-light) 50%,
    var(--gold) 70%,
    transparent 100%
  );
  opacity: 0.7;
}

.apage-back {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1.5px solid rgba(27, 67, 50, 0.2);
  border-radius: 999px;
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.55rem 1.1rem 0.55rem 0.85rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.apage-back::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green-dark), #2d6a4f);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.25s;
}

.apage-back:hover::before {
  opacity: 1;
}
.apage-back:hover {
  color: var(--gold);
  border-color: transparent;
  transform: translateX(-1px);
  box-shadow: 0 4px 16px rgba(27, 67, 50, 0.22);
}

.apage-back span,
.apage-back svg {
  position: relative;
  z-index: 1;
}

.apage-back svg {
  width: 15px;
  height: 15px;
  transition: stroke 0.25s;
}

.apage-logo {
  justify-self: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.apage-logo .logo-wordmark {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dark, #0d2318);
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.apage-logo .logo-wordmark em {
  color: var(--gold, #c9a84c);
  font-style: italic;
  font-family: var(--font-body);
  font-size: 1.2rem;
  letter-spacing: 0;
}

.apage-logo .logo-wordmark::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold, #c9a84c);
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(201, 168, 76, 0.6);
}

.apage-logo .logo-sub {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: rgba(107, 140, 118, 0.7);
  letter-spacing: 0.04em;
}

/* ── MAGAZINE LAYOUT: 2-kolom ── */
.apage-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px 100px;
}

/* Full-width hero banner */
.apage-hero {
  position: relative;
  height: 480px;
  margin: 0 -40px 0;
  overflow: hidden;
}
.apage-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
  will-change: transform;
}
.apage-hero:hover img {
  transform: scale(1.025);
}
.apage-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 35, 24, 0.92) 25%,
    rgba(13, 35, 24, 0.3) 60%,
    transparent
  );
}
.apage-hero-info {
  position: absolute;
  bottom: 44px;
  left: 64px;
  right: 64px;
  max-width: 740px;
}
.apage-hero-info h1 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin: 14px 0 10px;
  letter-spacing: -0.02em;
}
.apage-hero-info .acard-date {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  letter-spacing: 0.06em;
}

/* Two-column layout for body + sidebar */
.apage-two-col {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 64px;
  margin-top: 56px;
  align-items: start;
}

/* Article body column */
.apage-body {
  color: #2a3d30;
  font-size: 17.5px;
  line-height: 1.85;
  letter-spacing: 0.015em;
  font-family: var(--font-body);
}
.apage-body p {
  margin-bottom: 24px;
  max-width: 68ch;
}
.apage-body h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--green-dark);
  margin: 48px 0 16px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.apage-body h3::before {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin-bottom: 14px;
  border-radius: 2px;
}
.apage-body strong {
  color: var(--text-dark);
  font-weight: 700;
}
.apage-body br + br {
  display: block;
  content: "";
  margin-top: 8px;
}

/* Reading width comfort zone */
.apage-body > * {
  max-width: 72ch;
}

/* ── CTA Box ── */
.apage-cta-box {
  margin-top: 48px;
  padding: 36px 40px;
  background: linear-gradient(135deg, var(--green-dark) 0%, #1f5c40 100%);
  border-radius: 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.apage-cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at top right,
    rgba(201, 168, 76, 0.15),
    transparent 60%
  );
  pointer-events: none;
}
.apage-cta-box p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 24px !important;
  line-height: 1.5;
}
.apage-cta-box .btn {
  display: inline-flex;
}

/* ── Share section ── */
.apage-share {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(27, 67, 50, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.apage-share > p {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  margin-right: 4px;
}
.share-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  transition:
    opacity 0.2s,
    transform 0.2s;
}
.share-btn svg {
  width: 16px;
  height: 16px;
}
.share-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}
.share-wa {
  background: #25d366;
  color: #fff;
}
.share-fb {
  background: #1877f2;
  color: #fff;
}
.share-x {
  background: #000;
  color: #fff;
}
.share-tg {
  background: #229ed9;
  color: #fff;
}
.share-copy {
  background: rgba(201, 168, 76, 0.12);
  color: var(--gold-light, #c9a84c);
  border: 1px solid rgba(201, 168, 76, 0.3);
  cursor: pointer;
  font-family: inherit;
}
.share-copy--done {
  background: rgba(45, 179, 100, 0.15) !important;
  color: #2db364 !important;
  border-color: rgba(45, 179, 100, 0.35) !important;
}

/* ── SIDEBAR (right column) ── */
.apage-sidebar {
  position: sticky;
  top: 92px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-height: calc(100vh - 112px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(201, 168, 76, 0.3) transparent;
}
.apage-sidebar::-webkit-scrollbar {
  width: 4px;
}
.apage-sidebar::-webkit-scrollbar-track {
  background: transparent;
}
.apage-sidebar::-webkit-scrollbar-thumb {
  background: rgba(201, 168, 76, 0.35);
  border-radius: 4px;
}

/* Related articles in sidebar */
.apage-related {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(27, 67, 50, 0.07);
  border: 1px solid rgba(201, 168, 76, 0.12);
}
.apage-related-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, var(--green-dark), #2d6a4f);
  padding: 14px 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.apage-related-title::before {
  content: "📖";
  font-size: 14px;
}
.apage-related-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.arelated-card {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(27, 67, 50, 0.06);
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
}
.arelated-card:last-child {
  border-bottom: none;
}
.arelated-card:hover {
  background: rgba(201, 168, 76, 0.05);
  transform: translateX(3px);
}
.arelated-img {
  width: 72px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.arelated-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.arelated-card:hover .arelated-img img {
  transform: scale(1.07);
}
.arelated-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.arelated-body .acard-tag {
  font-size: 9px;
  align-self: flex-start;
}
.arelated-body h4 {
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-dark);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.arelated-link {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 700;
  margin-top: 2px;
}

/* Sidebar promo box */
.apage-sidebar-promo {
  background: linear-gradient(145deg, #0d2318 0%, #1b4332 100%);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  border: 1px solid rgba(201, 168, 76, 0.2);
  box-shadow: 0 4px 20px rgba(13, 35, 24, 0.12);
}
.apage-sidebar-promo .promo-icon {
  font-size: 36px;
  margin-bottom: 12px;
  display: block;
  animation: glowPulse 3s ease-in-out infinite;
}
.apage-sidebar-promo h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold-light);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.apage-sidebar-promo p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  margin: 0 0 18px;
}
.apage-sidebar-promo .btn {
  width: 100%;
  justify-content: center;
  font-size: 13px;
  padding: 10px 16px;
}

/* ── MOBILE ADJUSTMENTS ────────────────────────────────────── */

/* ══════════════════════════════════════════════════════════
   SCROLL & UX ENHANCEMENTS — v2
   ══════════════════════════════════════════════════════════ */

/* ── SCROLL PROGRESS BAR — handled by #scrollProgressBar above ── */

/* ── STAGGERED REVEAL — untuk anak-elemen ─────────────────── */
.stagger-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.stagger-item:nth-child(1) {
  transition-delay: 0ms;
}
.stagger-item:nth-child(2) {
  transition-delay: 80ms;
}
.stagger-item:nth-child(3) {
  transition-delay: 160ms;
}
.stagger-item:nth-child(4) {
  transition-delay: 240ms;
}
.stagger-item:nth-child(5) {
  transition-delay: 320ms;
}
.stagger-item:nth-child(6) {
  transition-delay: 400ms;
}

/* ── SECTION SEPARATOR LINE ───────────────────────────────── */

/* ── WA FLOAT — lebih polished ────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  animation: none !important;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35) !important;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease) !important;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.wa-float.visible {
  opacity: 1;
  pointer-events: auto;
}
.wa-float::after {
  content: "Hubungi Kami";
  position: absolute;
  right: 68px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.2s,
    transform 0.2s;
  transform: translateY(-50%) translateX(4px);
}
.wa-float:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
.wa-float:hover {
  transform: scale(1.08) !important;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4) !important;
  animation: none !important;
}

/* ── FAQ SECTION EYEBROW — pastikan warna terbaca ────────── */
.faq .section-eyebrow {
  color: var(--gold);
}
.faq .section-title {
  color: var(--green-dark);
}

/* ── MAPS FRAME — pada background dark kontak ─────────────── */
.maps-frame {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.maps-frame iframe {
  display: block;
  filter: grayscale(30%) contrast(1.08) brightness(0.92);
  transition: filter 0.3s;
}
.maps-frame:hover iframe {
  filter: grayscale(0%) contrast(1) brightness(1);
}
.maps-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── ARTIKEL CARD — clean hover ───────────────────────────── */
.artikel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(27, 67, 50, 0.12);
}

/* ── SECTION TRANSITIONS — Dynamic & Varied ───────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .reveal-up {
    transition:
      opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .reveal-right {
    transition:
      opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .reveal-left {
    transition:
      opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .reveal-scale {
    transition:
      opacity 0.65s cubic-bezier(0.34, 1.56, 0.64, 1),
      transform 0.65s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .reveal-rotate {
    transition:
      opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  }

  /* Data-delay works via JS, but stagger items get CSS delays */
  .produk-card.reveal-up:nth-child(1) {
    transition-delay: 0ms;
  }
  .produk-card.reveal-up:nth-child(2) {
    transition-delay: 100ms;
  }
  .produk-card.reveal-up:nth-child(3) {
    transition-delay: 200ms;
  }

  .sertif-card:nth-child(1) {
    transition-delay: 0ms;
  }
  .sertif-card:nth-child(2) {
    transition-delay: 120ms;
  }

  .keung-item:nth-child(1) {
    transition-delay: 0ms;
  }
  .keung-item:nth-child(2) {
    transition-delay: 80ms;
  }
  .keung-item:nth-child(3) {
    transition-delay: 160ms;
  }
}

/* ── ARTIKEL PAGE — reading progress indicator ─────────────── */
.apage-reading-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--green-light));
  z-index: 2010;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

/* ── ARTIKEL BODY — blockquote styling ─────────────────────── */
.apage-body blockquote {
  margin: 28px 0;
  padding: 20px 28px;
  border-left: 3px solid var(--gold);
  background: rgba(201, 168, 76, 0.05);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--text-mid);
}

/* ── ARTIKEL TAG — styling ─────────────────────────────────── */
.acard-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(201, 168, 76, 0.2);
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 20px;
  backdrop-filter: blur(8px);
}

/* ═══════════════════════════════════════
   KATALOG — PERBAIKAN & INTERAKSI
═══════════════════════════════════════ */
.kprod-clickable {
  cursor: pointer;
}

.kprod-detail-hint {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(201, 168, 76, 0.92);
  padding: 0.45rem 1rem;
  border-radius: 4px;
  pointer-events: none;
}

.kprod-badge-promo {
  background: #e05c2a;
  color: #fff;
}

/* ═══════════════════════════════════════
   PRODUK PAGE OVERLAY
═══════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════
   PRODUK PAGE OVERLAY — REDESIGN
═══════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════════
   PRODUK PAGE OVERLAY — redesigned
══════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════
   PRODUK PAGE OVERLAY — Clean & Simple
   ═══════════════════════════════════════════ */

.produk-page {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: #faf8f4;
  overflow-y: auto;
  overflow-x: hidden;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  scrollbar-width: thin;
  scrollbar-color: rgba(201, 168, 76, 0.3) transparent;
}
.produk-page::-webkit-scrollbar {
  width: 4px;
}
.produk-page::-webkit-scrollbar-track {
  background: transparent;
}
.produk-page::-webkit-scrollbar-thumb {
  background: rgba(201, 168, 76, 0.3);
  border-radius: 10px;
}

.produk-page::before {
  display: none;
}

.produk-page.is-open {
  transform: translateX(0);
}

/* ── Header ── */
.ppage-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 2.5rem;
  height: 64px;
  background: rgba(250, 248, 244, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
}
.ppage-header::before {
  display: none;
}

/* Back button */
.ppage-back {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #2d6a4f;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.45rem 0.9rem 0.45rem 0.6rem;
  border-radius: 8px;
  border: 1.5px solid rgba(45, 106, 79, 0.25);
  cursor: pointer;
  transition: all 0.18s ease;
  position: relative;
  overflow: visible;
}
.ppage-back::before {
  display: none;
}
.ppage-back:hover {
  background: #2d6a4f;
  color: #fff;
  border-color: #2d6a4f;
  transform: none;
  box-shadow: none;
}
.ppage-back span,
.ppage-back svg {
  position: relative;
  z-index: 1;
}
.ppage-back svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  flex-shrink: 0;
}

/* Logo */
.ppage-logo {
  justify-self: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.ppage-logo .logo-wordmark {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0d2318;
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  line-height: 1;
}
.ppage-logo .logo-wordmark em {
  color: var(--gold, #c9a84c);
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.ppage-logo .logo-wordmark::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold, #c9a84c);
  flex-shrink: 0;
  margin-bottom: 2px;
}
.ppage-logo .logo-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: rgba(107, 140, 118, 0.6);
  letter-spacing: 0.05em;
}

/* ── Scrollable content ── */
.ppage-content {
  flex: 1;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 2rem 5rem;
  position: relative;
  z-index: 1;
}

/* ── Overlay open animation ── */
@keyframes pprodSlideIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.produk-page.is-open .pprod-col-left {
  animation: pprodSlideIn 0.4s 0.05s both ease-out;
}
.produk-page.is-open .pprod-info {
  animation: pprodSlideIn 0.4s 0.15s both ease-out;
}

/* ── Two-column grid ── */
.pprod-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 3.5rem;
  align-items: start;
}

/* ── Image column ── */
.pprod-col-left {
  position: sticky;
  top: 4.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pprod-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1;
  background: #ede8df;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.pprod-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.pprod-img-wrap:hover img {
  transform: scale(1.03);
}

.pprod-badge-wrap {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.pprod-badge {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  background: var(--gold, #c9a84c);
  color: #0d2318;
}
.pprod-badge.promo {
  background: #e05c2a;
  color: #fff;
}

/* Trust strip */
.pprod-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 0.8rem;
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.07);
}
.pprod-trust-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: #2d6a4f;
  white-space: nowrap;
}
.pprod-trust-item svg {
  width: 12px;
  height: 12px;
  stroke: var(--gold, #c9a84c);
  flex-shrink: 0;
}
.pprod-trust-divider {
  width: 1px;
  height: 14px;
  background: rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

/* ── Info column ── */
.pprod-info {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 0.25rem;
}

.pprod-cat {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #2d6a4f;
  background: rgba(45, 106, 79, 0.08);
  border: 1px solid rgba(45, 106, 79, 0.18);
  padding: 0.28rem 0.75rem;
  border-radius: 5px;
  margin-bottom: 0.75rem;
  width: fit-content;
}

.pprod-name {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 700;
  color: #0d2318;
  line-height: 1.15;
  margin: 0 0 0.35rem;
  letter-spacing: -0.01em;
}

.pprod-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #3a4e40;
  margin-bottom: 1.75rem;
  padding: 1rem 1.25rem;
  background: #fff;
  border-radius: 10px;
  border-left: 3px solid var(--gold, #c9a84c);
  font-style: normal;
}
.pprod-desc::before {
  display: none;
}

/* ── Info blocks ── */
.pprod-blocks {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.pprod-block {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.18s;
}
.pprod-block:hover {
  border-color: rgba(45, 106, 79, 0.2);
  box-shadow: none;
  transform: none;
}

.pprod-block-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1b4332;
  background: #f7f5f0;
  padding: 0.8rem 1.1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.pprod-block-title .block-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.pprod-block-title .block-icon.bahan-icon {
  background: rgba(201, 168, 76, 0.15);
}
.pprod-block-title .block-icon.khasiat-icon {
  background: rgba(45, 106, 79, 0.12);
}
.pprod-block-title .block-icon.aturan-icon {
  background: rgba(13, 35, 24, 0.08);
}

.pprod-block-body {
  padding: 1rem 1.1rem 1.1rem;
  color: #3a4e40;
  font-size: 0.93rem;
  line-height: 1.75;
}

.pprod-block-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.pprod-block-body ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}
.pprod-block-body ul li::before {
  content: "✓";
  color: #2d6a4f;
  font-weight: 800;
  font-size: 0.7rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
  background: rgba(45, 106, 79, 0.1);
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Varian Selector ── */
.pprod-varian-wrap {
  margin-bottom: 1.25rem;
}

.pprod-varian-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b8c76;
  display: block;
  margin-bottom: 0.55rem;
}

.pprod-varian-btns {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.pprod-varian-btn {
  padding: 0.45rem 1.1rem;
  border-radius: 8px;
  border: 1.5px solid rgba(201, 168, 76, 0.45);
  background: #fff;
  color: #2d6a4f;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s ease;
}
.pprod-varian-btn:hover {
  border-color: var(--gold, #c9a84c);
  background: rgba(201, 168, 76, 0.06);
}
.pprod-varian-btn.active {
  background: #c9a84c;
  border-color: #c9a84c;
  color: #0d2318;
  font-weight: 700;
}

/* ── Harga ── */
.pprod-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding: 1rem 1.25rem;
  background: #0d2318;
  border-radius: 12px;
  position: relative;
  overflow: visible;
}
.pprod-price-row::before {
  display: none;
}
.pprod-price-row::after {
  display: none;
}

.pprod-price-left {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}

.pprod-price-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.7);
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 0.28rem 0.65rem;
  border-radius: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}

.pprod-price-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
  white-space: nowrap;
}

.pprod-price {
  font-family: var(--font-body);
  font-size: 1.65rem;
  font-weight: 700;
  color: #f0d080;
  letter-spacing: -0.01em;
  -webkit-text-fill-color: #f0d080;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}

/* ── CTA Buttons ── */
.pprod-cta-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}

.pprod-cta-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25d366;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.8rem 1.4rem;
  border-radius: 10px;
  text-decoration: none;
  transition:
    background 0.18s,
    transform 0.15s;
  flex: 1;
  justify-content: center;
  box-shadow: none;
  letter-spacing: 0;
}
.pprod-cta-wa:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
  box-shadow: none;
}
.pprod-cta-wa svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.pprod-cta-shopee {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #ee4d2d;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.8rem 1.4rem;
  border-radius: 10px;
  text-decoration: none;
  transition:
    background 0.18s,
    transform 0.15s;
  flex: 1;
  position: relative;
  overflow: visible;
  box-shadow: none;
}
.pprod-cta-shopee::after {
  display: none;
}
.pprod-cta-shopee:hover {
  background: #d63e22;
  transform: translateY(-1px);
  box-shadow: none;
}

/* ── Marketplace section ── */
.pprod-markets {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}
.pprod-markets h4 {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b8c76;
  margin-bottom: 0.75rem;
}

.pprod-market-links {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.pprod-market-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: all 0.18s;
}
.pprod-market-link.mp-shopee {
  background: rgba(238, 77, 45, 0.07);
  border-color: rgba(238, 77, 45, 0.2);
  color: #c73b1c;
}
.pprod-market-link.mp-shopee:hover {
  background: #ee4d2d;
  border-color: #ee4d2d;
  color: #fff;
}
.pprod-market-link.mp-tokped {
  background: rgba(66, 130, 83, 0.07);
  border-color: rgba(66, 130, 83, 0.2);
  color: #2d7a3a;
}
.pprod-market-link.mp-tokped:hover {
  background: #2d7a3a;
  border-color: #2d7a3a;
  color: #fff;
}
.pprod-market-link.mp-lazada {
  background: rgba(13, 79, 153, 0.07);
  border-color: rgba(13, 79, 153, 0.18);
  color: #0d4f99;
}
.pprod-market-link.mp-lazada:hover {
  background: #0d4f99;
  border-color: #0d4f99;
  color: #fff;
}
.pprod-market-link.mp-bukalapak {
  background: rgba(196, 14, 14, 0.07);
  border-color: rgba(196, 14, 14, 0.18);
  color: #c40e0e;
}
.pprod-market-link.mp-bukalapak:hover {
  background: #c40e0e;
  border-color: #c40e0e;
  color: #fff;
}

/* ── Responsive ── */

/* ══════════════════════════════════════════════════════════════
   CUSTOM ADDITIONS — Al-Waliy Update
   ══════════════════════════════════════════════════════════════ */

/* ── Sertifikasi: Logo Image (Halal & BPOM) ─────────────────── */
.sertif-icon-wrap {
  width: 90px;
  height: 90px;
  border-radius: 16px;
  padding: 12px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: visible;
}

.sertif-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.12));
  transition:
    transform 0.3s ease,
    filter 0.3s ease;
  position: relative;
  z-index: 1;
}

.sertif-card:hover .sertif-logo-img {
  transform: scale(1.05) translateY(-2px);
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.2));
}

/* Ensure card overflow is visible so logo isn't clipped */
.sertif-card {
  overflow: visible;
}

/* Body starts after logo, not overlapping */
.sertif-body {
  position: relative;
  z-index: 1;
}

/* ── Produk Kami: Konsistensi Font ───────────────────────────── */
/* Pastikan semua teks di pcard konsisten */
.pcard-body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: 0.01em;
  margin-bottom: 8px;
}

.pcard-body > p {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0;
  flex: 1;
}

.pcard-price {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--gold);
  font-size: 15px;
}

.pcard-stars {
  font-family: var(--font-body);
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 1px;
}

.pcard-review {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
}

.pcard-wa-btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 11px 16px;
  background: rgba(37, 211, 102, 0.08);
  border: 1.5px solid rgba(37, 211, 102, 0.3);
  border-radius: 10px;
  color: #1a9e54;
  text-align: center;
  transition:
    background var(--t),
    border-color var(--t),
    color var(--t),
    transform var(--t),
    box-shadow var(--t);
  letter-spacing: 0.2px;
  cursor: pointer;
  margin-top: auto;
}

/* ── Animasi: Badge Best Seller Glow ────────────────────────── */
@keyframes bestsellerPulse {
  0%,
  100% {
    box-shadow:
      0 0 0 0 rgba(201, 168, 76, 0.6),
      0 2px 8px rgba(201, 168, 76, 0.4);
  }
  50% {
    box-shadow:
      0 0 0 5px rgba(201, 168, 76, 0),
      0 2px 8px rgba(201, 168, 76, 0.4);
  }
}

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

.kprod-badge.kprod-badge-bestseller,
span.kprod-badge-bestseller {
  background: linear-gradient(
    135deg,
    rgba(201, 168, 76, 0.9) 0%,
    rgba(240, 208, 128, 0.95) 50%,
    rgba(201, 168, 76, 0.9) 100%
  ) !important;
  color: #1a2800 !important;
  font-size: 8px !important;
  font-weight: 700 !important;
  letter-spacing: 0.8px !important;
  padding: 3px 9px !important;
  border-radius: 4px !important;
  border: none !important;
  text-shadow: none !important;
  animation: none !important;
  box-shadow: 0 1px 4px rgba(201, 168, 76, 0.3) !important;
  position: absolute !important;
  top: 10px !important;
  left: 10px !important;
  z-index: 3 !important;
  text-transform: uppercase !important;
  font-family: var(--font-body) !important;
}

/* ── Animasi: Produk Card Shimmer on Hover ──────────────────── */

.produk-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(201, 168, 76, 0.08) 50%,
    transparent 60%
  );
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  border-radius: var(--radius);
}

.produk-card {
  position: relative;
}

.produk-card:hover::after {
  opacity: 1;
  animation: shimmer 1.5s infinite;
}

/* ── Animasi: Sertif Card Float ─────────────────────────────── */
@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.sertif-card:hover {
  animation: floatCard 2s ease-in-out infinite;
}

/* ── Animasi: Catalog Card Scale-in ────────────────────────── */
.kprod-card {
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s;
}

.kprod-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow:
    0 20px 48px rgba(27, 67, 50, 0.22),
    0 0 0 1px rgba(201, 168, 76, 0.2);
}

/* ── Inline styles moved to CSS ── */
.nav-logo-img {
  height: 48px;
}
.maps-iframe {
  border: 0;
}

/* ═══════════════════════════════════════
   GALERI — PREMIUM MASONRY
═══════════════════════════════════════ */
.galeri {
  position: relative;
  padding: var(--section-py) 0;
  background: var(--bg);
  overflow: hidden;
}
/* Subtle ambient orbs */
.galeri-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.galeri-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.06;
}
.galeri-orb-1 {
  width: 600px;
  height: 600px;
  background: var(--gold);
  top: -200px;
  right: -150px;
}
.galeri-orb-2 {
  width: 500px;
  height: 500px;
  background: var(--green-mid);
  bottom: -150px;
  left: -100px;
}
.galeri .container {
  position: relative;
  z-index: 1;
}

/* ── MASONRY GRID (CSS columns) ── */
.galeri-masonry {
  columns: 3;
  column-gap: 16px;
  margin-top: 56px;
}

/* ── Individual item ── */
.gal-item {
  position: relative;
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  background: var(--surface);
  /* subtle gold border that glows on hover */
  border: 1px solid transparent;
  transition:
    border-color 0.35s,
    box-shadow 0.35s,
    transform 0.35s;
  will-change: transform;
}
.gal-item:hover {
  border-color: rgba(201, 168, 76, 0.35);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(201, 168, 76, 0.15);
  transform: translateY(-4px) scale(1.012);
  z-index: 2;
}

/* Image */
.gal-item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition:
    transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    filter 0.4s;
  filter: brightness(0.97) saturate(0.95);
}
.gal-item:hover img {
  transform: scale(1.07);
  filter: brightness(1.04) saturate(1.1);
}

/* Tall variant — force portrait look */
.gal-item--tall img {
  aspect-ratio: 2/3;
  object-fit: cover;
}
/* Wide hint — visually slightly squatter */
.gal-item--wide img {
  aspect-ratio: 16/9;
  object-fit: cover;
}

/* ── Hover overlay ── */
.gal-hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(13, 35, 24, 0.75) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 28px 24px;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.gal-item:hover .gal-hover {
  opacity: 1;
}

.gal-hover-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  transform: translateY(12px);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gal-item:hover .gal-hover-inner {
  transform: translateY(0);
}

.gal-hover-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 168, 76, 0.7);
  background: rgba(201, 168, 76, 0.12);
  backdrop-filter: blur(8px);
  flex-shrink: 0;
}
.gal-hover-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
}
.gal-hover-caption {
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-body);
  letter-spacing: 0.01em;
  margin: 0;
  max-width: 260px;
}

/* ── Number badge ── */
.gal-num {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.65rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  padding: 3px 9px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    color 0.3s,
    background 0.3s;
}
.gal-item:hover .gal-num {
  color: var(--gold);
  background: rgba(0, 0, 0, 0.55);
}

/* ══════════════════════════
   LIGHTBOX — PREMIUM
══════════════════════════ */
.gal-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
}
.gal-lightbox.active {
  display: flex;
}

/* Dark blurred backdrop */
.gal-lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 18, 12, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Panel */
.gal-lb-panel {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1100px;
  padding: 0 80px;
  flex-direction: column;
  gap: 0;
}

/* Image */
.gal-lb-img-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gal-lb-img-wrap img {
  max-width: 100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(201, 168, 76, 0.12);
  animation: lbImgIn 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
@keyframes lbImgIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Footer (caption + counter) */
.gal-lb-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  margin-top: 20px;
  padding: 0 4px;
}
.gal-lb-caption {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-body);
  margin: 0;
  flex: 1;
}
.gal-lb-counter {
  font-size: 0.75rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
  white-space: nowrap;
}

/* Close button */
.gal-lb-close {
  position: absolute;
  top: -56px;
  right: 80px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.25s,
    border-color 0.25s,
    transform 0.25s;
}
.gal-lb-close:hover {
  background: rgba(201, 168, 76, 0.15);
  border-color: rgba(201, 168, 76, 0.5);
  transform: rotate(90deg);
}
.gal-lb-close svg {
  width: 18px;
  height: 18px;
}

/* Prev / Next arrows */
.gal-lb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.25s,
    border-color 0.25s,
    transform 0.25s;
  z-index: 2;
}
.gal-lb-arrow svg {
  width: 22px;
  height: 22px;
}
.gal-lb-prev {
  left: 16px;
}
.gal-lb-next {
  right: 16px;
}
.gal-lb-arrow:hover {
  background: rgba(201, 168, 76, 0.18);
  border-color: rgba(201, 168, 76, 0.5);
}
.gal-lb-prev:hover {
  transform: translateY(-50%) translateX(-3px);
}
.gal-lb-next:hover {
  transform: translateY(-50%) translateX(3px);
}

/* ── TYPOGRAPHY ENHANCEMENT — Al-Waliy v2 ─────────────────── */

/* Body text: sedikit lebih besar dan nyaman dibaca */
body {
  font-size: 15.5px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* Heading global — Cormorant Garamond, elegant weight */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.2px;
  line-height: 1.2;
}

/* section-sub: sedikit lebih lapang */
.section-sub {
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--text-muted);
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

/* Hero desc: sedikit lebih besar */
.hero-desc {
  font-size: 16.5px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.78);
}

/* Badge stat di hero lebih berkarakter */
.stat-num {
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -1px;
}

/* Navbar links lebih berkarakter */
.nav-link {
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* Produk card body heading */
.pcard-body h3 {
  font-weight: 700;
  letter-spacing: -0.2px;
}

/* Katalog card heading */
.kprod-body h4 {
  font-weight: 700;
  letter-spacing: -0.1px;
  line-height: 1.3;
}

/* Artikel card heading */
.acard-body h3 {
  font-weight: 700;
  letter-spacing: -0.2px;
  line-height: 1.3;
}

/* Badge Best Seller di katalog — posisi aman, tidak clash dengan overlay */
.kprod-img {
  position: relative;
}

.kprod-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  pointer-events: none;
}

/* Testimoni card text */
.testi-card p {
  font-size: 14.5px;
  line-height: 1.8;
  font-style: italic;
}

/* FAQ question text lebih tegas */
.faq-q span {
  font-weight: 700;
  font-size: 15px;
}

/* Artikel tag badge */
.acard-tag {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2px;
}

/* CTA button text lebih bold */
.btn span {
  font-weight: 800;
  letter-spacing: 0.3px;
}

/* ══════════════════════════════════════
   MOBILE COMPREHENSIVE FIXES — v3
   ══════════════════════════════════════ */

/* Fix hero title font */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.5px;
}

/* Section title use display font always */
.section-title {
  font-family: var(--font-display);
}

/* Nav font weight reduced */
.nav-link {
  font-weight: 500;
  letter-spacing: 0.2px;
}

/* Footer heading use body font */
.footer-col h5 {
  font-family: var(--font-body);
}

/* btn span weight fix */
.btn span {
  font-weight: 600;
  letter-spacing: 0.2px;
}

/* kprod body heading font */
.kprod-body h4 {
  font-family: var(--font-display);
  font-weight: 700;
}

/* acard heading */
.acard-body h3 {
  font-family: var(--font-display);
}

/* Produk card stat heading */
.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -1px;
}

/* ── Additional mobile fixes for small screens ── */

/* ── Produk card 2-col on tablet ── */

/* Fix testimonial section mobile overflow */

/* ══════════════════════════════════════════════════════════
   ✦ ENHANCEMENT PATCH v3.2 — Fixed
   Navbar · Artikel · Arabic · Marquee
   Al-Waliy Sejahtera
   ══════════════════════════════════════════════════════════ */

/* ── FONT ARAB PREMIUM ───────────────────────────────────── */
@import url("https://fonts.googleapis.com/css2?family=Amiri:ital,wght@0,400;0,700;1,400&display=swap");

:root {
  --font-arabic: "Amiri", "Georgia", serif;
  --nav-glass-scrolled: rgba(252, 250, 245, 0.96);
  --ink: #0d1f16;
}

/* ══════════════════════════════════════════════════════════
   1. NAVBAR — ESTETIK & BERSIH
   ══════════════════════════════════════════════════════════ */

.navbar {
  padding: 0 !important;
  height: 72px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background 0.4s ease,
    border-color 0.4s ease,
    height 0.3s ease,
    box-shadow 0.4s ease !important;
}

.navbar:not(.scrolled) {
  background: linear-gradient(
    to bottom,
    rgba(13, 35, 24, 0.78) 0%,
    rgba(13, 35, 24, 0) 100%
  );
}

.navbar.scrolled {
  background: var(--nav-glass-scrolled) !important;
  backdrop-filter: blur(24px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
  border-bottom: none !important;
  box-shadow: 0 4px 28px rgba(27, 67, 50, 0.09) !important;
  height: 64px;
}

.nav-container {
  height: 100%;
  align-items: center;
  padding: 0;
  position: relative; /* needed for overlay absolute positioning */
}

/* ── LOGO — Kompak, tidak mlecer ────────────────────────── */
.nav-logo {
  gap: 12px;
  padding: 4px 0;
  /* HAPUS pseudo-element garis kuning — tidak perlu */
}
/* Override — pastikan tidak ada ::after garis di logo */
.nav-logo::after {
  display: none !important;
}

.nav-logo-img {
  height: 42px !important;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 1px 6px rgba(201, 168, 76, 0.3));
  transition:
    filter 0.3s,
    transform 0.3s;
}
.nav-logo:hover .nav-logo-img {
  filter: drop-shadow(0 3px 12px rgba(201, 168, 76, 0.55));
  transform: scale(1.04);
}

/* Logo text block — inline, satu baris */
.logo-en {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 1px !important;
}

/* Teks Arab di bawah logo — disembunyikan */
.logo-en .logo-sub {
  display: none !important;
}

/* ── NAV LINKS ──────────────────────────────────────────── */
.nav-links {
  gap: 4px !important;
  align-items: center;
}

.nav-link {
  font-size: 12.5px !important;
  font-weight: 600 !important;
  letter-spacing: 0.3px !important;
  padding: 6px 11px !important;
  border-radius: 8px;
  transition:
    color 0.25s,
    background 0.25s !important;
}

.nav-link:not(.nav-cta):hover {
  background: none !important;
}

.nav-link::after {
  height: 1.5px !important;
  bottom: 2px !important;
  background: linear-gradient(90deg, var(--gold), var(--gold-light)) !important;
}

.nav-link.active-nav {
  color: var(--gold-light) !important;
}
.navbar.scrolled .nav-link.active-nav {
  color: var(--gold) !important;
}
.nav-link.active-nav::after {
  width: 100% !important;
}

/* ── CTA Button "Kontak" ──────────────────────────────── */
.nav-cta {
  background: linear-gradient(135deg, var(--gold) 0%, #e8c860 100%) !important;
  color: var(--green-dark) !important;
  padding: 8px 20px !important;
  border-radius: 999px !important;
  font-weight: 800 !important;
  font-size: 12px !important;
  letter-spacing: 0.4px !important;
  box-shadow: 0 2px 12px rgba(201, 168, 76, 0.35) !important;
  transition:
    transform 0.25s,
    box-shadow 0.25s !important;
}
.nav-cta:hover {
  transform: translateY(-2px) scale(1.02) !important;
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.5) !important;
  color: var(--green-dark) !important;
}

/* Tombol Kontak — selalu gold agar terlihat di semua kondisi navbar */
.navbar .nav-cta,
.navbar.scrolled .nav-cta,
.navbar.over-dark .nav-cta,
.navbar.scrolled:not(.over-dark) .nav-cta {
  background: linear-gradient(
    135deg,
    var(--gold) 0%,
    var(--gold-light) 100%
  ) !important;
  color: var(--dark) !important;
  font-weight: 800 !important;
  box-shadow:
    0 2px 16px rgba(201, 168, 76, 0.55),
    0 1px 4px rgba(0, 0, 0, 0.18) !important;
  border: 1.5px solid rgba(201, 168, 76, 0.6) !important;
  text-shadow: none !important;
  -webkit-text-fill-color: var(--dark) !important;
}
.navbar .nav-cta:hover,
.navbar.scrolled .nav-cta:hover,
.navbar.over-dark .nav-cta:hover,
.navbar.scrolled:not(.over-dark) .nav-cta:hover {
  background: linear-gradient(
    135deg,
    var(--gold-light) 0%,
    var(--gold) 100%
  ) !important;
  color: var(--dark) !important;
  -webkit-text-fill-color: var(--dark) !important;
  box-shadow: 0 6px 24px rgba(201, 168, 76, 0.65) !important;
  transform: translateY(-2px) scale(1.02) !important;
}

/* ── Mobile Menu ─────────────────────────────────────── */
.nav-links.open {
  background: rgba(8, 24, 16, 0.98) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  gap: 6px !important;
  padding: 32px 20px !important;
  top: 64px !important;
}
.nav-links.open .nav-link {
  font-size: 16px !important;
  padding: 11px 20px !important;
  border-radius: 10px !important;
  width: 100%;
  text-align: center;
  border: 1px solid rgba(201, 168, 76, 0.1) !important;
}
.nav-links.open .nav-link:hover {
  background: rgba(201, 168, 76, 0.12) !important;
  border-color: rgba(201, 168, 76, 0.3) !important;
}

/* ══════════════════════════════════════════════════════════
   2. MARQUEE — SIMETRIS & SEIMBANG
   ══════════════════════════════════════════════════════════ */

/* Wrapper marquee */
.marquee-wrap {
  background: var(--green-dark) !important;
  border-top: none !important;
  border-bottom: none !important;
  padding: 0 !important;
  overflow: hidden;
  position: relative;
}

/* Semua elemen dalam track: baseline sama */
.marquee-track {
  display: flex !important;
  align-items: center !important; /* ← kunci simetri vertikal */
  white-space: nowrap;
  padding: 13px 0 !important;
}

/* Semua span: ukuran, padding, dan line-height konsisten */
.marquee-track span {
  font-size: 13.5px !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.82) !important;
  letter-spacing: 0.4px !important;
  padding: 0 24px !important;
  line-height: 1 !important; /* ← sama semua */
  display: inline-flex !important;
  align-items: center !important;
  vertical-align: middle !important;
}

/* Teks Arab: font Amiri, ukuran SAMA dengan teks Latin */
.marquee-track .arabic {
  font-family: var(--font-arabic) !important;
  font-size: 15px !important; /* sedikit lebih besar karena Amiri secara optik lebih kecil */
  font-weight: 700 !important;
  color: rgba(255, 255, 255, 0.9) !important;
  direction: rtl !important;
  unicode-bidi: bidi-override;
  letter-spacing: 0.02em !important;
  line-height: 1 !important;
  padding: 0 28px !important;
  text-shadow: none !important; /* hapus glow — agar sejajar */
  display: inline-flex !important;
  align-items: center !important;
  vertical-align: middle !important;
}

/* Pemisah bintang: proporsional */
.marquee-track .mx {
  color: var(--gold) !important;
  font-size: 8px !important;
  padding: 0 10px !important;
  line-height: 1 !important;
  opacity: 0.75 !important;
  display: inline-flex !important;
  align-items: center !important;
  vertical-align: middle !important;
}

/* ══════════════════════════════════════════════════════════
   3. ARTIKEL OVERLAY — REDESIGN: MAGAZINE 2-COL
   ══════════════════════════════════════════════════════════ */

.artikel-page {
  background: #f7f5f0 !important;
}

.apage-header {
  background: rgba(247, 245, 240, 0.92) !important;
  backdrop-filter: blur(28px) saturate(1.8) !important;
  -webkit-backdrop-filter: blur(28px) saturate(1.8) !important;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15) !important;
  box-shadow: 0 4px 28px rgba(27, 67, 50, 0.07) !important;
}

.apage-header::before {
  opacity: 1 !important;
  height: 2.5px !important;
}

.apage-back {
  border: 1.5px solid rgba(27, 67, 50, 0.18) !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
  color: var(--text-dark) !important;
  transition:
    background 0.25s,
    border-color 0.25s,
    color 0.25s !important;
}
.apage-back:hover {
  background: var(--green-dark) !important;
  border-color: var(--green-dark) !important;
  color: var(--gold-light) !important;
}
.apage-back::before {
  background: transparent !important;
}

/* Body artikel */
.apage-body {
  color: #2e3f34 !important;
  font-size: 17px !important;
  line-height: 1.95 !important;
}
.apage-body p {
  margin-bottom: 24px !important;
  color: #354a3c !important;
}
.apage-body h3 {
  font-family: var(--font-display) !important;
  font-size: clamp(20px, 2.8vw, 28px) !important;
  font-weight: 700 !important;
  color: var(--green-dark) !important;
  margin: 48px 0 14px !important;
  line-height: 1.25 !important;
  letter-spacing: -0.02em !important;
  padding-left: 18px !important;
  position: relative !important;
}
.apage-body h3::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 4px !important;
  bottom: 4px !important;
  width: 3px !important;
  height: auto !important;
  background: linear-gradient(
    to bottom,
    var(--gold),
    var(--gold-light)
  ) !important;
  border-radius: 3px !important;
  margin-bottom: 0 !important;
  display: block !important;
}
.apage-body strong {
  color: var(--green-dark) !important;
  font-weight: 700 !important;
}
.apage-body li {
  margin-bottom: 10px;
  color: #354a3c;
  line-height: 1.85;
}
.apage-body li::marker {
  color: var(--gold);
}

/* CTA Box */
.apage-cta-box {
  margin-top: 56px !important;
  padding: 44px 48px !important;
  background: linear-gradient(
    140deg,
    var(--green-dark) 0%,
    #1a5238 45%,
    #1b4332 100%
  ) !important;
  border-radius: 20px !important;
  box-shadow: 0 20px 56px rgba(27, 67, 50, 0.3) !important;
}
.apage-cta-box::before {
  background:
    radial-gradient(
      ellipse at top right,
      rgba(201, 168, 76, 0.2),
      transparent 60%
    ),
    radial-gradient(
      ellipse at bottom left,
      rgba(82, 183, 136, 0.1),
      transparent 60%
    ) !important;
}
.apage-cta-box p {
  font-size: 17.5px !important;
  font-weight: 500 !important;
  margin-bottom: 26px !important;
  line-height: 1.6 !important;
}
.apage-cta-box .btn {
  padding: 13px 32px !important;
  font-size: 14.5px !important;
  font-weight: 800 !important;
  border-radius: 999px !important;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.45) !important;
}
.apage-cta-box .btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.6) !important;
}

/* Share */
.apage-share {
  margin-top: 60px !important;
  padding-top: 32px !important;
  border-top: 1px solid rgba(27, 67, 50, 0.1) !important;
}
.apage-share > p {
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  color: var(--text-muted) !important;
  width: 100%;
  margin-bottom: 12px !important;
}
.share-btn {
  border-radius: 10px !important;
  font-weight: 700 !important;
}

/* Related card styles handled by new 2-col layout above */

/* Mobile artikel */

/* ══════════════════════════════════════════════════════════
   4. TEKS ARAB — FONT AMIRI PROPER
   ══════════════════════════════════════════════════════════ */

/* Watermark Arab di Sertifikasi */
.sertif-arabic-watermark {
  font-family: var(--font-arabic) !important;
  font-size: clamp(90px, 16vw, 200px) !important;
  font-weight: 700 !important;
  line-height: 1 !important;
}

/* Logo Arab di footer */
.logo-ar {
  font-family: var(--font-arabic) !important;
  font-size: 30px !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
}

/* Logo sub Arab di apage & ppage header */
.apage-logo .logo-sub,
.ppage-logo .logo-sub {
  font-family: var(--font-arabic) !important;
  font-size: 0.72rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.04em !important;
  direction: rtl !important;
  unicode-bidi: bidi-override;
}

/* Reading progress bar artikel */
.apage-reading-bar {
  height: 3px !important;
  background: linear-gradient(
    90deg,
    var(--gold),
    var(--green-light),
    var(--gold)
  ) !important;
}

/* ══════════════════════════════════════════════════════════
   ✦ END PATCH v3.2
   ══════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════════════
   ✦ MOBILE FIX PATCH — Komprehensif
   Header → Hero → Semua Section → Footer
   ══════════════════════════════════════════════════════════ */

/* ── NAVBAR — prevent overflow & shrink logo ── */

/* ── Tablet 481px–768px: beberapa penyempurnaan ── */

/* ══════════════════════════════════════════════════════════
   ✦ MOBILE BUG FIX PATCH v2
   1. Form terpotong  2. Artikel tidak muncul
   3. Sub-heading terpotong  4. Burger menu aneh
   ══════════════════════════════════════════════════════════ */

/* ── FIX 4: Burger menu — z-index tinggi, selalu di atas saat open ── */

/* ── FIX 1: Form kontak di mobile — tidak terpotong ── */

/* ── FIX 2: Artikel di mobile — muncul sebagai scroll horizontal ── */

/* ── Tambahan: heading section lain yang bisa terpotong ── */

/* ═══════════════════════════════════════════════════════
   NEW ADDITIONS — FAQ Reseller + Product Incoming + Overlay Fixes
═══════════════════════════════════════════════════════ */

/* ── FAQ Reseller Item ──────────────────────────────── */
.faq-item--reseller .faq-q {
  background: none;
  border-radius: 0;
}
.faq-item--reseller.open .faq-q {
  background: none;
}

.faq-reseller-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-reseller-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.2rem 1.4rem;
  background: linear-gradient(
    135deg,
    rgba(27, 67, 50, 0.04),
    rgba(201, 168, 76, 0.06)
  );
  border-radius: 12px;
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.faq-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.faq-benefit-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.faq-benefit-item strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1px;
}

.faq-benefit-item span {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.faq-reseller-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.6rem;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  width: fit-content;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}
.faq-reseller-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

/* ── Banner — Incoming Style ──────────────────────── */
.ann-banner--incoming {
  background: linear-gradient(
    135deg,
    var(--dark) 0%,
    #1a3a2a 50%,
    #0d1f15 100%
  );
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
}

.ann-badge--incoming {
  background: rgba(201, 168, 76, 0.2);
  color: var(--gold-light);
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 999px;
  padding: 2px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.ann-mystery {
  color: var(--gold);
  font-weight: 700;
  margin-left: 4px;
}

.ann-cta--incoming {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  font-weight: 800;
}
.ann-cta--incoming:hover {
  opacity: 0.9;
}

.nav-link--incoming {
  color: var(--gold) !important;
  font-weight: 600;
}

/* ── Product Incoming Section ─────────────────────── */
.incoming-section {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
  background: var(--dark);
}

.incoming-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.incoming-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.incoming-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.14) 0%,
    transparent 70%
  );
  top: -100px;
  right: -100px;
  animation: floatSlow 8s ease-in-out infinite;
}
.incoming-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(27, 67, 50, 0.4) 0%,
    transparent 70%
  );
  bottom: -80px;
  left: -80px;
  animation: floatSlow 10s 2s ease-in-out infinite reverse;
}

.incoming-grain {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

.incoming-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
  max-width: 780px;
  margin: 0 auto;
}

.incoming-badge-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.2rem 0.45rem 0.7rem;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.incoming-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.5);
  animation: incomingPulse 1.8s ease-in-out infinite;
}

@keyframes incomingPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.6);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(201, 168, 76, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0);
  }
}

.incoming-badge-text {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.incoming-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.incoming-title em {
  font-style: italic;
  color: var(--gold);
}

.incoming-sub {
  font-size: 1.02rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.65);
  max-width: 640px;
}

.incoming-mystery-cards {
  display: flex;
  gap: 1.2rem;
  margin: 0.5rem 0;
  flex-wrap: wrap;
  justify-content: center;
}

.incoming-mcard {
  position: relative;
  padding: 1.4rem 1.8rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 18px;
  backdrop-filter: blur(12px);
  min-width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  overflow: hidden;
  transition:
    border-color 0.3s,
    background 0.3s;
}
.incoming-mcard:hover {
  border-color: rgba(201, 168, 76, 0.5);
  background: rgba(255, 255, 255, 0.07);
}

.incoming-mcard-icon {
  font-size: 1.8rem;
}
.incoming-mcard-text {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.incoming-mcard-blur {
  font-size: 1.4rem;
  font-weight: 900;
  color: rgba(201, 168, 76, 0.4);
  filter: blur(6px);
  user-select: none;
  letter-spacing: 0.3em;
}

.incoming-notify-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.incoming-notify-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.45);
}

/* ── OVERLAY FIX — Produk Page ─────────────────────── */
/* Better hierarchy for produk detail page */
.ppage-content {
  padding: 3rem 2rem 6rem;
}

/* Elevated hero image with gradient overlay */
.pprod-img-wrap {
  background: linear-gradient(145deg, #1b4332, #2d6a4f);
}

/* Product name: use display font for elegance */
.pprod-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.1;
}

/* Description block — gold border left, larger quote mark */
.pprod-desc {
  font-size: 1rem;
  line-height: 1.95;
  background: linear-gradient(
    135deg,
    rgba(253, 246, 227, 0.95),
    rgba(255, 255, 255, 0.9)
  );
  border-left: 4px solid var(--gold);
  border-radius: 0 16px 16px 0;
  box-shadow:
    0 2px 20px rgba(27, 67, 50, 0.07),
    -1px 0 0 rgba(201, 168, 76, 0.4);
}

/* Block titles: bolder, more distinct */
.pprod-block-title {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  background: linear-gradient(
    90deg,
    rgba(27, 67, 50, 0.07),
    rgba(201, 168, 76, 0.04)
  );
}

/* Block body: better spacing */
.pprod-block-body {
  padding: 1.3rem 1.5rem 1.4rem;
  font-size: 0.93rem;
}

/* CTA row: tighter, more premium feel */
.pprod-cta-row {
  gap: 0.8rem;
}

.pprod-cta-wa {
  background: linear-gradient(135deg, #25d366, #128c7e) !important;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3) !important;
  border-radius: 12px !important;
  font-weight: 700 !important;
  transition:
    transform 0.22s,
    box-shadow 0.22s !important;
}
.pprod-cta-wa:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4) !important;
}

.pprod-cta-shopee {
  background: linear-gradient(135deg, #f97316, #ef4444) !important;
  color: #fff !important;
  border-radius: 12px !important;
  font-weight: 700 !important;
  transition:
    transform 0.22s,
    box-shadow 0.22s !important;
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.3) !important;
}
.pprod-cta-shopee:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px rgba(249, 115, 22, 0.4) !important;
}

/* ── ARTIKEL PAGE — Visual Hierarchy Fix ──────────── */
/* Article hero: taller, more cinematic */
.apage-hero {
  border-radius: 0;
  height: 420px;
  overflow: hidden;
  position: relative;
}

.apage-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75) saturate(1.1);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.apage-hero:hover img {
  transform: scale(1.03);
}

/* More dramatic gradient overlay */
.apage-hero-overlay {
  background: linear-gradient(
    to top,
    rgba(13, 35, 24, 0.92) 0%,
    rgba(13, 35, 24, 0.5) 45%,
    rgba(13, 35, 24, 0.15) 100%
  );
}

.apage-hero-info {
  padding: 2.5rem 3rem;
  bottom: 0;
}

.apage-hero-info h1 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

/* Article body: better typography */
.apage-body {
  max-width: 760px;
  margin: 3rem auto;
  padding: 0 2.5rem;
}

.apage-body p {
  font-size: 1.02rem;
  line-height: 2;
  color: #3d5a47;
  margin-bottom: 1.5rem;
}

.apage-body h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
  margin: 2.5rem 0 1rem;
  padding-left: 1.2rem;
  border-left: 4px solid var(--gold);
  letter-spacing: -0.01em;
}

.apage-body h3::before {
  display: none;
}

/* Related cards grid — better layout */
.apage-related {
  max-width: 960px;
  margin: 3rem auto;
  padding: 0 2.5rem 4rem;
}

.apage-related-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(201, 168, 76, 0.25);
}

.apage-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.2rem;
}

.arelated-card {
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(27, 67, 50, 0.08);
  box-shadow: 0 2px 12px rgba(27, 67, 50, 0.06);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.arelated-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(27, 67, 50, 0.13);
}

.arelated-img {
  height: 140px;
  overflow: hidden;
}
.arelated-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.arelated-card:hover .arelated-img img {
  transform: scale(1.06);
}

.arelated-body {
  padding: 1rem 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}
.arelated-body h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.4;
}
.arelated-link {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: auto;
  letter-spacing: 0.04em;
}

/* Share buttons row */
.apage-share {
  max-width: 760px;
  margin: 0 auto 1rem;
  padding: 1.5rem 2.5rem;
  background: linear-gradient(
    135deg,
    rgba(27, 67, 50, 0.04),
    rgba(201, 168, 76, 0.04)
  );
  border-radius: 16px;
  border: 1px solid rgba(201, 168, 76, 0.18);
}

/* ── Incoming Section Mobile ──────────────────────── */

/* ══════════════════════════════════════════════════════════
   ✦ ENHANCEMENT PATCH — Overlay, Banner, SEO, UX
   ══════════════════════════════════════════════════════════ */

/* 2. PRODUK OVERLAY — Premium Slide-In + Animated Entry */
.produk-page {
  background: linear-gradient(160deg, #faf8f2 0%, #f0ece0 100%) !important;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1) !important;
  will-change: transform;
}

/* Decorative honeycomb-inspired watermark */
.produk-page::after {
  content: "⬡";
  position: fixed;
  bottom: -80px;
  right: -60px;
  font-size: 480px;
  color: rgba(201, 168, 76, 0.04);
  pointer-events: none;
  z-index: 0;
  line-height: 1;
}

/* Smooth staggered entry for product content */
.produk-page.is-open .pprod-col-left {
  animation: slideUpBounce 0.6s cubic-bezier(0.16, 1, 0.3, 1) both !important;
  animation-delay: 0.15s !important;
}
.produk-page.is-open .pprod-info {
  animation: slideUpBounce 0.6s cubic-bezier(0.16, 1, 0.3, 1) both !important;
  animation-delay: 0.25s !important;
}

/* Product image frame — more dramatic */
.pprod-img-wrap {
  border-radius: 24px !important;
  overflow: hidden !important;
  box-shadow:
    0 32px 80px rgba(27, 67, 50, 0.2),
    0 8px 24px rgba(201, 168, 76, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
  position: relative;
}
.pprod-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 60%,
    rgba(13, 35, 24, 0.08) 100%
  );
  pointer-events: none;
  border-radius: inherit;
}

/* Catalog card hover — more engaging zoom + reveal */
.kprod-card {
  transition:
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.35s ease !important;
  cursor: pointer;
}
.kprod-card:hover {
  transform: translateY(-8px) scale(1.025) !important;
  box-shadow:
    0 24px 60px rgba(27, 67, 50, 0.16),
    0 4px 16px rgba(201, 168, 76, 0.18) !important;
  z-index: 2 !important;
}
.kprod-img .kprod-overlay {
  background: linear-gradient(
    to top,
    rgba(13, 35, 24, 0.88) 0%,
    rgba(27, 67, 50, 0.4) 50%,
    transparent 100%
  ) !important;
  transition: opacity 0.3s ease !important;
}
.kprod-detail-hint {
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
  padding: 8px 18px !important;
  background: linear-gradient(
    135deg,
    var(--gold),
    var(--gold-light)
  ) !important;
  color: var(--green-dark) !important;
  border-radius: 999px !important;
  display: inline-block !important;
  transform: translateY(6px) !important;
  transition: transform 0.3s ease !important;
}
.kprod-card:hover .kprod-detail-hint {
  transform: translateY(0) !important;
}

/* 3. ARTIKEL OVERLAY — Magazine-style with parallax header */
.artikel-page {
  background: linear-gradient(170deg, #fdfaf4 0%, #f4f0e6 100%) !important;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Artikel overlay open animation — staggered */
.artikel-page.open .apage-hero {
  animation: fadeIn 0.5s ease both;
  animation-delay: 0.1s;
}
.artikel-page.open .apage-content > *:not(.apage-hero) {
  animation: slideUpBounce 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 0.3s;
}

/* Hero image: more dramatic, taller */
.apage-hero {
  height: 480px !important;
  position: relative;
}

/* Article hero title — magazine style */
.apage-hero-info h1 {
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    rgba(240, 208, 128, 0.9) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: clamp(24px, 3.8vw, 42px) !important;
}

/* Artikel card hover — engaging lift */
.artikel-card {
  transition:
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.35s ease !important;
}
.artikel-card:hover {
  transform: translateY(-10px) !important;
  box-shadow:
    0 28px 64px rgba(27, 67, 50, 0.18),
    0 6px 20px rgba(201, 168, 76, 0.14) !important;
}

/* Reading bar — gradient pulse */
.apage-reading-bar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  height: 4px !important;
  z-index: 9999 !important;
  background: linear-gradient(
    90deg,
    var(--gold),
    var(--green-light),
    var(--gold-light)
  ) !important;
  transition: width 0.1s linear !important;
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.5) !important;
}

/* 4. PRODUK SECTION CARDS — More elegant hover */
.produk-card {
  transition:
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.35s ease !important;
}
.produk-card:hover {
  transform: translateY(-10px) scale(1.015) !important;
  box-shadow:
    0 28px 64px rgba(27, 67, 50, 0.18),
    0 4px 16px rgba(201, 168, 76, 0.2) !important;
}

/* 5. MARQUEE — hide the ann-banner related CSS side effects */
body.has-banner .navbar {
  top: 0 !important;
}

/* 6. SEO trust signals — Schema markup annotation (hidden) */
[itemprop],
[itemscope] {
  display: inherit;
}

/* 7. Google Search Console — improve Core Web Vitals hints */
img[loading="lazy"] {
  content-visibility: auto;
}

/* ── FIX: CTA Box artikel — teks tidak terbaca ── */
.apage-cta-box p {
  color: #ffffff !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  letter-spacing: 0.01em !important;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3) !important;
  opacity: 1 !important;
}

/* ══════════════════════════════════════════════════════════
   ✦ MOBILE FIX PATCH — Footer, Form, Hero Gap, Badge
   ══════════════════════════════════════════════════════════ */

/* Extra kecil — 480px ke bawah */

/* ══════════════════════════════════════════════════════════════
   PERFORMANCE OPTIMIZATIONS
   ══════════════════════════════════════════════════════════════ */

/* Defer off-screen rendering for heavy sections */
.katalog,
.testimoni,
.artikel,
.galeri,
.faq,
.kontak {
  content-visibility: auto;
  contain-intrinsic-size: 0 600px;
}

/* Limit will-change to elements that actually animate */
.marquee-track {
  will-change: transform;
}

.hero-orb {
  will-change: transform;
}

/* Reduce layout thrash on scroll animations */
.reveal-up,
.reveal-right,
.reveal-left,
.reveal-scale,
.reveal-rotate {
  contain: layout style;
}

/* ══════════════════════════════════════════════════════════════
   TENTANG KAMI — HIERARCHY & READABILITY FIXES
   ══════════════════════════════════════════════════════════════ */

/* Brand story paragraph (section tentang) — ensure readable size */
.brand-story .bs-content p {
  font-size: 15px !important;
  color: var(--text-dark) !important;
  line-height: 1.85 !important;
}

/* Section heading within tentang */
.tentang .section-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}

/* Sertif section trust strip — bigger on all screens */
.sertif-trust-strip .sertif-trust-item strong {
  font-size: 15px !important;
}
.sertif-trust-strip .sertif-trust-item span {
  font-size: 13px !important;
}

/* Sertif verify btn — purple hover tone (halal.go.id brand color) */
.sertif-verify-btn:focus-visible {
  outline: 3px solid #6a1ea0;
  outline-offset: 3px;
}

/* Product page — ensure minimum font sizes for mobile readability */

/* ══════════════════════════════════════════════
   content-visibility: skip rendering off-screen
   Browser hanya render section yg masuk viewport
   ══════════════════════════════════════════════ */
.tentang,
.keunggulan,
.sertifikasi,
.produk,
.katalog,
.galeri,
.testimoni,
.artikel,
.faq,
.kontak,
footer {
  content-visibility: auto;
  contain-intrinsic-size: 0 600px;
}

/* ═══════════════════════════════════════════
   OVERLAY PRODUK — ENHANCEMENT (2025)
   Mempercantik tampilan detail produk
   ═══════════════════════════════════════════ */

/* Nama produk — simple underline */
.pprod-name::after {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  background: var(--gold, #c9a84c);
  border-radius: 2px;
  margin-top: 0.6rem;
  margin-bottom: 1rem;
}

/* Halal badge */
.pprod-halal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: #2d6a4f;
  background: rgba(45, 106, 79, 0.08);
  border: 1px solid rgba(45, 106, 79, 0.18);
  padding: 0.3rem 0.75rem 0.3rem 0.6rem;
  border-radius: 6px;
  margin-bottom: 1rem;
  width: fit-content;
}

/* ══════════════════════════════════════════════════════════════
   KONTAK SECTION — MOBILE FIX (FINAL OVERRIDE)
   Masalah: kinfo icon+teks melebar, sosmed button melebar
   ══════════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════════════════
   KONTAK — FINAL MOBILE FIX v2
   Fix: kinfo icon+teks meluber, gmaps terlalu lebar, form terlalu lebar
   ══════════════════════════════════════════════════════════════ */

/* Base fix: maps dan form tidak boleh keluar container — berlaku semua ukuran */
.maps-frame,
.maps-embed {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.maps-frame iframe,
.maps-iframe {
  width: 100% !important;
  max-width: 100% !important;
  display: block;
  box-sizing: border-box;
}

/* kinfo base: child div harus flex-shrink dan min-width 0 */
.kinfo-item > div {
  min-width: 0;
  flex: 1 1 0;
  overflow: hidden;
  word-break: break-word;
  overflow-wrap: break-word;
}
.kinfo-item > div a,
.kinfo-item > div p {
  word-break: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

/* ══════════════════════════════════════════════════════════════
   FOOTER — MOBILE FIX: Navigasi & Marketplace berdampingan
   ══════════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════════════════
   SERTIFIKASI + TENTANG BADGE — MOBILE FIX FINAL
   ══════════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════
   RESPONSIVE STYLES
   ══════════════════════════════════════════ */

@media (max-width: 1024px) {
  .sertifikasi-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .katalog-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .tentang-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .produk-grid {
    grid-template-columns: 1fr 1fr;
  }
  .artikel-grid {
    grid-template-columns: 1fr 1fr;
  }
  .artikel-card-featured {
    grid-column: span 2;
  }
}

@media (max-width: 960px) {
  .pprod-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .pprod-col-left {
    position: relative;
    top: 0;
    max-width: 460px;
    margin: 0 auto;
  }
  .pprod-img-wrap {
    max-width: 460px;
  }
  .pprod-trust {
    gap: 0.5rem;
  }
  .pprod-trust-item {
    font-size: 0.72rem;
  }
}

@media (max-width: 900px) {
  .galeri-masonry {
    columns: 2;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .produk-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .navbar {
    height: 66px !important;
  }
  .nav-logo-img {
    height: 40px !important;
  }
  .hero {
    padding: 100px 5% 56px !important;
  }
  .kontak-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 28px !important;
  }
  .sertif-main-left {
    min-width: 140px !important;
  }
  .galeri-masonry {
    columns: 2 !important;
  }
}

@media (max-width: 768px) {
  .katalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .nav-links {
    display: none;
  }
  .nav-burger {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    top: 70px;
    background: rgba(27, 67, 50, 0.97);
    backdrop-filter: blur(12px);
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 999;
    animation: fadeIn 0.3s ease;
  }

  .nav-links.open .nav-link {
    color: var(--white);
    font-size: 18px;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 110px 5% 60px;
    gap: 32px;
  }
  .hero-visual {
    display: none;
  }
  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }
  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }
  .hero-scroll-hint {
    display: none;
  }
  .hero-title {
    font-size: clamp(2.2rem, 7vw, 3rem);
  }
  .hero-desc {
    font-size: 15px;
    max-width: 100%;
  }

  .produk-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .artikel-grid {
    grid-template-columns: 1fr;
  }
  .kontak-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .testi-card {
    min-width: 100%;
  }

  .tentang-img-stack {
    height: 380px;
  }
  .timg-1 {
    width: 220px;
    height: 280px;
  }
  .timg-2 {
    width: 180px;
    height: 220px;
  }
  .tentang-quote-float {
    display: none;
  }
  .vm-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .tentang-milestones {
    flex-direction: column;
    gap: 16px;
    padding: 32px 24px;
  }
  .milestone-line {
    width: 1px;
    height: 24px;
    min-width: auto;
    margin: 0 0 0 -10px;
    background: linear-gradient(
      to bottom,
      rgba(201, 168, 76, 0.25),
      rgba(201, 168, 76, 0.4),
      rgba(201, 168, 76, 0.25)
    );
  }
  .sertif-main-card {
    flex-direction: column;
  }
  .sertif-main-left {
    flex-direction: row;
    border-right: none;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    padding: 28px 32px;
    min-width: unset;
  }
  .sertif-main-body {
    padding: 32px;
  }
  .sertif-trust-strip {
    flex-wrap: wrap;
    gap: 20px;
  }
  .sertif-trust-divider {
    display: none;
  }
  .sertif-trust-item {
    flex: 1 1 45%;
  }
  .sertif-footer-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .artikel-card {
    min-width: calc(80% - 14px);
  }

  /* Section padding adjustments */
  section {
    padding: 64px 0;
  }
  .section-header {
    margin-bottom: 40px;
  }
  .section-title {
    font-size: clamp(1.9rem, 6vw, 2.6rem);
  }
  .btn {
    padding: 12px 24px;
    font-size: 13.5px;
  }

  .gal-lb-panel {
    padding: 0 56px;
  }
  .gal-lb-close {
    right: 12px;
    top: -48px;
  }
  .gal-lb-prev {
    left: 4px;
  }
  .gal-lb-next {
    right: 4px;
  }
  .gal-lb-arrow {
    width: 40px;
    height: 40px;
  }
  .gal-lb-arrow svg {
    width: 18px;
    height: 18px;
  }

  .testi-slider-wrap {
    overflow: hidden;
  }
  .marquee-inner {
    gap: 16px;
  }
  .keung-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .kontak-info-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .sosmed-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .nav-links.open {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 9998 !important;
    background: rgba(8, 24, 16, 0.98) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 80px 24px 40px !important;
    overflow-y: auto !important;
  }

  .nav-links.open .nav-link {
    font-size: 18px !important;
    padding: 14px 32px !important;
    width: 100% !important;
    max-width: 320px !important;
    text-align: center !important;
    border-radius: 12px !important;
    border: 1px solid rgba(201, 168, 76, 0.15) !important;
    color: rgba(255, 255, 255, 0.9) !important;
  }

  .nav-links.open .nav-link:hover,
  .nav-links.open .nav-link:active {
    background: rgba(201, 168, 76, 0.12) !important;
    border-color: rgba(201, 168, 76, 0.35) !important;
    color: var(--gold-light) !important;
  }

  /* Burger button selalu di atas menu overlay */
  .nav-burger {
    position: relative;
    z-index: 9999 !important;
  }

  /* Navbar tetap di atas overlay */
  .navbar {
    z-index: 9997 !important;
  }

  .kontak-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .kontak-form {
    padding: 24px 16px !important;
    margin: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
    border-radius: 12px !important;
  }

  .form {
    gap: 16px !important;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px !important; /* Cegah iOS auto-zoom */
    padding: 12px 14px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    max-width: 100% !important;
  }

  .form-group select {
    padding-right: 36px !important;
  }

  .form-group textarea {
    min-height: 100px !important;
  }

  .btn-full {
    width: 100% !important;
    justify-content: center !important;
    padding: 14px 20px !important;
    font-size: 14px !important;
  }

  /* ── FIX 3: Sub-heading "Hubungi Kami" tidak terpotong ── */
  .kontak-info .section-title {
    font-size: clamp(1.6rem, 6vw, 2rem) !important;
    line-height: 1.25 !important;
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
  }

  .section-eyebrow {
    font-size: 10px !important;
    letter-spacing: 0.08em !important;
    white-space: normal !important;
    word-break: break-word !important;
  }

  .kinfo-item {
    gap: 12px !important;
    align-items: flex-start !important;
  }

  .kinfo-icon {
    flex-shrink: 0 !important;
    width: 38px !important;
    height: 38px !important;
    font-size: 16px !important;
  }

  .kinfo-item > div {
    min-width: 0 !important;
    flex: 1 !important;
  }

  .kinfo-item a,
  .kinfo-item p,
  .kinfo-item span {
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    font-size: 13.5px !important;
  }

  .sosmed-list {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
  }

  .sosmed-btn {
    flex: 1 1 calc(33% - 6px) !important;
    min-width: 90px !important;
    padding: 10px 8px !important;
    font-size: 12px !important;
    justify-content: center !important;
  }

  /* Artikel grid mobile — 1 kolom */
  .artikel-grid {
    grid-template-columns: 1fr !important;
  }

  .artikel-card-featured {
    grid-column: span 1 !important;
  }

  .artikel-card-featured .acard-img {
    height: 200px !important;
  }

  .artikel-filters {
    gap: 6px !important;
  }

  .artikel-filter-btn {
    font-size: 12px !important;
    padding: 6px 14px !important;
  }

  .artikel-more-btn {
    font-size: 13px !important;
    padding: 10px 24px !important;
  }

  .incoming-section {
    padding: 5rem 0;
  }
  .incoming-mystery-cards {
    gap: 0.8rem;
  }
  .incoming-mcard {
    min-width: 130px;
    padding: 1rem 1.2rem;
  }
  .apage-hero {
    height: 280px;
  }
  .apage-hero-info {
    padding: 1.5rem;
  }
  .apage-body,
  .apage-related {
    padding: 0 1.2rem;
  }
  .apage-body {
    margin: 2rem auto;
  }

  .apage-hero {
    height: 300px !important;
  }

  /* ─── 1. HERO — Hapus ruang kosong akibat hero-visual hidden ─── */
  .hero {
    min-height: auto !important;
    padding: 100px 5% 48px !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 20px !important;
  }
  .hero-visual {
    display: none !important;
  }
  .hero-content {
    max-width: 100% !important;
    text-align: center !important;
  }

  /* ─── 2. KONTAK — Form + Info stacked 1 kolom, tidak terpotong ─── */
  .kontak-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    padding: 0 !important;
  }

  /* Info kontak (telepon, email, alamat) — tampil penuh */
  .kontak-info {
    width: 100% !important;
    overflow: visible !important;
  }
  .kinfo-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    width: 100% !important;
  }
  .kinfo-text {
    flex: 1 !important;
    min-width: 0 !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
  }
  .kinfo-label {
    font-size: 10px !important;
    letter-spacing: 0.1em !important;
    margin-bottom: 3px !important;
  }
  .kinfo-value {
    font-size: 13px !important;
    line-height: 1.5 !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
    color: rgba(255, 255, 255, 0.9) !important;
  }

  /* ─── 3. FORM — Label dan input terlihat jelas ─── */
  .kontak-form {
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 24px 16px !important;
    border-radius: 16px !important;
    background: rgba(255, 255, 255, 0.06) !important;
    backdrop-filter: blur(12px) !important;
  }
  .form-group {
    width: 100% !important;
  }
  .form-group label {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    letter-spacing: 0.1em !important;
    margin-bottom: 6px !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100% !important;
    box-sizing: border-box !important;
    font-size: 16px !important;
    padding: 12px 14px !important;
    background: rgba(255, 255, 255, 0.92) !important;
    color: #1a3a2a !important;
    border: 1.5px solid rgba(201, 168, 76, 0.3) !important;
    border-radius: 10px !important;
  }
  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: rgba(60, 100, 75, 0.55) !important;
    font-style: italic !important;
  }
  .form-group select {
    color: #1a3a2a !important;
  }

  /* ─── 4. BADGE "Sejak 2014" — Tidak menimpa teks ─── */
  .tentang-badge-float {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    margin: 16px auto 0 !important;
    display: inline-flex !important;
    width: auto !important;
    max-width: 200px !important;
    animation: none !important;
  }

  /* ─── 5. TENTANG galeri foto — rapi di mobile ─── */
  .tentang-media-grid,
  .tentang-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* ─── 6. KONTAK section deskripsi tidak terpotong ─── */
  .body-light {
    font-size: 14px !important;
    line-height: 1.65 !important;
    overflow: visible !important;
    white-space: normal !important;
    color: rgba(255, 255, 255, 0.75) !important;
  }

  /* ─── 7. SOSMED buttons full width ─── */
  .sosmed-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    width: 100% !important;
  }

  /* ── kinfo: icon tidak shrink, teks wrap dengan benar ── */
  .kinfo-item {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 12px !important;
    width: 100% !important;
    overflow: hidden !important;
  }

  .kinfo-icon {
    flex-shrink: 0 !important;
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    font-size: 16px !important;
  }

  .kinfo-item > div,
  .kinfo-text {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }

  .kinfo-item span,
  .kinfo-label {
    display: block !important;
    font-size: 10px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    margin-bottom: 3px !important;
  }

  .kinfo-item a,
  .kinfo-item p,
  .kinfo-value {
    display: block !important;
    font-size: 13px !important;
    line-height: 1.55 !important;
    white-space: normal !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    overflow: visible !important;
    text-overflow: unset !important;
    max-width: 100% !important;
  }

  /* ── sosmed: tombol wrap ke baris baru, tidak melebar ── */
  .sosmed-list {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin-top: 20px !important;
    width: 100% !important;
  }

  .sosmed-btn {
    flex: 0 0 auto !important;
    width: auto !important;
    max-width: calc(50% - 4px) !important;
    min-width: 0 !important;
    padding: 9px 14px !important;
    font-size: 12.5px !important;
    gap: 7px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    justify-content: center !important;
  }

  .sosmed-btn svg {
    flex-shrink: 0 !important;
    width: 15px !important;
    height: 15px !important;
  }

  /* Container kontak tidak boleh overflow */
  .kontak {
    overflow-x: hidden !important;
  }
  .kontak .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 5% !important;
    padding-right: 5% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  /* kontak-grid: 1 kolom penuh */
  .kontak-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* kontak-info: tidak boleh keluar */
  .kontak-info {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  /* kinfo-item: icon fix + div teks wrap */
  .kinfo-item {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: flex-start !important;
    gap: 12px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .kinfo-icon {
    flex: 0 0 36px !important;
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    max-width: 36px !important;
    font-size: 15px !important;
  }
  /* Div teks di sebelah icon */
  .kinfo-item > div {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    max-width: calc(100% - 48px) !important;
    overflow: hidden !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
  }
  .kinfo-item > div span {
    display: block !important;
    font-size: 10px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    margin-bottom: 3px !important;
  }
  .kinfo-item > div a,
  .kinfo-item > div p {
    display: block !important;
    font-size: 13px !important;
    line-height: 1.55 !important;
    white-space: normal !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    max-width: 100% !important;
  }

  /* Maps: paksa 100% lebar, tidak boleh meluber */
  .maps-embed {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .maps-frame {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .maps-frame iframe,
  .maps-iframe {
    width: 100% !important;
    max-width: 100% !important;
    height: 200px !important;
    display: block !important;
    box-sizing: border-box !important;
  }

  /* kontak-form: paksa tidak keluar layar */
  .kontak-form {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 24px 16px !important;
    margin: 0 !important;
    overflow: hidden !important;
  }
  .form,
  .form > * {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    font-size: 16px !important;
  }

  /* ── BADGE "SEJAK 2014" ─────────────────────────────────────
     Badge ada di dalam tentang-img-stack (position:relative).
     Di mobile stack dikecilkan jadi 240px, badge (top:390px)
     jadi melayang di luar stack dan nimpa foto di bawahnya.
     Fix: keluarkan dari absolute flow sepenuhnya.
  ─────────────────────────────────────────────────────────── */
  .tentang-img-stack {
    /* Tambah padding bawah supaya badge yang jadi relative punya ruang */
    height: auto !important;
    min-height: 220px !important;
    padding-bottom: 0 !important;
    overflow: visible !important;
  }

  /* Dua foto tetap absolute, ukurannya diperkecil */
  .timg-1 {
    position: absolute !important;
    width: 55% !important;
    height: 220px !important;
    top: 0 !important;
    left: 0 !important;
  }
  .timg-2 {
    position: absolute !important;
    width: 45% !important;
    height: 165px !important;
    bottom: 0 !important;
    right: 0 !important;
    top: auto !important;
  }

  /* Badge: cabut dari absolute, jadikan block biasa di bawah foto */
  .tentang-badge-float {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 230px auto 0 !important; /* dorong ke bawah foto */
    width: fit-content !important;
    max-width: 180px !important;
    padding: 14px 20px !important;
    animation: none !important;
    z-index: auto !important;
  }

  /* ── SERTIFIKASI ────────────────────────────────────────────
     Masalah: sertif-footer-row sempit (nomor + verify-btn),
     trust-strip item berantakan di mobile.
  ─────────────────────────────────────────────────────────── */

  /* Main card: stack vertikal */
  .sertif-main-card {
    flex-direction: column !important;
    margin: 0 !important;
  }

  /* Panel kiri (logo halal): row, kompak */
  .sertif-main-left {
    flex-direction: row !important;
    align-items: center !important;
    padding: 20px 16px !important;
    min-width: unset !important;
    gap: 16px !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15) !important;
  }
  .sertif-main-left .sertif-logo-img {
    width: 52px !important;
    height: 52px !important;
    flex-shrink: 0 !important;
  }
  .sertif-main-badge {
    font-size: 8px !important;
  }

  /* Body: padding lebih kecil */
  .sertif-main-body {
    padding: 20px 16px !important;
  }
  .sertif-main-title {
    font-size: 1.2rem !important;
    margin: 10px 0 10px !important;
  }
  .sertif-main-desc {
    font-size: 13px !important;
    margin-bottom: 16px !important;
  }
  .sertif-stamp {
    font-size: 10px !important;
  }

  /* Footer row dalam card: stack vertikal agar tidak sempit */
  .sertif-footer-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
    margin-top: 16px !important;
    padding-top: 16px !important;
  }
  .sertif-nomor {
    font-size: 11px !important;
  }
  .sertif-nomor strong {
    font-size: 11px !important;
    word-break: break-all !important;
  }
  .sertif-verify-btn {
    width: 100% !important;
    justify-content: center !important;
    font-size: 11px !important;
    padding: 10px 16px !important;
    white-space: normal !important;
    text-align: center !important;
  }

  /* Featured points: lebih rapat */
  .sertif-featured-points {
    gap: 8px !important;
  }
  .sertif-point {
    font-size: 13px !important;
    gap: 8px !important;
  }

  /* Trust strip: 2 kolom grid, lebih bersih dari flex */
  .sertif-trust-strip {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
    padding: 20px 16px !important;
    margin-top: 24px !important;
  }
  .sertif-trust-divider {
    display: none !important;
  }
  .sertif-trust-item {
    flex: unset !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px !important;
    justify-content: flex-start !important;
  }
  .sti-icon {
    font-size: 20px !important;
    flex-shrink: 0 !important;
  }
  .sertif-trust-item strong {
    font-size: 12.5px !important;
    margin-bottom: 2px !important;
  }
  .sertif-trust-item span {
    font-size: 11.5px !important;
    line-height: 1.4 !important;
  }

  /* Watermark arabic: kecilkan agar tidak overflow */
  .sertif-arabic-watermark {
    font-size: 80px !important;
  }
}

@media (max-width: 640px) {
  .apage-related-grid {
    grid-template-columns: 1fr;
  }
  .apage-share {
    gap: 10px;
  }
  .share-btn {
    padding: 9px 14px;
    font-size: 12px;
  }

  .back-to-top {
    bottom: 86px;
    right: 14px;
    width: 38px;
    height: 38px;
    border-radius: 8px;
  }
  .apage-header {
    padding: 0 1rem;
    height: 64px;
  }
  .apage-hero {
    height: 260px;
    margin: 0 -16px 36px;
  }
  .apage-hero-info {
    left: 20px;
    right: 20px;
    bottom: 24px;
  }
  .apage-content {
    padding: 0 16px 72px;
  }
  .faq-q {
    padding: 18px 20px;
    font-size: 14px;
  }
  .faq-item.open .faq-a {
    padding: 0 20px 18px;
  }
  .faq-a p {
    padding-top: 14px;
  }
  .sosmed-btn {
    font-size: 12px;
    padding: 9px 12px;
  }
  .apage-cta-box {
    padding: 28px 24px;
  }

  .apage-content {
    padding: 0 18px 80px !important;
  }
  .apage-hero {
    height: 270px !important;
    margin: 0 -18px 36px !important;
  }
  .apage-hero-info {
    left: 22px !important;
    right: 22px !important;
    bottom: 24px !important;
  }
  .apage-cta-box {
    padding: 30px 24px !important;
  }
  .apage-body {
    font-size: 15.5px !important;
  }
  .apage-body h3 {
    font-size: 19px !important;
    padding-left: 14px !important;
  }

  .pprod-name {
    font-size: 1.75rem !important;
  }
  .pprod-desc {
    font-size: 0.95rem !important;
  }
  .pprod-block-body {
    font-size: 0.93rem !important;
  }
  .pprod-price {
    font-size: 1.3rem !important;
  }
  .vmc-visi p {
    font-size: 14px !important;
  }
  .vmc-misi ul li {
    font-size: 13.5px !important;
  }
  .keung-item h5 {
    font-size: 14.5px !important;
  }
  .keung-item p {
    font-size: 13px !important;
  }
  .milestone-label {
    font-size: 11.5px !important;
  }
}

@media (max-width: 600px) {
  .sertif-cards {
    grid-template-columns: 1fr;
  }

  .ann-text {
    font-size: 11px;
  }
  .ann-inner {
    gap: 8px;
  }

  .ppage-header {
    padding: 0 1rem;
    height: 68px;
  }
  .ppage-logo .logo-wordmark {
    font-size: 0.82rem;
    letter-spacing: 0.1em;
  }
  .ppage-logo .logo-wordmark em {
    font-size: 1rem;
  }
  .ppage-logo .logo-sub {
    font-size: 0.62rem;
  }
  .ppage-content {
    padding: 2rem 1.1rem 4rem;
  }
  .pprod-name {
    font-size: 1.9rem;
  }
  .pprod-cta-row {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .galeri-masonry {
    columns: 1;
  }
}

@media (max-width: 480px) {
  .cursor-outer,
  .cursor-inner {
    display: none;
  }
  body,
  * {
    cursor: auto !important;
  }

  /* Produk grid: 1 column on very small phones */
  .produk-grid {
    grid-template-columns: 1fr !important;
  }

  .katalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .kprod-body h4 {
    font-size: 12.5px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom .container {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
  }
  .hero-badge {
    font-size: 11px;
    padding: 7px 14px;
  }
  .btn {
    padding: 11px 20px;
    font-size: 13px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .hero-stats {
    gap: 12px;
  }
  .stat-num {
    font-size: 1.7rem;
  }

  .cursor,
  .cursor-follower {
    display: none;
  }
  body {
    cursor: auto;
  }
  * {
    cursor: auto !important;
  }

  .artikel-card {
    min-width: calc(90% - 10px);
  }

  /* Announcement banner wrapping fix */
  .ann-inner {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
  .ann-banner {
    padding: 10px 40px 10px 16px;
    min-height: 60px;
  }
  body.has-banner .navbar {
    top: 60px;
  }

  /* Produk card kompak */
  .pcard-body {
    padding: 14px 14px 16px;
  }
  .pcard-body h3 {
    font-size: 1.1rem;
  }

  /* Testimoni  */
  .testi-slider-wrap {
    padding: 0;
  }

  /* Section padding tighter */
  section {
    padding: 52px 0;
  }
  .section-header {
    margin-bottom: 32px;
  }
  .section-title {
    font-size: 1.85rem;
  }
  .section-sub {
    font-size: 14px;
  }

  .navbar {
    height: 60px !important;
  }
  .navbar.scrolled {
    height: 56px !important;
  }
  .nav-container {
    width: 92% !important;
    padding: 0 !important;
  }
  .nav-logo {
    gap: 8px !important;
  }
  .nav-logo-img {
    height: 36px !important;
  }
  .logo-en {
    font-size: 11px !important;
    letter-spacing: 1.5px !important;
  }
  .logo-en em {
    font-size: 12px !important;
  }

  /* Announcement banner */
  .ann-banner {
    padding: 8px 36px 8px 12px !important;
  }
  body.has-banner .navbar {
    top: 56px !important;
  }

  /* ── HERO ── */
  .hero {
    padding: 90px 5% 48px !important;
    gap: 24px !important;
  }
  .hero-badge {
    font-size: 10px !important;
    padding: 6px 12px !important;
  }
  .hero-title {
    font-size: 1.8rem !important;
    line-height: 1.2 !important;
  }
  .hero-desc {
    font-size: 14px !important;
  }
  .hero-actions {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
    width: 100% !important;
  }
  .hero-actions .btn {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
  }
  .hero-stats {
    gap: 16px !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
  }
  .stat-num {
    font-size: 1.6rem !important;
  }
  .stat-label {
    font-size: 11px !important;
  }

  /* ── MARQUEE ── */
  .marquee-track {
    padding: 10px 0 !important;
  }
  .marquee-track span {
    font-size: 11px !important;
    padding: 0 12px !important;
  }

  /* ── TENTANG ── */
  .tentang-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .tentang-img-stack {
    height: 240px !important;
  }
  .timg-1 {
    width: 160px !important;
    height: 200px !important;
  }
  .timg-2 {
    width: 130px !important;
    height: 160px !important;
  }
  .tentang-milestones {
    padding: 20px 16px !important;
    gap: 12px !important;
  }
  .milestone-num {
    font-size: 1.5rem !important;
  }
  .milestone-label {
    font-size: 11px !important;
  }
  .vm-cards {
    grid-template-columns: 1fr !important;
  }

  /* ── SERTIFIKASI ── */
  .sertif-main-card {
    flex-direction: column !important;
  }
  .sertif-main-left {
    flex-direction: row !important;
    padding: 20px !important;
    min-width: unset !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15) !important;
    gap: 14px !important;
  }
  .sertif-main-left .sertif-logo-img {
    width: 56px !important;
    height: 56px !important;
  }
  .sertif-main-body {
    padding: 20px !important;
  }
  .sertif-main-title {
    font-size: 1.3rem !important;
  }
  .sertif-trust-strip {
    flex-wrap: wrap !important;
    gap: 16px !important;
    padding: 16px !important;
  }
  .sertif-trust-item {
    flex: 1 1 45% !important;
  }
  .sertif-trust-divider {
    display: none !important;
  }
  .sertif-cards {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  /* ── PRODUK ── */
  .produk-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .pcard-img-wrap {
    height: 180px !important;
  }
  .pcard-body {
    padding: 14px !important;
  }
  .pcard-body h3 {
    font-size: 1rem !important;
  }

  /* ── KATALOG ── */
  .katalog-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
  .kprod-img-wrap {
    height: 130px !important;
  }
  .kprod-body {
    padding: 10px !important;
  }
  .kprod-body h4 {
    font-size: 12px !important;
  }

  /* ── GALERI ── */
  .galeri-masonry {
    columns: 1 !important;
  }

  /* ── TESTIMONI ── */
  .testi-card {
    min-width: 100% !important;
    padding: 24px 18px !important;
  }
  .testi-nav-btn {
    width: 36px !important;
    height: 36px !important;
  }

  /* ── ARTIKEL ── */
  .artikel-grid {
    grid-template-columns: 1fr !important;
  }
  .artikel-card {
    min-width: 85% !important;
  }

  /* ── FAQ ── */
  .faq-q {
    font-size: 14px !important;
    padding: 16px 40px 16px 16px !important;
  }
  .faq-a {
    padding: 0 16px 16px !important;
    font-size: 13.5px !important;
  }

  /* ── KONTAK ── */
  .kontak {
    padding: 64px 0 !important;
  }
  .kontak-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .kontak-form {
    padding: 24px 16px !important;
  }
  .kontak-info-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .sosmed-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }
  .kinfo-item {
    gap: 12px !important;
  }
  .kinfo-icon {
    width: 40px !important;
    height: 40px !important;
    flex-shrink: 0 !important;
  }
  .maps-iframe {
    height: 240px !important;
  }

  /* ── FOOTER ── */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .footer-brand {
    max-width: 100% !important;
  }
  .footer-bottom .container {
    flex-direction: column !important;
    gap: 6px !important;
    text-align: center !important;
  }
  .footer-bottom p {
    font-size: 12px !important;
  }
  .footer-social-list {
    gap: 8px !important;
  }

  /* ── WA FLOAT & BACK TO TOP ── */
  .wa-float {
    width: 50px !important;
    height: 50px !important;
    bottom: 16px !important;
    right: 16px !important;
  }
  .wa-float svg {
    width: 24px !important;
    height: 24px !important;
  }
  .back-to-top {
    width: 40px !important;
    height: 40px !important;
    bottom: 76px !important;
    right: 16px !important;
  }

  /* ── SECTION COMMON ── */
  section {
    padding: 52px 0 !important;
  }
  .container {
    width: 92% !important;
  }
  .section-title {
    font-size: 1.75rem !important;
  }
  .section-sub {
    font-size: 13.5px !important;
  }
  .section-header {
    margin-bottom: 28px !important;
  }

  .section-title {
    font-size: clamp(1.6rem, 6.5vw, 2rem) !important;
    line-height: 1.25 !important;
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
  }

  .section-title em {
    display: inline !important;
  }

  .section-sub,
  .section-body {
    font-size: 13.5px !important;
    line-height: 1.65 !important;
  }

  /* Pastikan container tidak overflow horizontal */
  .container {
    overflow-x: hidden !important;
  }

  .kontak-grid {
    gap: 20px !important;
  }
  .kontak-form {
    padding: 20px 14px !important;
  }
  .kinfo-value {
    font-size: 12px !important;
  }
  .tentang-badge-float {
    max-width: 160px !important;
    padding: 14px 16px !important;
  }

  .kinfo-item a,
  .kinfo-item p,
  .kinfo-value {
    font-size: 12px !important;
  }

  .sosmed-btn {
    padding: 8px 12px !important;
    font-size: 12px !important;
    max-width: calc(50% - 4px) !important;
  }

  .kinfo-item > div a,
  .kinfo-item > div p {
    font-size: 12px !important;
  }
  .maps-frame iframe,
  .maps-iframe {
    height: 180px !important;
  }
  .kontak-form {
    padding: 20px 12px !important;
  }

  .footer-grid {
    /* Brand full width baris 1, lalu 2 kolom untuk nav+marketplace, ikuti kami full width */
    grid-template-columns: 1fr 1fr !important;
    gap: 24px 20px !important;
  }

  /* footer-brand: span 2 kolom penuh di baris pertama */
  .footer-brand {
    grid-column: 1 / -1 !important;
    max-width: 100% !important;
  }

  /* Ikuti Kami (kolom ke-4): span 2 kolom penuh di baris terakhir */
  .footer-col:last-child {
    grid-column: 1 / -1 !important;
  }

  /* Navigasi & Marketplace: masing-masing 1 kolom, berdampingan */
  .footer-col:not(:last-child) {
    grid-column: auto !important;
  }

  .footer-col h5 {
    font-size: 10px !important;
    margin-bottom: 14px !important;
  }

  .footer-col a {
    font-size: 12.5px !important;
  }

  .tentang-badge-float {
    margin-top: 220px !important;
    max-width: 160px !important;
    padding: 12px 16px !important;
  }
  .timg-1 {
    height: 200px !important;
  }
  .tentang-badge-float {
    margin-top: 210px !important;
  }
  .sertif-trust-strip {
    grid-template-columns: 1fr !important;
  }
  .sertif-trust-item {
    align-items: center !important;
  }
}

@media (max-width: 380px) {
  .hero-title {
    font-size: 1.8rem;
  }
  .katalog-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .kprod-body {
    padding: 10px 10px 12px;
  }
  .kprod-body h4 {
    font-size: 11.5px;
  }
  .nav-container {
    width: 95%;
  }
}

/* ================================================================
   PATCH — Perbaikan Tampilan (generated fix)
   ================================================================ */

/* 1. KATALOG CARD — h4 diperbesar agar nama produk terbaca */
.kprod-body h4 {
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
  letter-spacing: -0.01em !important;
  color: var(--white) !important;
  margin-bottom: 4px !important;
}

/* 2. KATALOG CARD — body padding lebih kompak */
.kprod-body {
  padding: 14px 16px 18px !important;
}

/* 3. KATALOG CARD — harga sejajar ukuran dengan h4 */
.kprod-price {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: var(--gold-light) !important;
}

/* 4. KATALOG CARD — kategori label */
.kprod-cat {
  font-size: 8.5px !important;
  letter-spacing: 2px !important;
  margin-bottom: 5px !important;
}

/* 7. TESTIMONI card — padding lebih nyaman */
.testi-card {
  padding: 28px 24px !important;
}

/* 8. ARTIKEL SLIDER scroll hint — sembunyikan di desktop */
.artikel-slider-wrap::after {
  display: none !important;
}
@media (max-width: 768px) {
  .artikel-slider-wrap::after {
    display: block !important;
    content: "← Geser untuk melihat →" !important;
    text-align: center !important;
    font-size: 11px !important;
    color: var(--text-muted) !important;
    margin-top: 10px !important;
    letter-spacing: 0.06em !important;
    opacity: 0.65 !important;
  }
}

/* 9. LOGO SUB ARABIC — konsisten di semua header overlay */
.nav-logo .logo-sub,
.logo-en .logo-sub {
  display: none !important;
}
/* Tapi tetap tampil di apage & ppage header */
.apage-logo .logo-sub,
.ppage-logo .logo-sub {
  display: block !important;
}

/* 10. KATALOG grid — pastikan hover tidak clipping badge */
.kprod-card {
  overflow: visible !important;
}
.kprod-img {
  overflow: hidden !important;
  border-radius: inherit !important;
}

/* 11. HARGA — konsistensi ukuran di produk overlay */
.pprod-price {
  font-size: 1.65rem !important;
  letter-spacing: -0.02em !important;
}

/* 12. MOBILE 480px — katalog grid tetap 2 kolom, teks tidak overflow */
@media (max-width: 480px) {
  .kprod-body h4 {
    font-size: 12px !important;
  }
  .katalog-grid {
    gap: 10px !important;
  }
  .kprod-body {
    padding: 10px 12px 14px !important;
  }
}

/* 14. SECTION EYEBROW di katalog — pastikan warna terbaca di background gelap */
.katalog .section-eyebrow::after,
.testimoni .section-eyebrow::after {
  background: var(--gold-light) !important;
}

/* 15. ARTIKEL CARD — border radius konsisten */
.artikel-card {
  border-radius: var(--radius) !important;
  overflow: hidden !important;
}

/* 16. FAQ RESELLER item max-height lebih besar agar konten tidak terpotong */
.faq-item--reseller.open .faq-a {
  max-height: 600px !important;
}

/* 17. BACK TO TOP — posisi sedikit lebih ke kiri agar tidak nabrak WA button */
.back-to-top {
  right: 26px !important;
  bottom: 96px !important;
}

/* 18. HERO TITLE — pastikan em/italic terbaca di semua screen */
.hero-title-em {
  display: inline !important;
}

/* 19. PRODUK CARD (section hidden) — pastikan tidak ada ruang kosong */
.produk[style*="display: none"],
.produk[style*="display:none"] {
  height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
}

/* 20. SERTIF main card — nomor sertifikat bisa wrap di mobile */
.sertif-nomor strong {
  word-break: break-all !important;
  font-size: 12.5px !important;
}

/* ═══════════════════════════════════════
   PRODUK PAGE — RELATED PRODUCTS
═══════════════════════════════════════ */
.pprod-related {
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  padding: 36px 32px 40px;
}

@media (max-width: 768px) {
  .pprod-related {
    padding: 28px 16px 32px;
  }
}

.pprel-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pprel-title::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 22px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}

.pprel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 900px) {
  .pprel-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .pprel-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

.pprel-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.22s var(--ease),
    border-color 0.22s,
    box-shadow 0.22s;
}

.pprel-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 76, 0.45);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.pprel-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.pprel-img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: rgba(27, 67, 50, 0.6);
}

.pprel-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.pprel-card:hover .pprel-img-wrap img {
  transform: scale(1.06);
}

.pprel-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--gold);
  color: var(--dark);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
}

.pprel-info {
  padding: 12px 14px 14px;
}

.pprel-cat {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--gold);
  margin-bottom: 4px;
}

.pprel-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pprel-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.pprel-cta {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}

.pprel-card:hover .pprel-cta {
  color: var(--gold);
}

/* ═══════════════════════════════════════
   NAVBAR SEARCH — FULLBAR OVERLAY
═══════════════════════════════════════ */

/* Nav right-side actions group */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   FIX BLOCK v4 — 4 Perbaikan UI
   1. Font nama produk di grid lebih besar
   2. Teks saran produk terbaca (kontras)
   3. Navbar premium redesign
   4. Scroll overlap hero → section berikutnya
═══════════════════════════════════════════════════════════ */

/* ──────────────────────────────────────
   1. FONT NAMA PRODUK DI KATALOG GRID
   Ukuran lebih besar dan terbaca jelas
──────────────────────────────────────── */
.kprod-body h4 {
  font-family: var(--font-display) !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  letter-spacing: -0.01em !important;
  color: var(--white) !important;
  margin-bottom: 6px !important;
}
.kprod-cat {
  font-size: 9.5px !important;
  letter-spacing: 2.5px !important;
  margin-bottom: 6px !important;
}
.kprod-price {
  font-size: 14px !important;
  font-weight: 700 !important;
}
.kprod-body {
  padding: 16px 18px 20px !important;
}

@media (max-width: 900px) {
  .kprod-body h4 {
    font-size: 16px !important;
  }
}
@media (max-width: 600px) {
  .kprod-body h4 {
    font-size: 14px !important;
  }
  .kprod-body {
    padding: 12px 13px 15px !important;
  }
}
@media (max-width: 480px) {
  .kprod-body h4 {
    font-size: 13px !important;
  }
}

/* ──────────────────────────────────────
   2. SARAN / RELATED PRODUK — TEXT CONTRAST FIX
   Teks di pprel-card tidak nyaru background
──────────────────────────────────────── */

/* Background base produk page adalah #f5f1e8 (cream terang)
   Bagian related products memakai dark background — perkuat kontras */
.pprod-related {
  background: linear-gradient(135deg, #0f2d1e 0%, #1b4332 100%) !important;
  border-top: 1px solid rgba(201, 168, 76, 0.25) !important;
  padding: 40px 32px 48px !important;
}

.pprel-title {
  color: #fff !important;
  font-size: 22px !important;
}

.pprel-card {
  background: rgba(255, 255, 255, 0.07) !important;
  border: 1px solid rgba(201, 168, 76, 0.2) !important;
}
.pprel-card:hover {
  background: rgba(255, 255, 255, 0.13) !important;
  border-color: rgba(201, 168, 76, 0.5) !important;
}

/* Nama produk di kartu saran — putih tegas */
.pprel-name {
  font-family: var(--font-display) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  line-height: 1.4 !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4) !important;
}

/* Kategori */
.pprel-cat {
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  color: var(--gold-light) !important;
  margin-bottom: 5px !important;
}

/* Harga */
.pprel-price {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: var(--gold-light) !important;
}

/* CTA lihat produk */
.pprel-cta {
  font-size: 12px !important;
  color: rgba(255, 255, 255, 0.65) !important;
  font-weight: 600 !important;
}
.pprel-card:hover .pprel-cta {
  color: var(--gold-light) !important;
}

/* ══════════════════════════════════════════════════════════
   STACK GROUP OVERLAP
   .stack-group = wrapper tanpa overflow:hidden
   Section pertama di dalamnya = sticky (freeze)
   Section/footer berikutnya = naik menimpa dari bawah
══════════════════════════════════════════════════════════ */

.stack-group {
  position: relative;
  /* TIDAK ada overflow:hidden — wajib agar sticky bekerja */
}

/* Section PERTAMA di tiap group = sticky (freeze saat ditimpa) */
.stack-group > section:first-child {
  position: sticky !important;
  top: 0 !important;
  z-index: 1 !important;
}

/* Section/footer BERIKUTNYA = naik menimpa, z-index lebih tinggi */
.stack-group > section:not(:first-child),
.stack-group > footer {
  position: relative !important;
  z-index: 2 !important;
  border-radius: 0 !important;
  overflow: hidden !important;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.18) !important;
  margin-top: -1px !important; /* cegah gap 1px antara section */
}

/* Footer khusus — flat top */
.stack-group > footer {
  border-radius: 0 !important;
  overflow: hidden !important;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.18) !important;
}

/* ── STACK GROUP KONTAK: Contact sticky (menyingkap footer di bawah) ── */
/*
   Konsep: Footer "duduk" diam di bawah sebagai layer tetap.
   Section kontak bersifat sticky — saat scroll ke bawah, kontak
   bergerak naik dan menyibak/mengungkap footer yang ada di belakangnya.
*/
.stack-group-kontak {
  position: relative;
}

/* Footer: posisi sticky di bawah, z-index rendah — diam sebagai latar */
.stack-group-kontak > footer {
  position: sticky !important;
  bottom: 0 !important;
  z-index: 1 !important;
  border-radius: 0 !important;
  overflow: hidden !important;
  box-shadow: none !important;
  margin-top: 0 !important;
}

/* Section kontak: di atas footer, z-index tinggi, bergerak saat scroll */
.stack-group-kontak > .kontak {
  position: relative !important;
  z-index: 2 !important;
  border-radius: 0 !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18) !important;
  margin-bottom: 0 !important;
}

/* ══════════════════════════════════════════════════════════════
   PRODUK OVERLAY — UTILITY OVERRIDES
   ══════════════════════════════════════════════════════════════ */

/* Sembunyikan scroll progress bar & navbar saat overlay terbuka */
body.produk-overlay-open #scrollProgressBar,
body.produk-overlay-open .navbar {
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 0.2s !important;
}
body.produk-overlay-open .wa-float,
body.produk-overlay-open .back-to-top {
  opacity: 0 !important;
  pointer-events: none !important;
}

/* ── MOBILE responsive untuk overlay ── */
@media (max-width: 900px) {
  .pprod-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .pprod-col-left {
    position: relative;
    top: 0;
    max-width: 400px;
    margin: 0 auto;
  }
  .ppage-content {
    padding: 1.5rem 1.25rem 4rem;
  }
}

@media (max-width: 480px) {
  .pprod-name {
    font-size: 1.5rem;
  }
  .ppage-header {
    padding: 0 1rem;
  }
  .ppage-content {
    padding: 1.25rem 1rem 3.5rem;
  }
  .pprod-trust {
    flex-wrap: wrap;
    gap: 0.4rem;
  }
  .pprod-trust-divider {
    display: none;
  }
  .pprod-cta-row {
    flex-direction: column;
  }
}

/* ════════════════════════════════════════════════════════
   SCROLL PARALLAX EFFECTS
════════════════════════════════════════════════════════ */

/* Parallax layers */
.parallax-layer {
  will-change: transform;
  transition: transform 0.1s linear;
}

/* Hero orbs parallax */
.hero-orb {
  will-change: transform;
}

/* Section reveal with parallax drift */
.parallax-up {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.parallax-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Floating parallax elements that drift on scroll */
.parallax-float {
  will-change: transform;
}

/* Parallax tilt cards */
.parallax-tilt {
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Section background depth shift */
.parallax-bg {
  will-change: transform;
  transition: transform 0.05s linear;
}

/* Subtle text reveal with stagger on scroll */
.parallax-text-reveal {
  overflow: hidden;
}
.parallax-text-reveal span {
  display: block;
  transform: translateY(100%);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.parallax-text-reveal.in-view span {
  transform: translateY(0);
}

/* Milestone & stat number count-up pulse */
.parallax-pulse {
  animation: none;
}
.parallax-pulse.in-view {
  animation: parallaxPulse 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes parallaxPulse {
  0% {
    transform: scale(0.95);
    opacity: 0.6;
  }
  60% {
    transform: scale(1.04);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Section eyebrow slide-in */
.parallax-eyebrow {
  opacity: 0;
  transform: translateX(-20px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.parallax-eyebrow.in-view {
  opacity: 1;
  transform: translateX(0);
}

/* Reduce motion support */
@media (prefers-reduced-motion: reduce) {
  .parallax-layer,
  .parallax-float,
  .parallax-bg,
  .parallax-up,
  .parallax-text-reveal span,
  .parallax-eyebrow {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* ── ARTIKEL PAGE: Responsive 2-col → 1-col on mobile ── */
@media (max-width: 900px) {
  .apage-two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .apage-sidebar {
    position: static;
  }
  .apage-related-grid {
    flex-direction: row;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
  }
  .arelated-card {
    min-width: 240px;
    flex-shrink: 0;
  }
  .apage-hero {
    height: 280px;
  }
  .apage-hero-info {
    bottom: 24px;
    left: 24px;
    right: 24px;
  }
  .apage-content {
    padding: 0 20px 60px;
  }
}

@media (max-width: 600px) {
  .apage-header {
    padding: 0 16px;
    height: 60px;
  }
  .apage-logo .logo-sub {
    display: none;
  }
  .apage-hero {
    height: 220px;
  }
  .apage-hero-info h1 {
    font-size: 20px !important;
  }
  .apage-two-col {
    margin-top: 32px;
    gap: 28px;
  }
  .apage-sidebar-promo {
    display: none;
  }
  .apage-share {
    gap: 8px;
  }
  .share-btn {
    padding: 8px 12px;
    font-size: 12px;
  }
}

/* ══════════════════════════════════════════════════════════
   ✦ PATCH: ARTIKEL — LEBIH HUMAN & ENAK DIBACA
   ══════════════════════════════════════════════════════════ */

/* Background artikel — cream hangat */
.artikel-page {
  background: #f8f5ef !important;
}

/* Content wrapper artikel */
.apage-content {
  padding: 0 48px 100px !important;
  max-width: 1200px !important;
}

/* Hero artikel */
.apage-hero {
  height: 360px !important;
}

/* Body teks — readable font size + comfortable line-height */
.apage-body {
  font-size: 17px !important;
  line-height: 1.88 !important;
  color: #263830 !important;
  max-width: none !important;
}

/* Paragraf */
.apage-body p {
  margin-bottom: 22px !important;
  color: #304039 !important;
  font-weight: 400 !important;
  max-width: 70ch !important;
}

/* Heading h3 — clear section breaks */
.apage-body h3 {
  font-family: var(--font-display) !important;
  font-size: clamp(19px, 2.4vw, 25px) !important;
  font-weight: 700 !important;
  color: #1b4332 !important;
  margin: 44px 0 14px !important;
  line-height: 1.3 !important;
  letter-spacing: -0.015em !important;
  padding-left: 0 !important;
}

/* Dekoratif sebelum heading */
.apage-body h3::before {
  content: "" !important;
  display: block !important;
  width: 36px !important;
  height: 3px !important;
  background: linear-gradient(90deg, var(--gold), var(--gold-light)) !important;
  margin-bottom: 14px !important;
  border-radius: 2px !important;
  position: static !important;
  opacity: 1 !important;
}

/* Strong/bold */
.apage-body strong {
  color: #1a3028 !important;
  font-weight: 700 !important;
}

/* br spacing */
.apage-body br {
  display: block;
  content: "";
  margin-top: 6px;
}

/* First paragraph intro style */
.apage-body > p:first-of-type {
  font-size: 18px !important;
  color: #263830 !important;
  line-height: 1.9 !important;
}

/* CTA Box */
.apage-cta-box {
  margin-top: 44px !important;
  padding: 36px 40px !important;
  border-radius: 18px !important;
  background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 100%) !important;
  box-shadow: 0 16px 48px rgba(27, 67, 50, 0.22) !important;
}
.apage-cta-box p {
  font-size: 16px !important;
  font-weight: 400 !important;
  margin-bottom: 20px !important;
  color: rgba(255, 255, 255, 0.85) !important;
  line-height: 1.65 !important;
  max-width: none !important;
}

/* Sidebar */
.apage-sidebar {
  gap: 24px !important;
}
.apage-related {
  box-shadow: 0 2px 12px rgba(27, 67, 50, 0.06) !important;
}

/* Mobile artikel readable */
@media (max-width: 900px) {
  .apage-content {
    padding: 0 24px 72px !important;
  }
  .apage-hero {
    height: 280px !important;
  }
  .apage-body {
    font-size: 16.5px !important;
  }
}

@media (max-width: 600px) {
  .apage-content {
    padding: 0 18px 60px !important;
  }
  .apage-body {
    font-size: 16px !important;
    line-height: 1.82 !important;
  }
  .apage-hero {
    height: 210px !important;
  }
  .apage-cta-box {
    padding: 24px 22px !important;
  }
  .apage-body p {
    max-width: none !important;
  }
}
#loading-screen {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #f5f0e8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition:
    opacity 0.8s ease,
    visibility 0.8s ease;
}

#loading-screen.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Background texture — garis halus manga */
#loading-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 28px,
    rgba(0, 0, 0, 0.03) 28px,
    rgba(0, 0, 0, 0.03) 29px
  );
  pointer-events: none;
}

/* Vignette pinggir */
#loading-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    transparent 50%,
    rgba(0, 0, 0, 0.12) 100%
  );
  pointer-events: none;
}

/* ── Logo / Brand di tengah ── */
.loading-brand {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 32px;
  animation: brandFadeIn 1s ease forwards;
  opacity: 0;
}

.loading-brand .brand-name {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: clamp(1.6rem, 5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #1b4332;
  text-transform: uppercase;
  display: block;
  line-height: 1;
}

.loading-brand .brand-sub {
  font-family: "Georgia", serif;
  font-size: clamp(0.75rem, 2vw, 1rem);
  color: #2d6a4f;
  letter-spacing: 0.3em;
  display: block;
  margin-top: 6px;
  font-style: italic;
}

.loading-brand .brand-arabic {
  font-size: clamp(1rem, 3vw, 1.4rem);
  color: #40916c;
  display: block;
  margin-top: 8px;
  letter-spacing: 0.05em;
}

/* Garis dekoratif di bawah brand */
.loading-brand .brand-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #1b4332, transparent);
  margin: 14px auto 0;
}

/* ── Loading bar ── */
.loading-bar-wrap {
  position: relative;
  z-index: 2;
  width: min(220px, 60vw);
  height: 3px;
  background: rgba(27, 67, 50, 0.15);
  border-radius: 999px;
  overflow: hidden;
  animation: brandFadeIn 1s ease 0.3s forwards;
  opacity: 0;
}

.loading-bar-fill {
  height: 100%;
  background: #1b4332;
  border-radius: 999px;
  width: 0%;
  animation: fillBar 2.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
}

/* ── Kontainer daun ── */
#leaves-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

/* ── Tiap elemen daun ── */
.leaf {
  position: absolute;
  top: -160px;
  width: var(--leaf-size, 80px);
  height: auto;
  opacity: 0;
  filter: contrast(1.1) brightness(0.92);
  /* Setiap daun kombinasi 3 animasi: jatuh + goyang + rotate */
  animation:
    leafFall var(--fall-dur, 4s) var(--fall-delay, 0s)
      cubic-bezier(0.25, 0.1, 0.25, 1) forwards,
    leafSway var(--sway-dur, 2.2s) var(--fall-delay, 0s) ease-in-out infinite,
    leafRotate var(--rot-dur, 3s) var(--fall-delay, 0s) ease-in-out infinite;
}

/* ── Keyframes ── */

@keyframes brandFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fillBar {
  0% {
    width: 0%;
  }
  40% {
    width: 45%;
  }
  70% {
    width: 75%;
  }
  90% {
    width: 92%;
  }
  100% {
    width: 100%;
  }
}

/* Jatuh dari atas ke bawah, dengan sedikit drift horizontal */
@keyframes leafFall {
  0% {
    top: -160px;
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    top: 110vh;
    opacity: 0.4;
  }
}

/* Goyang kiri-kanan seperti diterpa angin */
@keyframes leafSway {
  0% {
    transform: translateX(0px) skewX(0deg);
  }
  20% {
    transform: translateX(var(--sway-amp-pos, 28px)) skewX(3deg);
  }
  40% {
    transform: translateX(0px) skewX(0deg);
  }
  60% {
    transform: translateX(var(--sway-amp-neg, -22px)) skewX(-3deg);
  }
  80% {
    transform: translateX(calc(var(--sway-amp-pos, 28px) * 0.5)) skewX(1.5deg);
  }
  100% {
    transform: translateX(0px) skewX(0deg);
  }
}

/* Rotasi perlahan mengikuti angin */
@keyframes leafRotate {
  0% {
    rotate: var(--rot-start, -8deg);
  }
  50% {
    rotate: var(--rot-mid, 12deg);
  }
  100% {
    rotate: var(--rot-start, -8deg);
  }
}

/* ══════════════════════════════════════════════════════════════
   ✦ OVERLAY REDESIGN PATCH — Al-Waliy v3
   Artikel + Produk: cleaner, editorial, non-AI feel
   Mobile: ringan, breathing room, legibility-first
   ══════════════════════════════════════════════════════════════ */

/* ─── PRODUK PAGE OVERLAY — Redesign ──────────────────────── */

/* Background: warm cream, bukan putih flat */
.produk-page {
  background: #f6f2eb !important;
}

/* Header overlay produk: bersih, tidak padat */
.ppage-header {
  background: rgba(246, 242, 235, 0.96) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border-bottom: 1px solid rgba(201, 168, 76, 0.12) !important;
  box-shadow: 0 1px 12px rgba(27, 67, 50, 0.06) !important;
}

/* Content area produk: padding lebih manusiawi */
.ppage-content {
  padding: 2.5rem 0 6rem !important;
  max-width: 1100px !important;
  margin: 0 auto !important;
}

/* Grid produk: padding horizontal jelas */
.pprod-grid {
  padding: 0 2rem !important;
}

/* Gambar produk: lebih bersih, tidak flat */
.pprod-img-wrap {
  background: linear-gradient(145deg, #f0ece3 0%, #e8e2d7 100%) !important;
  border-radius: 20px !important;
  box-shadow:
    0 4px 24px rgba(27, 67, 50, 0.08),
    0 1px 4px rgba(27, 67, 50, 0.04) !important;
  border: 1px solid rgba(201, 168, 76, 0.1) !important;
}

/* Nama produk: lebih natural, bukan heading raksasa */
.pprod-name {
  font-family: var(--font-display) !important;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem) !important;
  font-weight: 700 !important;
  color: #0d2318 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.15 !important;
}

/* Underline nama: tipis, elegan */
.pprod-name::after {
  content: "" !important;
  display: block !important;
  width: 28px !important;
  height: 1.5px !important;
  background: var(--gold) !important;
  border-radius: 2px !important;
  margin-top: 0.55rem !important;
  margin-bottom: 0.85rem !important;
  opacity: 0.7 !important;
}

/* Deskripsi produk: lebih editorial, bukan "box AI" */
.pprod-desc {
  font-size: 0.95rem !important;
  line-height: 1.85 !important;
  color: #3a4a3f !important;
  padding: 1.25rem 1.5rem !important;
  background: rgba(255, 255, 255, 0.7) !important;
  border-left: 2px solid rgba(201, 168, 76, 0.5) !important;
  border-radius: 0 12px 12px 0 !important;
  border-top: none !important;
  border-right: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
  backdrop-filter: blur(8px) !important;
  margin-bottom: 1.5rem !important;
}

/* Info blocks: lebih ringan, lebih breathable */
.pprod-block {
  background: rgba(255, 255, 255, 0.65) !important;
  border: 1px solid rgba(27, 67, 50, 0.07) !important;
  border-radius: 14px !important;
  backdrop-filter: blur(6px) !important;
  transition:
    border-color 0.2s,
    box-shadow 0.2s !important;
}
.pprod-block:hover {
  border-color: rgba(201, 168, 76, 0.25) !important;
  box-shadow: 0 4px 20px rgba(27, 67, 50, 0.07) !important;
  transform: none !important;
}

.pprod-block-title {
  background: transparent !important;
  border-bottom: 1px solid rgba(27, 67, 50, 0.06) !important;
  padding: 0.85rem 1.2rem !important;
  color: #1b4332 !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.12em !important;
}

.pprod-block-body {
  padding: 1rem 1.2rem 1.2rem !important;
  font-size: 0.91rem !important;
  line-height: 1.8 !important;
  color: #3a4a3f !important;
}

/* Checklist item: lebih subtle */
.pprod-block-body ul li::before {
  content: "✓" !important;
  color: #2d6a4f !important;
  background: rgba(45, 106, 79, 0.08) !important;
  width: 16px !important;
  height: 16px !important;
  font-size: 0.68rem !important;
}

/* Price row: lebih premium, tidak terlalu gelap */
.pprod-price-row {
  background: linear-gradient(135deg, #0f2a1e 0%, #1b4332 100%) !important;
  border-radius: 14px !important;
  padding: 1.1rem 1.4rem !important;
  border: 1px solid rgba(201, 168, 76, 0.15) !important;
}

/* CTA Buttons: lebih solid, lebih percaya diri */
.pprod-cta-wa {
  background: linear-gradient(135deg, #25d366 0%, #20bc5c 100%) !important;
  border-radius: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em !important;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.25) !important;
  transition: all 0.2s ease !important;
}
.pprod-cta-wa:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35) !important;
  background: linear-gradient(135deg, #28e870 0%, #22c864 100%) !important;
}

.pprod-cta-shopee {
  background: linear-gradient(135deg, #f05c38 0%, #e0401e 100%) !important;
  border-radius: 12px !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 16px rgba(224, 64, 30, 0.22) !important;
  transition: all 0.2s ease !important;
}
.pprod-cta-shopee:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(224, 64, 30, 0.32) !important;
}

/* Trust strip: bersih, tidak terlalu ramai */
.pprod-trust {
  background: rgba(255, 255, 255, 0.8) !important;
  border: 1px solid rgba(27, 67, 50, 0.07) !important;
  border-radius: 12px !important;
  backdrop-filter: blur(6px) !important;
  padding: 0.8rem 1rem !important;
}

/* ─── ARTIKEL PAGE OVERLAY — Editorial Redesign ───────────── */

/* Background: warm paper feel */
.artikel-page {
  background: #f8f5ef !important;
}

/* Header artikel */
.apage-header {
  background: rgba(248, 245, 239, 0.95) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border-bottom: 1px solid rgba(27, 67, 50, 0.08) !important;
  box-shadow: 0 1px 8px rgba(27, 67, 50, 0.05) !important;
}

/* Hero artikel: tinggi natural, tidak terlalu dramatic */
.apage-hero {
  height: 360px !important;
  border-radius: 0 !important;
}

/* Hero gradient: lebih lembut, tidak hitam pekat */
.apage-hero-overlay {
  background: linear-gradient(
    to top,
    rgba(10, 28, 19, 0.88) 0%,
    rgba(10, 28, 19, 0.42) 42%,
    rgba(10, 28, 19, 0.08) 100%
  ) !important;
}

/* Hero info: more breathing room */
.apage-hero-info {
  padding: 2rem 2.5rem !important;
  bottom: 0 !important;
}

/* Judul artikel di hero: elegan, tidak gradient text */
.apage-hero-info h1 {
  font-family: var(--font-display) !important;
  font-size: clamp(1.4rem, 3vw, 2.1rem) !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
  color: #fff !important;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35) !important;
  letter-spacing: -0.01em !important;
  /* Reset gradient text dari patch sebelumnya */
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: #fff !important;
  background-clip: unset !important;
}

/* Tag artikel */
.apage-tag {
  display: inline-block !important;
  font-size: 0.68rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: var(--gold-light) !important;
  background: rgba(201, 168, 76, 0.18) !important;
  border: 1px solid rgba(201, 168, 76, 0.35) !important;
  padding: 0.22rem 0.7rem !important;
  border-radius: 4px !important;
  margin-bottom: 0.65rem !important;
  backdrop-filter: blur(8px) !important;
}

/* Body artikel: typography yang manusiawi */
.apage-body {
  max-width: 680px !important;
  margin: 0 auto !important;
  padding: 2.5rem 1.5rem 1rem !important;
  font-size: 16px !important;
  line-height: 1.85 !important;
  color: #2d3d32 !important;
}

/* Paragraf artikel */
.apage-body p {
  font-size: 16px !important;
  line-height: 1.85 !important;
  color: #374840 !important;
  margin-bottom: 1.4rem !important;
  font-weight: 400 !important;
}

/* First paragraph: sedikit lebih besar */
.apage-body > p:first-of-type {
  font-size: 17px !important;
  line-height: 1.9 !important;
  color: #2a3d30 !important;
}

/* H3 heading: tidak terlalu besar, tidak terlalu mencolok */
.apage-body h3 {
  font-family: var(--font-display) !important;
  font-size: clamp(1.1rem, 2vw, 1.35rem) !important;
  font-weight: 700 !important;
  color: #1b4332 !important;
  margin: 2.2rem 0 0.75rem !important;
  padding-left: 1rem !important;
  border-left: 2px solid rgba(201, 168, 76, 0.55) !important;
  letter-spacing: -0.01em !important;
  line-height: 1.3 !important;
}
.apage-body h3::before {
  display: none !important;
}

/* Strong: tidak terlalu mencolok */
.apage-body strong {
  color: #1b4332 !important;
  font-weight: 600 !important;
}

/* CTA Box artikel: lebih kalem, tetap jelas */
.apage-cta-box {
  margin: 2.5rem 0 1rem !important;
  padding: 2rem 2rem !important;
  border-radius: 16px !important;
  background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 100%) !important;
  box-shadow: 0 8px 32px rgba(27, 67, 50, 0.18) !important;
  border: 1px solid rgba(201, 168, 76, 0.12) !important;
}

.apage-cta-box p {
  font-size: 15px !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.88) !important;
  margin-bottom: 1rem !important;
  line-height: 1.65 !important;
  text-shadow: none !important;
}

/* Related articles section */
.apage-related {
  max-width: 880px !important;
  margin: 1.5rem auto !important;
  padding: 0 1.5rem 4rem !important;
}

.apage-related-title {
  font-family: var(--font-display) !important;
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: #1b4332 !important;
  margin-bottom: 1.25rem !important;
  padding-bottom: 0.65rem !important;
  border-bottom: 1px solid rgba(27, 67, 50, 0.1) !important;
}

.arelated-card {
  border-radius: 12px !important;
  border: 1px solid rgba(27, 67, 50, 0.07) !important;
  background: rgba(255, 255, 255, 0.9) !important;
  box-shadow: 0 2px 12px rgba(27, 67, 50, 0.06) !important;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease !important;
  overflow: hidden !important;
}
.arelated-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 10px 32px rgba(27, 67, 50, 0.12) !important;
  border-color: rgba(201, 168, 76, 0.2) !important;
}

/* Reading bar: tipis, elegant */
.apage-reading-bar {
  height: 2px !important;
  background: linear-gradient(
    90deg,
    var(--gold) 0%,
    var(--gold-light) 50%,
    var(--green-light) 100%
  ) !important;
  box-shadow: none !important;
}

/* ─── MOBILE OPTIMIZATIONS — Produk & Artikel ──────────────── */

@media (max-width: 640px) {
  /* Produk page */
  .ppage-content {
    padding: 1.5rem 0 5rem !important;
  }
  .pprod-grid {
    padding: 0 1rem !important;
    gap: 1.5rem !important;
  }
  .pprod-img-wrap {
    border-radius: 14px !important;
    max-width: 100% !important;
  }
  .pprod-name {
    font-size: 1.5rem !important;
  }
  .pprod-desc {
    font-size: 0.9rem !important;
    padding: 1rem 1.1rem !important;
    line-height: 1.8 !important;
  }
  .pprod-block-body {
    font-size: 0.88rem !important;
    padding: 0.85rem 1rem !important;
  }
  .pprod-price-row {
    padding: 0.9rem 1.1rem !important;
  }
  .pprod-price {
    font-size: 1.45rem !important;
  }
  .pprod-cta-row {
    flex-direction: column !important;
    gap: 0.5rem !important;
  }
  .pprod-cta-wa,
  .pprod-cta-shopee {
    flex: unset !important;
    width: 100% !important;
    padding: 0.9rem 1.2rem !important;
    font-size: 0.9rem !important;
  }
  .pprod-trust {
    flex-wrap: wrap !important;
    gap: 0.5rem !important;
    justify-content: flex-start !important;
  }
  .pprod-trust-divider {
    display: none !important;
  }
  .pprod-trust-item {
    font-size: 0.7rem !important;
  }

  /* Artikel page */
  .apage-hero {
    height: 240px !important;
  }
  .apage-hero-info {
    padding: 1.25rem 1.25rem !important;
  }
  .apage-hero-info h1 {
    font-size: 1.2rem !important;
    line-height: 1.3 !important;
  }
  .apage-body {
    padding: 1.5rem 1.1rem 0.5rem !important;
    font-size: 15px !important;
  }
  .apage-body p {
    font-size: 15px !important;
    line-height: 1.8 !important;
    margin-bottom: 1.1rem !important;
  }
  .apage-body > p:first-of-type {
    font-size: 15.5px !important;
  }
  .apage-body h3 {
    font-size: 1.05rem !important;
    margin: 1.8rem 0 0.6rem !important;
    padding-left: 0.8rem !important;
  }
  .apage-cta-box {
    padding: 1.5rem 1.25rem !important;
    border-radius: 12px !important;
  }
  .apage-cta-box p {
    font-size: 14px !important;
  }
  .apage-related {
    padding: 0 1rem 3rem !important;
  }
  .apage-related-title {
    font-size: 1.1rem !important;
  }
}

/* ─── MOBILE GLOBAL — Lightweight Fixes ─────────────────────── */

@media (max-width: 480px) {
  /* Typography scale: tidak terlalu kecil */
  body {
    font-size: 15px !important;
  }

  /* Section padding: tidak terlalu padat */
  section {
    padding: 52px 0 !important;
  }

  /* Katalog cards: 2 kolom tetap, tapi lebih breathing */
  .katalog-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  .kprod-card {
    border-radius: 12px !important;
  }

  /* Katalog card image: aspect ratio tetap */
  .kprod-img-wrap {
    aspect-ratio: 4/3 !important;
  }

  /* Produk section: 2 kolom */
  .produk-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }

  /* Artikel card di section: full width, lebih besar */
  .artikel-card {
    min-width: 86vw !important;
  }

  /* Hero text: tidak terlalu besar */
  .hero-title {
    font-size: clamp(1.9rem, 6.5vw, 2.6rem) !important;
    line-height: 1.2 !important;
  }
  .hero-desc {
    font-size: 14.5px !important;
    line-height: 1.8 !important;
  }

  /* Back to top button: lebih kecil di mobile */
  .back-to-top {
    width: 40px !important;
    height: 40px !important;
    bottom: 72px !important;
    right: 16px !important;
  }

  /* WA float: posisi nyaman */
  .wa-float {
    bottom: 20px !important;
    right: 16px !important;
    width: 52px !important;
    height: 52px !important;
  }

  /* Overlay headers: tidak terlalu tinggi */
  .ppage-header,
  .apage-header {
    height: 58px !important;
    padding: 0 14px !important;
  }

  /* Logo di overlay: sederhanakan */
  .ppage-logo .logo-sub,
  .apage-logo .logo-sub {
    display: none !important;
  }
  .ppage-logo .logo-wordmark,
  .apage-logo .logo-wordmark {
    font-size: 11px !important;
    letter-spacing: 1.5px !important;
  }
}

/* ══════════════════════════════════════════════════════════════
   ✦ ARTIKEL SECTION + OVERLAY — COMPREHENSIVE FIX
   Mengatasi konflik patch sebelumnya, menetapkan satu sumber
   kebenaran untuk typography, spacing, dan overlay layout
   ══════════════════════════════════════════════════════════════ */

/* ─── 1. SECTION ARTIKEL (homepage) ────────────────────────── */

.artikel {
  padding: 100px 0 !important;
  background: #fff !important;
  position: relative;
  overflow: hidden;
}

.artikel .section-header {
  margin-bottom: 52px !important;
}

/* Slider wrapper */
/* slider lama dihapus — diganti grid system baru */

/* Gambar card */
.acard-img {
  height: 210px !important;
  position: relative !important;
  overflow: hidden !important;
}

.acard-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.5s ease !important;
  display: block !important;
}

.artikel-card:hover .acard-img img {
  transform: scale(1.06) !important;
}

/* Tag badge di atas gambar */
.acard-img .acard-tag {
  position: absolute !important;
  top: 14px !important;
  left: 14px !important;
  font-size: 9px !important;
  font-weight: 800 !important;
  letter-spacing: 1.8px !important;
  text-transform: uppercase !important;
  color: var(--gold-light) !important;
  background: rgba(13, 35, 24, 0.72) !important;
  border: 1px solid rgba(201, 168, 76, 0.3) !important;
  padding: 4px 10px !important;
  border-radius: 20px !important;
  backdrop-filter: blur(6px) !important;
}

/* Body teks card */
.acard-body {
  padding: 22px 24px 24px !important;
}

.acard-date {
  font-size: 11px !important;
  color: var(--text-muted) !important;
  letter-spacing: 0.5px !important;
  font-weight: 500 !important;
  display: block !important;
  margin-bottom: 10px !important;
}

.acard-body h3 {
  font-family: var(--font-display) !important;
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  color: var(--green-dark) !important;
  line-height: 1.35 !important;
  margin: 0 0 12px !important;
  letter-spacing: -0.01em !important;
}

.acard-body p {
  font-size: 13.5px !important;
  color: var(--text-muted) !important;
  line-height: 1.7 !important;
  margin-bottom: 16px !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 3 !important;
  line-clamp: 3 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

.acard-link {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-size: 12.5px !important;
  font-weight: 700 !important;
  color: var(--gold) !important;
  letter-spacing: 0.03em !important;
  transition:
    color 0.2s,
    gap 0.2s !important;
}

.artikel-card:hover .acard-link {
  color: var(--green-dark) !important;
  gap: 10px !important;
}

/* nav-btn slider lama dihapus — diganti tombol lihat semua */

/* ─── 2. ARTIKEL PAGE OVERLAY ───────────────────────────────── */

.artikel-page {
  position: fixed !important;
  inset: 0 !important;
  z-index: 2000 !important;
  background: #f6f2ea !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  transform: translateX(100%) !important;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.artikel-page.open {
  transform: translateX(0) !important;
}

/* ── Header overlay ── */
.apage-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 10 !important;
  background: rgba(246, 242, 234, 0.96) !important;
  backdrop-filter: blur(20px) saturate(1.5) !important;
  -webkit-backdrop-filter: blur(20px) saturate(1.5) !important;
  border-bottom: 1px solid rgba(27, 67, 50, 0.09) !important;
  box-shadow: 0 2px 16px rgba(27, 67, 50, 0.06) !important;
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  align-items: center !important;
  padding: 0 2.5rem !important;
  height: 68px !important;
}

.apage-header::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 2px !important;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--gold) 30%,
    var(--gold-light) 50%,
    var(--gold) 70%,
    transparent 100%
  ) !important;
  opacity: 0.65 !important;
}

/* Tombol kembali */
.apage-back {
  justify-self: start !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  background: transparent !important;
  border: 1.5px solid rgba(27, 67, 50, 0.18) !important;
  border-radius: 999px !important;
  color: var(--text-dark) !important;
  font-family: var(--font-body) !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  padding: 0.5rem 1.1rem 0.5rem 0.85rem !important;
  cursor: pointer !important;
  transition: all 0.22s ease !important;
  letter-spacing: 0.02em !important;
}

.apage-back:hover {
  background: var(--green-dark) !important;
  border-color: var(--green-dark) !important;
  color: var(--gold-light) !important;
  transform: translateX(-2px) !important;
}

.apage-back::before {
  display: none !important;
}

.apage-back svg {
  width: 14px !important;
  height: 14px !important;
  stroke: currentColor !important;
  position: relative !important;
  z-index: 1 !important;
}

.apage-back span {
  position: relative !important;
  z-index: 1 !important;
}

/* Logo di tengah header */
.apage-logo {
  justify-self: center !important;
  text-decoration: none !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 2px !important;
}

.apage-logo .logo-wordmark {
  font-family: var(--font-body) !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: var(--dark) !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
}

.apage-logo .logo-wordmark em {
  color: var(--gold) !important;
  font-style: italic !important;
  font-size: 1.1rem !important;
  letter-spacing: 0 !important;
}

.apage-logo .logo-wordmark::before {
  content: "" !important;
  width: 5px !important;
  height: 5px !important;
  border-radius: 50% !important;
  background: var(--gold) !important;
  display: inline-block !important;
  box-shadow: 0 0 6px rgba(201, 168, 76, 0.5) !important;
  flex-shrink: 0 !important;
}

.apage-logo .logo-sub {
  font-family: var(--font-arabic) !important;
  font-size: 0.68rem !important;
  color: rgba(107, 140, 118, 0.65) !important;
  letter-spacing: 0.04em !important;
  display: block !important;
}

/* ── Hero artikel ── */
.apage-hero {
  position: relative !important;
  height: 360px !important;
  overflow: hidden !important;
  border-radius: 0 !important;
  margin: 0 !important;
}

.apage-hero img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  filter: brightness(0.78) saturate(1.05) !important;
  transition: transform 0.7s ease !important;
  display: block !important;
}

.apage-hero:hover img {
  transform: scale(1.03) !important;
}

.apage-hero-overlay {
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(
    to top,
    rgba(8, 22, 14, 0.88) 0%,
    rgba(8, 22, 14, 0.45) 40%,
    rgba(8, 22, 14, 0.1) 100%
  ) !important;
}

.apage-hero-info {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  padding: 2.5rem 3rem !important;
  max-width: 820px !important;
}

.apage-hero-info .acard-tag {
  display: inline-block !important;
  font-size: 9px !important;
  font-weight: 800 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  color: var(--gold-light) !important;
  background: rgba(201, 168, 76, 0.18) !important;
  border: 1px solid rgba(201, 168, 76, 0.35) !important;
  padding: 4px 12px !important;
  border-radius: 4px !important;
  margin-bottom: 12px !important;
}

.apage-hero-info h1 {
  font-family: var(--font-display) !important;
  font-size: clamp(1.5rem, 3.2vw, 2.3rem) !important;
  font-weight: 700 !important;
  line-height: 1.22 !important;
  color: #fff !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3) !important;
  letter-spacing: -0.01em !important;
  margin: 0 0 8px !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: #fff !important;
  background-clip: unset !important;
}

.apage-hero-info .acard-date {
  font-size: 11px !important;
  color: rgba(255, 255, 255, 0.55) !important;
  letter-spacing: 0.06em !important;
  display: block !important;
  margin-bottom: 0 !important;
}

/* ── Content wrapper ── */
.apage-content {
  max-width: 1120px !important;
  margin: 0 auto !important;
  padding: 0 0 80px !important;
}

/* ── Two-column layout ── */
.apage-two-col {
  display: grid !important;
  grid-template-columns: 1fr 300px !important;
  gap: 52px !important;
  margin-top: 0 !important;
  padding: 0 3rem !important;
  align-items: start !important;
}

/* ── Body artikel ── */
.apage-body {
  padding: 2.5rem 0 0 !important;
  font-size: 16px !important;
  line-height: 1.88 !important;
  color: #2e3d33 !important;
  max-width: 100% !important;
  margin: 0 !important;
}

.apage-body p {
  font-size: 16px !important;
  line-height: 1.88 !important;
  color: #374840 !important;
  margin-bottom: 1.4rem !important;
  font-weight: 400 !important;
}

.apage-body > p:first-of-type {
  font-size: 17px !important;
  line-height: 1.92 !important;
  color: #2a3d30 !important;
  font-weight: 400 !important;
}

.apage-body h3 {
  font-family: var(--font-display) !important;
  font-size: clamp(1.1rem, 2vw, 1.35rem) !important;
  font-weight: 700 !important;
  color: #1b4332 !important;
  margin: 2.2rem 0 0.8rem !important;
  line-height: 1.28 !important;
  letter-spacing: -0.01em !important;
  padding-left: 1rem !important;
  border-left: 2.5px solid rgba(201, 168, 76, 0.6) !important;
}

.apage-body h3::before {
  display: none !important;
}

.apage-body strong {
  color: #1b4332 !important;
  font-weight: 600 !important;
}

.apage-body li {
  margin-bottom: 10px !important;
  color: #374840 !important;
  line-height: 1.75 !important;
}

/* ── CTA Box ── */
.apage-cta-box {
  margin-top: 2.5rem !important;
  padding: 2rem 2.2rem !important;
  background: linear-gradient(135deg, #163428 0%, #2d6a4f 100%) !important;
  border-radius: 16px !important;
  text-align: center !important;
  border: 1px solid rgba(201, 168, 76, 0.15) !important;
  box-shadow: 0 10px 36px rgba(27, 67, 50, 0.2) !important;
  position: relative !important;
  overflow: hidden !important;
}

.apage-cta-box::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: radial-gradient(
    ellipse at top right,
    rgba(201, 168, 76, 0.18),
    transparent 60%
  ) !important;
  pointer-events: none !important;
}

.apage-cta-box p {
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 15.5px !important;
  font-weight: 500 !important;
  margin-bottom: 1.2rem !important;
  line-height: 1.6 !important;
  text-shadow: none !important;
  position: relative !important;
  z-index: 1 !important;
}

.apage-cta-box .btn {
  position: relative !important;
  z-index: 1 !important;
  display: inline-flex !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
}

/* ── Share section ── */
.apage-share {
  margin-top: 2.5rem !important;
  padding: 1.5rem 1.6rem !important;
  background: rgba(27, 67, 50, 0.04) !important;
  border-radius: 14px !important;
  border: 1px solid rgba(27, 67, 50, 0.08) !important;
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
}

.apage-share > p {
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 1.2px !important;
  text-transform: uppercase !important;
  color: var(--text-muted) !important;
  margin: 0 6px 0 0 !important;
  width: auto !important;
}

.share-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  padding: 8px 16px !important;
  border-radius: 8px !important;
  font-size: 12.5px !important;
  font-weight: 700 !important;
  transition:
    opacity 0.2s,
    transform 0.2s !important;
  cursor: pointer !important;
}

.share-btn svg {
  width: 14px !important;
  height: 14px !important;
}

.share-btn:hover {
  opacity: 0.88 !important;
  transform: translateY(-1px) !important;
}

/* ── Sidebar ── */
.apage-sidebar {
  position: sticky !important;
  top: 88px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 24px !important;
  padding-top: 2.5rem !important;
}

/* Related articles */
.apage-related {
  background: #fff !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  border: 1px solid rgba(27, 67, 50, 0.08) !important;
  box-shadow: 0 3px 16px rgba(27, 67, 50, 0.07) !important;
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
}

.apage-related-title {
  font-family: var(--font-body) !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  color: #fff !important;
  background: linear-gradient(135deg, var(--green-dark), #2d6a4f) !important;
  padding: 13px 18px !important;
  margin: 0 !important;
  border-bottom: none !important;
  display: block !important;
}

.apage-related-grid {
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
}

/* Related card dalam sidebar */
.arelated-card {
  display: flex !important;
  flex-direction: row !important;
  gap: 12px !important;
  padding: 13px 16px !important;
  border-bottom: 1px solid rgba(27, 67, 50, 0.06) !important;
  cursor: pointer !important;
  transition: background 0.2s !important;
  border-radius: 0 !important;
  background: #fff !important;
  box-shadow: none !important;
  border-left: none !important;
  border-right: none !important;
  border-top: none !important;
  overflow: visible !important;
}

.arelated-card:last-child {
  border-bottom: none !important;
}

.arelated-card:hover {
  background: rgba(201, 168, 76, 0.05) !important;
  transform: translateX(3px) !important;
  box-shadow: none !important;
}

.arelated-img {
  width: 70px !important;
  height: 54px !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  flex-shrink: 0 !important;
}

.arelated-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.3s ease !important;
}

.arelated-card:hover .arelated-img img {
  transform: scale(1.06) !important;
}

.arelated-body {
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
  min-width: 0 !important;
  flex: 1 !important;
}

.arelated-body .acard-tag {
  font-size: 9px !important;
  font-weight: 800 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  color: var(--gold) !important;
  background: rgba(201, 168, 76, 0.12) !important;
  border: none !important;
  padding: 2px 8px !important;
  border-radius: 3px !important;
  width: fit-content !important;
}

.arelated-body h4 {
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  color: var(--dark) !important;
  line-height: 1.38 !important;
  margin: 0 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

.arelated-link {
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  color: var(--gold) !important;
  margin-top: 2px !important;
  display: block !important;
}

/* Sidebar promo box */
.apage-sidebar-promo {
  background: linear-gradient(145deg, #0d2318 0%, #1b4332 100%) !important;
  border-radius: 14px !important;
  padding: 22px 18px !important;
  text-align: center !important;
  border: 1px solid rgba(201, 168, 76, 0.18) !important;
}

.apage-sidebar-promo .promo-icon {
  font-size: 32px !important;
  margin-bottom: 10px !important;
  display: block !important;
}

.apage-sidebar-promo h4 {
  font-family: var(--font-display) !important;
  font-size: 1rem !important;
  color: var(--gold-light) !important;
  margin: 0 0 8px !important;
}

.apage-sidebar-promo p {
  font-size: 0.78rem !important;
  color: rgba(255, 255, 255, 0.6) !important;
  line-height: 1.55 !important;
  margin: 0 0 16px !important;
}

.apage-sidebar-promo .btn {
  width: 100% !important;
  justify-content: center !important;
  font-size: 13px !important;
  padding: 10px 16px !important;
}

/* Reading progress bar */
.apage-reading-bar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  height: 2px !important;
  width: 0% !important;
  background: linear-gradient(90deg, var(--gold), var(--gold-light)) !important;
  z-index: 9999 !important;
  transition: width 0.1s linear !important;
  border-radius: 0 2px 2px 0 !important;
  box-shadow: none !important;
}

/* ─── 3. MOBILE ARTIKEL ──────────────────────────────────────── */

@media (max-width: 1024px) {
  .apage-two-col {
    grid-template-columns: 1fr 260px !important;
    gap: 36px !important;
    padding: 0 2rem !important;
  }
}

@media (max-width: 860px) {
  .apage-two-col {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    padding: 0 1.5rem !important;
  }

  .apage-sidebar {
    position: static !important;
    top: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 2rem !important;
  }

  .apage-related-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)) !important;
    gap: 10px !important;
  }

  .arelated-card {
    flex-direction: column !important;
    padding: 10px !important;
  }

  .arelated-img {
    width: 100% !important;
    height: 100px !important;
  }

  .apage-hero {
    height: 300px !important;
  }

  .apage-hero-info {
    padding: 1.5rem 1.75rem !important;
  }

  .artikel-card {
    min-width: calc(50% - 12px) !important;
  }
}

@media (max-width: 600px) {
  .apage-header {
    padding: 0 1.1rem !important;
    height: 60px !important;
  }

  .apage-logo .logo-sub {
    display: none !important;
  }

  .apage-hero {
    height: 240px !important;
  }

  .apage-hero-info {
    padding: 1.25rem 1.25rem !important;
  }

  .apage-hero-info h1 {
    font-size: 1.2rem !important;
  }

  .apage-two-col {
    padding: 0 1rem !important;
    gap: 0 !important;
  }

  .apage-body {
    font-size: 15px !important;
    padding: 1.75rem 0 0 !important;
  }

  .apage-body p {
    font-size: 15px !important;
    line-height: 1.8 !important;
  }

  .apage-body h3 {
    font-size: 1.05rem !important;
    margin: 1.75rem 0 0.65rem !important;
    padding-left: 0.85rem !important;
  }

  .apage-cta-box {
    padding: 1.5rem 1.2rem !important;
    border-radius: 12px !important;
  }

  .apage-cta-box p {
    font-size: 14.5px !important;
  }

  .apage-share {
    padding: 1.1rem 1.2rem !important;
  }

  .share-btn {
    padding: 7px 12px !important;
    font-size: 11.5px !important;
  }

  .apage-sidebar-promo {
    display: none !important;
  }

  .artikel-card {
    min-width: calc(84vw - 10px) !important;
  }

  .artikel-slider-wrap::after {
    display: block !important;
    content: "← Geser untuk melihat →" !important;
    text-align: center !important;
    font-size: 11px !important;
    color: var(--text-muted) !important;
    margin-top: 12px !important;
    opacity: 0.6 !important;
    letter-spacing: 0.05em !important;
  }
}

/* ─── 4. DESKTOP scroll hint OFF ─────────────────────────────── */
@media (min-width: 601px) {
  .artikel-slider-wrap::after {
    display: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════
   ARTIKEL REDESIGN — Layout, Font, Share, Overlay
   ═══════════════════════════════════════════════════════════ */

/* ── Font variables untuk artikel ── */
:root {
  --font-artikel-display: "Plus Jakarta Sans", "DM Sans", system-ui, sans-serif;
  --font-artikel-body: "Lora", Georgia, serif;
}

/* ── ARTIKEL SECTION: Card Layout baru ── */
.artikel {
  background: linear-gradient(180deg, #f2efe8 0%, #faf8f4 100%) !important;
}

.artikel-grid {
  display: flex;
  gap: 24px;
  transition: transform 0.5s var(--ease);
}

.artikel-card {
  min-width: calc(33.333% - 16px) !important;
  background: #fff !important;
  border-radius: 20px !important;
  border: none !important;
  box-shadow: 0 2px 20px rgba(27, 67, 50, 0.07) !important;
  overflow: hidden !important;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease !important;
  display: flex !important;
  flex-direction: column !important;
}

.artikel-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 12px 40px rgba(27, 67, 50, 0.14) !important;
}

.acard-img {
  height: 210px !important;
  position: relative !important;
  overflow: hidden !important;
}

.acard-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.55s ease !important;
}

.artikel-card:hover .acard-img img {
  transform: scale(1.07) !important;
}

/* Hapus badge kategori di card */
.acard-img .acard-tag {
  display: none !important;
}

.acard-body {
  padding: 22px 24px 26px !important;
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
}

.acard-date {
  font-family: var(--font-artikel-display) !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 1.8px !important;
  text-transform: uppercase !important;
  color: var(--gold) !important;
  margin-bottom: 10px !important;
  display: block !important;
}

.acard-body h3 {
  font-family: var(--font-artikel-display) !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  color: #0f2a1a !important;
  line-height: 1.45 !important;
  margin: 0 0 10px !important;
}

.acard-body p {
  font-family: var(--font-artikel-body) !important;
  font-size: 13.5px !important;
  color: #6a7f70 !important;
  line-height: 1.72 !important;
  margin-bottom: 18px !important;
  flex: 1 !important;
}

.acard-link {
  font-family: var(--font-artikel-display) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.8px !important;
  color: var(--green-dark) !important;
  text-transform: uppercase !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  transition:
    gap 0.2s,
    color 0.2s !important;
  margin-top: auto !important;
}

.acard-link:hover {
  color: var(--gold) !important;
  gap: 10px !important;
}

/* ── ARTIKEL PAGE OVERLAY — Font & Style ── */
.artikel-page {
  background: #faf8f4 !important;
}

.apage-header {
  background: rgba(250, 248, 244, 0.92) !important;
}

/* Hapus badge di hero overlay */
.apage-hero-info > .acard-tag {
  display: none !important;
}

/* Hero overlay lebih bersih — sederhana */
.apage-hero-overlay {
  background: linear-gradient(
    to top,
    rgba(10, 25, 16, 0.88) 0%,
    rgba(10, 25, 16, 0.2) 55%,
    transparent 100%
  ) !important;
}

.apage-hero-info {
  bottom: 48px !important;
  left: 56px !important;
  right: 56px !important;
}

.apage-hero-info h1 {
  font-family: var(--font-artikel-display) !important;
  font-size: clamp(22px, 3.2vw, 42px) !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
  line-height: 1.18 !important;
  margin: 0 0 12px !important;
}

.apage-hero-info .acard-date {
  font-family: var(--font-artikel-display) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  color: rgba(255, 255, 255, 0.6) !important;
}

/* ── ARTIKEL BODY — Font Lora ── */
.apage-body {
  font-family: var(--font-artikel-body) !important;
  font-size: 17.5px !important;
  line-height: 1.95 !important;
  color: #2a3d30 !important;
}

.apage-body p {
  margin-bottom: 24px !important;
}

.apage-body h3 {
  font-family: var(--font-artikel-display) !important;
  font-size: 1.45rem !important;
  font-weight: 800 !important;
  color: #0d2318 !important;
  margin: 48px 0 14px !important;
  letter-spacing: -0.025em !important;
}

.apage-body h3::before {
  background: var(--gold) !important;
  width: 28px !important;
  height: 3px !important;
  margin-bottom: 14px !important;
}

.apage-body strong {
  font-family: var(--font-artikel-display) !important;
  font-weight: 700 !important;
  color: #0d2318 !important;
}

/* ── SHARE — hanya ikon, tanpa teks label medsos ── */
.apage-share {
  margin-top: 40px !important;
  padding: 20px 0 !important;
  border-top: 1px solid rgba(27, 67, 50, 0.1) !important;
  background: none !important;
  border-radius: 0 !important;
  border-left: none !important;
  border-right: none !important;
  border-bottom: none !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  flex-wrap: wrap !important;
}

.apage-share > p {
  font-family: var(--font-artikel-display) !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  color: #8fa890 !important;
  margin: 0 8px 0 0 !important;
}

/* Share buttons — icon only, pill shape */
.share-btn {
  width: 40px !important;
  height: 40px !important;
  padding: 0 !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0 !important;
  font-size: 0 !important; /* hide text */
  transition:
    transform 0.2s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.2s !important;
}

.share-btn:hover {
  transform: translateY(-3px) scale(1.08) !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15) !important;
  opacity: 1 !important;
}

.share-btn svg {
  width: 18px !important;
  height: 18px !important;
  flex-shrink: 0 !important;
}

/* Tombol Salin — kontras tinggi */
.share-copy {
  background: var(--green-dark) !important;
  color: #fff !important;
  border: none !important;
  font-size: 0 !important;
}

.share-copy svg {
  stroke: #fff !important;
}

.share-copy--done {
  background: #2d9348 !important;
  color: #fff !important;
  border: none !important;
}

/* ── Responsive artikel card 2-col on mid screens ── */
@media (max-width: 860px) {
  .artikel-card {
    min-width: calc(50% - 12px) !important;
  }
}

@media (max-width: 600px) {
  .artikel-card {
    min-width: calc(84vw - 10px) !important;
  }

  .apage-hero-info {
    left: 28px !important;
    right: 28px !important;
    bottom: 32px !important;
  }

  .share-btn {
    width: 36px !important;
    height: 36px !important;
  }

  .share-btn svg {
    width: 16px !important;
    height: 16px !important;
  }
}

/* ═══════════════════════════════════════════════════════════
   ARTIKEL CLEANUP v2 — Remove norak elements, clean design
   ═══════════════════════════════════════════════════════════ */

/* Sembunyikan semua badge kategori di mana saja dalam artikel page */
.apage-content .acard-tag,
.arelated-body .acard-tag,
.promo-icon {
  display: none !important;
}

/* ── Sidebar "Artikel Lainnya" — header clean tanpa emoji ── */
.apage-related-title {
  font-family: var(--font-artikel-display) !important;
  font-size: 0.68rem !important;
  font-weight: 800 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  color: var(--text-muted) !important;
  background: none !important;
  padding: 18px 18px 10px !important;
  border-bottom: 1px solid rgba(27, 67, 50, 0.08) !important;
}

/* Related article card — lebih rapi tanpa badge */
.arelated-body {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  gap: 6px !important;
}

.arelated-body h4 {
  font-family: var(--font-artikel-display) !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  color: #1a2e22 !important;
  line-height: 1.4 !important;
  margin: 0 !important;
}

/* ── CTA Box dalam konten artikel — clean, no emoji ── */
.apage-cta-box {
  background: linear-gradient(135deg, #0d2318 0%, #163a28 100%) !important;
  border-radius: 14px !important;
  padding: 32px 36px !important;
  border: 1px solid rgba(201, 168, 76, 0.15) !important;
  text-align: left !important;
}

.apage-cta-box::before {
  display: none !important;
}

.apage-cta-box p {
  font-family: var(--font-artikel-display) !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: rgba(255, 255, 255, 0.92) !important;
  margin-bottom: 20px !important;
  line-height: 1.4 !important;
}

/* ── Sidebar promo box — clean, no emoji ── */
.apage-sidebar-promo {
  background: #0d2318 !important;
  border-radius: 14px !important;
  padding: 24px 20px !important;
  text-align: left !important;
  border: 1px solid rgba(201, 168, 76, 0.12) !important;
}

.apage-sidebar-promo h4 {
  font-family: var(--font-artikel-display) !important;
  font-size: 0.68rem !important;
  font-weight: 800 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  color: var(--gold) !important;
  margin: 0 0 10px !important;
}

.apage-sidebar-promo p {
  font-family: var(--font-artikel-body) !important;
  font-size: 0.82rem !important;
  color: rgba(255, 255, 255, 0.55) !important;
  line-height: 1.6 !important;
  margin: 0 0 18px !important;
}

.apage-sidebar-promo .btn {
  width: 100% !important;
  justify-content: center !important;
  font-size: 12.5px !important;
  padding: 11px 16px !important;
  letter-spacing: 0.03em !important;
}

/* ══════════════════════════════════════════════════════════
   ✦ FINAL FIX — Artikel Grid + Readability
   ══════════════════════════════════════════════════════════ */

/* Fix: artikel-grid harus GRID bukan flex agar filter berjalan */
.artikel-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 26px !important;
  transition: none !important;
}

/* Reset min-width yang dilakukan patch flex */
.artikel-card {
  min-width: 0 !important;
  width: auto !important;
}

/* Featured article spans 2 columns */
.artikel-card-featured {
  grid-column: span 2 !important;
}
.artikel-card-featured .acard-img {
  height: 260px !important;
}
.artikel-card-featured .acard-body h3 {
  font-size: 1.25rem !important;
}

/* Artikel section background senada */
.artikel {
  background: #faf8f4 !important;
}

/* acard-body: ukuran teks lebih nyaman dibaca */
.acard-body h3 {
  font-size: 1.08rem !important;
  line-height: 1.42 !important;
  color: #0f2a1a !important;
}

.acard-body p {
  font-size: 13.5px !important;
  line-height: 1.75 !important;
  color: #5c7262 !important;
}

/* acard-date: warna yang cukup kontras */
.acard-date {
  color: var(--gold) !important;
  font-size: 10.5px !important;
  letter-spacing: 1.5px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
}

/* Tag badge atas gambar: tampilkan lagi */
.acard-img .acard-tag {
  display: inline-block !important;
  position: absolute !important;
  top: 12px !important;
  left: 14px !important;
  font-size: 9px !important;
  font-weight: 800 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  color: var(--gold-light) !important;
  background: rgba(13, 35, 24, 0.72) !important;
  border: 1px solid rgba(201, 168, 76, 0.25) !important;
  padding: 4px 10px !important;
  border-radius: 20px !important;
  backdrop-filter: blur(6px) !important;
}

/* ── ARTIKEL PAGE READER — Improved readability ── */

/* Comfortable reading width for the body column */
.apage-two-col {
  grid-template-columns: 1fr 280px !important;
  gap: 64px !important;
  padding: 0 3.5rem !important;
  margin-top: 0 !important;
}

/* Article body: readable serif + comfortable sizing */
.apage-body {
  font-family: var(--font-artikel-body) !important;
  font-size: 17px !important;
  line-height: 1.9 !important;
  color: #263830 !important;
  padding: 2.5rem 0 0 !important;
  max-width: 100% !important;
}

.apage-body p {
  font-size: 17px !important;
  line-height: 1.9 !important;
  color: #334039 !important;
  margin-bottom: 1.5rem !important;
  font-weight: 400 !important;
  max-width: 66ch !important;
}

.apage-body > p:first-of-type {
  font-size: 18px !important;
  line-height: 1.92 !important;
  color: #263830 !important;
}

/* Section headings: clean, clear hierarchy */
.apage-body h3 {
  font-family: var(--font-artikel-display) !important;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem) !important;
  font-weight: 800 !important;
  color: #0d2318 !important;
  margin: 2.8rem 0 0.9rem !important;
  line-height: 1.28 !important;
  letter-spacing: -0.02em !important;
  padding-left: 0 !important;
  border-left: none !important;
}

/* Gold bar accent sebelum heading */
.apage-body h3::before {
  content: "" !important;
  display: block !important;
  width: 32px !important;
  height: 3px !important;
  background: var(--gold) !important;
  margin-bottom: 12px !important;
  border-radius: 2px !important;
  position: static !important;
  opacity: 1 !important;
}

.apage-body strong {
  font-family: var(--font-artikel-display) !important;
  font-weight: 700 !important;
  color: #0d2318 !important;
}

/* Responsive */
@media (max-width: 1024px) {
  .apage-two-col {
    grid-template-columns: 1fr 240px !important;
    gap: 40px !important;
    padding: 0 2.5rem !important;
  }
  .artikel-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .artikel-card-featured {
    grid-column: span 2 !important;
  }
}

@media (max-width: 860px) {
  .apage-two-col {
    grid-template-columns: 1fr !important;
    padding: 0 1.5rem !important;
    gap: 0 !important;
  }
  .artikel-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .artikel-card-featured {
    grid-column: span 2 !important;
  }
  .apage-body p {
    max-width: 100% !important;
  }
}

@media (max-width: 600px) {
  .artikel-grid {
    grid-template-columns: 1fr !important;
  }
  .artikel-card-featured {
    grid-column: span 1 !important;
  }
  .apage-body {
    font-size: 15.5px !important;
    line-height: 1.82 !important;
  }
  .apage-body p {
    font-size: 15.5px !important;
    line-height: 1.82 !important;
  }
  .apage-two-col {
    padding: 0 1rem !important;
  }
}

/* ═══════════════════════════════════════════
   FINAL FIX PATCH — CTA text & sidebar scroll
   ═══════════════════════════════════════════ */

/* Fix 1: CTA teks putih — paksa override .apage-body p yang lebih spesifik */
.apage-body .apage-cta-box p {
  color: #ffffff !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  line-height: 1.5 !important;
  margin-bottom: 1.2rem !important;
  max-width: none !important;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.25) !important;
}

/* Fix 2: Sidebar scrollable — override semua !important sebelumnya */
.apage-sidebar {
  max-height: calc(100vh - 120px) !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  scrollbar-width: thin !important;
  scrollbar-color: rgba(201, 168, 76, 0.35) transparent !important;
}
.apage-sidebar::-webkit-scrollbar {
  width: 4px !important;
}
.apage-sidebar::-webkit-scrollbar-track {
  background: transparent !important;
}
.apage-sidebar::-webkit-scrollbar-thumb {
  background: rgba(201, 168, 76, 0.4) !important;
  border-radius: 4px !important;
}

/* Di mobile, sidebar tidak perlu scroll (sudah full width) */
@media (max-width: 900px) {
  .apage-sidebar {
    max-height: none !important;
    overflow-y: visible !important;
  }
}
