* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(160deg, #fff8f0 0%, #fdf3e7 40%, #fce8d0 100%);
  color: #1a1a1a;
  overflow-x: hidden;
  max-width: 100vw;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent; transition: all 0.3s; padding: 0.8rem 0;
}
.navbar.scrolled {
  background: rgba(62,39,35,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 0 #ffb74d, 0 6px 20px rgba(93,64,55,0.3);
  border-bottom: 3px solid #ffb74d;
}
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; gap: 0.8rem; font-size: 1.3rem; font-weight: 900; color: #fff; text-decoration: none; }
.navbar.scrolled .nav-brand { color: #ffb74d; }
.nav-logo { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; border: 3px solid #ffb74d; box-shadow: 0 3px 0 #e65100; }
.nav-links { display: flex; gap: 1.8rem; align-items: center; }
.nav-links a {
  text-decoration: none; color: rgba(255,255,255,0.95); font-weight: 700;
  font-size: 0.95rem; transition: all 0.2s; position: relative;
}
.navbar.scrolled .nav-links a { color: #ffe0b2; }
.nav-links a:hover { color: #ffb74d; transform: translateY(-2px); }
.nav-cta {
  background: #ffb74d; color: #3e2723 !important;
  padding: 0.55rem 1.2rem; border-radius: 50px;
  font-weight: 800; border: 3px solid #e65100;
  box-shadow: 0 4px 0 #e65100;
  transition: all 0.2s !important;
}
.nav-cta:hover { transform: translateY(-3px) !important; box-shadow: 0 7px 0 #e65100 !important; }
.nav-hamburger { display: none; background: none; border: none; font-size: 1.6rem; cursor: pointer; color: #fff; padding: 0.3rem; line-height: 1; }
.navbar.scrolled .nav-hamburger { color: #ffb74d; }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh;
  background: linear-gradient(135deg, #3e2723 0%, #5d4037 45%, #8d6e63 100%);
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 3rem;
  padding: 8rem 2rem 6rem; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 25%, rgba(255,183,77,0.18) 0%, transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(255,138,101,0.12) 0%, transparent 40%);
  animation: bgPulse 6s ease-in-out infinite alternate;
}
@keyframes bgPulse { 0% { transform: scale(1); } 100% { transform: scale(1.04); } }
.hero-left, .hero-right { position: relative; z-index: 2; }

.hero-badge {
  display: inline-block;
  background: #ffb74d; color: #3e2723;
  padding: 0.45rem 1.1rem; border-radius: 50px;
  font-size: 0.85rem; font-weight: 800;
  border: 3px solid #e65100;
  box-shadow: 0 4px 0 #e65100;
  margin-bottom: 1.4rem;
  animation: badgeBounce 1.8s ease-in-out infinite;
}
@keyframes badgeBounce { 0%,100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-6px) rotate(2deg); } }

.hero-title {
  font-family: 'Fredoka One', 'Poppins', sans-serif;
  font-size: 3.6rem; font-weight: 400; color: #fff; line-height: 1.1; margin-bottom: 1rem;
  text-shadow: 4px 4px 0 rgba(0,0,0,0.4), 2px 2px 0 rgba(0,0,0,0.25);
  letter-spacing: 1px;
}
.hero-title span { color: #ffb74d; text-shadow: 4px 4px 0 #bf360c, 2px 2px 0 #e65100; }
.hero-desc { font-size: 1.05rem; color: #ffe0b2; line-height: 1.7; margin-bottom: 2rem; max-width: 480px; font-weight: 600; text-shadow: 1px 1px 3px rgba(0,0,0,0.4); }

.hero-harga { display: flex; gap: 1rem; align-items: center; margin-bottom: 2rem; flex-wrap: wrap; }
.harga-normal, .harga-promo-box {
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
  border-radius: 16px; padding: 0.8rem 1.2rem;
  border: 3px solid rgba(255,255,255,0.5);
}
.harga-normal .label, .harga-promo-box .label {
  display: block; font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; color: #ffccbc; margin-bottom: 2px;
}
.angka-coret { font-size: 1.2rem; font-weight: 700; color: rgba(255,224,178,0.6); text-decoration: line-through; }
.harga-arrow { font-size: 1.6rem; color: #ffb74d; font-weight: 900; }
.harga-promo-box {
  background: rgba(255,183,77,0.25); border-color: #ffb74d;
  animation: pulsePrimo 2s ease-in-out infinite;
}
@keyframes pulsePrimo {
  0%,100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,247,0,0.5); }
  50%      { transform: scale(1.04); box-shadow: 0 0 0 10px rgba(255,247,0,0); }
}
.angka-promo { font-size: 1.8rem; font-weight: 900; color: #ffb74d; text-shadow: 2px 2px 0 rgba(0,0,0,0.3); }

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary-hero, .btn-outline-hero {
  display: inline-block; padding: 0.95rem 2rem;
  border-radius: 50px; font-weight: 800; font-size: 1rem;
  text-decoration: none; transition: all 0.2s;
}
.btn-primary-hero {
  background: #ffb74d; color: #3e2723;
  border: 3px solid #e65100;
  box-shadow: 0 6px 0 #bf360c;
  font-weight: 900;
}
.btn-primary-hero:hover { transform: translateY(-4px); box-shadow: 0 10px 0 #bf360c; }
.btn-outline-hero {
  background: rgba(255,255,255,0.1); color: #ffe0b2;
  border: 3px solid rgba(255,224,178,0.6);
  box-shadow: 0 6px 0 rgba(0,0,0,0.2);
}
.btn-outline-hero:hover { background: #ffe0b2; color: #3e2723; transform: translateY(-4px); }

.hero-img-wrap { position: relative; }
.hero-img-placeholder {
  width: 100%; aspect-ratio: 1; border-radius: 30px; overflow: hidden;
  background: rgba(255,255,255,0.2); backdrop-filter: blur(10px);
  border: 4px dashed rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center;
}
.img-placeholder-inner { text-align: center; color: rgba(255,255,255,0.85); }
.placeholder-icon { font-size: 4rem; display: block; margin-bottom: 0.5rem; }
.img-placeholder-inner p { font-size: 1rem; font-weight: 700; margin-bottom: 0.3rem; }
.img-placeholder-inner small { font-size: 0.8rem; opacity: 0.7; }

.hero-badge-float {
  position: absolute;
  background: #3e2723; padding: 0.6rem 1.2rem;
  border-radius: 50px; font-size: 0.85rem; font-weight: 800; color: #ffb74d;
  border: 3px solid #ffb74d;
  box-shadow: 0 5px 0 #bf360c;
  animation: floatBadge 3s ease-in-out infinite;
}
.badge-float-1 { top: 10%; right: 0; animation-delay: 0s; }
.badge-float-2 { bottom: 15%; left: 0; animation-delay: 1.5s; }
@keyframes floatBadge { 0%,100% { transform: translateY(0) rotate(-3deg); } 50% { transform: translateY(-10px) rotate(3deg); } }

.wave-bottom { position: absolute; bottom: 0; left: 0; width: 100%; line-height: 0; }
.wave-bottom svg { width: 100%; height: 60px; }
.wave-bottom path { fill: #fff8f0; }

/* STIKER */
.stiker-excited {
  position: absolute; bottom: 80px; right: 0; width: 100px;
  transform: rotate(-12deg); pointer-events: none; z-index: 5;
  filter: drop-shadow(3px 5px 0 rgba(0,0,0,0.2));
  animation: floatBadge 3s ease-in-out infinite;
}
.stiker-hemat {
  display: block; width: 130px; margin: 0 auto 1rem;
  pointer-events: none; filter: drop-shadow(3px 4px 0 rgba(0,0,0,0.15));
}
.stiker-ngiler {
  position: absolute; right: 0; top: -10px; width: 80px;
  transform: rotate(-10deg); pointer-events: none; z-index: 10;
  filter: drop-shadow(3px 4px 0 rgba(0,0,0,0.2));
  animation: floatBadge 3.5s ease-in-out infinite 0.3s;
}
.stiker-selfie {
  position: absolute; top: -20px; right: 0; width: 90px;
  transform: rotate(15deg); pointer-events: none; z-index: 10;
  filter: drop-shadow(3px 4px 0 rgba(0,0,0,0.2));
}
.stiker-dadah {
  width: 70px; filter: drop-shadow(3px 4px 0 rgba(0,0,0,0.2));
  pointer-events: none;
}

/* ── STATS BAR ── */
.stats-bar {
  background: linear-gradient(135deg, #3e2723 0%, #5d4037 50%, #8d6e63 100%);
  padding: 1.8rem 1rem;
  border-top: 4px solid #c8813a;
  border-bottom: 4px solid #c8813a;
  box-shadow: 0 6px 0 rgba(0,0,0,0.15);
  position: relative;
}
.stats-bar::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(255,255,255,0.03) 0px,
    rgba(255,255,255,0.03) 2px,
    transparent 2px, transparent 12px
  );
  pointer-events: none;
}
.stats-inner { max-width: 1000px; margin: 0 auto; display: flex; align-items: center; justify-content: space-around; gap: 2rem; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Fredoka One', 'Poppins', sans-serif;
  display: block; font-size: 2.2rem; font-weight: 400; color: #f5c98a;
  margin-bottom: 0.2rem; text-shadow: 2px 2px 0 rgba(0,0,0,0.3);
}
.stat-label { font-size: 0.82rem; color: #ffe0b2; font-weight: 800; letter-spacing: 0.3px; }
.stat-divider { width: 3px; height: 40px; background: rgba(200,129,58,0.5); border-radius: 4px; }

/* ── RAJUTAN BROWN ── */
/* Pattern stripes diagonal coklat brown, diterapkan ke semua card */
.keunggulan-card,
.testimoni-card,
.outlet-card,
.menu-foto-placeholder,
.galeri-item,
.form-card,
.qr-card,
.promo-step,
.tentang-placeholder,
.hero-img-placeholder,
.qr-box,
.qr-instruksi,
.qr-info-item {
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(93,64,55,0.045) 0px,
    rgba(93,64,55,0.045) 2px,
    transparent 2px,
    transparent 10px
  );
}
/* Card dengan background gelap — stripes lebih terang */
.promo-step {
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(255,255,255,0.06) 0px,
    rgba(255,255,255,0.06) 2px,
    transparent 2px,
    transparent 10px
  );
}

.section-center { text-align: center; margin-bottom: 3rem; }
.section-tag, .section-tag-center {
  display: inline-block;
  background: linear-gradient(135deg, #f5c98a, #e8a96a);
  color: #5c3317;
  padding: 0.45rem 1.1rem; border-radius: 50px;
  font-size: 0.82rem; font-weight: 800;
  border: 3px solid #c8813a;
  box-shadow: 0 4px 0 #8b5a2b;
  margin-bottom: 1rem;
  letter-spacing: 0.3px;
}
.section-title-center, .section-title-left {
  font-family: 'Fredoka One', 'Poppins', sans-serif;
  font-size: 2.5rem; font-weight: 400; letter-spacing: 0.5px;
  color: #5d4037;
  text-shadow: 3px 3px 0 #bcaaa4, 1px 1px 0 rgba(0,0,0,0.1);
  -webkit-text-fill-color: unset;
  line-height: 1.2; margin-bottom: 1rem;
}
.section-sub { font-size: 1rem; color: #333; max-width: 600px; margin: 0 auto; font-weight: 600; }

/* ── TENTANG ── */
.tentang {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #fff8f0 0%, #fdf3e7 100%);
  border-top: 5px solid #c8813a;
  border-bottom: 5px solid #c8813a;
  position: relative;
}
.tentang::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: repeating-linear-gradient(90deg,
    #c8813a 0px, #c8813a 20px,
    #e8a96a 20px, #e8a96a 40px,
    #f5c98a 40px, #f5c98a 60px
  );
}
.tentang-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.tentang-img-wrap { position: relative; }
.tentang-placeholder {
  width: 100%; aspect-ratio: 4/3; border-radius: 24px;
  background: #efebe9; border: 4px dashed #a1887f;
  display: flex; align-items: center; justify-content: center;
}
.img-placeholder { text-align: center; color: #8d6e63; }
.tentang-badge {
  position: absolute; bottom: -15px; right: -15px;
  background: linear-gradient(135deg, #c8813a, #e8a96a);
  color: #fff;
  padding: 0.8rem 1.5rem; border-radius: 50px; font-weight: 800;
  border: 3px solid #8b5a2b;
  box-shadow: 0 5px 0 #8b5a2b;
  font-family: 'Fredoka One', 'Poppins', sans-serif;
  letter-spacing: 0.3px;
}
.tentang-desc { font-size: 1rem; color: #333; line-height: 1.7; margin-bottom: 2rem; font-weight: 500; }
.tentang-points { display: grid; gap: 0.9rem; }
.point { display: flex; align-items: start; gap: 0.8rem; }
.point span { font-size: 1.3rem; }
.point p { font-size: 0.95rem; color: #222; font-weight: 700; }

/* ── KEUNGGULAN ── */
.keunggulan {
  padding: 5rem 2rem;
  background: linear-gradient(160deg, #fdf3e7 0%, #fce8d0 50%, #f5d5b0 100%);
  border-top: 5px solid #c8813a;
  border-bottom: 5px solid #c8813a;
  position: relative;
}
.keunggulan::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 6px;
  background: repeating-linear-gradient(90deg,
    #c8813a 0px, #c8813a 20px,
    #e8a96a 20px, #e8a96a 40px,
    #f5c98a 40px, #f5c98a 60px
  );
}
.keunggulan-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.keunggulan-card {
  background: linear-gradient(160deg, #fff8f0 0%, #fff 100%);
  border: 4px solid #c8813a;
  border-radius: 28px; padding: 2rem; text-align: center;
  transition: all 0.25s; position: relative;
  box-shadow: 0 8px 0 #8b5a2b;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(93,64,55,0.03) 0px,
    rgba(93,64,55,0.03) 2px,
    transparent 2px,
    transparent 10px
  );
}
.keunggulan-card:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 0 14px 0 #8b5a2b;
}
.keunggulan-card.featured {
  border-color: #e8a96a;
  background: linear-gradient(160deg, #fff8f0 0%, #fdf3e7 100%);
  box-shadow: 0 8px 0 #c8813a;
}
.keunggulan-card.featured:hover { box-shadow: 0 14px 0 #c8813a; }
.k-icon-wrap {
  width: 80px; height: 80px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  border: 3px solid #e8a96a;
  box-shadow: 0 4px 0 #c8813a;
  background: linear-gradient(135deg, #fff8f0, #fce8d0);
}
.k-icon-wrap span { font-size: 2.5rem; }
.keunggulan-card h3 {
  font-family: 'Fredoka One', 'Poppins', sans-serif;
  font-size: 1.3rem; font-weight: 400;
  color: #5c3317; margin-bottom: 0.7rem;
  letter-spacing: 0.3px;
  text-shadow: 1px 1px 0 #f5d5b0;
}
.keunggulan-card p { font-size: 0.92rem; color: #7a4a2a; line-height: 1.6; font-weight: 500; }
.featured-badge {
  position: absolute; top: -14px; right: 20px;
  background: linear-gradient(135deg, #c8813a, #e8a96a);
  color: #fff;
  padding: 0.35rem 1rem; border-radius: 50px;
  font-size: 0.75rem; font-weight: 900;
  border: 3px solid #8b5a2b;
  box-shadow: 0 3px 0 #8b5a2b;
  letter-spacing: 0.3px;
}

/* ── MENU FOTO ── */
.menu-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #fdf3e7 0%, #fce8d0 100%);
  border-top: 5px solid #c8813a;
  position: relative;
}
.menu-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: repeating-linear-gradient(90deg,
    #c8813a 0px, #c8813a 20px,
    #e8a96a 20px, #e8a96a 40px,
    #f5c98a 40px, #f5c98a 60px
  );
}
.menu-foto-scroll-wrap {}
.menu-foto-grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.menu-foto-placeholder {
  aspect-ratio: 4/3; border-radius: 20px;
  background: linear-gradient(160deg, #fff8f0, #fdf3e7);
  border: 4px dashed #c8813a;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; overflow: hidden;
  box-shadow: 0 6px 0 #8b5a2b;
  transition: transform 0.2s;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(93,64,55,0.04) 0px, rgba(93,64,55,0.04) 2px,
    transparent 2px, transparent 10px
  );
}
.menu-foto-placeholder:hover { transform: translateY(-4px) rotate(1deg); }

/* ── OUTLET ── */
.outlet-section {
  padding: 5rem 2rem;
  background: linear-gradient(160deg, #fff8f0 0%, #fdf3e7 50%, #fce8d0 100%);
  border-top: 5px solid #c8813a;
  border-bottom: 5px solid #c8813a;
  position: relative;
}
.outlet-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 6px;
  background: repeating-linear-gradient(90deg,
    #c8813a 0px, #c8813a 20px,
    #e8a96a 20px, #e8a96a 40px,
    #f5c98a 40px, #f5c98a 60px
  );
}
.outlets-scroll-wrap {}
.outlets-grid {
  max-width: 1060px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.outlet-skeleton {
  background: linear-gradient(90deg, #f5e6d3 25%, #ead5bc 50%, #f5e6d3 75%);
  background-size: 200% 100%; animation: skeleton 1.5s infinite;
  border-radius: 24px; height: 200px;
}
@keyframes skeleton { 0%{background-position:200% 0} 100%{background-position:-200% 0} }

/* Card outlet — layout vertikal, map di atas */
.outlet-card {
  background: #fff;
  border: 4px solid #c8813a;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.25s;
  box-shadow: 0 8px 0 #8b5a2b;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(93,64,55,0.03) 0px,
    rgba(93,64,55,0.03) 2px,
    transparent 2px,
    transparent 10px
  );
}
.outlet-card:hover {
  transform: translateY(-7px) rotate(-0.5deg);
  box-shadow: 0 14px 0 #8b5a2b;
}

/* Map di atas, full width */
.outlet-map-wrap {
  width: 100%; height: 160px;
  position: relative; overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, #fce8d0, #f5d5b0);
  border-bottom: 3px solid #c8813a;
}
.outlet-map-iframe {
  width: 100%; height: 100%;
  border: none; display: block;
  pointer-events: none;
}
.outlet-map-overlay {
  position: absolute; inset: 0; z-index: 2; cursor: pointer;
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 8px;
  background: linear-gradient(transparent 45%, rgba(62,39,35,0.45) 100%);
  text-decoration: none; transition: background 0.2s;
}
.outlet-map-overlay:hover {
  background: linear-gradient(transparent 25%, rgba(62,39,35,0.65) 100%);
}
.outlet-map-overlay span {
  font-size: 0.72rem; font-weight: 800; color: #fff;
  background: rgba(200,129,58,0.92);
  padding: 4px 12px; border-radius: 20px;
  border: 2px solid #f5c98a;
  box-shadow: 0 2px 0 #8b5a2b;
  letter-spacing: 0.3px;
}

/* Body card di bawah map */
.outlet-card-body {
  padding: 1rem 1.1rem 1.1rem;
  display: flex; flex-direction: column;
  gap: 0.35rem; flex: 1;
}
.outlet-header-row {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 0.5rem; margin-bottom: 0.4rem;
  flex-wrap: wrap;
}
.outlet-name {
  font-family: 'Fredoka One', 'Poppins', sans-serif;
  font-size: 1.05rem; font-weight: 400;
  color: #5c3317;
  letter-spacing: 0.3px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  text-shadow: 1px 1px 0 #f5d5b0;
}
.outlet-address {
  font-size: 0.8rem; color: #7a4a2a;
  line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
  font-weight: 600;
}
.outlet-hours {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.78rem; color: #5c3317; font-weight: 800;
  background: #fff8f0;
  border: 2px solid #e8a96a;
  border-radius: 20px; padding: 0.2rem 0.7rem;
  width: fit-content;
  box-shadow: 0 2px 0 #c8813a;
}
.outlet-maps {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.78rem; font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #c8813a, #e8a96a);
  border: 2px solid #8b5a2b;
  border-radius: 20px; padding: 0.3rem 0.9rem;
  text-decoration: none; margin-top: 0.3rem;
  width: fit-content;
  box-shadow: 0 3px 0 #8b5a2b;
  transition: all 0.2s;
}
.outlet-maps:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 0 #8b5a2b;
  background: linear-gradient(135deg, #8b5a2b, #c8813a);
}

/* Badge status buka/tutup — kartun brown */
.outlet-status {
  font-size: 0.72rem; font-weight: 900;
  padding: 0.28rem 0.8rem; border-radius: 50px;
  white-space: nowrap; letter-spacing: 0.3px;
  border: 2px solid;
  box-shadow: 0 3px 0;
}
.outlet-status.buka {
  background: linear-gradient(135deg, #d4edda, #b8dfc4);
  color: #1a5c2a;
  border-color: #5cb87a;
  box-shadow: 0 3px 0 #3a8a52;
  animation: pulseBuka 2.5s ease-in-out infinite;
}
@keyframes pulseBuka {
  0%,100% { box-shadow: 0 3px 0 #3a8a52; }
  50%      { box-shadow: 0 3px 0 #3a8a52, 0 0 10px rgba(90,184,122,0.5); }
}
.outlet-status.tutup {
  background: linear-gradient(135deg, #fde8e8, #f5c6c6);
  color: #8b1a1a;
  border-color: #e07070;
  box-shadow: 0 3px 0 #b04040;
}
.scroll-hint {
  text-align: center; font-size: 0.78rem;
  color: #a1887f; margin-top: 0.8rem;
  display: flex; align-items: center; justify-content: center; gap: 0.3rem;
  font-weight: 700;
}

/* ── TESTIMONI ── */
.testimoni-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #fff8f0 0%, #fdf3e7 100%);
  border-top: 5px solid #c8813a;
  position: relative;
}
.testimoni-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: repeating-linear-gradient(90deg,
    #c8813a 0px, #c8813a 20px,
    #e8a96a 20px, #e8a96a 40px,
    #f5c98a 40px, #f5c98a 60px
  );
}
.testimoni-slider-wrap {
  overflow: hidden;
  cursor: grab;
  user-select: none;
  padding: 1rem 0 1.5rem;
  max-width: 100vw;
}
.testimoni-slider-wrap:active { cursor: grabbing; }
.testimoni-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  transition: transform 0.4s ease;
  padding: 0 2rem;
}
.testimoni-card {
  background: linear-gradient(160deg, #fff8f0 0%, #fff 100%);
  border: 4px solid #c8813a;
  border-radius: 28px; padding: 2rem;
  box-shadow: 0 7px 0 #8b5a2b;
  transition: box-shadow 0.25s, transform 0.25s;
  width: 300px; flex-shrink: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(93,64,55,0.03) 0px, rgba(93,64,55,0.03) 2px,
    transparent 2px, transparent 10px
  );
}
.testimoni-card:hover { transform: translateY(-6px); box-shadow: 0 12px 0 #8b5a2b; }
.testimoni-bintang { font-size: 1.2rem; margin-bottom: 0.8rem; }
.testimoni-pesan { font-size: 0.95rem; color: #5c3317; line-height: 1.7; font-style: italic; margin-bottom: 1.2rem; font-weight: 500; }
.testimoni-nama { font-size: 0.88rem; font-weight: 800; color: #3e2723; }
.testimoni-skeleton {
  background: linear-gradient(90deg, #f5e6d3 25%, #ead5bc 50%, #f5e6d3 75%);
  background-size: 200% 100%; animation: skeleton 1.5s infinite;
  border-radius: 24px; height: 160px;
}

/* ── GALERI SELFIE ── */
.galeri-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #fdf3e7 0%, #fce8d0 100%);
  border-top: 5px solid #c8813a;
  position: relative;
}
.galeri-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: repeating-linear-gradient(90deg,
    #c8813a 0px, #c8813a 20px,
    #e8a96a 20px, #e8a96a 40px,
    #f5c98a 40px, #f5c98a 60px
  );
}
.galeri-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem; }
.galeri-item {
  position: relative; aspect-ratio: 1;
  border-radius: 20px; overflow: hidden; cursor: pointer;
  border: 4px solid #c8813a;
  box-shadow: 0 5px 0 #8b5a2b;
  transition: transform 0.25s;
  display: flex; flex-direction: column;
}
.galeri-item:hover { transform: scale(1.06) rotate(2deg); }
.galeri-item img { width: 100%; flex: 1; object-fit: cover; transition: transform 0.3s; }
.galeri-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: #fff; font-size: 0.7rem; font-weight: 700;
  padding: 0.5rem; text-align: center;
  opacity: 0; transition: opacity 0.3s;
}
.galeri-item:hover .galeri-overlay { opacity: 1; }

/* ── PROMO SECTION ── */
.promo-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #8d6e63 0%, #a1887f 50%, #bcaaa4 100%);
  border-top: 4px solid #5d4037; border-bottom: 4px solid #5d4037;
}
.promo-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.promo-info { color: #fff; }
.promo-title {
  font-family: 'Fredoka One', 'Poppins', sans-serif;
  font-size: 3.2rem; font-weight: 400; color: #fff; line-height: 1.1; margin-bottom: 1.5rem;
  text-shadow: 4px 4px 0 rgba(0,0,0,0.35), 2px 2px 0 rgba(0,0,0,0.25);
  letter-spacing: 1px;
}
.promo-desc { font-size: 1.05rem; color: #fff; line-height: 1.7; margin-bottom: 2rem; font-weight: 600; text-shadow: 2px 2px 4px rgba(0,0,0,0.4); }
.promo-steps { display: grid; gap: 1rem; margin-bottom: 2rem; }
.promo-step {
  display: flex; gap: 1rem; align-items: start;
  background: rgba(93,64,55,0.4);
  backdrop-filter: blur(8px);
  padding: 1rem; border-radius: 16px;
  border: 3px solid #5d4037;
  box-shadow: 0 4px 0 #4e342e;
}
.ps-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: #ffb74d; color: #3e2723;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.2rem; flex-shrink: 0;
  border: 3px solid #f57c00;
  box-shadow: 0 3px 0 #e65100;
}
.promo-step strong { display: block; font-size: 1rem; margin-bottom: 0.3rem; color: #fff; font-weight: 800; text-shadow: 2px 2px 3px rgba(0,0,0,0.5); }
.promo-step p { font-size: 0.85rem; color: #fff; font-weight: 600; text-shadow: 2px 2px 3px rgba(0,0,0,0.5); }
.promo-syarat {
  background: rgba(62,39,35,0.5);
  border: 3px solid #5d4037;
  border-radius: 16px; padding: 1rem;
  box-shadow: 0 4px 0 #4e342e;
}
.promo-syarat p { font-size: 0.85rem; color: #fff; font-weight: 700; text-shadow: 2px 2px 3px rgba(0,0,0,0.5); }

/* ── FORM CARD ── */
.promo-form-wrap { position: relative; }
.form-card {
  background: linear-gradient(160deg, #efebe9 0%, #d7ccc8 100%);
  border-radius: 28px; padding: 2rem;
  border: 4px solid #a1887f;
  box-shadow: 0 10px 0 #795548;
  position: relative; overflow: hidden;
}
.form-card::before {
  content: '🥤'; position: absolute; top: 12px; right: 16px;
  font-size: 2rem; opacity: 0.25; pointer-events: none;
}
.form-card h3 {
  font-family: 'Fredoka One', 'Poppins', sans-serif;
  font-size: 1.6rem; font-weight: 400; color: #3e2723; margin-bottom: 0.5rem;
  text-shadow: 2px 2px 0 #bcaaa4;
  letter-spacing: 0.5px;
}
.form-sub { font-size: 0.88rem; color: #4e342e; font-weight: 700; margin-bottom: 1.5rem; }

.preview-wrap {
  width: 100%; height: 200px;
  border: 4px dashed #a1887f; border-radius: 20px;
  cursor: pointer; overflow: hidden; position: relative;
  background: linear-gradient(135deg, #efebe9, #d7ccc8);
  transition: all 0.3s; margin-bottom: 1.2rem;
  display: flex; align-items: center; justify-content: center;
}
.preview-wrap:hover { border-color: #5d4037; transform: scale(1.01); box-shadow: 0 6px 0 #a1887f; }
.preview-placeholder { text-align: center; color: #795548; }
.preview-placeholder span { font-size: 2.5rem; display: block; margin-bottom: 0.5rem; }
.preview-placeholder p { font-size: 0.9rem; font-weight: 700; }
.preview-placeholder small { font-size: 0.72rem; color: #a1887f; }
#previewImg { width: 100%; height: 100%; object-fit: cover; }
.preview-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0.4);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 0.9rem;
  opacity: 0; transition: opacity 0.3s;
}
.preview-wrap:hover .preview-overlay { opacity: 1; }

.input-group { margin-bottom: 1.2rem; }
.input-group label { display: block; font-size: 0.85rem; font-weight: 700; color: #4e342e; margin-bottom: 0.4rem; }
.input-group input {
  width: 100%; padding: 0.8rem 1rem;
  border: 3px solid #bcaaa4; border-radius: 14px;
  font-size: 1rem; font-family: 'Poppins', sans-serif;
  outline: none; transition: border-color 0.3s;
  background: rgba(255,255,255,0.85);
}
.input-group input:focus { border-color: #5d4037; box-shadow: 0 4px 0 #a1887f; }

.btn-upload {
  width: 100%; padding: 1rem;
  background: linear-gradient(135deg, #6d4c41, #8d6e63);
  color: #fff; font-size: 1rem; font-weight: 900;
  border: 3px solid #4e342e;
  box-shadow: 0 7px 0 #4e342e;
  border-radius: 50px; cursor: pointer;
  transition: all 0.2s; letter-spacing: 0.5px;
}
.btn-upload:hover { transform: translateY(-4px); box-shadow: 0 11px 0 #3e2723; }
.btn-upload:disabled { opacity: 0.6; cursor: not-allowed; transform: none; box-shadow: 0 4px 0 #4e342e; }

/* ── QR CARD ── */
.qr-card {
  background: linear-gradient(160deg, #fffde7 0%, #fff9c4 100%);
  border-radius: 32px; padding: 2rem;
  border: 5px solid #ffd54f;
  box-shadow: 0 12px 0 #f9a825, 0 16px 30px rgba(249,168,37,0.25);
  position: relative; overflow: hidden;
}
.qr-card::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(255,213,79,0.5), transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.qr-card::after {
  content: '';
  position: absolute; bottom: -30px; left: -30px;
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(255,183,77,0.4), transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.qr-header { text-align: center; margin-bottom: 1.5rem; }
.qr-icon {
  font-size: 3.5rem; margin-bottom: 0.5rem; display: block;
  animation: badgeBounce 2s ease-in-out infinite;
}
.qr-header h3 {
  font-family: 'Fredoka One', 'Poppins', sans-serif;
  font-size: 1.9rem; font-weight: 400; color: #bf360c;
  text-shadow: 3px 3px 0 #ffe0b2; letter-spacing: 0.5px; margin-bottom: 0.3rem;
}
.qr-header p { font-size: 0.92rem; color: #555; font-weight: 700; }

.qr-box {
  background: #fff;
  border: 5px solid #ffd54f;
  border-radius: 24px; padding: 1.5rem; text-align: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 0 #f9a825;
  position: relative;
}
.qr-box::before {
  content: '';
  position: absolute; inset: 6px;
  border: 3px dashed rgba(255,213,79,0.4);
  border-radius: 18px; pointer-events: none;
}
.qr-img {
  width: 210px; height: 210px; margin: 0 auto 1rem;
  border-radius: 16px; background: #fff; padding: 0.5rem;
  border: 3px solid #ffd54f;
  box-shadow: 0 4px 0 #f9a825;
  display: block;
}
.qr-kode-wrap { display: flex; align-items: center; justify-content: center; gap: 0.8rem; margin-top: 0.8rem; }
.qr-kode {
  font-size: 1.1rem; font-weight: 900; color: #1b5e20;
  letter-spacing: 3px; font-family: monospace;
  background: #f0fdf4; padding: 0.4rem 1rem;
  border-radius: 10px; border: 2px solid #86efac;
}
.btn-copy {
  background: #f0fdf4; border: 3px solid #86efac;
  border-radius: 10px; padding: 0.4rem 0.8rem;
  cursor: pointer; font-size: 1rem; transition: all 0.2s;
  box-shadow: 0 4px 0 #86efac; font-weight: 700;
}
.btn-copy:hover { background: #dcfce7; transform: translateY(-3px); box-shadow: 0 7px 0 #86efac; }

.qr-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }
.qr-info-item { border-radius: 20px; padding: 1rem; text-align: center; }
.qr-info-item.green {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border: 4px solid #4caf50;
  box-shadow: 0 5px 0 #388e3c;
}
.qr-info-item.yellow {
  background: linear-gradient(135deg, #fffde7, #fff9c4);
  border: 4px solid #ffd54f;
  box-shadow: 0 5px 0 #f9a825;
}
.qr-info-item span { display: block; font-size: 0.75rem; color: #333; font-weight: 800; margin-bottom: 0.3rem; text-transform: uppercase; letter-spacing: 0.5px; }
.qr-info-item strong {
  font-family: 'Fredoka One', 'Poppins', sans-serif;
  font-size: 1.3rem; color: #111; font-weight: 400; letter-spacing: 0.3px;
}

.qr-instruksi {
  background: linear-gradient(135deg, #fffde7, #fff9c4);
  border: 4px solid #ffd54f;
  border-radius: 20px; padding: 1.5rem; margin-bottom: 1.5rem;
  box-shadow: 0 5px 0 #f9a825;
}
.qr-instruksi-title {
  font-family: 'Fredoka One', 'Poppins', sans-serif;
  font-size: 1rem; color: #bf360c; margin-bottom: 1rem;
  text-align: center; letter-spacing: 0.3px;
}
.instruksi-step { display: flex; gap: 1rem; align-items: center; margin-bottom: 0.9rem; }
.instruksi-step:last-child { margin-bottom: 0; }
.instruksi-num {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: #ffd54f; border: 3px solid #f9a825;
  box-shadow: 0 3px 0 #f9a825;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 0.9rem; color: #333;
}
.instruksi-step p { font-size: 0.9rem; color: #222; font-weight: 700; line-height: 1.4; }

.qr-warning {
  background: linear-gradient(135deg, #fff3e0, #ffe0b2);
  border: 4px solid #ff9800;
  border-radius: 16px; padding: 0.9rem 1rem;
  font-size: 0.85rem; color: #bf360c; text-align: center;
  margin-bottom: 1.2rem; font-weight: 700;
  box-shadow: 0 4px 0 #f57c00;
}

.btn-download {
  width: 100%; padding: 1rem;
  background: linear-gradient(135deg, #5d4037, #8d6e63);
  color: #fff; font-size: 1rem; font-weight: 900;
  font-family: 'Fredoka One', 'Poppins', sans-serif;
  letter-spacing: 0.5px;
  border: 4px solid #3e2723;
  box-shadow: 0 8px 0 #3e2723;
  border-radius: 50px; cursor: pointer;
  transition: all 0.2s; margin-bottom: 0.9rem; display: block;
}
.btn-download:hover { transform: translateY(-5px); box-shadow: 0 13px 0 #3e2723; }

.btn-tiktok {
  width: 100%; padding: 1rem;
  background: linear-gradient(135deg, #010101, #2d2d2d);
  color: #fff; font-size: 1rem; font-weight: 900;
  font-family: 'Fredoka One', 'Poppins', sans-serif;
  border: 4px solid #69c9d0;
  box-shadow: 0 8px 0 #00838f;
  border-radius: 50px; cursor: pointer;
  transition: all 0.2s; margin-bottom: 0.9rem;
  letter-spacing: 0.5px; display: flex; justify-content: center; align-items: center; gap: 8px;
}
.btn-tiktok:hover { transform: translateY(-5px); box-shadow: 0 13px 0 #ee1d52; border-color: #ee1d52; }

/* TikTok action buttons */
.tiktok-actions {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.7rem; margin-bottom: 0.9rem;
}
.btn-tiktok-caption {
  padding: 0.85rem 0.5rem;
  background: linear-gradient(135deg, #5d4037, #8d6e63);
  color: #fff; font-size: 0.85rem; font-weight: 800;
  border: 3px solid #3e2723; box-shadow: 0 5px 0 #3e2723;
  border-radius: 50px; cursor: pointer; transition: all 0.2s;
  font-family: 'Poppins', sans-serif;
}
.btn-tiktok-caption:hover { transform: translateY(-3px); box-shadow: 0 8px 0 #3e2723; }
.btn-tiktok-follow {
  padding: 0.85rem 0.5rem;
  background: linear-gradient(135deg, #010101, #2d2d2d);
  color: #fff; font-size: 0.85rem; font-weight: 800;
  border: 3px solid #69c9d0; box-shadow: 0 5px 0 #00838f;
  border-radius: 50px; cursor: pointer; transition: all 0.2s;
  font-family: 'Poppins', sans-serif;
}
.btn-tiktok-follow:hover { transform: translateY(-3px); box-shadow: 0 8px 0 #ee1d52; border-color: #ee1d52; }

/* TikTok badge di galeri */
.galeri-tiktok {
  display: block; text-align: center;
  font-size: 0.72rem; font-weight: 800;
  color: #fff; background: rgba(0,0,0,0.75);
  padding: 0.25rem 0.5rem; border-radius: 0 0 12px 12px;
  text-decoration: none; transition: background 0.2s;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.galeri-tiktok:hover { background: #ee1d52; }

.btn-lagi {
  width: 100%; padding: 0.9rem;
  background: #fff9c4; border: 4px solid #ffd54f;
  color: #bf360c; border-radius: 50px; font-weight: 900;
  font-family: 'Fredoka One', 'Poppins', sans-serif;
  cursor: pointer; transition: all 0.2s;
  box-shadow: 0 6px 0 #f9a825; letter-spacing: 0.3px;
}
.btn-lagi:hover { background: #ffd54f; color: #333; transform: translateY(-4px); box-shadow: 0 10px 0 #f9a825; }

/* ── SHARE BUTTONS ── */
.share-wrap { margin-bottom: 1rem; }
.share-label { font-size: 0.82rem; color: #555; font-weight: 800; margin-bottom: 0.6rem; text-align: center; }
.share-btns { display: flex; gap: 0.8rem; }
.btn-share-wa {
  flex: 1; padding: 0.75rem;
  background: linear-gradient(135deg, #25d366, #1ebe5d);
  color: #fff;
  border: 4px solid #128c7e; border-radius: 16px;
  font-weight: 900; font-size: 0.9rem; cursor: pointer;
  transition: all 0.2s; box-shadow: 0 5px 0 #0a6b5e;
}
.btn-share-wa:hover { transform: translateY(-4px); box-shadow: 0 9px 0 #0a6b5e; }
.btn-share-copy {
  flex: 1; padding: 0.75rem;
  background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
  color: #1a1a1a;
  border: 4px solid #9ca3af; border-radius: 16px;
  font-weight: 900; font-size: 0.9rem; cursor: pointer;
  transition: all 0.2s; box-shadow: 0 5px 0 #6b7280;
}
.btn-share-copy:hover { background: #e5e7eb; transform: translateY(-4px); box-shadow: 0 9px 0 #6b7280; }

/* ── CONFETTI ── */
.confetti-wrap { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; overflow: hidden; }
.confetti-piece { position: absolute; width: 8px; height: 8px; border-radius: 2px; animation: confettiFall 1.5s ease-out forwards; }
@keyframes confettiFall { 0% { transform: translateY(-20px) rotate(0deg); opacity: 1; } 100% { transform: translateY(300px) rotate(720deg); opacity: 0; } }

/* ── COUNTDOWN TIMER ── */
.countdown-wrap { margin-bottom: 1.5rem; }
.countdown-label { font-size: 0.85rem; color: rgba(255,255,255,0.9); font-weight: 700; margin-bottom: 0.6rem; }
.countdown-timer { display: flex; align-items: center; gap: 0.5rem; }
.countdown-box {
  background: rgba(255,255,255,0.25); backdrop-filter: blur(8px);
  border: 3px solid rgba(255,255,255,0.5);
  border-radius: 12px; padding: 0.6rem 1rem; text-align: center; min-width: 60px;
  box-shadow: 0 4px 0 rgba(255,255,255,0.2);
}
.countdown-box span { display: block; font-size: 1.8rem; font-weight: 900; color: #ffb74d; line-height: 1; }
.countdown-box small { font-size: 0.65rem; color: #ffccbc; font-weight: 700; text-transform: uppercase; }
.countdown-sep { font-size: 1.8rem; font-weight: 900; color: #ffb74d; line-height: 1; }

/* ── FOOTER ── */
.footer {
  background: linear-gradient(135deg, #2c1a0e, #3e2723);
  color: rgba(255,255,255,0.75);
  padding: 3rem 2rem 1.5rem;
  border-top: 5px solid #c8813a;
}
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; margin-bottom: 2rem; }
.footer-brand { display: flex; align-items: center; gap: 1rem; }
.footer-logo { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 3px solid #c8813a; box-shadow: 0 4px 0 #8b5a2b; }
.footer-brand h3 { font-size: 1.3rem; font-weight: 900; color: #fff; margin-bottom: 0.2rem; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.5); font-weight: 600; }
.footer-links { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.7); text-decoration: none; font-weight: 700; font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: #e8a96a; }
.wa-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 1.5rem; background: #25d366; color: white;
  font-weight: 800; border-radius: 50px; text-decoration: none;
  border: 3px solid #128c7e; box-shadow: 0 5px 0 #128c7e;
  transition: all 0.2s;
}
.wa-btn:hover { background: #128c7e; transform: translateY(-3px); box-shadow: 0 8px 0 #0a6b5e; }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(200,129,58,0.25); }
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.45); }

/* ── SCROLL TO TOP ── */
.scroll-top {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 50px; height: 50px;
  background: linear-gradient(135deg, #5d4037, #8d6e63);
  color: #fff; border: 3px solid #3e2723;
  box-shadow: 0 6px 0 #3e2723;
  border-radius: 50%; font-size: 1.3rem; font-weight: 900;
  cursor: pointer; opacity: 0; visibility: hidden;
  transform: translateY(20px); transition: all 0.3s; z-index: 99;
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { transform: translateY(-5px); box-shadow: 0 10px 0 #7c3aed; }

/* ── REVEAL ANIMATION ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay   { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ── ERROR STATE ── */
.error-state { text-align: center; padding: 2rem; color: #ef4444; font-weight: 700; background: #fee2e2; border-radius: 16px; border: 3px solid #fca5a5; }

/* ── BANNER PENGUMUMAN ── */
#bannerPengumuman { border-bottom: 3px solid rgba(255,255,255,0.3); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-hamburger { display: block; }
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(62,39,35,0.97); backdrop-filter: blur(12px);
    padding: 1rem 2rem 1.5rem; gap: 1rem;
    box-shadow: 0 8px 0 #8b5a2b;
    border-bottom: 4px solid #c8813a;
  }
  .nav-links.open { display: flex; }
  .nav-links a { color: #ffe0b2 !important; font-size: 1rem; padding: 0.5rem 0; border-bottom: 2px dashed #c8813a; }
  .nav-links a:last-child { border-bottom: none; }
  .nav-cta { background: linear-gradient(135deg,#c8813a,#e8a96a); color: #fff !important; padding: 0.8rem 1.2rem !important; border-radius: 50px; text-align: center; border-bottom: none !important; }

  .hero { grid-template-columns: 1fr; padding: 6rem 1.5rem 4rem; }
  .hero-title { font-size: 2.4rem; }
  .hero-right { order: -1; }

  .stats-inner { flex-direction: column; gap: 1.2rem; }
  .stat-divider { display: none; }

  .tentang-inner, .promo-inner { grid-template-columns: 1fr; gap: 2rem; }

  .menu-section { padding: 3rem 0; }
  .menu-foto-scroll-wrap {
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding: 0 1.5rem 1rem; display: flex; cursor: grab;
  }
  .menu-foto-scroll-wrap:active { cursor: grabbing; }
  .menu-foto-grid { display: flex; gap: 1rem; width: max-content; }
  .menu-foto-placeholder { width: 72vw; max-width: 280px; flex-shrink: 0; scroll-snap-align: start; aspect-ratio: 4/3; }

  .outlet-section { padding: 3rem 0; }
  .outlets-scroll-wrap {
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding: 0 1.5rem 1rem; display: flex; cursor: grab;
  }
  .outlets-scroll-wrap:active { cursor: grabbing; }
  .outlets-grid { display: flex; gap: 1rem; width: max-content; }
  .outlet-card { width: 72vw; max-width: 280px; flex-shrink: 0; scroll-snap-align: start; }
  .outlet-map-wrap { height: 130px; }

  .countdown-timer { gap: 0.3rem; }
  .countdown-box { min-width: 50px; padding: 0.5rem 0.7rem; }
  .countdown-box span { font-size: 1.4rem; }

  .galeri-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 0.6rem; }
  .testimoni-card { width: 260px; }
  .share-btns { flex-direction: column; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 1rem; }
  .scroll-top { bottom: 1rem; right: 1rem; width: 44px; height: 44px; font-size: 1.1rem; }
  .section-title-center, .section-title-left { font-size: 2rem; }
  .promo-title { font-size: 2.3rem; }
  .hero-title { font-size: 2.6rem; }
}

/* ── FAQ SECTION ─────────────────────────────────────────── */
.faq-section {
  padding: 5rem 1.5rem;
  background: linear-gradient(160deg, #fff8f0 0%, #fdf3e7 60%, #fce8d0 100%);
  position: relative;
}
.faq-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: repeating-linear-gradient(90deg, #c8813a 0px, #c8813a 20px, #e8a96a 20px, #e8a96a 40px, #f5c98a 40px, #f5c98a 60px);
}
.faq-list {
  max-width: 760px;
  margin: 2.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.faq-item {
  background: #fff;
  border: 3px solid #c8813a;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 0 #8b5a2b;
  transition: transform 0.15s, box-shadow 0.15s;
}
.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 9px 0 #8b5a2b;
}
.faq-item[open] {
  background: linear-gradient(180deg, #fff8f0 0%, #fff 100%);
}
.faq-item summary {
  padding: 1.1rem 1.4rem;
  font-weight: 800;
  font-size: 1rem;
  color: #5c3317;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(90deg, #fff8f0, #fff);
  border-bottom: 2px dashed transparent;
  transition: border-color 0.2s;
}
.faq-item[open] summary {
  border-bottom-color: #e8c49a;
}
.faq-item summary::before {
  content: '🍵';
  font-size: 1.2rem;
  flex-shrink: 0;
}
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: #c8813a;
  font-weight: 900;
  flex-shrink: 0;
  transition: transform 0.25s;
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 1rem 1.4rem 1.3rem 3.4rem;
  color: #7a4a2a;
  line-height: 1.75;
  font-size: 0.95rem;
  border-top: none;
}
.faq-item p a {
  color: #c8813a;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-style: dotted;
}

/* ── CTA PENUTUP ─────────────────────────────────────────── */
.cta-section { padding: 5rem 1.5rem; background: linear-gradient(135deg, #1a7a3c 0%, #2ecc71 100%); text-align: center; }
.cta-inner { max-width: 640px; margin: 0 auto; }
.cta-inner h2 { font-size: 2.2rem; font-weight: 800; color: #fff; margin-bottom: 1rem; line-height: 1.3; }
.cta-inner p { color: rgba(255,255,255,0.88); font-size: 1.05rem; margin-bottom: 2rem; line-height: 1.7; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-section .btn-primary-hero { background: #fff; color: #1a7a3c; border: none; }
.cta-section .btn-primary-hero:hover { background: #f0fdf4; }
.cta-section .btn-outline-hero { border-color: rgba(255,255,255,0.7); color: #fff; }
.cta-section .btn-outline-hero:hover { background: rgba(255,255,255,0.15); }

@media (max-width: 600px) {
  .cta-inner h2 { font-size: 1.7rem; }
  .faq-item summary { font-size: 0.93rem; }
}

/* ── PRODUK & HARGA ──────────────────────────────────────── */
.produk-wrap { padding: 0 2rem 2rem; }
.produk-subtitle {
  font-family: 'Fredoka One', 'Poppins', sans-serif;
  font-size: 1.6rem; color: #5d4037;
  text-shadow: 2px 2px 0 #f8bbd0;
  letter-spacing: 0.3px;
}
.produk-grid {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.produk-card {
  background: #fff;
  border: 3px solid #ffd54f;
  border-radius: 18px;
  padding: 1rem 1.2rem;
  display: flex; align-items: center; gap: 1rem;
  box-shadow: 0 5px 0 #f9a825;
  transition: all 0.2s;
}
.produk-card:hover { transform: translateY(-4px); box-shadow: 0 9px 0 #f9a825; }
.produk-icon { font-size: 2rem; flex-shrink: 0; }
.produk-info { flex: 1; min-width: 0; }
.produk-nama { font-size: 0.95rem; font-weight: 800; color: #1a1a1a; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.produk-kategori {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  background: #fff8f0; color: #5c3317;
  padding: 0.15rem 0.6rem; border-radius: 50px;
  border: 1.5px solid #e8a96a; margin-top: 0.2rem;
}
.produk-harga-wrap { text-align: right; flex-shrink: 0; }
.produk-harga { font-size: 1rem; font-weight: 900; color: #1a7a3c; }
.produk-harga-coret { display: block; font-size: 0.75rem; color: #aaa; text-decoration: line-through; font-weight: 600; }
.produk-harga-promo { display: block; font-size: 1rem; font-weight: 900; color: #bf360c; }
.produk-badge-qr {
  display: inline-block; margin-top: 0.3rem;
  font-size: 0.65rem; font-weight: 800;
  background: #fff3e0; color: #e65100;
  border: 1.5px solid #ffb74d;
  border-radius: 20px; padding: 1px 7px;
  letter-spacing: 0.3px;
}
.produk-promo-note {
  max-width: 1100px; margin: 1rem auto 0;
  font-size: 0.82rem; color: #7a5c00;
  background: #fffde7; border: 1.5px solid #ffe082;
  border-radius: 12px; padding: 0.7rem 1.1rem;
  line-height: 1.6;
}
.produk-skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%; animation: skeleton 1.5s infinite;
  border-radius: 18px; height: 72px;
}

/* ── FLOATING WHATSAPP ───────────────────────────────────── */
.floating-wa {
  position: fixed; bottom: 5rem; left: 1.5rem; z-index: 98;
  display: flex; align-items: center; gap: 0.6rem;
  background: #25d366; color: #fff;
  padding: 0.75rem 1.2rem; border-radius: 50px;
  font-weight: 800; font-size: 0.9rem;
  text-decoration: none;
  border: 3px solid #128c7e;
  box-shadow: 0 6px 0 #0a6b5e, 0 8px 20px rgba(37,211,102,0.35);
  transition: all 0.25s;
  animation: floatWA 3s ease-in-out infinite;
}
.floating-wa:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 0 #0a6b5e, 0 14px 30px rgba(37,211,102,0.45);
}
@keyframes floatWA {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}
.floating-wa svg { flex-shrink: 0; }

/* ── FOOTER KONTAK ───────────────────────────────────────── */
.footer-kontak { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-kontak-title { font-size: 0.8rem; font-weight: 800; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.2rem; }
.footer-nomor { font-size: 0.9rem; color: rgba(255,255,255,0.75); font-weight: 700; }
.footer-jam { font-size: 0.85rem; color: rgba(255,255,255,0.6); font-weight: 600; }
.footer-inner { align-items: flex-start; }

/* ── STAT STATUS BUKA ────────────────────────────────────── */
#statStatusBuka { font-size: 1.6rem !important; }

/* ── RESPONSIVE TAMBAHAN ─────────────────────────────────── */
@media (max-width: 768px) {
  .produk-grid { grid-template-columns: 1fr; }
  .produk-wrap { padding: 0 1rem 1.5rem; }
  .floating-wa span { display: none; }
  .floating-wa { padding: 0.85rem; border-radius: 50%; }
  .footer-inner { align-items: center; }
  .stiker-excited { width: 70px; right: 0; bottom: 60px; }
  .stiker-ngiler { width: 60px; right: 0; top: 0; }
  .stiker-selfie { width: 65px; right: 0; top: 0; }
  .hero-badge-float { font-size: 0.75rem; padding: 0.4rem 0.9rem; }
  .badge-float-1 { right: 0; }
  .badge-float-2 { left: 0; }
  .promo-inner { gap: 1.5rem; }
  .qr-img { width: 170px; height: 170px; }
  .qr-info-grid { grid-template-columns: 1fr 1fr; gap: 0.7rem; }
  .produk-promo-note { margin: 0.8rem 1rem 0; }
}

/* ── TOMBOL PILIHAN FOTO MOBILE ── */
.foto-source-btns {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
  justify-content: center;
}
.btn-foto-source {
  flex: 1;
  padding: 0.7rem 0.5rem;
  border-radius: 12px;
  border: 2px solid #1a7a3c;
  background: #fff;
  color: #1a7a3c;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-foto-source:active {
  background: #1a7a3c;
  color: #fff;
  transform: scale(0.97);
}
