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

:root {
  --color-bg: #0d0a05;
  --color-bg-card: #1a1208;
  --color-bg-card2: #14100a;
  --color-gold: #c9a84c;
  --color-gold-light: #e8c97a;
  --color-gold-dark: #8a6f2e;
  --color-text: #f5e6c8;
  --color-text-muted: #a89070;
  --color-border: rgba(201, 168, 76, 0.2);
  --color-whatsapp: #25d366;
  --radius: 12px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 64px; }
.section-label {
  display: inline-block;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--color-gold); margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700; color: var(--color-text); line-height: 1.2;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 8px;
  font-size: 15px; font-weight: 600;
  cursor: pointer; transition: var(--transition);
  border: none; white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: #0d0a05;
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}
.btn--whatsapp { background: var(--color-whatsapp); color: white; }
.btn--whatsapp:hover {
  background: #1ebe5a; transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}
.btn--outline {
  background: transparent; color: var(--color-gold);
  border: 1.5px solid var(--color-gold);
}
.btn--outline:hover { background: rgba(201,168,76,0.1); transform: translateY(-2px); }

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; padding: 16px 0;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition), padding var(--transition);
}
.header.scrolled {
  background: rgba(13, 10, 5, 0.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5); padding: 10px 0;
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.header__right { display: flex; align-items: center; gap: 12px; }

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; font-size: 20px; font-weight: 700; color: var(--color-text); flex-shrink: 0; }
.logo__icon { font-size: 24px; }
.logo em { font-style: italic; color: var(--color-gold-light); }

/* Nav */
.nav__list { display: flex; gap: 32px; }
.nav__link {
  font-size: 14px; font-weight: 500; color: var(--color-text-muted);
  transition: color var(--transition); position: relative;
}
.nav__link::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1.5px; background: var(--color-gold);
  transform: scaleX(0); transition: transform var(--transition);
}
.nav__link:hover, .nav__link.active { color: var(--color-gold-light); }
.nav__link:hover::after, .nav__link.active::after { transform: scaleX(1); }

/* ── Header cart button ── */
.header-cart-btn {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  background: rgba(201,168,76,0.08);
  border: 1.5px solid var(--color-border);
  border-radius: 10px;
  color: var(--color-gold);
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}
.header-cart-btn:hover {
  background: rgba(201,168,76,0.16);
  border-color: var(--color-gold);
  transform: translateY(-1px);
}
.header-cart-btn.has-items {
  border-color: var(--color-gold);
  background: rgba(201,168,76,0.12);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.header-cart-btn.pop {
  animation: hdrPop 0.35s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}
@keyframes hdrPop {
  0%,100% { transform: scale(1); }
  35% { transform: scale(1.22); }
  65% { transform: scale(0.9); }
  85% { transform: scale(1.06); }
}

.header-cart-count {
  position: absolute; top: -6px; right: -6px;
  min-width: 18px; height: 18px;
  background: var(--color-gold); color: #0d0a05;
  border-radius: 100px; font-size: 10px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px; border: 2px solid var(--color-bg);
  transform-origin: center;
  transition: transform 0.2s;
}
.header-cart-count.bump { animation: cntBump 0.3s ease; }
@keyframes cntBump { 0%,100%{transform:scale(1)} 50%{transform:scale(1.5)} }

/* Burger */
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--color-text); border-radius: 2px; transition: var(--transition); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,168,76,0.08) 0%, transparent 60%),
              linear-gradient(180deg, #0d0a05 0%, #1a0f05 50%, #0d0a05 100%);
}
.hero__bg::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(201,168,76,0.04) 0%, transparent 40%),
                    radial-gradient(circle at 80% 20%, rgba(201,168,76,0.04) 0%, transparent 40%);
}
.hero__content { position: relative; z-index: 1; padding: 120px 24px 80px; max-width: 800px; }
.hero__badge {
  display: inline-block; background: rgba(201,168,76,0.15); border: 1px solid var(--color-border);
  color: var(--color-gold); font-size: 13px; font-weight: 600; letter-spacing: 0.1em;
  padding: 6px 18px; border-radius: 100px; margin-bottom: 24px;
}
.hero__title { font-size: clamp(42px, 8vw, 88px); font-weight: 800; line-height: 1.05; color: var(--color-text); margin-bottom: 8px; }
.hero__title em { font-style: italic; color: var(--color-gold-light); display: block; }
.hero__ornament { margin: 20px auto; display: flex; justify-content: center; }
.hero__subtitle { font-size: clamp(16px, 2.5vw, 22px); color: var(--color-gold); font-weight: 500; letter-spacing: 0.08em; margin-bottom: 12px; }
.hero__desc { font-size: clamp(14px, 2vw, 18px); color: var(--color-text-muted); margin-bottom: 40px; }
.hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero__scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: var(--color-text-muted); font-size: 12px;
  animation: float 2s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-6px); }
}

/* ===== ABOUT ===== */
.about__text { max-width: 680px; margin: 0 auto 56px; text-align: center; font-size: 17px; color: var(--color-text-muted); line-height: 1.8; }
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature-card { background: var(--color-bg-card); border: 1px solid var(--color-border); border-radius: var(--radius); padding: 32px 20px; text-align: center; transition: var(--transition); }
.feature-card:hover { border-color: var(--color-gold); transform: translateY(-4px); box-shadow: 0 8px 32px rgba(201,168,76,0.12); }
.feature-icon { font-size: 40px; display: block; margin-bottom: 12px; }
.feature-card h3 { font-size: 16px; font-weight: 700; color: var(--color-text); margin-bottom: 4px; }
.feature-card p { font-size: 13px; color: var(--color-text-muted); }

/* ===== MENU ===== */
.menu { background: var(--color-bg-card2); }
.menu-tabs { display: flex; gap: 8px; margin-bottom: 40px; flex-wrap: wrap; justify-content: center; }
.tab-btn {
  padding: 10px 24px; border-radius: 100px; border: 1.5px solid var(--color-border);
  background: transparent; color: var(--color-text-muted); font-size: 14px; font-weight: 600;
  cursor: pointer; transition: var(--transition);
}
.tab-btn:hover { border-color: var(--color-gold); color: var(--color-gold); }
.tab-btn.active { background: var(--color-gold); border-color: var(--color-gold); color: #0d0a05; }
.tab-content { display: none; }
.tab-content.active { display: block; }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 16px; }

/* ── Menu card ── */
.menu-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 18px 18px 14px;
  transition: border-color 0.25s, box-shadow 0.25s;
  display: flex; flex-direction: column; gap: 14px;
}
.menu-card:hover { border-color: rgba(201,168,76,0.35); box-shadow: 0 4px 24px rgba(0,0,0,0.3); }
.menu-card.in-cart { border-color: rgba(201,168,76,0.55); }

.menu-card__top { display: flex; align-items: flex-start; gap: 14px; }
.menu-icon { font-size: 34px; line-height: 1; flex-shrink: 0; margin-top: 2px; }
.menu-info { flex: 1; min-width: 0; }
.menu-info h3 { font-size: 15px; font-weight: 700; color: var(--color-text); margin-bottom: 3px; display: flex; align-items: center; gap: 7px; flex-wrap: wrap; }
.menu-info p { font-size: 12px; color: var(--color-text-muted); line-height: 1.5; }
.menu-price { font-size: 15px; font-weight: 700; color: var(--color-gold); flex-shrink: 0; white-space: nowrap; }
.badge { display: inline-block; background: rgba(201,168,76,0.2); color: var(--color-gold); font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: 100px; }

/* ── Card actions (button + stepper) ── */
.card-actions {
  display: flex;
  height: 38px;
}

/* Add button */
.btn-add-cart {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  flex: 1;
  background: rgba(201,168,76,0.07);
  border: 1.5px solid rgba(201,168,76,0.35);
  border-radius: 8px;
  color: var(--color-gold);
  font-size: 13px; font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  overflow: hidden;
  position: relative;
}
.btn-add-cart:hover { border-color: var(--color-gold); background: rgba(201,168,76,0.14); }
.btn-add-cart:active { transform: scale(0.97); }
.btn-add-cart svg { flex-shrink: 0; }

/* Hidden state */
.btn-add-cart.hidden { display: none; }

/* Ripple */
.btn-add-cart::after {
  content: ''; position: absolute; inset: 0;
  background: var(--color-gold); opacity: 0; border-radius: inherit;
}
.btn-add-cart.ripple::after { animation: rippleAnim 0.35s ease forwards; }
@keyframes rippleAnim { 0%{opacity:0.18;transform:scale(0)} 100%{opacity:0;transform:scale(2.5)} }

/* Stepper */
.card-stepper {
  display: none;
  flex: 1;
  align-items: center;
  background: rgba(201,168,76,0.06);
  border: 1.5px solid rgba(201,168,76,0.55);
  border-radius: 8px;
  overflow: hidden;
  animation: stepperIn 0.2s ease;
}
@keyframes stepperIn { from{opacity:0;transform:scale(0.9)} to{opacity:1;transform:scale(1)} }
.card-stepper.visible { display: flex; }

.stepper-btn {
  flex: 0 0 44px; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: none; border: none;
  color: var(--color-gold);
  cursor: pointer;
  transition: background 0.15s;
  font-size: 16px;
}
.stepper-btn:hover { background: rgba(201,168,76,0.15); }
.stepper-btn:active { background: rgba(201,168,76,0.25); }

.stepper-qty {
  flex: 1; text-align: center;
  font-size: 16px; font-weight: 700;
  color: var(--color-text);
  border-left: 1px solid rgba(201,168,76,0.2);
  border-right: 1px solid rgba(201,168,76,0.2);
  line-height: 36px;
  transition: transform 0.12s;
}
.stepper-qty.bump { animation: qtyBump 0.2s ease; }
@keyframes qtyBump { 0%,100%{transform:scale(1)} 50%{transform:scale(1.35)} }

/* ===== PROMO ===== */
.promo {
  background: linear-gradient(135deg, #1a0f05, #241408);
  border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border);
  padding: 56px 0;
}
.promo__inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.promo__text { display: flex; align-items: center; gap: 20px; }
.promo__fire { font-size: 48px; }
.promo__title { font-size: 28px; font-weight: 800; color: var(--color-text); margin-bottom: 4px; }
.promo__desc { font-size: 16px; color: var(--color-text-muted); }
.promo__desc strong { color: var(--color-gold); font-size: 20px; }

/* ===== GALLERY ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-card {
  background: var(--color-bg-card); border: 1px solid var(--color-border);
  border-radius: var(--radius); aspect-ratio: 4/3;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  cursor: pointer; transition: var(--transition);
}
.gallery-card:hover { transform: scale(1.03); border-color: var(--color-gold); box-shadow: 0 8px 32px rgba(201,168,76,0.15); }
.gallery-emoji { font-size: 56px; }
.gallery-label { font-size: 14px; font-weight: 600; color: var(--color-text-muted); letter-spacing: 0.05em; }

/* ===== REVIEWS ===== */
.reviews { background: var(--color-bg-card2); }
.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 40px; }
.review-card { background: var(--color-bg-card); border: 1px solid var(--color-border); border-radius: var(--radius); padding: 28px; transition: var(--transition); }
.review-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-2px); }
.review-stars { font-size: 20px; color: var(--color-gold); margin-bottom: 14px; }
.review-text { font-size: 15px; color: var(--color-text-muted); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.review-author { font-size: 13px; font-weight: 600; color: var(--color-gold-dark); }
.reviews-links { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-name { font-size: 26px; font-weight: 700; color: var(--color-text); margin-bottom: 6px; }
.contact-hours { font-size: 14px; color: var(--color-gold); margin-bottom: 28px; }
.contact-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.contact-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--color-text-muted); }
.contact-icon { font-size: 18px; flex-shrink: 0; }
.contact-list a { color: var(--color-gold-light); }
.contact-list a:hover { text-decoration: underline; }
.contact-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.contact-map iframe { width: 100%; height: 400px; border-radius: var(--radius); border: 1px solid var(--color-border); }

/* ===== FOOTER ===== */
.footer { background: #080604; border-top: 1px solid var(--color-border); padding-top: 48px; }
.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding-bottom: 32px; }
.footer__slogan { font-size: 13px; color: var(--color-text-muted); margin-top: 4px; }
.footer__nav { display: flex; gap: 24px; flex-wrap: wrap; }
.footer__nav a { font-size: 14px; color: var(--color-text-muted); transition: color var(--transition); }
.footer__nav a:hover { color: var(--color-gold); }
.footer__contact a { font-size: 15px; font-weight: 600; color: var(--color-gold); }
.footer__copy { border-top: 1px solid var(--color-border); padding: 16px 0; font-size: 13px; color: var(--color-text-muted); text-align: center; }

/* ===== CART PAGE OVERLAY ===== */
.cp-overlay {
  position: fixed; inset: 0;
  background: rgba(5, 3, 1, 0.75);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  z-index: 1100;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.cp-overlay.open { opacity: 1; visibility: visible; }

/* Cart page wrapper — centers the card */
.cp-wrap {
  position: fixed; inset: 0;
  z-index: 1200;
  display: flex; align-items: flex-end; justify-content: center;
  padding: 0;
  pointer-events: none;
  transition: none;
}
@media (min-width: 600px) {
  .cp-wrap { align-items: center; padding: 24px; }
}

/* The cart card */
.cp {
  width: 100%; max-width: 560px;
  max-height: 92vh;
  background: #1c1409;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 20px 20px 0 0;
  display: flex; flex-direction: column;
  overflow: hidden;
  transform: translateY(40px);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  pointer-events: none;
  box-shadow: 0 -8px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,168,76,0.08);
}
@media (min-width: 600px) {
  .cp { border-radius: 20px; transform: translateY(20px) scale(0.97); }
}
.cp-wrap.open { pointer-events: auto; }
.cp-wrap.open .cp { transform: translateY(0) scale(1); opacity: 1; pointer-events: auto; }

/* Drag handle (mobile) */
.cp::before {
  content: '';
  display: block;
  width: 40px; height: 4px;
  background: rgba(201,168,76,0.25);
  border-radius: 2px;
  margin: 12px auto 0;
  flex-shrink: 0;
}
@media (min-width: 600px) { .cp::before { display: none; } }

/* Cart header */
.cp-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px 14px;
  border-bottom: 1px solid rgba(201,168,76,0.12);
  flex-shrink: 0;
}
.cp-header__left { display: flex; align-items: center; gap: 10px; }
.cp-header__left svg { color: var(--color-gold); flex-shrink: 0; }
.cp-title { font-size: 18px; font-weight: 700; color: var(--color-text); }
.cp-items-count {
  font-size: 12px; font-weight: 600;
  background: rgba(201,168,76,0.15);
  color: var(--color-gold);
  padding: 3px 9px; border-radius: 100px;
}
.cp-close {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px; cursor: pointer;
  color: var(--color-text-muted); transition: var(--transition);
}
.cp-close:hover { background: rgba(255,255,255,0.1); color: var(--color-text); }

/* Items list */
.cp-items {
  flex: 1; overflow-y: auto; padding: 8px 20px;
  scrollbar-width: thin; scrollbar-color: rgba(201,168,76,0.2) transparent;
}
.cp-items::-webkit-scrollbar { width: 4px; }
.cp-items::-webkit-scrollbar-thumb { background: rgba(201,168,76,0.2); border-radius: 4px; }

/* Empty state */
.cp-empty {
  display: flex; flex-direction: column; align-items: center;
  padding: 48px 0; gap: 6px; text-align: center;
}
.cp-empty span { font-size: 44px; opacity: 0.35; }
.cp-empty p { font-size: 16px; font-weight: 600; color: var(--color-text-muted); }
.cp-empty small { font-size: 13px; color: var(--color-gold-dark); }

/* Cart item row */
.cp-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(201,168,76,0.07);
  animation: cpItemIn 0.22s ease;
}
@keyframes cpItemIn { from{opacity:0;transform:translateX(10px)} to{opacity:1;transform:none} }
.cp-item:last-child { border-bottom: none; }

.cp-item__emoji { font-size: 26px; flex-shrink: 0; width: 36px; text-align: center; }
.cp-item__info { flex: 1; min-width: 0; }
.cp-item__name { display: block; font-size: 14px; font-weight: 600; color: var(--color-text); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cp-item__price { font-size: 12px; color: var(--color-gold); font-weight: 600; }

/* Inline stepper in cart */
.cp-item__stepper {
  display: flex; align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 8px; overflow: hidden;
  flex-shrink: 0;
}
.cp-step-btn {
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  background: none; border: none;
  color: var(--color-text-muted); font-size: 17px; font-weight: 300;
  cursor: pointer; transition: background 0.15s, color 0.15s;
}
.cp-step-btn:hover { background: rgba(201,168,76,0.12); color: var(--color-gold); }
.cp-step-val { min-width: 26px; text-align: center; font-size: 14px; font-weight: 700; color: var(--color-text); border-left: 1px solid rgba(201,168,76,0.15); border-right: 1px solid rgba(201,168,76,0.15); }

.cp-item__del {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  background: none; border: none;
  color: rgba(255,255,255,0.18); cursor: pointer;
  border-radius: 6px; transition: var(--transition); flex-shrink: 0;
}
.cp-item__del:hover { background: rgba(255,80,80,0.1); color: #ff7070; }

/* Comment field */
.cp-comment {
  padding: 0 20px 14px;
  border-bottom: 1px solid rgba(201,168,76,0.1);
  flex-shrink: 0;
}
.cp-comment__label {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; color: var(--color-text-muted);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.cp-comment__label svg { color: var(--color-gold-dark); }
.cp-comment__input {
  width: 100%; padding: 10px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 8px;
  color: var(--color-text); font-size: 13px; line-height: 1.5;
  resize: none;
  transition: border-color 0.2s;
  font-family: inherit;
}
.cp-comment__input:focus { outline: none; border-color: rgba(201,168,76,0.5); }
.cp-comment__input::placeholder { color: var(--color-text-muted); opacity: 0.6; }

/* Footer */
.cp-footer { padding: 14px 20px 20px; flex-shrink: 0; background: rgba(0,0,0,0.2); }

.cp-summary { margin-bottom: 14px; }
.cp-summary__row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 13px; color: var(--color-text-muted);
  padding: 3px 0;
}
.cp-summary__total { font-size: 15px; color: var(--color-text); font-weight: 700; padding-top: 6px; margin-top: 4px; border-top: 1px solid rgba(201,168,76,0.1); }
.cp-summary__total span:last-child { font-size: 22px; color: var(--color-gold-light); font-weight: 800; }

/* Message preview */
.cp-preview { margin-bottom: 14px; }
.cp-preview__toggle {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--color-text-muted);
  cursor: pointer; list-style: none;
  padding: 6px 0;
  transition: color 0.2s;
}
.cp-preview__toggle:hover { color: var(--color-gold); }
.cp-preview__toggle svg { flex-shrink: 0; }
.cp-preview[open] .cp-preview__toggle { color: var(--color-gold); }
.cp-preview__text {
  margin-top: 8px; padding: 12px;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 8px;
  font-size: 12px; color: var(--color-text-muted);
  white-space: pre-wrap; font-family: inherit; line-height: 1.7;
}

/* Order button */
.cp-order-btn {
  width: 100%; justify-content: center;
  padding: 15px; font-size: 16px; border-radius: 10px;
  margin-bottom: 10px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.25);
}
.cp-order-btn:hover { box-shadow: 0 6px 28px rgba(37,211,102,0.4); }

.cp-footer__links { display: flex; gap: 8px; }
.cp-back-btn, .cp-clear-btn {
  flex: 1; padding: 9px 8px;
  background: none; border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px; color: var(--color-text-muted);
  font-size: 12px; font-weight: 600; cursor: pointer;
  transition: var(--transition);
}
.cp-back-btn:hover { border-color: rgba(201,168,76,0.3); color: var(--color-gold); }
.cp-clear-btn:hover { border-color: rgba(255,80,80,0.3); color: #ff8888; background: rgba(255,80,80,0.05); }

/* ===== WhatsApp FAB ===== */
.wa-fab {
  position: fixed; bottom: 28px; right: 28px;
  width: 60px; height: 60px;
  background: var(--color-whatsapp); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-fab:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55); }
.wa-fab.bounce { animation: waBounce 0.6s cubic-bezier(0.36, 0.07, 0.19, 0.97); }
@keyframes waBounce { 0%,100%{transform:scale(1)} 20%{transform:scale(1.2)} 40%{transform:scale(0.95)} 60%{transform:scale(1.1)} 80%{transform:scale(0.98)} }

/* ===== ANIMATIONS ===== */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }
.fade-in:nth-child(5) { transition-delay: 0.4s; }
.fade-in:nth-child(6) { transition-delay: 0.5s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .burger { display: flex; }
  .nav {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(13,10,5,0.97); backdrop-filter: blur(16px);
    display: flex; align-items: center; justify-content: center;
    transform: translateX(100%); transition: transform 0.35s ease; z-index: 999;
  }
  .nav.open { transform: translateX(0); }
  .nav__list { flex-direction: column; gap: 32px; text-align: center; }
  .nav__link { font-size: 24px; }
  .hero__actions { flex-direction: column; align-items: center; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .promo__inner { flex-direction: column; text-align: center; }
  .promo__text { flex-direction: column; }
  .footer__inner { flex-direction: column; text-align: center; }
  .footer__nav { justify-content: center; }
  .contact-actions { flex-direction: column; }
  .wa-fab { width: 52px; height: 52px; bottom: 20px; right: 20px; }
}

@media (max-width: 480px) {
  .features { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .tab-btn { padding: 8px 16px; font-size: 13px; }
}
