/* ══════════════════════════════════════════════════════════════════════════
   DAPOER THREE D - CSS DESIGN SYSTEM
   ══════════════════════════════════════════════════════════════════════════ */

:root {
  /* HSL Tailored Color Palette - Enhanced Premium */
  --char: #FFFAF3;
  /* Light Warm Charcoal Background (Cleaner) */
  --smoke: #FFF1E1;
  /* Muted Warm Peach (Softer) */
  --ember: #E8650C;
  /* Glowing Ember Orange */
  --flame: #D62E0C;
  /* Rich Crimson Red */
  --gold: #F2A300;
  /* Deep Warm Gold */
  --cream: #1A0A04;
  /* Dark Cream Brown (Primary Text - Deeper) */
  --muted: #8A6650;
  /* Soft Brownish Gray (Muted Text) */
  --wa: #25D366;
  /* WhatsApp Green */
  --wa-dark: #128C7E;

  --shadow-sm: 0 4px 12px rgba(26, 10, 4, 0.05);
  --shadow-md: 0 12px 32px rgba(26, 10, 4, 0.08);
  --shadow-lg: 0 24px 64px rgba(232, 101, 12, 0.12);
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --radius: 16px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--char);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font-family: inherit;
}

/* ── NAVIGATION BAR ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 6%;
  background: rgba(255, 250, 243, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-logo-img {
  height: 42px;
  width: auto;
  display: block;
}

.nav-logo span {
  color: var(--ember);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--ember);
  transition: var(--transition);
}

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

.nav-links a:hover::after {
  width: 100%;
}

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

.cart-trigger {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(42, 20, 8, 0.15);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  outline: none;
}

.cart-trigger:hover {
  transform: translateY(-2px);
  border-color: var(--ember);
  box-shadow: var(--shadow-md);
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: var(--flame);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: bold;
  min-width: 22px;
  height: 22px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* ── HERO SECTION ── */
.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 8rem 6% 6rem;
  position: relative;
  overflow: hidden;
  gap: 3rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 70% at 75% 55%, rgba(232, 101, 12, 0.12) 0%, transparent 65%),
    radial-gradient(ellipse 35% 45% at 25% 35%, rgba(214, 46, 12, 0.06) 0%, transparent 55%),
    var(--char);
  z-index: 0;
}

.embers {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.ember-dot {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: floatUp var(--d, 4s) var(--dl, 0s) infinite ease-in;
}

@keyframes floatUp {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.7;
  }

  85% {
    opacity: 0.3;
  }

  100% {
    transform: translateY(-120px) scale(0.1);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  animation: heroSlideUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes heroSlideUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

.btn-wa-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background-color: var(--wa);
  color: white;
  padding: 1rem 2.4rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.3);
  transition: var(--transition);
}

.btn-wa-pill:hover {
  background-color: var(--wa-dark);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.4);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: var(--cream);
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--ember) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--ember);
  color: white;
  padding: 1rem 2.2rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(232, 101, 12, 0.25);
  transition: var(--transition);
}

.btn-primary:hover {
  background-color: var(--flame);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(214, 46, 12, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  color: var(--cream);
  padding: 1rem 2.2rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 700;
  border: 1px solid rgba(42, 20, 8, 0.15);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.btn-secondary:hover {
  border-color: var(--ember);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.hero-image {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 500px;
}

.hero-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 200px 200px 20px 20px;
  /* Arched style */
  box-shadow: var(--shadow-lg);
  filter: drop-shadow(0 20px 30px rgba(42, 20, 8, 0.15));
  animation: floatAnim 6s ease-in-out infinite;
  object-fit: cover;
  aspect-ratio: 4/5;
}

@keyframes floatAnim {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-16px);
  }
}

.hero-image-logo img {
  border-radius: 0;
  box-shadow: none;
  aspect-ratio: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 34px rgba(42, 20, 8, 0.18));
}

.hero-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  z-index: 2;
  border-top: 1px solid rgba(42, 20, 8, 0.08);
}

.strip-item {
  flex: 1;
  padding: 1.2rem;
  text-align: center;
  background: rgba(255, 234, 210, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-right: 1px solid rgba(42, 20, 8, 0.08);
}

.strip-item:last-child {
  border-right: none;
}

.strip-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.05rem, 1.6vw, 1.6rem);
  font-weight: 900;
  color: var(--ember);
  line-height: 1.25;
  font-variant-numeric: lining-nums tabular-nums;
}

.strip-label {
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

/* ── SECTION COMMON STYLES ── */
section {
  padding: 7rem 6% 6rem;
  position: relative;
}

.sec-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 0.8rem;
  display: inline-block;
}

.sec-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  color: var(--cream);
}

.sec-sub {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 600px;
  line-height: 1.7;
}

/* ── SCROLLING FEATURE TAGS MARQUEE ── */
.feature-marquee {
  background-color: var(--smoke);
  border-top: 1px solid rgba(42, 20, 8, 0.06);
  border-bottom: 1px solid rgba(42, 20, 8, 0.06);
  overflow: hidden;
  padding: 1.1rem 0;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: max-content;
  animation: marqueeScroll 24s linear infinite;
}

.marquee-item {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.marquee-sep {
  color: var(--ember);
  font-size: 0.8rem;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}

/* ── VALUE PROPOSITION & STATS ── */
.value-sec {
  background-color: var(--smoke);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.stat-box {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(42, 20, 8, 0.08);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.stat-box:hover {
  transform: translateY(-8px);
  background: white;
  border-color: var(--ember);
  box-shadow: var(--shadow-md);
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
}

.stat-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--cream);
}

.stat-box p {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ── MENU & FILTER TABS ── */
.menu-sec {
  background-color: var(--char);
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.filter-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.f-btn {
  background: white;
  border: 1px solid rgba(42, 20, 8, 0.15);
  color: var(--muted);
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.f-btn:hover,
.f-btn.on {
  background-color: var(--ember);
  border-color: var(--ember);
  color: white;
  box-shadow: 0 4px 12px rgba(232, 101, 12, 0.2);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

/* Grid khusus Tumpeng: dipusatkan & tidak melebar penuh saat item sedikit */
.tumpeng-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 340px));
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}

/* ── MENU CARD STYLING ── */
.card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.card:hover {
  transform: translateY(-8px) scale(1.015);
  border-color: rgba(232, 101, 12, 0.2);
  box-shadow: var(--shadow-lg);
}

.card-thumb {
  position: relative;
  overflow: hidden;
  background-color: var(--smoke);
}

.card-thumb img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  filter: brightness(0.95) saturate(1.1);
}

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

.card-thumb::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.c-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.b-hit {
  background-color: var(--ember);
}

.b-new {
  background-color: #16a34a;
}

.b-hot {
  background-color: var(--flame);
}

.b-save {
  background-color: #7c3aed;
}

.card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: white;
}

.c-cat {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 0.4rem;
}

.c-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.6rem;
  color: var(--cream);
}

.c-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}

.c-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(42, 20, 8, 0.06);
  padding-top: 1.2rem;
  margin-top: auto;
}

.c-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--cream);
}

.c-price small {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: block;
  font-weight: 500;
  margin-bottom: -2px;
}

.btn-add-cart {
  background-color: var(--ember);
  color: white;
  border: none;
  padding: 0.7rem 1.2rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: 10px;
}

.btn-add-cart:hover {
  background: linear-gradient(135deg, var(--flame) 0%, var(--ember) 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(232, 101, 12, 0.4);
}

/* ── SPECIAL TUMPENG SECTION ── */
.tumpeng-sec {
  background-color: var(--char);
  border-top: 1px solid rgba(42, 20, 8, 0.06);
}

.tumpeng-menu-header {
  text-align: center;
  margin: 3.5rem 0 2.5rem;
}

.tumpeng-menu-header .sec-title {
  margin-bottom: 0.5rem;
}

.tumpeng-menu-header .sec-sub {
  margin: 0 auto;
}

.special-banner {
  background-color: var(--smoke);
  border: 1px solid rgba(42, 20, 8, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  padding: 3rem;
  margin-bottom: 4rem;
  box-shadow: var(--shadow-sm);
}

.special-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.sp-img {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.sp-img img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
}

.sp-ribbon {
  position: absolute;
  top: 25px;
  right: -35px;
  background-color: var(--flame);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 3rem;
  transform: rotate(45deg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.sp-info .sec-title {
  font-size: 2.2rem;
}

.sp-feats {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.sp-feat {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cream);
}

.sp-price-info {
  font-size: 0.8rem;
  color: var(--ember);
  font-weight: 600;
}

.tumpeng-header-grid {
  margin-bottom: 2.5rem;
  text-align: center;
}

.tumpeng-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 0.4rem;
}

.tumpeng-sub {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 500px;
  margin: 0 auto;
}

/* ── GALLERY / PORTOFOLIO SECTION ── */
.gallery-sec {
  background-color: var(--char);
}

.gallery-header {
  margin-bottom: 3rem;
}

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

.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(42, 20, 8, 0.08);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.95) saturate(1.1);
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.9rem 1rem 0.7rem;
  background: linear-gradient(0deg, rgba(42, 20, 8, 0.78) 0%, rgba(42, 20, 8, 0) 100%);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* ── TESTIMONIALS ── */
.galeri-sec {
  background-color: var(--smoke);
}

.galeri-ig-link {
  color: var(--ember);
  font-weight: 700;
  text-decoration: none;
}
.galeri-ig-link:hover { text-decoration: underline; }

.galeri-carousel-wrap {
  position: relative;
  max-width: 1100px;
  margin: 3rem auto 0;
  padding: 0 0.5rem;
}

.galeri-grid {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  padding: 0.3rem 0.3rem 1rem;
  margin: 0;
  max-width: none;
  scrollbar-width: thin;
  scrollbar-color: var(--ember) transparent;
}

.galeri-grid::-webkit-scrollbar {
  height: 6px;
}

.galeri-grid::-webkit-scrollbar-thumb {
  background-color: rgba(232, 101, 12, 0.4);
  border-radius: 10px;
}

.galeri-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #f8f2e8;
  transition: var(--transition);
  flex: 0 0 auto;
  width: 250px;
  scroll-snap-align: start;
}

.galeri-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(42,20,8,0.15);
}

.galeri-item img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

.galeri-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background-color: var(--ember);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.galeri-nav:hover {
  background-color: var(--ember-dark, var(--ember));
  transform: translateY(-50%) scale(1.08);
}

.galeri-nav-prev { left: -8px; }
.galeri-nav-next { right: -8px; }

@media (max-width: 700px) {
  .galeri-nav { display: none; }
  .galeri-item { width: 200px; }
  .galeri-item img { height: 280px; }
}

.galeri-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.galeri-ig-btn {
  display: inline-block;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(220, 39, 67, 0.3);
}

.galeri-ig-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(220, 39, 67, 0.45);
}


/* ── FAQ & ORDERING STEPS ── */
.faq-sec {
  background-color: var(--char);
}

.faq-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: flex-start;
}

.faq-info-card {
  background-color: var(--cream);
  color: white;
  border-radius: var(--radius);
  padding: 3.5rem 2.8rem;
  box-shadow: var(--shadow-md);
}

.step-list {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
  margin-top: 2.5rem;
}

.step-item {
  display: flex;
  gap: 1.2rem;
}

.step-num-circle {
  background-color: var(--ember);
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(232, 101, 12, 0.3);
}

.step-content h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.step-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  line-height: 1.5;
}

.faq-accordion-box {
  padding-top: 1rem;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.5rem;
}

.accordion details {
  background: white;
  border: 1px solid rgba(42, 20, 8, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.accordion summary {
  padding: 1.3rem 1.8rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--cream);
  cursor: pointer;
  user-select: none;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  outline: none;
}

.accordion summary::after {
  content: '▼';
  font-size: 0.7rem;
  color: var(--muted);
  transition: transform 0.3s;
}

.accordion details[open] summary::after {
  transform: rotate(-180deg);
  color: var(--ember);
}

.accordion details[open] {
  border-color: rgba(232, 101, 12, 0.2);
}

.accordion details p {
  padding: 0 1.8rem 1.5rem;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  border-top: 1px solid rgba(42, 20, 8, 0.04);
  background-color: rgba(255, 246, 233, 0.3);
}

/* ── INTERACTIVE SHOPPING CART DRAWER ── */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(42, 20, 8, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.cart-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -450px;
  width: 100%;
  max-width: 380px;
  height: 100vh;
  background-color: white;
  z-index: 1001;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.cart-drawer.active {
  right: 0;
}

.cart-drawer-header {
  padding: 1.5rem 1.8rem;
  border-bottom: 1px solid rgba(42, 20, 8, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-drawer-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--cream);
}

.cart-drawer-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--muted);
  cursor: pointer;
  line-height: 1;
  transition: var(--transition);
}

.cart-drawer-close:hover {
  color: var(--flame);
}

.cart-items-container {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

/* Cart Item Cards */
.cart-item {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  background-color: var(--char);
  padding: 0.55rem;
  border-radius: var(--radius);
  border: 1px solid rgba(42, 20, 8, 0.06);
}

.cart-item-img {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  object-fit: cover;
}

.cart-item-info {
  flex: 1;
}

.cart-item-name {
  font-weight: 700;
  font-size: 0.72rem;
  color: var(--cream);
  margin-bottom: 0.05rem;
}

.cart-item-unit-price {
  display: block;
  font-size: 0.6rem;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 0.1rem;
}

.cart-item-price {
  font-size: 0.68rem;
  color: var(--ember);
  font-weight: 600;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: white;
  border: 1px solid rgba(42, 20, 8, 0.1);
  border-radius: 100px;
  padding: 0.12rem;
}

.cart-item-btn {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: none;
  background: var(--char);
  color: var(--cream);
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  transition: var(--transition);
}

.cart-item-btn:hover {
  background-color: var(--ember);
  color: white;
}

.cart-item-qty {
  font-size: 0.68rem;
  font-weight: 700;
  min-width: 14px;
  text-align: center;
}

.cart-item-qty-input {
  width: 24px;
  border: none;
  background: transparent;
  font-size: 0.68rem;
  font-weight: 700;
  font-family: inherit;
  color: var(--cream);
  text-align: center;
  -moz-appearance: textfield;
}

.cart-item-qty-input::-webkit-outer-spin-button,
.cart-item-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cart-item-qty-input:focus {
  outline: none;
  background: var(--smoke);
  border-radius: 6px;
}

.cart-item-delete {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.9rem;
  padding: 0.15rem;
  transition: var(--transition);
}

.cart-item-delete:hover {
  color: var(--flame);
}

/* Empty State */
.cart-empty-state {
  text-align: center;
  padding: 4rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.cart-empty-icon {
  font-size: 3.5rem;
  opacity: 0.3;
}

.cart-empty-state p {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* Footer & Form */
.cart-drawer-footer {
  border-top: 1px solid rgba(42, 20, 8, 0.08);
  background-color: var(--smoke);
  padding: 1rem;
}

.cart-totals {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.7rem;
}

.total-price-val {
  color: var(--ember);
  font-size: 0.95rem;
}

.order-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.form-group label {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--muted);
}

.form-group input,
.form-group textarea {
  border: 1px solid rgba(42, 20, 8, 0.15);
  border-radius: 6px;
  padding: 0.4rem 0.65rem;
  font-size: 0.75rem;
  background-color: white;
  color: var(--cream);
  outline: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--ember);
  box-shadow: 0 0 0 3px rgba(232, 101, 12, 0.1);
}

.delivery-options {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.delivery-option {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid rgba(42, 20, 8, 0.15);
  border-radius: 6px;
  padding: 0.32rem 0.6rem;
  font-size: 0.7rem;
  color: var(--cream);
  cursor: pointer;
  transition: var(--transition);
}

.delivery-option:has(input:checked) {
  border-color: var(--ember);
  background-color: rgba(232, 101, 12, 0.06);
}

.delivery-option input[type="radio"] {
  accent-color: var(--ember);
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

/* GoSend baris kedua: 2 opsi sejajar */
.delivery-gosend-row {
  display: flex;
  gap: 0.3rem;
}

.delivery-gosend-row .delivery-option {
  flex: 1;
  font-size: 0.65rem;
  padding: 0.3rem 0.45rem;
}

.delivery-note {
  font-size: 0.62rem;
  color: var(--muted);
  font-style: italic;
  margin-top: 0.05rem;
}

.submit-order-btn {
  background-color: var(--wa);
  color: white;
  border: none;
  width: 100%;
  padding: 0.65rem;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
  transition: var(--transition);
  margin-top: 0.6rem;
}

.submit-order-btn:hover {
  background-color: var(--wa-dark);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transform: translateY(-2px);
}

/* ── FOOTER SECTION ── */
footer {
  background: var(--smoke);
  border-top: 1px solid rgba(42, 20, 8, 0.08);
  padding: 5rem 6% 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(42, 20, 8, 0.08);
  margin-bottom: 2rem;
}

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

.f-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.f-logo-img {
  height: 56px;
  width: auto;
  display: block;
}

.f-logo span {
  color: var(--ember);
}

.f-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.f-contact {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--cream);
  font-weight: 600;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.footer-col h5 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul li {
  font-size: 0.85rem;
  color: rgba(42, 20, 8, 0.7);
  transition: var(--transition);
}

.footer-col ul a:hover {
  color: var(--ember);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 1rem;
}

/* ── SCROLL REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ── RESPONSIVE DESIGN (MEDIA QUERIES) ── */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 7rem;
    padding-bottom: 4rem;
    gap: 2rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    max-width: 320px;
    margin: 0 auto;
  }

  .hero-strip {
    display: none;
  }

  .special-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .faq-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-top {
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
  }
}

html,body{overflow-x:hidden;width:100%}
img{max-width:100%;height:auto}
.nav-toggle{display:none;background:transparent;border:none;font-size:1.8rem;cursor:pointer;color:var(--cream)}

@media (max-width:1024px){
.hero{gap:2rem}
.hero-image img{max-width:340px}
.faq-container,.special-inner{grid-template-columns:1fr}
}

@media (max-width:768px){
  nav{padding:12px 18px;flex-wrap:wrap}
  .nav-logo-img{height:52px}
  .nav-toggle{display:block;margin-left:auto}
  .nav-links{display:none;width:100%;flex-direction:column;gap:0;margin-top:15px;background:#fff;border-radius:16px;overflow:hidden;box-shadow:0 12px 30px rgba(0,0,0,.08)}
  .nav-links.mobile-open{display:flex}
  .nav-links li{width:100%}
  .nav-links a{display:block;padding:14px 18px;border-bottom:1px solid rgba(0,0,0,.05)}
  .hero{flex-direction:column;text-align:center;min-height:auto;padding:110px 20px 0}
  .hero-content,.hero-image{max-width:100%}
  .hero-image{order:1}
  .hero-content{order:2}
  .hero h1{font-size:2.2rem}
  .hero-image img{max-width:260px}
  .hero-strip{position:static;order:3;display:grid;grid-template-columns:1fr 1fr;margin:2.5rem -20px 0;width:calc(100% + 40px);border-top:1px solid rgba(42,20,8,0.08);border-right:none;border-left:none}
  .hero-strip .strip-item{border-right:1px solid rgba(42,20,8,0.08);border-bottom:1px solid rgba(42,20,8,0.08)}
  .hero-strip .strip-item:nth-child(even){border-right:none}
  .hero-strip .strip-item:nth-child(3),.hero-strip .strip-item:nth-child(4){border-bottom:none}
  .filter-row{width:100%;flex-wrap:wrap;gap:0.5rem}
  .f-btn{white-space:nowrap;padding:0.5rem 1rem;font-size:0.72rem}
  
  /* --- Ubah grid menu jadi 2 kolom di HP --- */
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  /* --- Sesuaikan ukuran isi kartu agar pas untuk 2 kolom --- */
  .card-thumb img {
    height: 130px; 
  }
  .card-body {
    padding: 0.8rem;
  }
  .c-name {
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
  }
  .c-desc {
    font-size: 0.75rem;
    line-height: 1.4;
    margin-bottom: 1rem;
  }
  .c-price {
    font-size: 1.1rem;
  }
  .btn-add-cart {
    padding: 0.6rem;
    font-size: 0.75rem;
    width:100%;
    justify-content:center;
  }
  .c-badge {
    font-size: 0.55rem;
    padding: 0.2rem 0.5rem;
    top: 10px;
    left: 10px;
  }
  /* ------------------------------------------ */

  .c-footer{flex-direction:column;align-items:stretch}
  section{padding:70px 20px}
  .cart-drawer{width:100%;max-width:100%;right:-100%}
  .cart-drawer.active{right:0}
  .special-banner{padding:20px}

  /* --- Footer: susun ke bawah biar tulisan gak mepet di HP --- */
  footer{padding:3rem 6% 2rem}
  .footer-top{grid-template-columns:1fr;gap:2.5rem}
  .footer-brand{max-width:100%}
  .footer-links-grid{grid-template-columns:1fr 1fr;gap:1.5rem}
  .footer-bottom{flex-direction:column;text-align:center;gap:0.5rem}
  .f-logo{font-size:1.3rem;gap:0.6rem}
  .f-logo-img{height:44px}

  /* --- Stats & Testimoni: 1 kolom biar gak mepet --- */
  .stats-grid{grid-template-columns:1fr;gap:1.2rem;margin-top:2.5rem}
  .galeri-grid{gap:0.8rem;}
  .galeri-carousel-wrap{margin-top:2rem;}

  /* --- Banner Tumpeng: judul & info menyesuaikan --- */
  .special-banner{margin-bottom:2.5rem}
  .sp-info .sec-title{font-size:1.7rem}
  .sp-feats{margin:1.2rem 0}
  .tumpeng-title{font-size:1.4rem}

  /* --- FAQ: padding dirapikan biar gak kebesaran --- */
  .faq-info-card{padding:2.2rem 1.6rem}
  .step-list{gap:1.6rem;margin-top:1.8rem}
  .accordion summary{padding:1.1rem 1.3rem;font-size:0.88rem;gap:0.8rem}
  .accordion details p{padding:0 1.3rem 1.2rem;font-size:0.82rem}

  /* --- Section spacing umum biar gak terlalu jauh di HP --- */
  .menu-header{margin-bottom:2.2rem}
}

@media (max-width:480px){
.hero h1{font-size:1.9rem}
.sec-title{font-size:1.8rem}
.special-banner{padding:16px}
.faq-info-card{padding:1.8rem 1.3rem}
.footer-links-grid{grid-template-columns:1fr;gap:1.8rem}
.menu-grid{gap:10px}
}


/* ── FLOATING WHATSAPP BUTTON ── */
.floating-wa {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: var(--wa); /* #25D366 */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  transition: var(--transition);
  animation: pulse-wa 2s infinite;
}

.floating-wa svg {
  width: 35px;
  height: 35px;
}

.floating-wa:hover {
  transform: translateY(-5px);
  background-color: var(--wa-dark); /* #128C7E */
}

@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
  .floating-wa {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  .floating-wa svg {
    width: 30px;
    height: 30px;
  }
}
/* ── MODAL DETAIL MENU ── */
.menu-modal {
  display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(5px);
  align-items: center; justify-content: center;
}
.modal-card {
  background: white; width: 90%; max-width: 400px; border-radius: 20px; 
  overflow: hidden; position: relative; animation: zoomIn 0.3s ease;
}
.modal-card img { width: 100%; height: 230px; object-fit: contain; background: var(--smoke); }
.modal-info { padding: 20px; }
.close-modal { 
  position: absolute; top: 10px; right: 15px; font-size: 30px; 
  cursor: pointer; color: white; text-shadow: 0 0 5px rgba(0,0,0,0.5);
}
.modal-price { font-weight: bold; color: var(--ember); font-size: 1.5rem; margin-top: 10px; }
.modal-add-cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: 16px;
  padding: 0.85rem 1.2rem;
  background-color: var(--ember);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}
.modal-add-cart-btn:hover {
  background-color: var(--flame);
  transform: translateY(-2px);
}
@keyframes zoomIn { from {transform:scale(0.8); opacity:0} to {transform:scale(1); opacity:1} }
.card { cursor: pointer; }

/* ── TOAST NOTIFIKASI ADD TO CART (KHUSUS HP) ── */
.add-cart-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(20px);
  background-color: var(--cream);
  color: #fff;
  padding: 0.85rem 1.3rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  z-index: 1500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  max-width: 90vw;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.add-cart-toast strong {
  color: var(--gold);
}

.add-cart-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

