/* =========================================================
   FOUNDRY & FLAME — design tokens
   Palette: ink charcoal / warm parchment / ember gold / deep pine
   Type: Fraunces (display, warm serif) + Inter (body/UI)
   Signature: charred-edge cards + ember flicker underline
   ========================================================= */
:root {
  --ink: #16130F;
  --ink-soft: #2A251E;
  --parchment: #F7F3EC;
  --parchment-2: #EFE8DA;
  --ember: #C98A2C;
  --ember-light: #E4AC55;
  --pine: #1F3A34;
  --pine-light: #2E534B;
  --cream-text: #FBF8F2;
  --line: rgba(22,19,15,0.1);
  --line-dark: rgba(251,248,242,0.12);

  --font-display: 'Fraunces', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 26px;
  --shadow-soft: 0 10px 30px -12px rgba(22,19,15,0.25);
  --shadow-lift: 0 20px 45px -15px rgba(22,19,15,0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  font-family: var(--font-body);
  background: var(--parchment);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea { font-family: inherit; font-size: 1rem; }
ul { list-style: none; }

.container { max-width: 1220px; margin: 0 auto; padding: 0 24px; }

:focus-visible { outline: 2.5px solid var(--ember); outline-offset: 3px; }

/* .muted { color: var(--ink-soft); opacity: 0.75; } */
#footerAddress{
  color:white;
}
#footerHours{
  color:white;
}
.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 10px;
  display: inline-block;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.1; letter-spacing: -0.01em; }

.section-head { max-width: 620px; margin-bottom: 44px; }
.section-head h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
.section-head.light .eyebrow { color: var(--ember-light); }
.section-head.light h2 { color: var(--cream-text); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--ember-light), var(--ember) 65%);
  color: #1B1300;
  box-shadow: 0 10px 24px -8px rgba(201,138,44,0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -8px rgba(201,138,44,0.65); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--ink); background: rgba(22,19,15,0.04); }
.btn-secondary {
  background: var(--ink);
  color: var(--cream-text);
}
.btn-secondary:hover { background: var(--pine); }
.btn-block { width: 100%; }
.btn-lg { padding: 16px 26px; font-size: 1rem; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }

.icon-btn {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  position: relative;
  transition: background 0.25s var(--ease);
}
.icon-btn:hover { background: rgba(22,19,15,0.06); }

/* ---------- Loading screen ---------- */
#loading-screen {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}
#loading-screen.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.ember-loader { display: flex; gap: 10px; }
.ember-loader span {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--ember);
  animation: emberPulse 1.1s var(--ease) infinite;
}
.ember-loader span:nth-child(2) { animation-delay: 0.15s; background: var(--ember-light); }
.ember-loader span:nth-child(3) { animation-delay: 0.3s; }
@keyframes emberPulse {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.5; }
  50% { transform: translateY(-14px) scale(1.15); opacity: 1; }
}

/* ---------- Toasts ---------- */
#toast-container {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 10000; display: flex; flex-direction: column; gap: 10px; align-items: center;
  pointer-events: none;
}
.toast {
  background: var(--ink); color: var(--cream-text);
  padding: 13px 22px; border-radius: 999px;
  font-size: 0.9rem; font-weight: 500;
  box-shadow: var(--shadow-lift);
  animation: toastIn 0.35s var(--ease);
  display: flex; align-items: center; gap: 8px;
}
.toast.error { background: #7A2E2E; }
@keyframes toastIn { from { opacity: 0; transform: translateY(16px) scale(0.95); } }
.toast.leaving { animation: toastOut 0.3s var(--ease) forwards; }
@keyframes toastOut { to { opacity: 0; transform: translateY(10px) scale(0.95); } }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  background: rgba(247,243,236,0.7);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 8px 24px -16px rgba(22,19,15,0.4); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }

.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark { color: var(--ember); }
.brand-mark svg { fill: currentColor; }
.brand-text { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; letter-spacing: -0.01em; }
.brand-text em { font-style: normal; color: var(--ember); }

.main-nav { display: flex; gap: 30px; }
.main-nav a {
  font-size: 0.92rem; font-weight: 500; color: var(--ink-soft);
  position: relative; padding: 4px 0;
  transition: color 0.25s var(--ease);
}
.main-nav a::after {
  content: ''; position: absolute; left: 0; bottom: -3px; height: 2px; width: 0;
  background: linear-gradient(90deg, var(--ember), var(--ember-light));
  transition: width 0.3s var(--ease);
}
.main-nav a:hover { color: var(--ink); }
.main-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 4px; }
.cart-btn { position: relative; }
.cart-count {
  position: absolute; top: 2px; right: 2px;
  background: var(--ember); color: #1B1300;
  font-size: 0.65rem; font-weight: 800;
  width: 17px; height: 17px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transform: scale(0); transition: transform 0.3s var(--ease);
}
.cart-count.show { transform: scale(1); }
.cart-count.bump { animation: bump 0.4s var(--ease); }
@keyframes bump { 0%,100%{transform:scale(1);} 50%{transform:scale(1.4);} }

.menu-toggle { display: none; flex-direction: column; gap: 5px; width: 40px; }
.menu-toggle span { width: 20px; height: 2px; background: var(--ink); margin: 0 auto; transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.search-bar { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); border-bottom: 1px solid transparent; }
.search-bar.open { max-height: 80px; border-color: var(--line); }
.search-bar-inner { display: flex; align-items: center; gap: 12px; padding: 16px 24px; color: var(--ink-soft); }
.search-bar-inner input { flex: 1; background: none; border: none; font-size: 1rem; color: var(--ink); }
.search-bar-inner input:focus { outline: none; }
#searchClose { font-size: 1.4rem; color: var(--ink-soft); }

.mobile-nav {
  position: fixed; top: 76px; left: 0; right: 0; z-index: 499;
  background: var(--parchment);
  border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column;
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s var(--ease);
  box-shadow: var(--shadow-soft);
}
.mobile-nav.open { max-height: 400px; }
.mobile-nav a { padding: 16px 24px; border-bottom: 1px solid var(--line); font-weight: 500; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 168px 0 100px;
  overflow: hidden;
  isolation: isolate;
}
.hero-glow {
  position: absolute; top: -20%; right: -10%; width: 60%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(201,138,44,0.35), transparent 70%);
  filter: blur(40px);
  z-index: -1;
}
.hero-inner { max-width: 640px; margin: 0; }
.hero-title {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  margin-bottom: 22px;
}
.hero-title em { font-style: normal; color: var(--ember); position: relative; }
.hero-sub { font-size: 1.1rem; color: var(--ink-soft); max-width: 520px; margin-bottom: 34px; }
.hero-cta { display: flex; gap: 14px; margin-bottom: 56px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero-stats div { display: flex; flex-direction: column; gap: 2px; }
.hero-stats strong { font-family: var(--font-display); font-size: 1.6rem; }
.hero-stats strong span { font-size: 0.9rem; color: var(--ember); margin-left: 2px; }
.hero-stats span:last-child { font-size: 0.82rem; color: var(--ink-soft); }

.hero-visual {
  position: absolute; top: 0; right: 0; bottom: 0; width: 46%;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--parchment), transparent 30%);
}
@media (max-width: 980px) {
  .hero-visual { display: none; }
  .hero-glow { right: -30%; }
  /* No image on tablet/mobile — recenter the text block instead of leaving it flush left */
  .hero-inner { margin: 0 auto; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
}

/* ---------- Offers ---------- */
.offers-section { padding: 70px 0 20px; }
.offers-track { display: flex; gap: 20px; overflow-x: auto; padding-bottom: 12px; scroll-snap-type: x mandatory; }
.offers-track::-webkit-scrollbar { height: 6px; }
.offers-track::-webkit-scrollbar-thumb { background: var(--line); border-radius: 10px; }
.offer-card {
  position: relative; min-width: 340px; height: 200px; border-radius: var(--radius-lg);
  overflow: hidden; scroll-snap-align: start; flex-shrink: 0;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s var(--ease);
}
.offer-card:hover { transform: translateY(-4px); }
.offer-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.offer-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(20,17,15,0.92), rgba(20,17,15,0.15) 70%);
}
.offer-card-content { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px; color: var(--cream-text); z-index: 1; }
.offer-badge {
  display: inline-block; background: var(--ember); color: #1B1300; font-weight: 800;
  font-size: 0.72rem; letter-spacing: 0.06em; padding: 5px 12px; border-radius: 999px; margin-bottom: 10px;
}
.offer-card-content h3 { font-size: 1.3rem; margin-bottom: 4px; }
.offer-card-content p { font-size: 0.85rem; opacity: 0.85; max-width: 90%; }

/* ---------- Menu ---------- */
.menu-section { padding: 60px 0 100px; }
.category-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.chip {
  padding: 10px 20px; border-radius: 999px; border: 1.5px solid var(--line);
  font-size: 0.88rem; font-weight: 600; color: var(--ink-soft);
  transition: all 0.25s var(--ease);
}
.chip:hover { border-color: var(--ember); color: var(--ink); }
.chip.active { background: var(--ink); border-color: var(--ink); color: var(--cream-text); }

.menu-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 26px;
}
.menu-empty { text-align: center; padding: 60px 0; color: var(--ink-soft); }

.food-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  position: relative;
  opacity: 0; transform: translateY(24px);
  transition: transform 0.45s var(--ease), box-shadow 0.4s var(--ease);
}
.food-card.in-view { opacity: 1; transform: translateY(0); }
.food-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.food-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; z-index: 2;
  background: linear-gradient(90deg, var(--ink) 0%, var(--ember) 50%, var(--ink) 100%);
}
.food-media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.food-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.food-card:hover .food-media img { transform: scale(1.08); }
.food-badges { position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; gap: 6px; z-index: 2; }
.badge { font-size: 0.68rem; font-weight: 800; letter-spacing: 0.04em; padding: 5px 10px; border-radius: 999px; }
.badge-sale { background: #B7442E; color: #fff; }
.badge-bestseller { background: var(--ember); color: #1B1300; }
.badge-unavailable { background: rgba(22,19,15,0.85); color: #fff; }

.food-body { padding: 20px; }
.food-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; margin-bottom: 6px; }
.food-name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; }
.food-rating { display: flex; align-items: center; gap: 4px; font-size: 0.82rem; font-weight: 700; color: var(--ink); white-space: nowrap; }
.food-rating svg { fill: var(--ember); }
.food-desc { font-size: 0.87rem; color: var(--ink-soft); margin-bottom: 16px; min-height: 40px; }
.food-cat { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ember); font-weight: 700; margin-bottom: 8px; display: block; }

.food-footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.food-price { display: flex; align-items: baseline; gap: 8px; }
.price-current { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; }
.price-original { font-size: 0.85rem; color: var(--ink-soft); text-decoration: line-through; opacity: 0.6; }

.add-btn {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--ink); color: var(--cream-text);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
  position: relative; flex-shrink: 0;
}
.add-btn:hover { background: var(--ember); color: #1B1300; transform: rotate(90deg); }
.add-btn:disabled { background: var(--line); color: var(--ink-soft); transform: none; cursor: not-allowed; }
.add-btn.added { background: var(--pine); color: #fff; }
.add-btn svg { transition: transform 0.3s var(--ease); }

/* ---------- Story ---------- */
.story-section { padding: 100px 0; background: var(--parchment-2); }
.story-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.story-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lift); aspect-ratio: 4/5; }
.story-media img { width: 100%; height: 100%; object-fit: cover; }
.story-copy h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 18px; }
.story-copy p { color: var(--ink-soft); margin-bottom: 14px; }
.story-why { margin-top: 30px; display: grid; gap: 18px; }
.why-item { display: flex; gap: 14px; align-items: flex-start; }
.why-icon {
  width: 40px; height: 40px; border-radius: 12px; flex-shrink: 0;
  background: var(--ink); color: var(--ember);
  display: flex; align-items: center; justify-content: center;
}
.why-item h4 { font-family: var(--font-body); font-size: 0.98rem; margin-bottom: 3px; }
.why-item p { font-size: 0.85rem; margin: 0; }
@media (max-width: 860px) { .story-inner { grid-template-columns: 1fr; } }

/* ---------- Gallery ---------- */
.gallery-section { padding: 90px 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 160px; gap: 14px; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-sm); transition: transform 0.5s var(--ease), filter 0.5s var(--ease); filter: saturate(0.92); }
.gallery-grid a { overflow: hidden; border-radius: var(--radius-sm); display: block; }
.gallery-grid a:hover img { transform: scale(1.1); filter: saturate(1.1); }
.gallery-grid a:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-grid a:nth-child(4) { grid-row: span 2; }
@media (max-width: 760px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid a:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery-grid a:nth-child(4) { grid-row: span 1; }
}

/* ---------- Testimonials ---------- */
.testimonials-section { padding: 100px 0; background: var(--ink); color: var(--cream-text); }
.testimonial-slider { display: flex; align-items: center; gap: 20px; }
.testimonial-track { overflow: hidden; flex: 1; }
.testimonial-track-inner { display: flex; transition: transform 0.5s var(--ease); }
.testimonial-card { min-width: 100%; padding: 10px; }
.testimonial-quote { font-family: var(--font-display); font-size: clamp(1.2rem, 2.4vw, 1.7rem); font-weight: 500; line-height: 1.4; max-width: 780px; margin-bottom: 26px; }
.testimonial-person { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--ember); color: #1B1300;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-family: var(--font-display);
}
.testimonial-person strong { display: block; }
.testimonial-person span { font-size: 0.82rem; opacity: 0.7; }
.slider-arrow {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-dark);
  color: var(--cream-text); font-size: 1.4rem; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s var(--ease);
}
.slider-arrow:hover { background: rgba(255,255,255,0.08); }
.slider-dots { display: flex; gap: 8px; margin-top: 30px; justify-content: center; }
.slider-dots button { width: 8px; height: 8px; border-radius: 50%; background: var(--line-dark); transition: all 0.3s var(--ease); }
.slider-dots button.active { background: var(--ember); width: 22px; border-radius: 4px; }

/* ---------- Newsletter ---------- */
.newsletter-section { padding: 80px 0; }
.newsletter-inner { display: flex; justify-content: space-between; align-items: center; gap: 40px; flex-wrap: wrap; background: var(--pine); color: var(--cream-text); border-radius: var(--radius-lg); padding: 50px; }
.newsletter-inner h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); color: var(--cream-text); margin: 4px 0; }
.newsletter-inner .eyebrow { color: var(--ember-light); }
.newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter-form input {
  padding: 14px 18px; border-radius: 999px; border: 1px solid var(--line-dark);
  background: rgba(255,255,255,0.08); color: var(--cream-text); min-width: 240px;
}
.newsletter-form input::placeholder { color: rgba(251,248,242,0.5); }

/* ---------- FAQ ---------- */
.faq-section { padding: 40px 0 100px; }
.faq-list { display: grid; gap: 12px; max-width: 780px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; background: #fff; }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; font-weight: 600; text-align: left; font-size: 0.98rem;
}
.faq-question svg { transition: transform 0.3s var(--ease); flex-shrink: 0; color: var(--ember); }
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq-answer-inner { padding: 0 24px 20px; color: var(--ink-soft); font-size: 0.9rem; }
.faq-item.open .faq-answer { max-height: 240px; }

/* ---------- Contact ---------- */
.contact-section { padding: 20px 0 110px; }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info h2 { font-size: clamp(1.7rem, 2.8vw, 2.2rem); margin-bottom: 14px; }
.contact-list { margin-top: 26px; display: grid; gap: 16px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 0.92rem; }
.contact-list .ci-icon {
  width: 38px; height: 38px; border-radius: 10px; background: var(--parchment-2);
  color: var(--ember); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-form { background: #fff; padding: 34px; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); display: grid; gap: 18px; }
@media (max-width: 860px) { .contact-inner { grid-template-columns: 1fr; } }

.field { display: grid; gap: 7px; }
.field label { font-size: 0.85rem; font-weight: 600; color: var(--ink-soft); }
.field .optional { font-weight: 400; opacity: 0.6; }
.field input, .field textarea {
  padding: 13px 16px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--parchment); color: var(--ink); transition: border-color 0.25s var(--ease);
  resize: vertical;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--ember); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--cream-text); padding: 80px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 60px; border-bottom: 1px solid var(--line-dark); }
.footer-brand .brand-text { color: var(--cream-text); }
.footer-brand .muted { margin: 14px 0 18px; max-width: 280px;color:white; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line-dark);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.footer-social a:hover { background: var(--ember); border-color: var(--ember); color: #1B1300; }
.footer-col h4 { font-family: var(--font-body); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ember-light); margin-bottom: 18px; }
.footer-col a, .footer-col p { display: block; opacity: 0.75; font-size: 0.9rem; margin-bottom: 12px; transition: opacity 0.25s var(--ease); }
.footer-col a:hover { opacity: 1; }
.footer-bottom { padding: 22px 0; text-align: center; font-size: 0.82rem; opacity: 0.55; }
@media (max-width: 860px) { .footer-inner { grid-template-columns: 1fr 1fr; } }

/* ---------- Cart Drawer ---------- */
.drawer-overlay {
  position: fixed; inset: 0; background: rgba(22,19,15,0.5); backdrop-filter: blur(3px);
  z-index: 700; opacity: 0; visibility: hidden; transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}
.drawer-overlay.open { opacity: 1; visibility: visible; }

.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(420px, 100vw); z-index: 701;
  background: var(--parchment); box-shadow: -20px 0 50px rgba(0,0,0,0.25);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.45s var(--ease);
}
.cart-drawer.open { transform: translateX(0); }
.drawer-header { display: flex; justify-content: space-between; align-items: center; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.drawer-header h3 { font-size: 1.2rem; }
.cart-body { flex: 1; overflow-y: auto; padding: 10px 24px; }
.cart-empty { text-align: center; padding: 60px 10px; color: var(--ink-soft); }
.cart-empty svg { color: var(--line); margin-bottom: 14px; }

.cart-item { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.cart-item img { width: 64px; height: 64px; border-radius: 12px; object-fit: cover; flex-shrink: 0; }
.cart-item-info { flex: 1; }
.cart-item-info h5 { font-family: var(--font-display); font-size: 0.98rem; font-weight: 600; margin-bottom: 3px; }
.cart-item-price { font-size: 0.85rem; color: var(--ink-soft); }
.cart-item-actions { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; }
.qty-control { display: flex; align-items: center; gap: 10px; border: 1px solid var(--line); border-radius: 999px; padding: 4px 10px; }
.qty-control button { width: 20px; font-weight: 700; color: var(--ink-soft); }
.qty-control button:hover { color: var(--ember); }
.remove-item { font-size: 0.78rem; color: #B7442E; font-weight: 600; }

.cart-footer { padding: 20px 24px 26px; border-top: 1px solid var(--line); background: #fff; }
.promo-row { display: flex; gap: 8px; margin-bottom: 8px; }
.promo-row input { flex: 1; padding: 11px 14px; border-radius: var(--radius-sm); border: 1.5px solid var(--line); background: var(--parchment); }
.promo-message { font-size: 0.8rem; min-height: 18px; margin-bottom: 8px; }
.promo-message.success { color: var(--pine); }
.promo-message.error { color: #B7442E; }
.totals-row { display: flex; justify-content: space-between; font-size: 0.9rem; padding: 5px 0; color: var(--ink-soft); }
.totals-row.discount-row { color: var(--pine); }
.totals-row.grand { font-family: var(--font-display); font-size: 1.15rem; color: var(--ink); font-weight: 600; padding-top: 10px; margin-top: 4px; border-top: 1px dashed var(--line); }
.cart-footer .btn { margin-top: 14px; }

/* ---------- Checkout Modal ---------- */
.checkout-modal {
  position: fixed; top: 4vh; left: 50%; width: min(880px, 92vw); max-height: 92vh; z-index: 801;
  background: var(--parchment); border-radius: var(--radius-lg); box-shadow: var(--shadow-lift);
  display: flex; flex-direction: column; overflow: hidden;
  transform: translate(-50%, 24px) scale(0.97); opacity: 0; visibility: hidden;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}
.checkout-modal.open { transform: translate(-50%, 0) scale(1); opacity: 1; visibility: visible; }
.checkout-header { display: flex; justify-content: space-between; align-items: center; padding: 22px 28px; border-bottom: 1px solid var(--line); }
.checkout-header h3 { font-size: 1.25rem; }
.checkout-body { flex: 1; overflow-y: auto; display: grid; grid-template-columns: 1.2fr 1fr; gap: 30px; padding: 28px; }
.checkout-form { display: grid; gap: 16px; align-content: start; }
.payment-option {
  display: flex; align-items: center; gap: 10px; padding: 13px 16px;
  border: 1.5px solid var(--pine); border-radius: var(--radius-sm); background: rgba(31,58,52,0.06);
  color: var(--pine); font-weight: 600; font-size: 0.9rem;
}
.order-summary { background: #fff; border-radius: var(--radius-md); padding: 22px; align-self: start; box-shadow: var(--shadow-soft); }
.order-summary h4 { margin-bottom: 14px; font-size: 1rem; }
.summary-line { display: flex; justify-content: space-between; font-size: 0.85rem; padding: 8px 0; border-bottom: 1px dashed var(--line); }
.summary-line .si-name { color: var(--ink); }
.summary-line .si-qty { color: var(--ink-soft); }
.checkout-footer { padding: 20px 28px; border-top: 1px solid var(--line); background: #fff; }
@media (max-width: 760px) {
  .checkout-body { grid-template-columns: 1fr; padding: 20px; }
  .checkout-modal {
    top: 0; left: 0; transform: translateY(16px) scale(0.98);
    width: 100%; max-width: 100%;
    height: 100dvh; max-height: 100dvh;
    border-radius: 0;
  }
  .checkout-modal.open { transform: translateY(0) scale(1); }
  .checkout-header { padding: 16px 20px; }
  .checkout-footer { padding: 14px 20px calc(14px + env(safe-area-inset-bottom, 0px)); }
}

/* ---------- WhatsApp float + back to top ---------- */
.whatsapp-float {
  position: fixed; bottom: 26px; left: 26px; z-index: 600;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 26px -8px rgba(37,211,102,0.6);
  animation: floatPulse 2.6s ease-in-out infinite;
}
@keyframes floatPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.06); } }

.back-to-top {
  position: fixed; bottom: 26px; right: 26px; z-index: 600;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--ink); color: var(--cream-text);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-soft);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s var(--ease);
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .main-nav { display: none; }
}
@media (max-width: 640px) {
  .menu-toggle { display: flex; }
  .header-inner { height: 68px; }
  .hero { padding: 130px 0 70px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-stats { gap: 24px; }
  .newsletter-inner { padding: 34px 24px; }
  .whatsapp-float { width: 52px; height: 52px; bottom: 18px; left: 18px; }
  .back-to-top { width: 42px; height: 42px; bottom: 18px; right: 18px; }
}

/* ---------- Confirm order sent modal ---------- */
.confirm-modal {
  position: fixed; top: 50%; left: 50%; width: min(400px, 90vw); z-index: 850;
  background: var(--parchment); border-radius: var(--radius-lg); box-shadow: var(--shadow-lift);
  transform: translate(-50%, -50%) scale(0.95); opacity: 0; visibility: hidden;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}
.confirm-modal.open { transform: translate(-50%, -50%) scale(1); opacity: 1; visibility: visible; }
.confirm-modal-inner { padding: 34px 28px; text-align: center; }
.confirm-icon {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 18px;
  background: rgba(37,211,102,0.14); color: #1F8A45;
  display: flex; align-items: center; justify-content: center;
}
.confirm-modal-inner h3 { font-size: 1.2rem; margin-bottom: 10px; }
.confirm-modal-inner p { font-size: 0.9rem; margin-bottom: 24px; }
.confirm-actions { display: flex; gap: 10px; }
.confirm-actions .btn { flex: 1; }
#confirmOverlay { z-index: 840; }
