 /* ══════════════════════════════════════════
   TOKEN SYSTEM
══════════════════════════════════════════ */
:root {
  --putih: #FAFAF8;
  --krem: #F0EAD6;
  --krem2: #E6DCC4;
  --emas: #E9AD29;
  --emas-d: #B5810F;
  --emas-l: #FFC13A;
  --hijau: #1B5E3B;
  --hijau-m: #2E7D52;
  --hijau-l: #3D9966;
  --hitam: #151210;
  --abu: #5C5448;
  --abu-l: #9A9180;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  background: var(--putih);
  color: var(--hitam);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 5px
}

::-webkit-scrollbar-track {
  background: var(--krem)
}

::-webkit-scrollbar-thumb {
  background: var(--emas);
  border-radius: 3px
}

/* ── ARABIC WATERMARK DECO ── */
.arabic-deco {
  font-family: 'Amiri', serif;
  color: rgba(27, 94, 59, 0.07);
  font-size: clamp(5rem, 12vw, 10rem);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  position: absolute;
}

/* ── TYPOGRAPHY ── */
.display-serif {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.display-arabic {
  font-family: 'Amiri', serif;
  font-weight: 700;
}

.label-caps {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}

/* ── SHARED ── */
section {
  padding: 5.5rem 0
}

.krem-bg {
  background: var(--krem)
}

.putih-bg {
  background: var(--putih)
}

.hijau-bg {
  background: var(--hijau)
}

.divider-emas {
  width: 44px;
  height: 2px;
  background: linear-gradient(90deg, var(--emas), var(--emas-l));
  margin: 1.1rem 0;
}

.divider-emas.mx-auto {
  margin-left: auto;
  margin-right: auto
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--emas-d);
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--emas);
}

/* reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

.reveal-left {
  opacity: 0;
  transform: translateX(-22px);
  transition: opacity .65s ease, transform .65s ease
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0)
}

/* ══════════════════════════════════════════
TOPBAR
══════════════════════════════════════════ */
.topbar {
  background: var(--hijau);
  padding: .45rem 0;
  text-align: center;
  position: relative;
  z-index: 1001;
}

.topbar p {
  font-size: .72rem;
  color: rgba(240, 234, 214, .75);
  letter-spacing: .05em;
  margin: 0;
}

.topbar strong {
  color: var(--emas-l)
}

/* ══════════════════════════════════════════
NAVBAR
══════════════════════════════════════════ */
.navbar-ihram {
  background: rgba(250, 250, 248, .97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 168, 75, .18);
  padding: .8rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow .3s;
}

.navbar-ihram.scrolled {
  box-shadow: 0 4px 24px rgba(21, 18, 16, .08)
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-brand-icon {
  width: 38px;
  height: 38px;
  background: var(--hijau);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emas-l);
  font-family: 'Amiri', serif;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.nav-brand-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--hitam);
  line-height: 1.1;
}

.nav-brand-text small {
  display: block;
  font-size: .58rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--abu);
}

.nav-links a {
  font-size: .8rem;
  font-weight: 500;
  color: var(--abu);
  text-decoration: none;
  padding: .3rem .85rem;
  transition: color .2s;
  letter-spacing: .03em;
}

.nav-links a:hover {
  color: var(--hijau)
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: .6rem
}

.btn-primary-ihram {
  background: var(--hijau);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: .5rem 1.2rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-decoration: none;
  transition: all .25s;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}

.btn-primary-ihram:hover {
  background: var(--hijau-m);
  color: #fff;
  transform: translateY(-1px)
}

.btn-outline-ihram {
  background: transparent;
  color: var(--hijau);
  border: 1.5px solid var(--hijau);
  border-radius: 6px;
  padding: .48rem 1.2rem;
  font-size: .78rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .25s;
  display: inline-flex;
  align-items: center;
}

.btn-outline-ihram:hover {
  background: var(--hijau);
  color: #fff
}

.btn-emas {
  background: linear-gradient(135deg, var(--emas-d), var(--emas), var(--emas-l));
  color: var(--hitam);
  border: none;
  border-radius: 6px;
  padding: .6rem 1.6rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all .3s;
  box-shadow: 0 4px 16px rgba(200, 168, 75, .3);
}

.btn-emas:hover {
  color: var(--hitam);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200, 168, 75, .45);
}

.hamburger {
  background: none;
  border: 1px solid rgba(200, 168, 75, .3);
  border-radius: 5px;
  padding: .35rem .5rem;
  display: none;
  cursor: pointer;
  color: var(--abu);
}

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
}

@media(max-width:991px) {
  .nav-links {
      display: none
  }

  .hamburger {
      display: block
  }

  .mobile-menu {
      padding: 1rem 0 .5rem;
      border-top: 1px solid var(--krem2);
      background: rgba(250, 250, 248, .98);
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      box-shadow: 0 8px 24px rgba(21, 18, 16, .1);
      z-index: 999;
      padding: .8rem 1rem;
  }

  .mobile-menu.open {
      display: block
  }

  .mobile-menu a {
      display: block;
      padding: .65rem 0;
      font-size: .88rem;
      font-weight: 500;
      color: var(--abu);
      text-decoration: none;
      border-bottom: 1px solid var(--krem2);
  }

  .mobile-menu a:last-child {
      border-bottom: none
  }

  .mobile-menu a:hover {
      color: var(--hijau)
  }
}

/* ══════════════════════════════════════════
HERO
══════════════════════════════════════════ */
.hero {
  background: var(--hijau);
  min-height: calc(100vh - 88px);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 4rem 0;
}

/* Fabric texture pattern overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
      repeating-linear-gradient(0deg,
          rgba(255, 255, 255, 0.025) 0px,
          rgba(255, 255, 255, 0.025) 1px,
          transparent 1px,
          transparent 12px),
      repeating-linear-gradient(90deg,
          rgba(255, 255, 255, 0.015) 0px,
          rgba(255, 255, 255, 0.015) 1px,
          transparent 1px,
          transparent 12px);
  pointer-events: none;
}

.hero-arabic-bg {
  font-family: 'Amiri', serif;
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(16rem, 28vw, 24rem);
  line-height: 1;
  color: rgba(255, 255, 255, .04);
  pointer-events: none;
  user-select: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--emas-l);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}

.hero-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--emas)
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.08;
  margin-bottom: .5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--emas-l)
}

.hero-quote {
  font-family: 'Amiri', serif;
  font-size: 1.1rem;
  color: rgba(240, 234, 214, .55);
  font-style: italic;
  margin: 1rem 0 1.8rem;
  padding-left: 1rem;
  border-left: 2px solid rgba(200, 168, 75, .4);
  line-height: 1.6;
}

.hero-sub {
  color: rgba(240, 234, 214, .65);
  font-size: .9rem;
  line-height: 1.8;
  max-width: 420px;
  margin-bottom: 2.2rem;
}

.hero-ctas {
  display: flex;
  gap: .85rem;
  flex-wrap: wrap;
  margin-bottom: 3rem
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(240, 234, 214, .55);
  font-size: .75rem;
}

.hero-trust-item i {
  color: var(--emas);
  font-size: .9rem
}

/* Product image side */
.hero-product-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-product-card {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(200, 168, 75, .2);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(8px);
  position: relative;
}

.hero-product-card img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.hero-badge {
  position: absolute;
  top: -14px;
  right: 20px;
  background: var(--emas);
  color: var(--hitam);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 20px;
}

.hero-floating-stat {
  position: absolute;
  background: rgba(250, 250, 248, .95);
  border-radius: 10px;
  padding: .7rem 1rem;
  box-shadow: 0 8px 24px rgba(21, 18, 16, .18);
  backdrop-filter: blur(8px);
}

.hero-floating-stat.left {
  bottom: 30px;
  left: -20px
}

.hero-floating-stat.right {
  top: 30px;
  right: -20px
}

.floating-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--hijau);
  line-height: 1;
}

.floating-label {
  font-size: .65rem;
  color: var(--abu);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* ══════════════════════════════════════════
KATEGORI STRIP
══════════════════════════════════════════ */
.kategori-strip {
  background: var(--krem);
  padding: 3rem 0;
  border-bottom: 1px solid var(--krem2)
}

.kat-card {
  background: var(--putih);
  border: 1px solid rgba(200, 168, 75, .18);
  border-radius: 10px;
  padding: 1.4rem 1rem;
  text-align: center;
  text-decoration: none;
  display: block;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.kat-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--hijau), var(--emas));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}

.kat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(27, 94, 59, .1);
  border-color: rgba(200, 168, 75, .4);
}

.kat-card:hover::after {
  transform: scaleX(1)
}

.kat-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(27, 94, 59, .08), rgba(200, 168, 75, .12));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto .85rem;
  font-size: 1.4rem;
  color: var(--hijau);
  border: 1px solid rgba(200, 168, 75, .2);
}

.kat-card h6 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--hitam);
  margin-bottom: .25rem;
}

.kat-card span {
  font-size: .72rem;
  color: var(--abu-l);
}

/* ══════════════════════════════════════════
PRODUK UNGGULAN
══════════════════════════════════════════ */
.produk-section {
  background: var(--putih)
}

.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.8rem;
}

.section-title-wrap .eyebrow {
  margin-bottom: .6rem
}

.section-title-wrap h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: var(--hitam);
  line-height: 1.15;
}

.section-title-wrap h2 em {
  font-style: italic;
  color: var(--hijau)
}

/* Filter pills */
.produk-filter {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.filter-pill {
  background: transparent;
  border: 1px solid var(--krem2);
  color: var(--abu);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 20px;
  cursor: pointer;
  transition: all .22s;
}

.filter-pill:hover,
.filter-pill.active {
  background: var(--hijau);
  border-color: var(--hijau);
  color: #fff;
}

/* Product card */
.prod-card {
  background: var(--putih);
  border: 1px solid var(--krem2);
  border-radius: 12px;
  overflow: hidden;
  transition: all .32s;
  height: 100%;
  position: relative;
}

.prod-card:hover {
  box-shadow: 0 16px 40px rgba(27, 94, 59, .12);
  transform: translateY(-5px);
  border-color: rgba(200, 168, 75, .3);
}

.prod-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
  background: var(--krem);
}

.prod-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.prod-card:hover .prod-img-wrap img {
  transform: scale(1.06)
}

.prod-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .22rem .65rem;
  border-radius: 4px;
}

.badge-baru {
  background: var(--hijau);
  color: #fff
}

.badge-laris {
  background: var(--emas);
  color: var(--hitam)
}

.badge-diskon {
  background: #C0392B;
  color: #fff
}

.prod-wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  background: rgba(250, 250, 248, .9);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--abu-l);
  font-size: .85rem;
  cursor: pointer;
  transition: all .22s;
  opacity: 0;
  backdrop-filter: blur(4px);
}

.prod-card:hover .prod-wishlist {
  opacity: 1
}

.prod-wishlist:hover {
  color: #c0392b;
  transform: scale(1.1)
}

.prod-quick {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(37, 211, 102, .93);
  color: #fff;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: none;
  padding: .65rem;
  cursor: pointer;
  transform: translateY(100%);
  transition: transform .3s;
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
}

.prod-card:hover .prod-quick {
  transform: translateY(0)
}

.prod-body {
  padding: 1.1rem
}

.prod-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--hitam);
  margin-bottom: .3rem;
  line-height: 1.3;
}

.prod-spec {
  font-size: .72rem;
  color: var(--abu-l);
  margin-bottom: .6rem;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.prod-spec span {
  background: var(--krem);
  border: 1px solid var(--krem2);
  padding: .12rem .5rem;
  border-radius: 4px;
}

.prod-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .3rem;
}

.prod-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--hijau);
  line-height: 1;
}

.prod-price-old {
  font-size: .78rem;
  color: var(--abu-l);
  text-decoration: line-through;
}

.btn-wa-order {
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: .38rem .85rem;
  font-size: .72rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .22s;
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  white-space: nowrap;
}

.btn-wa-order:hover {
  background: #1EB858;
  color: #fff;
  transform: scale(1.04)
}

/* ══════════════════════════════════════════
KEUNGGULAN / WHY US
══════════════════════════════════════════ */
.why-section {
  background: var(--hijau);
  position: relative;
  overflow: hidden;
}

.why-section .arabic-deco {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(8rem, 20vw, 18rem);
  color: rgba(255, 255, 255, .035);
}

.why-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(200, 168, 75, .18);
  border-radius: 12px;
  padding: 1.8rem 1.5rem;
  height: 100%;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--emas), var(--emas-l));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s;
}

.why-card:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(200, 168, 75, .4)
}

.why-card:hover::before {
  transform: scaleX(1)
}

.why-icon {
  width: 48px;
  height: 48px;
  background: rgba(200, 168, 75, .15);
  border: 1px solid rgba(200, 168, 75, .3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--emas-l);
  margin-bottom: 1.1rem;
}


.why-card h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: .5rem;
}

.why-card p {
  font-size: .82rem;
  color: rgba(240, 234, 214, .58);
  line-height: 1.75;
}

.why-stat-row {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-top: 4rem;
}

.why-stat {
  padding: 1.5rem 2.5rem;
  border-right: 1px solid rgba(200, 168, 75, .15);
  text-align: center;
}

.why-stat:last-child {
  border-right: none
}

.why-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--emas-l);
  line-height: 1;
}

.why-stat-label {
  font-size: .7rem;
  color: rgba(240, 234, 214, .5);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ══════════════════════════════════════════
KAIN IHRAM INFO / EDUKASI
══════════════════════════════════════════ */
.edukasi-section {
  background: var(--krem);
  position: relative;
  overflow: hidden
}

.edukasi-section .arabic-deco {
  right: -2rem;
  top: 50%;
  transform: translateY(-50%)
}

.edukasi-card {
  background: var(--putih);
  border: 1px solid rgba(200, 168, 75, .2);
  border-radius: 12px;
  padding: 1.6rem;
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  height: 100%;
  transition: box-shadow .3s;
}

.edukasi-card:hover {
  box-shadow: 0 8px 24px rgba(27, 94, 59, .08)
}

.edukasi-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(200, 168, 75, .25);
  line-height: 1;
  min-width: 44px;
}

.edukasi-card h6 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--hijau);
  margin-bottom: .4rem;
}

.edukasi-card p {
  font-size: .8rem;
  color: var(--abu);
  line-height: 1.72;
}

.edukasi-img {
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  min-height: 400px;
  position: relative;
}

.edukasi-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.edukasi-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(27, 94, 59, .85) 0%, transparent 55%);
}

.edukasi-img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  border-top: 1px solid rgba(200, 168, 75, .3);
}

.edukasi-img-caption blockquote {
  font-family: 'Amiri', serif;
  font-size: 1rem;
  font-style: italic;
  color: rgba(240, 234, 214, .88);
  line-height: 1.6;
}

.edukasi-img-caption cite {
  display: block;
  font-style: normal;
  font-size: .68rem;
  color: var(--emas-l);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 8px;
}

/* ══════════════════════════════════════════
TESTIMONI
══════════════════════════════════════════ */
.testi-section {
  background: var(--putih)
}

.testi-card {
  background: var(--krem);
  border: 1px solid rgba(200, 168, 75, .2);
  border-radius: 12px;
  padding: 1.6rem;
  height: 100%;
  position: relative;
  transition: box-shadow .3s, border-color .3s;
}

.testi-card:hover {
  box-shadow: 0 10px 32px rgba(27, 94, 59, .1);
  border-color: rgba(200, 168, 75, .45);
}

.testi-card::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: rgba(200, 168, 75, .15);
  position: absolute;
  top: 4px;
  left: 14px;
  line-height: 1;
  pointer-events: none;
}

.testi-stars {
  color: var(--emas);
  font-size: .78rem;
  margin-bottom: .8rem
}

.testi-text {
  font-size: .86rem;
  color: var(--abu);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.1rem;
}

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

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(200, 168, 75, .35);
}

.testi-name {
  font-size: .84rem;
  font-weight: 600;
  color: var(--hitam);
}

.testi-info {
  font-size: .7rem;
  color: var(--abu-l);
}

.testi-info strong {
  color: var(--hijau)
}

/* ══════════════════════════════════════════
BANNER CTA HAJI/UMRAH
══════════════════════════════════════════ */
.banner-section {
  background: var(--krem);
  padding: 4.5rem 0;
}

.banner-box {
  background: var(--hijau);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  min-height: 260px;
}

.banner-bg-img {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1564767655658-4e3a7d8cedd2?w=1200&q=80&auto=format&fit=crop') center/cover no-repeat;
  opacity: .12;
}

.banner-deco {
  font-family: 'Amiri', serif;
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14rem;
  line-height: 1;
  color: rgba(255, 255, 255, .04);
  pointer-events: none;
  user-select: none;
}

.banner-content {
  position: relative;
  z-index: 1;
  padding: 2.5rem 3rem;
}

.banner-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin-bottom: .6rem;
}

.banner-content h2 em {
  font-style: italic;
  color: var(--emas-l)
}

.banner-content p {
  font-size: .88rem;
  color: rgba(240, 234, 214, .65);
  max-width: 420px;
  margin-bottom: 1.6rem;
  line-height: 1.7;
}

.banner-img-side {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  width: 280px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.banner-img-side img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center center;
  mix-blend-mode: luminosity;
  opacity: .25;
}

/* ══════════════════════════════════════════
PANDUAN UKURAN
══════════════════════════════════════════ */
.ukuran-section {
  background: var(--putih)
}

.ukuran-table-wrap {
  background: var(--krem);
  border: 1px solid rgba(200, 168, 75, .2);
  border-radius: 12px;
  overflow: hidden;
}

.table-ihram {
  width: 100%;
  border-collapse: collapse
}

.table-ihram thead {
  background: var(--hijau)
}

.table-ihram thead th {
  color: #fff;
  padding: .9rem 1.2rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-align: left;
}

.table-ihram tbody tr {
  border-bottom: 1px solid rgba(200, 168, 75, .15);
  transition: background .2s;
}

.table-ihram tbody tr:hover {
  background: rgba(200, 168, 75, .07)
}

.table-ihram tbody tr:last-child {
  border-bottom: none
}

.table-ihram td {
  padding: .8rem 1.2rem;
  font-size: .82rem;
  color: var(--abu);
}

.table-ihram td:first-child {
  font-weight: 600;
  color: var(--hitam);
  font-family: 'Cormorant Garamond', serif;
  font-size: .95rem;
}

.size-rec {
  display: inline-block;
  background: rgba(27, 94, 59, .1);
  color: var(--hijau);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: .1rem .5rem;
  border-radius: 4px;
  margin-left: 6px;
}

/* ══════════════════════════════════════════
BLOG / ARTIKEL
══════════════════════════════════════════ */
.blog-section {
  background: var(--krem)
}

.blog-card {
  background: var(--putih);
  border: 1px solid rgba(200, 168, 75, .15);
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  transition: all .3s;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(27, 94, 59, .1);
  border-color: rgba(200, 168, 75, .35);
}

.blog-img {
  overflow: hidden;
  height: 180px
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.blog-card:hover .blog-img img {
  transform: scale(1.06)
}

.blog-body {
  padding: 1.2rem
}

.blog-cat-pill {
  display: inline-block;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .18rem .6rem;
  border-radius: 4px;
  margin-bottom: .7rem;
}

.pill-hijau {
  background: rgba(27, 94, 59, .1);
  color: var(--hijau);
  border: 1px solid rgba(27, 94, 59, .2)
}

.pill-emas {
  background: rgba(200, 168, 75, .12);
  color: var(--emas-d);
  border: 1px solid rgba(200, 168, 75, .25)
}

.blog-card h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--hitam);
  line-height: 1.3;
  margin-bottom: .5rem;
  transition: color .2s;
}

.blog-card:hover h5 {
  color: var(--hijau)
}

.blog-card p {
  font-size: .78rem;
  color: var(--abu-l);
  line-height: 1.7;
  margin-bottom: .9rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: .75rem;
  border-top: 1px solid var(--krem2);
}

.blog-date {
  font-size: .68rem;
  color: var(--abu-l)
}

.blog-read {
  font-size: .7rem;
  font-weight: 600;
  color: var(--hijau);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap .2s;
}

.blog-read:hover {
  gap: 8px;
  color: var(--hijau-m)
}

/* ══════════════════════════════════════════
NEWSLETTER
══════════════════════════════════════════ */
.nl-section {
  background: var(--hijau);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.nl-section .arabic-deco {
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(8rem, 18vw, 15rem);
  color: rgba(255, 255, 255, .04);
}

.nl-form {
  display: flex;
  gap: 0;
  max-width: 440px;
}

.nl-input {
  flex: 1;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(200, 168, 75, .25);
  border-right: none;
  color: #fff;
  padding: .7rem 1.1rem;
  font-size: .85rem;
  font-family: 'Inter', sans-serif;
  border-radius: 8px 0 0 8px;
  outline: none;
  transition: border-color .2s;
}

.nl-input:focus {
  border-color: var(--emas)
}

.nl-input::placeholder {
  color: rgba(240, 234, 214, .35)
}

.nl-btn {
  background: var(--emas);
  color: var(--hitam);
  border: none;
  padding: .7rem 1.3rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}

.nl-btn:hover {
  background: var(--emas-l)
}

/* ══════════════════════════════════════════
FOOTER
══════════════════════════════════════════ */
.footer {
  background: var(--hitam);
  padding: 3.5rem 0 1.5rem;
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--emas-l);
  display: block;
  margin-bottom: .5rem;
}

.footer p {
  font-size: .8rem;
  color: rgba(240, 234, 214, .4);
  line-height: 1.7;
  max-width: 260px;
}

.footer-heading {
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--emas);
  margin-bottom: .85rem;
}

.footer-links {
  list-style: none;
  padding: 0
}

.footer-links li {
  margin-bottom: .5rem
}

.footer-links a {
  font-size: .8rem;
  color: rgba(240, 234, 214, .45);
  text-decoration: none;
  transition: color .2s;
}

.footer-links a:hover {
  color: var(--emas-l)
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: .75rem;
}

.footer-contact-item i {
  color: var(--emas);
  margin-top: 2px;
  font-size: .9rem;
  flex-shrink: 0;
}

.footer-contact-item span {
  font-size: .79rem;
  color: rgba(240, 234, 214, .45);
  line-height: 1.55;
}

.footer-bottom {
  border-top: 1px solid rgba(200, 168, 75, .1);
  margin-top: 2.5rem;
  padding-top: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: .72rem;
  color: rgba(240, 234, 214, .25);
  max-width: none;
  margin: 0
}

.footer-socials a {
  color: rgba(240, 234, 214, .3);
  font-size: 1rem;
  margin-left: 12px;
  transition: color .2s;
}

.footer-socials a:hover {
  color: var(--emas-l)
}

.footer-payment {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: .6rem;
}

.pay-badge {
  background: rgba(240, 234, 214, .08);
  border: 1px solid rgba(240, 234, 214, .1);
  border-radius: 5px;
  padding: .28rem .65rem;
  font-size: .65rem;
  font-weight: 700;
  color: rgba(240, 234, 214, .5);
  letter-spacing: .06em;
}

/* ══════════════════════════════════════════
TOMBOL CHAT KAMI (pill button)
══════════════════════════════════════════ */
.btn-chat-kami {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 2px solid #25D366;
  border-radius: 32px;
  padding: .3rem 1.4rem .3rem .3rem;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37, 211, 102, .18);
  transition: all .25s;
}

.btn-chat-kami:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, .3)
}

.btn-chat-kami .chat-icon-circle {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.05rem;
}

.btn-chat-kami .chat-label {
  font-size: .92rem;
  font-weight: 700;
  color: var(--hitam);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ══════════════════════════════════════════
KETENTUAN PEMESANAN
══════════════════════════════════════════ */
.ketentuan-section {
  background: var(--krem);
  position: relative;
  overflow: hidden
}

.ketentuan-section .arabic-deco {
  left: -2rem;
  top: 10%;
  font-size: clamp(7rem, 16vw, 14rem)
}

.ketentuan-box {
  background: var(--putih);
  border: 1px solid rgba(200, 168, 75, .3);
  border-radius: 14px;
  padding: 2.2rem 2.4rem;
  box-shadow: 0 10px 32px rgba(27, 94, 59, .06);
}

.ketentuan-box ul {
  list-style: none;
  padding: 0;
  margin: 0
}

.ketentuan-box li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 1.05rem;
  font-size: .86rem;
  color: var(--abu);
  line-height: 1.8;
}

.ketentuan-box li:last-child {
  margin-bottom: 0
}

.ketentuan-box li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .6em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emas-d), var(--emas-l));
}

.ketentuan-box li strong {
  color: var(--hitam);
  font-weight: 600
}

/* ══════════════════════════════════════════
KEUNGGULAN KAIN IHRAM (4 kolom foto bulat)
══════════════════════════════════════════ */
.kki-section {
  background: var(--putih)
}

.kki-item {
  text-align: center
}

.kki-photo {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.3rem;
  border: 3px solid var(--emas-l);
  box-shadow: 0 10px 26px rgba(200, 168, 75, .28);
}

.kki-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.kki-photo.kki-flag {
  display: flex;
  flex-direction: column
}

.kki-flag-half {
  flex: 1;
  width: 100%
}

.kki-flag-half.merah {
  background: #C8102E
}

.kki-flag-half.putih {
  background: #fff
}

.kki-badge {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  margin: 0 auto 1.3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 35% 30%, var(--hijau-m), var(--hijau));
  border: 3px solid var(--emas-l);
  color: #fff;
  box-shadow: 0 10px 26px rgba(27, 94, 59, .28);
}

.kki-badge i {
  font-size: 1.7rem;
  color: var(--emas-l);
  margin-bottom: 2px
}

.kki-badge span {
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .1em
}

.kki-item h6 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--hitam);
  margin-bottom: .55rem;
}

.kki-item p {
  font-size: .82rem;
  color: var(--abu);
  line-height: 1.75
}

/* ══════════════════════════════════════════
TESTIMONI (SLICK CAROUSEL)
══════════════════════════════════════════ */
.testi-slick {
  margin: 0 -12px;
  padding-bottom: 2.2rem
}

.testi-slide {
  padding: 0 12px
}

.testi-quote-card {
  background: var(--krem);
  border: 1px solid rgba(200, 168, 75, .2);
  border-radius: 14px;
  padding: 2.4rem 1.9rem 2rem;
  text-align: center;
  height: 100%;
}

.testi-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.4rem;
  line-height: 1;
  color: rgba(200, 168, 75, .35);
  display: block;
  margin-bottom: .4rem;
}

.testi-quote-text {
  font-size: .9rem;
  color: var(--abu);
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 1.3rem;
}

.testi-company {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--hijau);
  padding-top: 1rem;
  border-top: 1px solid rgba(200, 168, 75, .25);
  display: inline-block;
}

.testi-slick .slick-dots {
  bottom: -6px
}

.testi-slick .slick-dots li button:before {
  color: var(--emas);
  opacity: .4;
  font-size: 9px
}

.testi-slick .slick-dots li.slick-active button:before {
  opacity: 1;
  color: var(--emas-d)
}

.testi-slick .slick-prev,
.testi-slick .slick-next {
  width: 38px;
  height: 38px;
  z-index: 2
}

.testi-slick .slick-prev:before,
.testi-slick .slick-next:before {
  color: var(--hijau);
  font-size: 26px;
  opacity: 1
}

.testi-slick .slick-prev {
  left: -6px
}

.testi-slick .slick-next {
  right: -6px
}

@media(max-width:768px) {

  .testi-slick .slick-prev,
  .testi-slick .slick-next {
      display: none !important
  }

  .ketentuan-box {
      padding: 1.6rem 1.4rem
  }

  .kki-photo,
  .kki-badge {
      width: 92px;
      height: 92px
  }
}

/* ══════════════════════════════════════════
BLOG (SLICK CAROUSEL)
══════════════════════════════════════════ */
.blog-slick {
  margin: 0 -12px;
  padding-bottom: 2.2rem
}

.blog-slide {
  padding: 0 12px
}

.blog-slick .blog-card {
  margin-bottom: 4px
}

.blog-slick .slick-dots {
  bottom: -6px
}

.blog-slick .slick-dots li button:before {
  color: var(--emas);
  opacity: .4;
  font-size: 9px
}

.blog-slick .slick-dots li.slick-active button:before {
  opacity: 1;
  color: var(--emas-d)
}

.blog-slick .slick-prev,
.blog-slick .slick-next {
  width: 38px;
  height: 38px;
  z-index: 2
}

.blog-slick .slick-prev:before,
.blog-slick .slick-next:before {
  color: var(--hijau);
  font-size: 26px;
  opacity: 1
}

.blog-slick .slick-prev {
  left: -8px
}

.blog-slick .slick-next {
  right: -8px
}

@media(max-width:768px) {

  .blog-slick .slick-prev,
  .blog-slick .slick-next {
      display: none !important
  }
}

/* ── WA FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 800;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(37, 211, 102, .4);
  animation: pulse-wa 2.5s infinite;
}

.wa-float:hover {
  color: #fff;
  transform: scale(1.1)
}

@keyframes pulse-wa {

  0%,
  100% {
      box-shadow: 0 4px 18px rgba(37, 211, 102, .4)
  }

  50% {
      box-shadow: 0 4px 32px rgba(37, 211, 102, .65)
  }
}

/* ── RESPONSIVE ── */
@media(max-width:768px) {
  section {
      padding: 3rem 0
  }

  .hero {
      padding: 2.5rem 0 3rem;
      min-height: auto
  }

  .hero-eyebrow {
      font-size: .65rem;
      margin-bottom: 1rem
  }

  .hero h1 {
      font-size: clamp(2.2rem, 9vw, 3rem)
  }

  .hero-quote {
      font-size: .95rem;
      margin: .9rem 0 1.4rem
  }

  .hero-sub {
      font-size: .85rem;
      max-width: 100%;
      margin-bottom: 1.6rem
  }

  .hero-ctas {
      gap: .6rem;
      margin-bottom: 2rem
  }

  .hero-ctas .btn-emas,
  .hero-ctas .btn-outline-ihram {
      width: 100%;
      justify-content: center
  }

  .hero-trust {
      gap: .8rem 1rem
  }

  .hero-product-wrap {
      margin-top: 2rem
  }

  .hero-product-card {
      padding: 1.2rem
  }

  .hero-floating-stat {
      padding: .55rem .8rem
  }

  .hero-floating-stat.left {
      left: 0;
      bottom: 10px
  }

  .hero-floating-stat.right {
      right: 0;
      top: 10px
  }

  .floating-num {
      font-size: 1.25rem
  }

  .section-header-row {
      flex-direction: column;
      align-items: flex-start;
      margin-bottom: 1.8rem
  }

  .why-stat-row {
      margin-top: 2.5rem
  }

  .why-stat {
      flex: 1 1 45%;
      padding: 1.2rem 1rem;
      border-right: none;
      border-bottom: 1px solid rgba(200, 168, 75, .15)
  }

  .why-stat:nth-child(2n) {
      border-right: none
  }

  .why-stat-num {
      font-size: 2rem
  }

  .edukasi-img {
      min-height: 260px
  }

  .edukasi-img img {
      min-height: 260px
  }

  .banner-box {
      min-height: auto
  }

  .banner-content {
      padding: 1.8rem 1.4rem
  }

  .banner-content p {
      max-width: 100%
  }

  .nl-form {
      flex-direction: column
  }

  .nl-input {
      border-right: 1px solid rgba(200, 168, 75, .25);
      border-radius: 8px;
      margin-bottom: 8px
  }

  .nl-btn {
      border-radius: 8px;
      padding: .7rem
  }

  .banner-img-side {
      display: none
  }

  .dekstop-menu {
      display: none !important;
  }
}

@media(max-width:480px) {
  .kategori-strip {
      padding: 1.8rem 0
  }

  .kat-card {
      padding: 1rem .6rem
  }

  .kat-icon {
      width: 44px;
      height: 44px;
      font-size: 1.15rem
  }
}