:root {
  --clr-primary: #f97316;          /* orange */
  --clr-primary-strong: #ef4444;   /* red */
  --clr-primary-soft: #ffedd5;
  --clr-accent-green: #22c55e;
  --clr-text: #0f172a;
  --clr-text-muted: #6b7280;
  --clr-border: #e5e7eb;
  --clr-bg-soft: #fff7ed;
  --radius-lg: 18px;
  --shadow-card: 0 18px 40px rgba(15, 23, 42, 0.16);
}

/* RESET & GLOBAL */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  /* gradasi ORANGE MUDA hampir putih */
  background: linear-gradient(
    180deg,
    #fffaf3 0%,
    #fff7ed 40%,
    #ffffff 100%
  );
  background-attachment: fixed;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 100% - 2.5rem);
  margin: 0 auto;
}

.section {
  padding: 4.5rem 0;
  background: transparent;
}

.section-soft {
  background: transparent;
}

.section-header.center {
  text-align: center;
}

.section-header.left {
  text-align: left;
}

.section-header h2 {
  margin: 0 0 0.5rem;
  font-size: 2rem;
  letter-spacing: -0.03em;
}

.section-header p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--clr-text-muted);
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(229, 231, 235, 0.85);
  backdrop-filter: blur(14px);
  transition: box-shadow 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.site-header.header-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.15);
  transform: translateY(-1px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.brand-tagline {
  font-size: 0.75rem;
  color: var(--clr-text-muted);
}

/* NAV */
.main-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-size: 0.9rem;
}

.main-nav a {
  text-decoration: none;
  color: var(--clr-text-muted);
  position: relative;
  padding-bottom: 0.15rem;
  transition: color 0.15s ease, transform 0.15s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-primary-strong));
  transition: width 0.18s ease;
}

.main-nav a:hover {
  color: var(--clr-text);
  transform: translateY(-1px);
}

.main-nav a:hover::after {
  width: 100%;
}

.nav-cta {
  border: none;
  border-radius: 999px;
  padding: 0.6rem 1.5rem;
  background: linear-gradient(135deg, var(--clr-primary-strong), var(--clr-primary));
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(248, 113, 113, 0.45);
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(248, 113, 113, 0.6);
  filter: brightness(1.03);
}

.nav-cta:active {
  transform: scale(0.97);
  box-shadow: 0 8px 18px rgba(248, 113, 113, 0.45);
}

/* NAV TOGGLE (MOBILE) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  border: none;
  background: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #4b5563;
}

/* HERO */
.hero {
  position: relative;
  width: 100%;
  height: 92vh;
  min-height: 600px;
  background: linear-gradient(180deg, #fffaf3, #ffedd5);
  background-image: url("assets/LOGO_RICI.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* glossy highlight */
.hero::before {
  content: "";
  position: absolute;
  inset: -25%;
  background: radial-gradient(circle at 50% -20%, rgba(255, 255, 255, 0.75), transparent 65%);
  mix-blend-mode: screen;
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}

/* overlay lembut & terang */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.96),
    rgba(255, 247, 237, 0.88)
  );
  backdrop-filter: blur(1px);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  color: #111827;
  text-align: center;
  animation: hero-fade-in 0.8s ease-out forwards;
}

@keyframes hero-fade-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-text {
  max-width: 720px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: #fee2e2;
  color: #7f1d1d;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  margin-bottom: 0.8rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.5rem;
  letter-spacing: -0.5px;
  color: #111827;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.16);
}

.hero-subtitle {
  font-size: 1.02rem;
  font-weight: 400;
  color: #374151;
  line-height: 1.6;
  margin: 0 auto 1.8rem;
  max-width: 640px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.4rem;
  justify-content: center;
}

.btn-primary {
  border: none;
  border-radius: 12px;
  padding: 0.8rem 1.9rem;
  background: linear-gradient(135deg, var(--clr-primary-strong), var(--clr-primary));
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(239, 68, 68, 0.55);
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
}

.btn-primary.big {
  padding-inline: 2.1rem;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 18px 40px rgba(239, 68, 68, 0.7);
  filter: brightness(1.04);
}

.btn-primary:active {
  transform: scale(0.97);
  box-shadow: 0 10px 22px rgba(239, 68, 68, 0.5);
}

.btn-ghost {
  border-radius: 12px;
  padding: 0.8rem 1.9rem;
  border: 1.8px solid #e5e7eb;
  background: rgba(255, 255, 255, 0.9);
  color: #111827;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease,
    transform 0.12s ease, box-shadow 0.12s ease;
}

.btn-ghost.big {
  padding-inline: 2rem;
}

.btn-ghost:hover {
  background: #f3f4f6;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.12);
  transform: translateY(-1px);
}

.btn-ghost:active {
  transform: scale(0.97);
}

/* platform order */
.hero-platforms {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.8rem;
  align-items: center;
}

.platform-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.platform-buttons.small {
  gap: 0.4rem;
}

.platform-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  font-size: 0.8rem;
  color: #111827;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
}

.platform-btn img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.platform-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.18);
  filter: brightness(1.03);
}

.platform-btn:active {
  transform: scale(0.96);
}

/* hero dots */
.hero-dots {
  display: flex;
  gap: 6px;
  margin-top: 1.1rem;
  justify-content: center;
}

.hero-dots button {
  width: 20px;
  height: 4px;
  border-radius: 999px;
  border: none;
  background: rgba(148, 163, 184, 0.5);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease, opacity 0.25s ease;
}

.hero-dots button.active {
  width: 34px;
  background: #111827;
}

/* PROMO BAR */
.section-promo {
  padding: 1.3rem 0 1.7rem;
  background: linear-gradient(90deg, #f97316, #fb923c);
  color: #fffdf7;
}

.promo-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.promo-text {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.9rem;
}

.promo-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffedd5;
}

/* MENU CARDS */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1.8rem;
}

.menu-card {
  position: relative;
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid rgba(229, 231, 235, 0.8);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  padding-bottom: 1rem;
  transition:
    transform 0.35s cubic-bezier(.25,.46,.45,1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.menu-card::before,
.menu-card::after {
  content: "";
  position: absolute;
  top: 0;
  width: 14px;
  height: 100%;
  opacity: 0;
  transition: opacity .35s ease, filter .35s ease, transform .35s ease;
  filter: blur(22px);
  z-index: 1;
}

.menu-card::before {
  left: -12px;
  background: linear-gradient(to right, rgba(249, 115, 22, 0.8), transparent);
}

.menu-card::after {
  right: -12px;
  background: linear-gradient(to left, rgba(239, 68, 68, 0.8), transparent);
}

.menu-card:hover {
  transform: translateY(-14px) scale(1.02);
  box-shadow: 0 30px 80px rgba(255, 111, 60, 0.35);
  border-color: rgba(255, 111, 60, 0.9);
}

.menu-card:hover::before,
.menu-card:hover::after {
  opacity: 1;
  filter: blur(26px);
  transform: scale(1.15);
}

.menu-img img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.menu-body {
  padding: 1.2rem 1.4rem 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.menu-body h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
}

.menu-body p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--clr-text-muted);
}

.menu-meta {
  margin-top: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-price {
  font-weight: 700;
  font-size: 0.93rem;
  color: #dc2626;
}

.btn-outline {
  border-radius: 999px;
  padding: 0.6rem 1.22rem;
  border: 1.9px solid var(--clr-primary);
  background: #fff6ec;
  color: #7c2d12;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.22s ease;
}

.btn-outline:hover {
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-strong));
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(255, 111, 60, 0.55);
}

.btn-outline:active {
  transform: scale(0.96);
}

/* -------- ORDER PAKET CARD -------- */
.order-pack-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1.4fr) auto;
  gap: 1.6rem;
  padding: 1.4rem 1.6rem;
  border-radius: 26px;
  background: radial-gradient(circle at 0 0, #fff7ed, #fee2e2);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  align-items: center;
}

.order-pack-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}

.order-pack-circle {
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.2rem;
}

.order-pack-circle img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  border-radius: 18px;
}

.order-pack-tag {
  border-radius: 999px;
  border: 1.3px dashed rgba(248, 113, 113, 0.7);
  background: #fff7ed;
  padding: 0.35rem 1.1rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: #b91c1c;
  cursor: default;
}

.order-pack-middle {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.order-pack-label {
  align-self: flex-start;
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(252, 165, 165, 0.7);
  font-size: 0.78rem;
  color: #b91c1c;
  background: rgba(255, 255, 255, 0.9);
}

.order-pack-title {
  margin: 0;
  font-size: 1.4rem;
  color: #7c2d12;
}

.order-pack-text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--clr-text-muted);
}

.order-pack-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.chip {
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(254, 215, 170, 0.9);
  font-size: 0.8rem;
}

.order-pack-right {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: flex-end;
}

.order-pack-cta {
  min-width: 230px;
}

.order-pack-hint {
  margin: 0;
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  max-width: 260px;
  text-align: right;
}

/* -------- BUNDLE SECTION -------- */
.section-bundle {
  padding-top: 3.5rem;
}

.bundle-header h2 {
  margin: 0 0 0.4rem;
}

.bundle-header p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--clr-text-muted);
}

.bundle-layout {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
  gap: 1.8rem;
  align-items: flex-start;
}

/* LEFT */
.bundle-subtitle {
  margin: 0 0 0.9rem;
  font-size: 1.05rem;
}

.bundle-paket-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.paket-btn {
  width: 100%;
  text-align: left;
  border-radius: 18px;
  border: 1px solid #fed7aa;
  background: #fff7ed;
  padding: 0.75rem 1.1rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
  transition: background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease,
    border-color 0.18s ease;
}

.paket-btn .paket-title {
  font-weight: 600;
  font-size: 0.95rem;
}

.paket-btn .paket-sub {
  font-size: 0.86rem;
  color: var(--clr-text-muted);
}

.paket-btn.active {
  background: linear-gradient(90deg, #f97316, #fb923c);
  border-color: transparent;
  box-shadow: 0 20px 40px rgba(248, 113, 22, 0.45);
  color: #fff7ed;
}

.paket-btn.active .paket-sub {
  color: #fffbeb;
}

/* preview gambar klik */
.menu-preview-heading {
  margin-top: 1.4rem;
  font-size: 0.86rem;
  color: var(--clr-text-muted);
}

.menu-preview-row {
  margin-top: 0.7rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.menu-preview-card {
  border: none;
  background: #ffffff;
  border-radius: 16px;
  padding: 0.5rem;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
  transition: transform 0.14s ease, box-shadow 0.14s ease, border-color 0.14s ease;
}

.menu-preview-card img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
}

.menu-preview-card span {
  font-size: 0.82rem;
  font-weight: 600;
  color: #7c2d12;
}

.menu-preview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(255, 111, 60, 0.35);
}

/* RIGHT PANEL – TANPA SCROLL INTERNAL */
.bundle-panel {
  background: #fffaf5;
  border-radius: 22px;
  border: 1px solid #fee2e2;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.26);
  display: flex;
  flex-direction: column;
}

.bundle-scroll {
  padding: 1.1rem 1.3rem 0.8rem;
}

/* custom scrollbar */
.bundle-scroll::-webkit-scrollbar {
  width: 6px;
}
.bundle-scroll::-webkit-scrollbar-thumb {
  background: #9ca3af;
  border-radius: 999px;
}
.bundle-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.bundle-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.bundle-table th,
.bundle-table td {
  padding: 0.55rem 0.6rem;
}

.bundle-table thead th {
  background: #f3f4f6;
  position: sticky;
  top: 0;
  z-index: 2;
}

.bundle-table tbody tr:nth-child(odd) {
  background: #ffffff;
}
.bundle-table tbody tr:nth-child(even) {
  background: #f9fafb;
}

.bundle-price {
  color: #dc2626;
  font-weight: 600;
}

/* qty control */
.qty-control {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: #f9fafb;
  border-radius: 999px;
  padding: 0.18rem 0.35rem;
  border: 1px solid #e5e7eb;
}

.qty-btn {
  border-radius: 999px;
  width: 24px;
  height: 24px;
  border: none;
  background: #ffffff;
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.12s ease, transform 0.12s ease, box-shadow 0.12s ease;
}

.qty-btn:hover {
  background: #fee2e2;
  box-shadow: 0 2px 6px rgba(248, 113, 113, 0.45);
}

.qty-btn:active {
  transform: scale(0.94);
}

.qty-value {
  min-width: 20px;
  text-align: center;
  font-size: 0.9rem;
}

/* note & summary */
.bundle-note-group {
  margin-top: 0.4rem;
}

.bundle-note-group label {
  font-size: 0.85rem;
  display: block;
  margin-bottom: 0.3rem;
}

#bundleNote {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--clr-border);
  padding: 0.55rem 0.75rem;
  font-family: inherit;
  font-size: 0.9rem;
  resize: vertical;
}

#bundleNote:focus {
  outline: none;
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 1px rgba(248, 113, 113, 0.4);
}

.bundle-summary {
  margin-top: 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.bundle-summary-label {
  color: var(--clr-text-muted);
}

.bundle-summary-total {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111827;
}

/* fixed button di bawah panel */
.bundle-fixed-btn {
  border-top: 1px solid rgba(254, 202, 202, 0.7);
  padding: 0.7rem 1.3rem 0.9rem;
  display: flex;
  justify-content: flex-end;
}

.bundle-wa-btn {
  min-width: 200px;
}

/* CTA ke halaman Paket Acara */
.bundle-acara-cta {
  margin-top: 1.8rem;
  padding: 1rem 1.2rem;
  border-radius: 20px;
  background: radial-gradient(circle at 0 0, #fff7ed, #fee2e2);
  box-shadow: 0 16px 40px rgba(248, 113, 22, 0.28);
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  animation: acaraFloat 3s ease-in-out infinite;
}

.bundle-acara-text {
  flex: 1 1 180px;
  font-size: 0.88rem;
  color: var(--clr-text-muted);
}

.bundle-acara-label {
  font-size: 0.86rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #b91c1c;
  margin-bottom: 0.25rem;
}

.bundle-acara-desc strong {
  color: #7c2d12;
}

.btn-acara-animated {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--clr-primary-strong), var(--clr-primary));
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(239, 68, 68, 0.7);
  transition: transform 0.16s ease, box-shadow 0.16s ease, filter 0.16s ease;
}

.btn-acara-animated:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 20px 46px rgba(239, 68, 68, 0.9);
  filter: brightness(1.05);
}

.btn-acara-animated:active {
  transform: scale(0.96);
  box-shadow: 0 10px 24px rgba(239, 68, 68, 0.6);
}

/* animasi mengambang halus */
@keyframes acaraFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

/* ===== FEATURE CAROUSEL: "Kenapa pilih RICI FOOD?" ===== */

.feature-carousel {
  position: relative;
  margin-top: 2rem;
}

/* jendela yang bisa di-scroll horizontal */
.fc-window {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}

/* track berisi slide-slide sejajar ke samping */
.fc-track {
  display: flex;
  gap: 1rem;
  padding: 0.2rem 0;
}

/* setiap slide satu layar (mobile) */
.feature-slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  display: flex;
}

/* kartu keunggulan */
.feature-item {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--clr-border);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.feature-icon {
  font-size: 1.6rem;
}

.feature-content h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
}

.feature-content p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--clr-text-muted);
}

/* panah kiri/kanan (desktop/tablet) */
.fc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: none;
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
  color: #4b5563;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
  z-index: 2;
}

.fc-arrow:hover {
  transform: translateY(-50%) translateY(-1px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.28);
  background: #f9fafb;
}

.fc-prev {
  left: -0.6rem;
}

.fc-next {
  right: -0.6rem;
}

/* dots indikator di bawah carousel */
.fc-dots {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.fc-dots button {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  background: rgba(148, 163, 184, 0.5);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.fc-dots button.active {
  width: 18px;
  background: #111827;
}

/* di layar lebih lebar, tampilkan 2 slide sekaligus biar lebih "penuh" */
@media (min-width: 900px) {
  .feature-slide {
    flex: 0 0 50%;
  }
}

/* FAQ */
.section-faq {
  background: transparent;
}

.faq-list {
  max-width: 720px;
  margin: 2rem auto 0;
}

.faq-item {
  border-radius: 12px;
  border: 1px solid var(--clr-border);
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: #f9fafb;
}

.faq-question {
  width: 100%;
  border: none;
  background: transparent;
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
}

.faq-icon {
  font-weight: 700;
  font-size: 1rem;
  color: var(--clr-text-muted);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1rem;
  transition: max-height 0.2s ease;
}

.faq-answer p {
  margin: 0.4rem 0 0.9rem;
  font-size: 0.88rem;
  color: var(--clr-text-muted);
}

.faq-item.open .faq-answer {
  max-height: 200px;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

/* CONTACT */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.7rem;
  font-size: 0.9rem;
  color: var(--clr-text-muted);
}

.contact-list li {
  margin-bottom: 0.4rem;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.contact-platforms {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
}

.contact-box {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--clr-border);
  padding: 1.4rem 1.5rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
  font-size: 0.9rem;
  color: var(--clr-text-muted);
}

/* MAP SECTION */
.section-map {
  padding-top: 0;
  padding-bottom: 4rem;
  background: transparent;
}

.map-container {
  margin-top: 1.4rem;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--clr-border);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.25);
}

.map-container iframe {
  width: 100%;
  height: 380px;
  border: 0;
}

.map-actions {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
  justify-content: space-between;
}

.map-link {
  font-size: 0.85rem;
  color: #1d4ed8;
  text-decoration: none;
}

.map-link:hover {
  text-decoration: underline;
}

.map-wa-btn {
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
}

/* MAP SEARCH */
.map-search {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

#mapSearchInput {
  flex: 1 1 220px;
  max-width: 280px;
  border-radius: 999px;
  border: 1px solid var(--clr-border);
  padding: 0.5rem 0.9rem;
  font-size: 0.85rem;
  font-family: inherit;
}

#mapSearchInput:focus {
  outline: none;
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 1px rgba(248, 113, 113, 0.35);
}

.map-search-btn {
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
  white-space: nowrap;
}

/* FOOTER */
.site-footer {
  border-top: 1px solid var(--clr-border);
  background: #ffffff;
  padding: 1.1rem 0;
  font-size: 0.82rem;
  color: var(--clr-text-muted);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
  align-items: center;
}

.footer-sub {
  font-weight: 500;
}

/* MODAL ORDER */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 60;
  padding: 1rem;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  width: min(420px, 100%);
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.5);
  padding: 1.6rem 1.7rem 1.5rem;
  position: relative;
  border: 1px solid #fecaca;
}

.modal-close {
  position: absolute;
  top: 0.55rem;
  right: 0.8rem;
  border: none;
  background: none;
  font-size: 1.5rem;
  color: #9ca3af;
  cursor: pointer;
  transition: transform 0.12s ease;
}

.modal-close:hover {
  transform: scale(1.1);
}

.modal h3 {
  margin: 0 0 0.2rem;
}

.modal-subtitle {
  margin: 0 0 1.1rem;
  font-size: 0.85rem;
  color: var(--clr-text-muted);
}

.form-group {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.35rem;
}

.portion-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  font-size: 0.85rem;
}

.portion-options label {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.38rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--clr-border);
  cursor: pointer;
  background: #f9fafb;
}

.portion-options input[type="radio"] {
  accent-color: var(--clr-primary);
}

#customPortionInput,
#noteInput {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--clr-border);
  padding: 0.55rem 0.7rem;
  font-family: inherit;
  font-size: 0.9rem;
  resize: vertical;
}

#customPortionInput:focus,
#noteInput:focus {
  outline: none;
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 1px rgba(248, 113, 113, 0.4);
}

.modal-summary {
  margin: 0.7rem 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--clr-text-muted);
}

.btn-full {
  width: 100%;
}

/* FLOATING WA */
.wa-floating-btn {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  width: 54px;
  height: 54px;
  border: none;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 55;
  padding: 0;
}

.wa-floating-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.wa-floating-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 50px rgba(22, 163, 74, 1);
}

.wa-floating-btn:active {
  transform: scale(0.96);
}

/* STICKY ORDER BAR (mobile) */
.order-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.65rem 1rem;
  background: rgba(15, 23, 42, 0.98);
  color: #f9fafb;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  z-index: 54;
  transform: translateY(100%);
  transition: transform 0.25s ease;
}

.order-bar.visible {
  transform: translateY(0);
}

.order-bar-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.order-bar-title {
  font-size: 0.9rem;
  font-weight: 600;
}

.order-bar-sub {
  font-size: 0.78rem;
  opacity: 0.85;
}

/* STICKY MINI CART */
.mini-cart {
  position: fixed;
  left: 1rem;
  bottom: 1.2rem;
  z-index: 54;
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mini-cart--visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mini-cart-main {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  background: #111827;
  color: #f9fafb;
  font-size: 0.82rem;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.55);
}

.mini-cart-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  cursor: pointer;
}

.mini-cart-label {
  font-weight: 600;
}

.mini-cart-detail {
  opacity: 0.9;
}

.mini-cart-btn {
  border: none;
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  background: #22c55e;
  color: #f9fafb;
  box-shadow: 0 10px 25px rgba(22, 163, 74, 0.7);
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
}

.mini-cart-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(22, 163, 74, 0.9);
  filter: brightness(1.03);
}

.mini-cart-btn:active {
  transform: scale(0.96);
  box-shadow: 0 8px 20px rgba(22, 163, 74, 0.7);
}

/* REVEAL (dinetralkan karena sekarang pakai AOS) */
.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .hero-title {
    font-size: 2.4rem;
  }

  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .bundle-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 56px;
    display: none;
    flex-direction: column;
    background: #ffffff;
    border-bottom: 1px solid var(--clr-border);
    padding: 0.7rem 1.3rem 1rem;
    gap: 0.8rem;
  }

  .main-nav.open {
    display: flex;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    height: auto;
    min-height: 540px;
    padding: 3.4rem 0 3rem;
    background-attachment: scroll;
    background-position: center top;
  }

  .menu-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .map-container iframe {
    height: 300px;
  }

  .section-promo {
    padding-inline: 0;
  }

  .promo-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .order-bar {
    display: flex;
  }

  .fc-arrow {
    display: none;
  }

  .order-pack-card {
    grid-template-columns: minmax(0, 1fr);
    text-align: left;
  }

  .order-pack-right {
    align-items: flex-start;
  }

  .bundle-acara-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-acara-animated {
    width: 100%;
    justify-content: center;
  }

  .mini-cart {
    left: 0.9rem;
    right: 0.9rem;
    bottom: 4.2rem; /* di atas order bar */
  }

  .mini-cart-main {
    justify-content: space-between;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(100% - 1.6rem, 100%);
  }

  .section {
    padding: 3.6rem 0;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .menu-preview-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  object-fit: cover;
}

/* ANIMASI GLOBAL UNTUK SEMUA GAMBAR */
img {
  animation: floatZoomRotate 4.5s ease-in-out infinite;
  transform-origin: center;
  will-change: transform;
}

/* Animasi Versi B: naik turun + zoom + rotasi lembut */
@keyframes floatZoomRotate {
  0% {
    transform: translateY(0) scale(1) rotate(0deg);
  }
  25% {
    transform: translateY(-3px) scale(1.015) rotate(0.4deg);
  }
  50% {
    transform: translateY(0) scale(1.02) rotate(0deg);
  }
  75% {
    transform: translateY(-3px) scale(1.015) rotate(-0.4deg);
  }
  100% {
    transform: translateY(0) scale(1) rotate(0deg);
  }
}
