/* ===== MENU.HTML PAGE STYLES ===== */

/* ===== MENU PAGE SPECIFIC ===== */
.menu-hero {
  background: var(--green-pale);
  padding: 3.5rem 0 0;
  text-align: center;
  position: relative;
}
.menu-hero-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 2rem 2.5rem;
}
.menu-hero .section-label { display: inline-block; }
.menu-hero h1 { font-size: clamp(2.2rem,4vw,3.2rem); font-weight: 800; margin: .6rem 0 .8rem; color: var(--dark); }
.menu-hero p { font-size: .95rem; color: var(--muted); }

/* Filter bar */
.filter-bar-wrap {
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,.06);
  position: sticky;
  top: 64px;
  z-index: 90;
  box-shadow: 0 2px 16px rgba(0,0,0,.04);
}
.filter-bar {
  max-width: 1200px;
  margin: 0 auto;
  padding: .75rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}
.filter-tabs { display: flex; gap: .35rem; flex-wrap: wrap; }
.tab-btn {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem 1.1rem;
  border-radius: 50px;
  border: 1.5px solid #e8e8e8;
  background: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: .84rem;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  transition: all .22s;
}
.tab-btn:hover { border-color: var(--green); color: var(--dark); }
.tab-btn.active {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
  font-weight: 600;
}
.tab-btn .tab-icon { font-size: .9rem; }
.filter-search {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: #f6f6f6;
  border-radius: 50px;
  padding: .5rem 1.1rem;
  flex-shrink: 0;
}
.filter-search svg { color: var(--muted); }
.filter-search input {
  border: none;
  background: none;
  font-family: 'DM Sans', sans-serif;
  font-size: .85rem;
  color: var(--dark);
  outline: none;
  width: 160px;
}
.filter-search input::placeholder { color: var(--muted); }
/* ── PRICE FILTER BAR ── */
.price-filter-bar {
  background: #fff;
  border-top: 1px solid rgba(0,0,0,.06);
  padding: 10px 0;
}

.price-filter-bar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 1.5rem;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.price-filter-label {
  font-size: .75rem;
  font-weight: 700;
  color: var(--muted, #888);
  text-transform: uppercase;
  letter-spacing: .5px;
  white-space: nowrap;
  margin-right: 4px;
}

.price-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .78rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1.5px solid rgba(0,0,0,.12);
  background: #fff;
  color: var(--dark, #1a1a1a);
  cursor: pointer;
  transition: all .18s ease;
  white-space: nowrap;
  font-family: inherit;
  line-height: 1.4;
}

.price-btn:hover {
  border-color: var(--green, #4caf50);
  color: var(--green, #4caf50);
  background: color-mix(in srgb, var(--green, #4caf50) 6%, transparent);
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(76,175,80,.12);
}

.price-btn.active {
  background: var(--green, #4caf50);
  border-color: var(--green, #4caf50);
  color: #fff;
  box-shadow: 0 4px 12px rgba(76,175,80,.25);
  transform: translateY(-1px);
}
.price-filter-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 1.5rem;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
/* ===== FEATURED DETAIL PANEL ===== */
.featured-panel {
  background: var(--green-pale);
  padding: 3rem 0;
  display: none;
  opacity: 0;
  transition: opacity .4s ease;
}
.featured-panel.visible { display: block; opacity: 1; }
.featured-panel-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 4rem;
  align-items: center;
}

/* Left: image carousel */
.featured-left { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.featured-img-ring {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 4px solid var(--orange);
  overflow: hidden;
  position: relative;
  box-shadow: 0 16px 48px rgba(232,103,26,.2);
  flex-shrink: 0;
}
.featured-img-ring img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform .5s ease;
}
.featured-img-ring:hover img { transform: scale(1.05); }
.featured-rank-badge {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  padding: .3rem 1rem;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
  white-space: nowrap;
}
.carousel-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.carousel-arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,.12);
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all .2s;
  font-size: 1rem;
  color: var(--dark);
}
.carousel-arrow:hover { background: var(--dark); color: #fff; border-color: var(--dark); }
.carousel-count { font-size: .85rem; font-weight: 600; color: var(--dark); min-width: 3rem; text-align: center; }
.carousel-thumbs {
  display: flex;
  gap: .6rem;
}
.thumb {
  width: 44px; height: 44px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s;
  flex-shrink: 0;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb.active { border-color: var(--orange); }
.thumb:hover:not(.active) { border-color: rgba(0,0,0,.15); }

/* Right: detail card */
.featured-right {
  background: #fff;
  border-radius: 20px;
  padding: 2rem 2.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
}
.detail-tab-row { display: flex; gap: .3rem; margin-bottom: 1.5rem; }
.detail-tab {
  padding: .35rem 1rem;
  border-radius: 50px;
  border: none;
  background: #f4f4f4;
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all .2s;
}
.detail-tab.active { background: var(--dark); color: #fff; }
.detail-cat-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--orange);
  margin-bottom: .4rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.detail-cat-label::before { content: ''; width: 6px; height: 6px; background: var(--orange); border-radius: 50%; }
.featured-right h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: .5rem; color: var(--dark); }
.detail-rating { display: flex; align-items: center; gap: .4rem; font-size: .85rem; color: var(--muted); margin-bottom: .3rem; }
.detail-rating .stars { color: #f59e0b; font-size: .9rem; }
.detail-chef { font-size: .78rem; color: var(--muted); margin-bottom: 1rem; display: flex; align-items: center; gap: .3rem; }
.detail-chef span { color: var(--green); font-weight: 600; }
.detail-desc { font-size: .88rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.2rem; }
.detail-nutrition {
  display: flex;
  gap: .8rem;
  background: #f8f8f8;
  border-radius: 14px;
  padding: 1rem;
  margin-bottom: 1rem;
}
.nutr-item { flex: 1; text-align: center; }
.nutr-item .nutr-icon { font-size: 1.1rem; margin-bottom: .2rem; }
.nutr-item strong { display: block; font-size: .9rem; font-weight: 700; color: var(--dark); }
.nutr-item label { font-size: .68rem; color: var(--muted); display: block; }
.detail-tags { display: flex; gap: .4rem; flex-wrap: wrap; margin-bottom: 1.3rem; }
.dtag {
  padding: .3rem .85rem;
  border-radius: 50px;
  background: var(--green-pale);
  color: var(--green);
  font-size: .72rem;
  font-weight: 600;
  border: 1px solid rgba(45,106,63,.15);
}
.detail-price-row { display: flex; align-items: center; justify-content: space-between; }
.detail-price-old { text-decoration: line-through; color: #bbb; font-size: .88rem; margin-right: .3rem; }
.detail-price { font-size: 1.5rem; font-weight: 800; color: var(--dark); }
.btn-order-now {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: .7rem 1.6rem;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .22s;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.btn-order-now:hover { background: #d45a12; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(232,103,26,.3); }

/* Ingredients tab content */
.ingredients-content { display: none; }
.ingredients-content.active { display: block; }
.overview-content.active { display: block; }
.overview-content { display: none; }

.ingr-list { list-style: none; display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.3rem; }
.ingr-list li {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .88rem;
  color: var(--dark);
  padding: .5rem .8rem;
  background: #f9f9f9;
  border-radius: 10px;
}
.ingr-list li::before { content: '✓'; color: var(--green); font-weight: 700; }

/* ===== MENU PRODUCTS SECTION ===== */
.menu-products {
  padding: 3rem 0 5rem;
  background: #fff;
}
.menu-products-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.menu-products-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f0f0f0;
}
.product-count { font-size: .88rem; color: var(--muted); font-weight: 500; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

/* Menu product card (not flip, simpler card for menu page) */
.menu-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #f0f0f0;
  background: #fff;
  transition: all .3s ease;
  cursor: pointer;
  opacity: 1;
  transform: translateY(0) scale(1);
}
.menu-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.1); }
.menu-card.hidden { display: none; }
.menu-card.animating-out { opacity: 0; transform: translateY(8px) scale(.97); }
.menu-card.animating-in { animation: cardIn .35s ease forwards; }

@keyframes cardIn {
  from { opacity: 0; transform: translateY(16px) scale(.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.menu-card-img { position: relative; height: 200px; overflow: hidden; }
.menu-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.menu-card:hover .menu-card-img img { transform: scale(1.06); }
.menu-card-badge {
  position: absolute;
  top: .65rem;
  left: .65rem;
  background: var(--dark);
  color: #fff;
  padding: .25rem .7rem;
  border-radius: 50px;
  font-size: .68rem;
  font-weight: 700;
  z-index: 1;
}
.menu-card-badge.green { background: #2d6a3f; }
.menu-card-badge.orange { background: var(--orange); }
.menu-card-badge.purple { background: #7c3aed; }
.menu-card-badge.teal { background: #0d9488; }
.menu-card-body { padding: 1rem 1.1rem 1.2rem; }
.menu-card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: .3rem; }
.menu-card-top h3 { font-size: .92rem; font-weight: 700; color: var(--dark); line-height: 1.3; }
.menu-card-price { font-size: .88rem; font-weight: 700; color: var(--dark); white-space: nowrap; margin-left: .5rem; }
.menu-card-meta { display: flex; align-items: center; gap: .4rem; font-size: .75rem; color: var(--muted); margin-bottom: .85rem; }
.menu-card-stars { color: #f59e0b; }
.menu-card-kcal { margin-left: auto; font-size: .72rem; }
.btn-add-cart {
  width: 100%;
  padding: .55rem 0;
  border-radius: 50px;
  border: 1.5px solid #e5e5e5;
  background: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  transition: all .22s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
}
.btn-add-cart:hover { background: var(--dark); color: #fff; border-color: var(--dark); }
.btn-add-cart svg { flex-shrink: 0; }

/* ===== COMBO SECTION ===== */
.combo-section {
  padding: 2.5rem 0 5rem;
  background: #fff;
  display: none;
}
.combo-section.visible { display: block; }
.combo-section-inner { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.combo-header { margin-bottom: .4rem; }
.combo-header-label {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--dark);
  color: #fff;
  padding: .25rem .8rem;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.combo-header h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: .4rem; }
.combo-header p { font-size: .88rem; color: var(--muted); margin-bottom: 2rem; }
.combo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.combo-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid #f0f0f0;
  background: #fff;
  transition: all .3s;
  animation: cardIn .4s ease forwards;
}
.combo-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,.1); }
.combo-card-img {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.combo-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.combo-card:hover .combo-card-img img { transform: scale(1.06); }
.combo-type-badge {
  position: absolute;
  top: .75rem;
  left: .75rem;
  color: #fff;
  padding: .3rem .8rem;
  border-radius: 50px;
  font-size: .68rem;
  font-weight: 700;
  z-index: 1;
}
.combo-save-badge {
  position: absolute;
  top: .75rem;
  right: .75rem;
  background: rgba(0,0,0,.75);
  color: #fff;
  padding: .3rem .7rem;
  border-radius: 50px;
  font-size: .65rem;
  font-weight: 700;
  z-index: 1;
  backdrop-filter: blur(4px);
}
.combo-card-body { padding: 1.2rem 1.3rem; }
.combo-card-body h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: .4rem; }
.combo-card-body .combo-desc { font-size: .78rem; color: var(--muted); line-height: 1.6; margin-bottom: .8rem; }
.combo-tags { display: flex; gap: .35rem; flex-wrap: wrap; margin-bottom: .9rem; }
.ctag {
  background: #f4f4f4;
  color: #555;
  padding: .2rem .65rem;
  border-radius: 50px;
  font-size: .68rem;
  font-weight: 600;
}
.combo-rating { display: flex; align-items: center; gap: .4rem; font-size: .78rem; color: var(--muted); margin-bottom: .9rem; }
.combo-rating .stars { color: #f59e0b; }
.combo-price-row { display: flex; align-items: center; gap: .7rem; margin-bottom: .8rem; }
.combo-price-old { font-size: .82rem; color: #bbb; text-decoration: line-through; }
.combo-price-new { font-size: 1.1rem; font-weight: 800; color: var(--dark); }
.btn-combo {
  width: 100%;
  padding: .6rem 0;
  border-radius: 50px;
  border: none;
  background: var(--green);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .22s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
}
.btn-combo:hover { background: #235534; transform: translateY(-1px); }

/* ===== CTA / FOOTER (shared) ===== */
.cta-section { padding: 5rem 2rem; background: var(--green-pale); display: flex; justify-content: center; }
.cta-section { padding: 5rem 0; background: var(--green-pale); display: flex; justify-content: center; }
.cta-box { background: #1f4d2a; border-radius: 24px; padding: 3.5rem 3rem; max-width: 600px; width: 100%; text-align: center; position: relative; overflow: hidden; }
.cta-tag { display: inline-block; background: rgba(255, 255, 255, 0.12); color: #fff; border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 50px; padding: 0.35rem 1rem; font-size: 0.78rem; font-weight: 600; margin-bottom: 1.2rem; }
.cta-box h2 { font-size: 2rem; font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 0.8rem; }
.cta-orange { color: var(--orange); }
.cta-box > p { font-size: 0.9rem; color: rgba(255, 255, 255, 0.7); margin-bottom: 1.8rem; line-height: 1.6; position: relative; z-index: 1; }
.cta-form { display: flex; gap: 0.75rem; max-width: 420px; margin: 0 auto 1rem; position: relative; z-index: 1; }
.cta-form input { flex: 1; padding: 0.75rem 1.2rem; border-radius: 50px; border: none; background: rgba(255, 255, 255, 0.15); color: #fff; font-size: 0.9rem; font-family: inherit; outline: none; }
.cta-form input::placeholder { color: rgba(255, 255, 255, 0.5); }
.cta-form input:focus { background: rgba(255, 255, 255, 0.2); }
.btn-orange { background: var(--orange); color: #fff; border: none; padding: 0.75rem 1.5rem; border-radius: 50px; font-size: 0.9rem; font-weight: 600; cursor: pointer; white-space: nowrap; transition: all 0.2s; font-family: inherit; }
.btn-orange:hover { background: #d45a12; transform: translateY(-1px); }
.cta-note { font-size: 0.72rem; color: rgba(255, 255, 255, 0.45); position: relative; z-index: 1; }
.cb { position: absolute; border-radius: 50%; background: rgba(255, 255, 255, 0.04); pointer-events: none; }
.cb1 { width: 280px; height: 280px; bottom: -80px; left: -60px; }
.cb2 { width: 200px; height: 200px; top: -60px; right: -40px; }