/* ===============================================
   DAPUR SULTAN – Royal Indonesian Batik Theme
   Color Palette:
   Brown Dark:  #4A1500
   Brown Mid:   #7B3A10
   Brown Light: #B5661B
   Cream:       #FDF5E6
   Gold:        #D4A017
   Gold Light:  #F5C842
   White:       #FFFFFF
   Text Dark:   #2C1000
=============================================== */

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #F0E8D5;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(180, 90, 30, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(212, 160, 23, 0.06) 0%, transparent 50%);
  color: #2C1000;
  min-height: 100vh;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* ===== BATIK BACKGROUND PATTERN ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%237B3A10' fill-opacity='0.07'%3E%3Cpath d='M30 0C13.43 0 0 13.43 0 30s13.43 30 30 30 30-13.43 30-30S46.57 0 30 0zm0 54C16.77 54 6 43.23 6 30S16.77 6 30 6s24 10.77 24 24S43.23 54 30 54z'/%3E%3Cpath d='M30 12c-9.94 0-18 8.06-18 18s8.06 18 18 18 18-8.06 18-18-8.06-18-18-18zm0 30c-6.63 0-12-5.37-12-12s5.37-12 12-12 12 5.37 12 12-5.37 12-12 12z'/%3E%3Cpath d='M30 24c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(90deg, #4A1500, #7B3A10, #4A1500);
  color: #F5C842;
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
  padding: 8px 40px 8px 16px;
  letter-spacing: 0.02em;
}

.ann-close {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #F5C842;
  cursor: pointer;
  font-size: 0.9rem;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.ann-close:hover {
  opacity: 1;
}

/* ===== PAGE WRAPPER ===== */
.page-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  background: #FEFAF3;
  box-shadow: 0 0 60px rgba(74, 21, 0, 0.25);
  min-height: 100vh;
  padding-bottom: max(80px, calc(65px + env(safe-area-inset-bottom, 0px)));
}

/* ===== HEADER / HERO ===== */
.site-header {
  background: linear-gradient(180deg, #FDF5E6 0%, #FEF8ED 100%);
  position: relative;
  padding-bottom: 0;
  border-bottom: 3px solid #D4A017;
}

/* Batik top decoration */
.site-header::before {
  content: '';
  display: block;
  height: 6px;
  background: repeating-linear-gradient(90deg, #4A1500 0px, #4A1500 12px, #D4A017 12px, #D4A017 24px, #7B3A10 24px, #7B3A10 36px, #D4A017 36px, #D4A017 48px);
}

.header-inner {
  display: flex;
  justify-content: center;
  padding: 20px 16px 12px;
}

.site-logo {
  width: 100px;
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(74, 21, 0, 0.18));
  animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

/* ===== FOOD STRIP / HIGHLIGHT CAROUSEL (ULTRA SMOOTH GPU MARQUEE) ===== */
.hero-food-strip,
.food-carousel {
  overflow: hidden;
  width: 100%;
  padding: 10px 0 6px;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.food-strip-track,
.food-carousel-track {
  display: flex;
  gap: 12px;
  width: max-content;
  will-change: transform;
  animation: foodStripMarquee 22s linear infinite;
  padding: 4px 0;
  align-items: flex-start;
}

.food-strip-track:hover,
.food-carousel-track:hover {
  animation-play-state: paused;
}

@keyframes foodStripMarquee {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.food-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  flex-shrink: 0;
  width: 82px;
  transition: transform 0.25s ease;
  user-select: none;
  -webkit-user-select: none;
}

.food-card:hover {
  transform: translateY(-3px);
}

.food-img {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2.5px solid #D4A017;
  box-shadow: 0 4px 12px rgba(74, 21, 0, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
  background-color: #f0e8d5;
}

.food-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.food-card:hover .food-img {
  transform: scale(1.08);
  border-color: #F5C842;
  box-shadow: 0 6px 16px rgba(212, 160, 23, 0.35);
}

.food-emoji {
  font-size: 1.9rem;
  line-height: 1;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.food-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: #5C2800;
  text-align: center;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
  max-width: 82px;
  line-height: 1.25;
}

/* ===== HERO CTA ===== */
.hero-cta {
  padding: 24px 20px 32px;
  text-align: center;
  background: linear-gradient(180deg, rgba(253, 245, 230, 0) 0%, #FDF5E6 30%, #FDF5E6 100%);
}

.hero-welcome-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #D4A017, #F5C842);
  color: #4A1500;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 14px;
  box-shadow: 0 3px 12px rgba(212, 160, 23, 0.4);
  animation: logoFloat 3s ease-in-out infinite;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #4A1500;
  line-height: 1.3;
  margin-bottom: 10px;
  text-align: center;
}

.hero-title-rempah {
  display: block;
  font-size: 1.22rem;
  font-weight: 700;
  color: #B5661B;
  font-style: italic;
  margin-top: 4px;
}

.hero-poetic {
  font-size: 0.84rem;
  font-weight: 500;
  color: #5C2800;
  line-height: 1.6;
  margin-bottom: 10px;
  font-style: italic;
  text-align: center;
}

.hero-sub {
  font-size: 0.8rem;
  color: #7B3A10;
  line-height: 1.55;
  margin-bottom: 20px;
  text-align: center;
}

/* ===== HERO LIVE SEARCH ===== */
.hero-search-wrap {
  position: relative;
  background: #4A1500;
  border-radius: 14px;
  padding: 12px 14px;
  margin-bottom: 18px;
  text-align: left;
  box-shadow: 0 4px 16px rgba(74, 21, 0, 0.25);
  border: 1.5px solid rgba(212, 160, 23, 0.35);
}

.search-label {
  color: #D4A017;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.hero-search-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.hero-search {
  width: 100%;
  background: #FEFAF3;
  border: 2px solid #D4A01766;
  border-radius: 10px;
  padding: 10px 36px 10px 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.84rem;
  color: #4A1500;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.hero-search:focus {
  border-color: #D4A017;
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.25);
}

.hero-search::placeholder {
  color: #B5661B99;
}

.hero-search-clear {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(74, 21, 0, 0.12);
  border: none;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  font-size: 1.1rem;
  color: #4A1500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.15s;
}

.hero-search-clear:hover {
  background: rgba(74, 21, 0, 0.25);
}

/* Dropdown Results */
.hero-search-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #FFFFFF;
  border-radius: 14px;
  box-shadow: 0 12px 36px rgba(74, 21, 0, 0.35);
  border: 1.5px solid rgba(212, 160, 23, 0.4);
  max-height: 320px;
  overflow-y: auto;
  z-index: 500;
  padding: 4px 0;
  animation: searchDropFade 0.2s cubic-bezier(0.2, 0.9, 0.3, 1);
}

@keyframes searchDropFade {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.search-item-result {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  cursor: pointer;
  transition: background 0.15s;
  border-bottom: 1px solid rgba(74, 21, 0, 0.06);
  text-decoration: none;
  color: inherit;
}

.search-item-result:last-child {
  border-bottom: none;
}

.search-item-result:hover,
.search-item-result:active {
  background: #FEFAF3;
}

.search-item-thumb {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1.5px solid #EFE4CF;
}

.search-item-info {
  flex: 1;
  min-width: 0;
}

.search-item-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: #2C1000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}

.search-item-title mark {
  background: rgba(245, 200, 66, 0.4);
  color: #4A1500;
  font-weight: 800;
  padding: 0 2px;
  border-radius: 2px;
}

.search-item-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 3px;
}

.search-item-cat {
  font-size: 0.62rem;
  font-weight: 600;
  color: #7B3A10;
  background: rgba(212, 160, 23, 0.15);
  padding: 1px 6px;
  border-radius: 4px;
}

.search-item-price {
  font-size: 0.76rem;
  font-weight: 700;
  color: #B5661B;
}

.search-footer-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 14px;
  background: #FEFAF3;
  color: #4A1500;
  font-size: 0.74rem;
  font-weight: 700;
  text-decoration: none;
  border-top: 1px solid rgba(74, 21, 0, 0.08);
  transition: all 0.2s;
  cursor: pointer;
}

.search-footer-btn:hover {
  background: #4A1500;
  color: #F5C842;
}

.search-empty-state {
  padding: 16px 14px;
  text-align: center;
  color: #7B3A10;
  font-size: 0.78rem;
}

.search-empty-state p {
  margin-bottom: 6px;
}

.search-empty-state a {
  color: #B5661B;
  font-weight: 700;
  text-decoration: underline;
}

.hero-cta-text {
  font-size: 0.8rem;
  color: #7B3A10;
  margin-bottom: 10px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #4A1500, #7B3A10);
  color: #F5C842;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 100px;
  text-decoration: none;
  border: 2px solid #D4A01766;
  box-shadow: 0 4px 20px rgba(74, 21, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.25s ease;
  letter-spacing: 0.02em;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #7B3A10, #B5661B);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(74, 21, 0, 0.4);
  color: #ffffff;
}

/* ===== SECTION COMMONS ===== */
.section-header-light {
  padding: 28px 20px 16px;
  text-align: center;
}

.section-header-dark {
  padding: 20px 20px 16px;
  background: linear-gradient(135deg, #4A1500, #6B2800);
}

.section-title-dark {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #4A1500;
  margin-bottom: 4px;
}

.section-title-light {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #F5C842;
}

.section-sub {
  font-size: 0.8rem;
  color: #7B3A1099;
  line-height: 1.5;
}

/* ===== PROMO SECTION ===== */
.promo-section {
  background: linear-gradient(180deg, #4A1500 0%, #6B2800 100%);
  position: relative;
}

.promo-slider {
  position: relative;
  overflow: hidden;
  padding: 0 20px 24px;
}

.promo-track {
  display: flex;
  gap: 14px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: grab;
}

.promo-track:active {
  cursor: grabbing;
}

.promo-card {
  min-width: calc(50% - 7px);
  background: #FEFAF3;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  flex-shrink: 0;
  border: 2px solid #D4A01733;
}

.promo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.promo-img-wrap {
  position: relative;
}

.promo-img {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.promo-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(74, 21, 0, 0.3) 100%);
}

.promo-img-1 {
  background: linear-gradient(135deg, #B5451B, #D4770A, #F5C842);
}

.promo-img-2 {
  background: linear-gradient(135deg, #4A1500, #D4A017, #F5C842);
}

.promo-img-3 {
  background: linear-gradient(135deg, #7B3A10, #B5661B, #FFCCBC);
}

.promo-food-art {
  font-size: 3.5rem;
  line-height: 1;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  animation: foodBounce 2s ease-in-out infinite;
}

@keyframes foodBounce {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }
}

.promo-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #C0392B;
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  z-index: 2;
  letter-spacing: 0.05em;
}

.promo-badge-gold {
  background: linear-gradient(135deg, #D4A017, #F5C842);
  color: #4A1500;
}

.promo-badge-brown {
  background: linear-gradient(135deg, #7B3A10, #B5661B);
}

.promo-info {
  padding: 10px 12px 12px;
}

.promo-tag-new,
.promo-tag-promo {
  display: inline-flex;
  align-items: center;
  font-size: 0.62rem;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 4px;
  margin-bottom: 5px;
  margin-right: 3px;
}

.promo-tag-new {
  background: #E8F5E9;
  color: #2E7D32;
}

.promo-tag-promo {
  background: #FFF3E0;
  color: #E65100;
}

.promo-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: #4A1500;
  margin-bottom: 4px;
  line-height: 1.2;
}

.promo-desc {
  font-size: 0.72rem;
  color: #7B3A10;
  line-height: 1.4;
  margin-bottom: 6px;
}

.promo-price {
  font-size: 0.78rem;
  font-weight: 700;
  color: #D4A017;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(253, 245, 230, 0.9);
  border: 2px solid #D4A017;
  color: #4A1500;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.2s;
  backdrop-filter: blur(4px);
}

.slider-btn:hover {
  background: #D4A017;
  color: white;
}

.slider-prev {
  left: 4px;
}

.slider-next {
  right: 4px;
}

/* ===== KATEGORI SECTION ===== */
.kategori-section {
  background: #FEFAF3;
  border-top: 1px solid #D4A01722;
  padding: 8px 0 24px;
}

.kategori-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px 6px;
  padding: 8px 10px 24px;
}

.kat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 2px 2px;
}

.kat-item:hover {
  transform: translateY(-4px);
}

.kat-img-wrap {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  box-shadow: 0 4px 14px rgba(74, 21, 0, 0.08);
  border: 2px solid #EFE4CF;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.kat-item:hover .kat-img-wrap {
  border-color: #D4A017;
  box-shadow: 0 6px 20px rgba(212, 160, 23, 0.25);
  transform: scale(1.06);
}

.kat-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.kat-name {
  font-size: 0.74rem;
  font-weight: 700;
  color: #2C1000;
  text-align: center;
  line-height: 1.25;
  margin-top: 4px;
}

.kat-count {
  font-size: 0.62rem;
  color: #7B3A10;
  font-weight: 500;
  text-align: center;
}

/* ===== KUALITAS SECTION ===== */
.kualitas-section {
  background: linear-gradient(180deg, #FDF5E6, #FEF8ED);
  border-top: 3px solid #D4A01744;
}

.kualitas-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 0 16px 22px;
}

.qual-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  max-width: 110px;
  background: #FFFFFF;
  border-radius: 12px;
  padding: 12px 6px;
  border: 1.5px solid #EAE0CE;
  box-shadow: 0 4px 12px rgba(74, 21, 0, 0.05);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
}

.qual-badge:hover {
  transform: translateY(-2px);
  border-color: #D4A017;
  box-shadow: 0 6px 16px rgba(74, 21, 0, 0.1);
}

.qual-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FEF8ED, #FDF5E6);
  border: 1px solid #D4A01744;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7B3A10;
}

.qual-svg {
  width: 18px;
  height: 18px;
  stroke: #7B3A10;
}

.qual-badge span {
  font-size: 0.7rem;
  font-weight: 600;
  color: #4A1500;
  white-space: nowrap;
}

.kualitas-photos {
  display: flex;
  gap: 10px;
  padding: 0 16px 28px;
  overflow-x: auto;
  scrollbar-width: none;
}

.kualitas-photos::-webkit-scrollbar {
  display: none;
}

.qual-photo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 100px;
}

.qual-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #D4A01766;
  overflow: hidden;
  position: relative;
}

.qual-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
  border-radius: inherit;
}

.qual-photo-1 {
  background: linear-gradient(135deg, #7B3A10, #D4770A);
}

.qual-photo-2 {
  background: linear-gradient(135deg, #4A1500, #8B3A0A);
}

.qual-photo-3 {
  background: linear-gradient(135deg, #5C2800, #B5661B);
}

.qual-photo-emoji {
  font-size: 2.6rem;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.qual-photo-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: #4A1500;
  text-align: center;
  line-height: 1.3;
}

/* ===== STATS SECTION (MODERN LUXURY WITH BATIK OVERLAY) ===== */
.stats-section {
  background: linear-gradient(165deg, #3A1000 0%, #4A1500 50%, #2A0B00 100%);
  padding: 34px 18px 36px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(212, 160, 23, 0.25);
  border-bottom: 1px solid rgba(212, 160, 23, 0.25);
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4A017' fill-opacity='0.12'%3E%3Cpath d='M30 0C13.43 0 0 13.43 0 30s13.43 30 30 30 30-13.43 30-30S46.57 0 30 0zm0 54C16.77 54 6 43.23 6 30S16.77 6 30 6s24 10.77 24 24S43.23 54 30 54z'/%3E%3Cpath d='M30 12c-9.94 0-18 8.06-18 18s8.06 18 18 18 18-8.06 18-18-8.06-18-18-18zm0 30c-6.63 0-12-5.37-12-12s5.37-12 12-12 12 5.37 12 12-5.37 12-12 12z'/%3E%3Cpath d='M30 24c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: 54px 54px;
  pointer-events: none;
  z-index: 0;
}

.stats-section::after {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 220px;
  background: radial-gradient(ellipse, rgba(212, 160, 23, 0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.stats-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.ornament-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 160, 23, 0.5), transparent);
  max-width: 50px;
}

.stats-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #F5C842;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.stat-card {
  background: rgba(254, 250, 243, 0.04);
  border: 1px solid rgba(212, 160, 23, 0.22);
  border-radius: 14px;
  padding: 16px 10px 14px;
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-card:hover {
  transform: translateY(-3px);
  background: rgba(254, 250, 243, 0.08);
  border-color: rgba(245, 200, 66, 0.5);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.stat-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.2), rgba(245, 200, 66, 0.08));
  border: 1px solid rgba(212, 160, 23, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  color: #F5C842;
}

.stat-svg {
  width: 20px;
  height: 20px;
}

.stat-number-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  line-height: 1;
  margin-bottom: 3px;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #FDF5E6;
  line-height: 1;
}

.stat-plus {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #F5C842;
}

.stat-unit {
  font-size: 0.72rem;
  font-weight: 600;
  color: #D4A017;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.stat-label {
  font-size: 0.65rem;
  color: rgba(253, 245, 230, 0.65);
  line-height: 1.35;
}

/* ===== CARA PESAN SECTION ===== */
.cara-pesan-section {
  background: #FEFAF3;
  border-top: 3px solid #D4A01744;
}

.cara-steps {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  padding: 8px 16px 28px;
  overflow-x: auto;
  scrollbar-width: none;
}

.cara-steps::-webkit-scrollbar {
  display: none;
}

.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: white;
  border-radius: 16px;
  padding: 18px 12px;
  border: 2px solid #D4A01766;
  box-shadow: 0 4px 16px rgba(74, 21, 0, 0.08);
  flex: 1;
  min-width: 110px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.step-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(74, 21, 0, 0.14);
}

.step-num {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #4A1500, #7B3A10);
  color: #F5C842;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(74, 21, 0, 0.3);
}

.step-icon {
  font-size: 1.8rem;
  line-height: 1;
}

.step-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: #4A1500;
}

.step-desc {
  font-size: 0.65rem;
  color: #7B3A10;
  line-height: 1.4;
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 40px;
  color: #D4A017;
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 0;
}

.contact-bg {
  background: linear-gradient(135deg, #4A1500 0%, #7B3A10 50%, #B5661B 100%);
  position: relative;
  overflow: hidden;
}

.contact-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.contact-bg::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -20%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(245, 200, 66, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.contact-inner {
  position: relative;
  z-index: 1;
  padding: 36px 20px;
  text-align: center;
}

.contact-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #F5C842;
  margin-bottom: 8px;
}

.contact-sub {
  font-size: 0.82rem;
  color: rgba(253, 245, 230, 0.85);
  line-height: 1.5;
  margin-bottom: 24px;
}

.wa-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  transition: all 0.25s ease;
}

.btn-wa:hover {
  background: #1EB857;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}

.btn-wa-2 {
  background: #128C7E;
  box-shadow: 0 4px 16px rgba(18, 140, 126, 0.35);
}

.btn-wa-2:hover {
  background: #0A7668;
  box-shadow: 0 8px 24px rgba(18, 140, 126, 0.5);
}

.wa-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ===== FAQ SECTION ===== */
.faq-section {
  background: #FEFAF3;
  border-top: 3px solid #D4A01744;
}

.faq-list {
  padding: 0 16px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: white;
  border: 2px solid #D4A01766;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(74, 21, 0, 0.06);
  transition: box-shadow 0.2s;
}

.faq-item.open {
  border-color: #D4A017;
  box-shadow: 0 4px 16px rgba(74, 21, 0, 0.12);
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(74, 21, 0, 0.1);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 16px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-size: 0.83rem;
  font-weight: 600;
  color: #4A1500;
  gap: 10px;
  transition: background 0.2s;
}

.faq-q:hover {
  background: #FDF5E6;
}

.faq-item.open .faq-q {
  background: linear-gradient(135deg, #4A1500, #7B3A10);
  color: #F5C842;
}

.faq-arrow {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  color: #D4A017;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  color: #F5C842;
}

.faq-a {
  padding: 12px 16px 14px;
  border-top: 1px solid #D4A01733;
  background: #FFFDF7;
}

.faq-a p {
  font-size: 0.8rem;
  color: #5C2800;
  line-height: 1.7;
  margin-bottom: 8px;
}

.faq-a p:last-child {
  margin-bottom: 0;
}

.faq-wa-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}

.faq-wa-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: linear-gradient(135deg, #E8F5E9, #F1FBF2);
  color: #1A7A3A;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid #A5D6A7;
  transition: all 0.2s;
}

.faq-wa-btn:hover {
  background: #C8E6C9;
  transform: translateY(-1px);
}

/* ===== FOOTER ===== */
.site-footer {
  background: linear-gradient(180deg, #2C0A00, #4A1500);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  display: block;
  height: 4px;
  background: repeating-linear-gradient(90deg, #D4A017 0px, #D4A017 20px, #F5C842 20px, #F5C842 40px, #7B3A10 40px, #7B3A10 60px, #F5C842 60px, #F5C842 80px);
}

.footer-inner {
  padding: 28px 20px 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-logo {
  width: 80px;
  height: auto;
  margin-bottom: 8px;
  filter: brightness(1.05);
}

.footer-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.85rem;
  color: #D4A017;
  margin-bottom: 12px;
}

.footer-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  color: #D4A017;
  font-size: 0.7rem;
}

.ornament-dash {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #D4A017, transparent);
}

.footer-contact {
  margin-bottom: 16px;
}

.footer-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: #F5C84288;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.footer-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #A5D6A7;
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 4px;
  transition: color 0.2s;
}

.footer-wa:hover {
  color: #25D366;
}

.footer-address {
  font-size: 0.72rem;
  color: rgba(253, 245, 230, 0.75);
  line-height: 1.4;
  margin-top: 10px;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

.footer-copy {
  font-size: 0.68rem;
  color: rgba(253, 245, 230, 0.4);
  margin-top: 8px;
}

/* ===== BOTTOM NAV ===== */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  background: rgba(254, 250, 243, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 2px solid #D4A01766;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 8px 4px 12px;
  z-index: 100;
  box-shadow: 0 -4px 24px rgba(74, 21, 0, 0.12);
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-decoration: none;
  color: #B5661B88;
  font-size: 0.62rem;
  font-weight: 500;
  transition: color 0.2s;
  padding: 2px 8px;
  flex: 1;
}

.nav-item:hover {
  color: #7B3A10;
}

.nav-item.nav-active {
  color: #4A1500;
}

.nav-icon-wrap {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.nav-item-wa {
  color: #25D366;
  position: relative;
}

.nav-icon-wa {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  color: white;
  margin-top: -20px;
  border: 3px solid #FEFAF3;
  transition: transform 0.2s, box-shadow 0.2s;
}

.nav-item-wa:hover .nav-icon-wa {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

/* ===== FLOATING WA BUTTON ===== */
.float-wa {
  position: fixed;
  right: calc(50% - 240px + 16px);
  bottom: 90px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 100px;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 99;
  animation: floatPulse 2.5s ease-in-out infinite;
  transition: transform 0.2s, box-shadow 0.2s;
  max-width: 140px;
}

.float-wa:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
  animation: none;
}

.float-wa-label {
  white-space: nowrap;
}

@keyframes floatPulse {

  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }

  50% {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
  }
}

/* On narrow screens, float btn goes corner */
@media (max-width: 520px) {
  .float-wa {
    right: 16px;
    bottom: 90px;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-header,
.promo-section,
.kategori-section,
.kualitas-section,
.stats-section,
.cara-pesan-section,
.contact-section,
.faq-section {
  animation: fadeInUp 0.5s ease both;
}

/* ===== SCROLL INDICATOR ON PROMO ===== */
.promo-section::after {
  content: '';
  display: block;
  height: 4px;
  background: linear-gradient(90deg, #D4A017, #F5C842, #D4A017);
}

/* ===== FOOD STRIP (HERO REAL IMAGES) ===== */
.food-img-real {
  background-size: cover !important;
  background-position: center !important;
  background-color: #f0e8d5;
}

.food-img-real .food-emoji {
  display: none;
}

/* ===== PROMO REAL IMAGE ===== */
.promo-img-real {
  background-size: cover !important;
  background-position: center !important;
}

.promo-img-real .promo-food-art {
  display: none;
}

/* ===== QUALITY REAL PHOTOS ===== */
.qual-photo-real {
  background-size: cover !important;
  background-position: center !important;
}

.qual-photo-real .qual-photo-emoji {
  display: none;
}

/* ===== MENU AYAM SECTION ===== */
.menu-ayam-section {
  background: linear-gradient(180deg, #4A1500 0%, #6B2800 100%);
  padding: 0 0 32px;
  position: relative;
}

.section-sub-light {
  font-size: 0.82rem;
  color: rgba(253, 245, 230, 0.7);
  text-align: center;
  padding: 0 16px;
  margin-top: 4px;
}

.menu-ayam-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 16px 12px;
}

.menu-card {
  background: #FEFAF3;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.menu-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: #F0E8D5;
}

.menu-card-img img {
  width: 100%;
  display: block;
  transition: transform 0.4s;
}

.menu-card:hover .menu-card-img img {
  transform: scale(1.06);
}

.menu-card-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: linear-gradient(135deg, #C0392B, #E74C3C);
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.menu-card-badge-gold {
  background: linear-gradient(135deg, #D4A017, #F5C842);
  color: #4A1500;
}

.menu-card-info {
  padding: 10px 10px 12px;
}

.menu-card-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: #2C1000;
  margin: 0 0 4px;
  line-height: 1.3;
}

.menu-card-desc {
  font-size: 0.67rem;
  color: #7B3A10;
  line-height: 1.4;
  margin: 0 0 8px;
}

.menu-card-btn {
  width: 100%;
  background: linear-gradient(135deg, #4A1500, #7B3A10);
  color: #F5C842;
  border: none;
  border-radius: 8px;
  padding: 7px 6px;
  font-size: 0.67rem;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: background 0.2s, transform 0.15s;
}

.menu-card-btn:hover {
  background: linear-gradient(135deg, #D4A017, #F5C842);
  color: #4A1500;
  transform: scale(1.02);
}

.menu-ayam-cta {
  display: flex;
  justify-content: center;
  padding: 4px 16px 0;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 2px solid #F5C842;
  color: #F5C842;
  padding: 12px 28px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.btn-secondary:hover {
  background: #F5C842;
  color: #4A1500;
}

/* ===== TESTIMONI SECTION ===== */
.testimoni-section {
  background: #FEFAF3;
  padding: 0 0 24px;
}

.testi-slider {
  position: relative;
  overflow: hidden;
}

.testi-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testi-card {
  min-width: 100%;
  padding: 20px 20px 16px;
  box-sizing: border-box;
}

.testi-stars {
  font-size: 1rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.testi-text {
  font-size: 0.84rem;
  color: #4A1500;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 16px;
  background: #FDF5E6;
  border-left: 3px solid #D4A017;
  padding: 12px 14px;
  border-radius: 0 10px 10px 0;
}

.testi-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #D4A017;
  flex-shrink: 0;
}

.testi-user-info {
  display: flex;
  flex-direction: column;
}

.testi-name {
  font-weight: 700;
  font-size: 0.84rem;
  color: #2C1000;
}

.testi-role {
  font-size: 0.7rem;
  color: #7B3A10;
  margin-top: 2px;
}

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 8px 0 0;
}

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #D4A01744;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.testi-dot.active {
  background: #D4A017;
  transform: scale(1.3);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  background: linear-gradient(180deg, #4A1500 0%, #6B2800 100%);
  padding: 0 0 24px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 16px 16px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(253, 245, 230, 0.1);
  border: 1px solid rgba(212, 160, 23, 0.3);
  border-radius: 16px;
  padding: 16px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.contact-card:hover {
  background: rgba(253, 245, 230, 0.18);
  border-color: #D4A017;
}

.contact-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wa-icon {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
}

.ig-icon {
  background: linear-gradient(135deg, #833AB4, #FD1D1D, #FCB045);
  color: white;
}

.tiktok-icon {
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.45);
}

.location-icon {
  background: linear-gradient(135deg, #D4A017, #F5C842);
  color: #4A1500;
}

.contact-card-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.contact-card-label {
  font-size: 0.68rem;
  color: rgba(245, 200, 66, 0.8);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-card-num {
  font-size: 0.98rem;
  font-weight: 700;
  color: #FDF5E6;
  margin: 2px 0;
}

.contact-card-status {
  font-size: 0.68rem;
  color: #A5D6A7;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 8px #25D366;
  display: inline-block;
  animation: statusPulse 1.8s infinite;
}

@keyframes statusPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.85);
  }
}

.contact-card-arrow {
  font-size: 1.4rem;
  color: #D4A017;
  font-weight: 700;
}

/* ===== MAPS & ADDRESS CARD ===== */
.maps-card {
  background: rgba(253, 245, 230, 0.08);
  border: 1px solid rgba(212, 160, 23, 0.35);
  border-radius: 16px;
  padding: 16px;
  margin: 0 16px 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.maps-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.maps-header-info {
  flex: 1;
}

.maps-badge {
  font-size: 0.65rem;
  font-weight: 700;
  color: #F5C842;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.maps-address-title {
  font-size: 0.96rem;
  font-weight: 700;
  color: #FDF5E6;
  margin: 2px 0;
}

.maps-address-text {
  font-size: 0.74rem;
  color: rgba(253, 245, 230, 0.85);
  line-height: 1.45;
}

.maps-iframe-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(212, 160, 23, 0.4);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  margin-bottom: 12px;
  line-height: 0;
}

.maps-iframe-wrap iframe {
  width: 100%;
  height: 200px;
  display: block;
}

.maps-open-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: linear-gradient(135deg, #D4A017, #F5C842);
  color: #4A1500;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 12px rgba(212, 160, 23, 0.3);
}

.maps-open-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(212, 160, 23, 0.45);
}

.contact-info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 0 16px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: rgba(253, 245, 230, 0.07);
  border-radius: 10px;
  padding: 10px;
}

.contact-svg {
  width: 16px;
  height: 16px;
  color: #F5C842;
  flex-shrink: 0;
  margin-top: 1px;
}

.contact-info-item span:last-child {
  font-size: 0.67rem;
  color: rgba(253, 245, 230, 0.8);
  line-height: 1.4;
}

/* ===== FOOTER LINKS ===== */
.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.footer-link {
  font-size: 0.72rem;
  color: rgba(245, 200, 66, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover {
  color: #F5C842;
}

.footer-sep {
  color: rgba(245, 200, 66, 0.3);
}

/* ===== MENU AYAM / PRODUK UNGGULAN SECTION ===== */
.menu-ayam-section {
  background: linear-gradient(180deg, #4A1500 0%, #300A00 100%);
  padding: 30px 16px 36px;
  position: relative;
}

.menu-ayam-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.menu-card {
  background: #FEFAF3;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1.5px solid rgba(212, 160, 23, 0.3);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

.menu-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  border-color: #D4A017;
}

.menu-card-img-wrap {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #f0e8d8;
  cursor: pointer;
}

.menu-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.menu-card:hover .menu-card-img-wrap img {
  transform: scale(1.06);
}

.menu-card-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #C0392B;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.menu-card-info {
  padding: 12px 10px 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.menu-card-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: #2C1000;
  line-height: 1.25;
  margin-bottom: 4px;
  cursor: pointer;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2rem;
}

.menu-card-name:hover {
  color: #B5661B;
}

.menu-card-desc {
  font-size: 0.68rem;
  color: #7B3A10;
  line-height: 1.35;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.menu-card-price-row {
  margin-bottom: 10px;
}

.menu-card-price {
  font-size: 0.95rem;
  font-weight: 800;
  color: #4A1500;
}

.menu-card-price-unit {
  font-size: 0.65rem;
  color: #7B3A10;
  font-weight: 500;
}

/* 2 Button Actions */
.menu-card-actions {
  display: flex;
  gap: 6px;
  margin-top: auto;
}

.btn-card-keranjang {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 4px;
  border-radius: 8px;
  border: 1.5px solid #4A1500;
  background: #fff;
  color: #4A1500;
  font-family: 'Poppins', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-card-keranjang:hover {
  background: #4A1500;
  color: #F5C842;
}

.btn-card-beli {
  flex: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 6px;
  border-radius: 8px;
  border: none;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
  white-space: nowrap;
}

.btn-card-beli:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.45);
}

.menu-ayam-cta {
  text-align: center;
  margin-top: 24px;
}

/* Home Floating Toast */
.home-toast {
  position: fixed;
  bottom: 85px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #2C1000;
  color: #F5C842;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 30px;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.home-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ===== CS WHATSAPP MODAL POPUP ===== */
.ds-cs-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  padding: 16px;
}
.ds-cs-modal-overlay.show {
  opacity: 1;
  pointer-events: auto;
}
.ds-cs-modal-card {
  width: 100%;
  max-width: 380px;
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  border: 1.5px solid rgba(212, 160, 23, 0.4);
  overflow: hidden;
  transform: translateY(20px) scale(0.96);
  transition: transform 0.25s cubic-bezier(0.2, 0.9, 0.3, 1);
}
.ds-cs-modal-overlay.show .ds-cs-modal-card {
  transform: translateY(0) scale(1);
}
.ds-cs-modal-header {
  background: linear-gradient(135deg, #4A1500 0%, #300A00 100%);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  position: relative;
  border-bottom: 1.5px solid rgba(212, 160, 23, 0.3);
}
.ds-cs-modal-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}
.ds-cs-modal-titles {
  flex: 1;
}
.ds-cs-modal-titles h3 {
  font-size: 0.92rem;
  font-weight: 700;
  color: #F5C842;
  margin: 0 0 2px;
}
.ds-cs-modal-titles p {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}
.ds-cs-modal-close {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.15s;
}
.ds-cs-modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
}
.ds-cs-modal-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #FEFAF3;
}
.ds-cs-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: #FFFFFF;
  border: 1.5px solid rgba(74, 21, 0, 0.12);
  border-radius: 14px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(74, 21, 0, 0.05);
  width: 100%;
  text-align: left;
  font-family: inherit;
}
.ds-cs-item:hover, .ds-cs-item:active {
  border-color: #25D366;
  background: #F0FFF4;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.22);
}
.ds-cs-item-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  font-weight: 800;
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(37, 211, 102, 0.3);
}
.ds-cs-item-info {
  flex: 1;
  min-width: 0;
}
.ds-cs-item-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: #2C1000;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 2px;
}
.ds-cs-badge {
  font-size: 0.62rem;
  font-weight: 600;
  background: rgba(37, 211, 102, 0.15);
  color: #128C7E;
  padding: 2px 6px;
  border-radius: 4px;
}
.ds-cs-item-phone {
  font-size: 0.76rem;
  font-weight: 600;
  color: #7B3A10;
}
.ds-cs-item-arrow {
  font-size: 1.1rem;
  font-weight: 700;
  color: #25D366;
}
.ds-cs-modal-footer {
  padding: 10px 16px 12px;
  text-align: center;
  font-size: 0.7rem;
  color: #7B3A10;
  background: #FEFAF3;
  border-top: 1px solid rgba(74, 21, 0, 0.08);
}