﻿:root {
  --bg: #f7f3eb;
  --surface: #ffffff;
  --text: #1f1d19;
  --muted: #5f5a52;
  --brand: #a3471e;
  --brand-dark: #7d3314;
  --accent: #cf9a4a;
  --border: #e7dfd2;
  --shadow: 0 12px 30px rgba(33, 24, 16, 0.12);
}

* {
  box-sizing: border-box;
}

/* ─── Page Loader ──────────────────────────────────────────────────────── */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader img {
  width: 120px;
  animation: loaderPulse 1.2s ease infinite alternate;
}

@keyframes loaderPulse {
  from { opacity: 0.6; transform: scale(0.96); }
  to   { opacity: 1;   transform: scale(1.04); }
}

.page-loader.done {
  opacity: 0;
  visibility: hidden;
}

body.loading {
  overflow: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Source Sans 3', 'Segoe UI', Tahoma, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--brand-dark);
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.top-bar {
  background: #1f1d19;
  color: #f4efe7;
  font-size: 14px;
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
}

.top-links {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.top-links a {
  color: #f4efe7;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 18px;
}

.brand img {
  width: 172px;
  height: auto;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  border-radius: 8px;
  padding: 8px 12px;
  font-weight: 700;
}

.main-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 6px;
  align-items: center;
}

.main-nav a {
  display: inline-block;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.2px;
}

.main-nav a:hover,
.main-nav a.active {
  background: #f2e8d9;
  color: var(--brand-dark);
}

.hero {
  position: relative;
  min-height: 66vh;
  background-color: #2e1a10;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  display: flex;
  align-items: center;
}

.hero.small {
  min-height: 44vh;
}

.hero-content {
  padding: 84px 0 70px;
}

.eyebrow {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 13px;
  color: #f0dcb8;
}

.hero h1 {
  margin: 0;
  font-size: clamp(34px, 4.8vw, 60px);
  line-height: 1.1;
  font-family: 'Playfair Display', Georgia, serif;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.5);
}

.hero p {
  margin: 18px 0 0;
  font-size: clamp(17px, 2.2vw, 21px);
  max-width: 760px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-primary,
.btn-secondary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 10px;
  padding: 0 18px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-primary:hover {
  background: var(--brand-dark);
  color: #fff;
  transform: translateY(-1px);
}

.btn-secondary {
  background: #fff;
  color: var(--text);
}

.btn-secondary:hover {
  background: #f4efe7;
  color: var(--text);
  transform: translateY(-1px);
}

.btn-ghost {
  border-color: #fff;
  color: #fff;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.section {
  padding: 72px 0;
}

.section.alt {
  background: #fbf8f3;
}

.section-title {
  margin: 0 0 10px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.12;
}

.section-subtitle {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 18px;
  max-width: 760px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 22px;
}

.col-6 {
  grid-column: span 6;
}

.col-4 {
  grid-column: span 4;
}

.col-3 {
  grid-column: span 3;
}

.col-8 {
  grid-column: span 8;
}

.col-5 {
  grid-column: span 5;
}

.col-7 {
  grid-column: span 7;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.card .media {
  aspect-ratio: 16 / 11;
  overflow: hidden;
}

.card .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card .body {
  padding: 18px;
}

.menu-card .media {
  aspect-ratio: auto;
  background: #fff;
}

.menu-card .media img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.card h3,
.card h4 {
  margin: 0 0 8px;
  font-family: 'Playfair Display', Georgia, serif;
}

.strip {
  background: #2e241a;
  color: #efe7dc;
  padding: 22px 0;
}

.strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.list-inline {
  margin: 0;
  padding: 0;
  list-style: none;
}

.list-inline li {
  margin-bottom: 8px;
}

.info-block {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  box-shadow: var(--shadow);
  height: 100%;
}

.info-block h4 {
  margin: 0 0 10px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 25px;
}

.map-wrap iframe {
  border: 0;
  width: 100%;
  min-height: 360px;
  border-radius: 14px;
}

.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.reservation-form-card {
  padding: 30px;
}

.form-card h3 {
  margin: 0 0 16px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-grid .full {
  grid-column: 1 / -1;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #d8cfbf;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 16px;
  background: #fff;
  color: var(--text);
}

label {
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
  color: #433f38;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid #e6bf83;
  border-color: #c98f43;
}

.form-note {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.reservation-layout {
  align-items: stretch;
  gap: 24px;
}

.reservation-info {
  display: grid;
  gap: 16px;
}

.quick-facts {
  background: #2e241a;
  color: #f7ecdf;
  border-radius: 14px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.quick-facts h5 {
  margin: 0 0 10px;
  font-size: 22px;
  font-family: 'Playfair Display', Georgia, serif;
}

.quick-facts p {
  margin: 0 0 8px;
  color: #f7ecdf;
}

.quick-facts strong {
  color: #fff;
}

.reservation-form-card .form-note:first-of-type {
  margin: 0 0 18px;
  font-size: 15px;
}

.reservation-form-card input,
.reservation-form-card textarea,
.reservation-form-card select {
  background: #fcfaf6;
}

.form-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.site-footer {
  background: #1f1d19;
  color: #d9d1c4;
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.site-footer h5 {
  margin: 0 0 10px;
  color: #fff;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
}

.site-footer a {
  color: #f2d3a1;
}

.site-footer p,
.site-footer li {
  margin: 0 0 8px;
  color: #d9d1c4;
}

.copyright {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  color: #ad9f8b;
  font-size: 14px;
}

.faq-list {
  max-width: 820px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(33, 24, 16, 0.06);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 18px 22px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 700;
  color: var(--brand);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  content: '\2212';
}

.faq-item summary h3 {
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.3;
}

/* faq-item > p styling moved to Fase 10 enhanced section below */

.faq-item > p a {
  font-weight: 600;
}

.top-links .fa {
  margin-right: 3px;
}

@media (max-width: 992px) {
  .main-nav {
    position: absolute;
    right: 4vw;
    top: 78px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow);
    width: min(320px, 92vw);
    padding: 8px;
    display: none;
  }

  .main-nav.open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .col-6,
  .col-8,
  .col-4,
  .col-3 {
    grid-column: span 12;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .top-bar .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    min-height: 60vh;
  }

  .hero-content {
    padding: 64px 0 58px;
  }

  .section {
    padding: 54px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── Card image zoom on hover ─────────────────────────────────────────── */
.card .media img {
  transition: transform 0.48s ease;
}

.card:hover .media img {
  transform: scale(1.07);
}

/* hero fallback colour already set in .hero base rule above */

/* ─── Stats bar ─────────────────────────────────────────────────────────── */
.stats-bar {
  color: #fff;
  padding: 48px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item .stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1;
  display: block;
  color: #fff;
}

.stat-item .stat-label {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

/* ─── TripAdvisor / review strip ────────────────────────────────────────── */
.review-strip {
  background: var(--accent);
  padding: 20px 0;
  color: #1f1d19;
}

.review-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.review-strip strong {
  font-size: 17px;
}

/* ─── Gallery grid ──────────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.gallery-item {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 10px;
  display: block;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

/* ─── Scroll-reveal (only active when JS adds .js to <html>) ────────────── */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.js .reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── Footer B22G credit line ───────────────────────────────────────────── */
.footer-credit {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  text-align: center;
  color: #6e6458;
  font-size: 13px;
}

.footer-credit a {
  color: var(--accent);
  font-weight: 700;
}

/* ─── Responsive additions ──────────────────────────────────────────────── */
@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .review-strip .container {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ─── Hero entrance animation (staggered) ──────────────────────────────── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-content h1        { animation: heroFadeUp 0.8s ease both 0.35s; }
.hero-content > p       { animation: heroFadeUp 0.8s ease both 0.55s; }
.hero-content .actions  { animation: heroFadeUp 0.8s ease both 0.70s; }

/* ─── Flyer display (menu page) ─────────────────────────────────────────── */
.flyer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 8px;
}

.flyer-item {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(33, 24, 16, 0.18);
  cursor: zoom-in;
  text-decoration: none;
}

.flyer-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.flyer-item:hover img {
  transform: scale(1.04);
}

.flyer-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 12, 6, 0);
  transition: background 0.35s ease;
}

.flyer-overlay span {
  background: rgba(163, 71, 30, 0.9);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 11px 24px;
  border-radius: 10px;
  letter-spacing: 0.4px;
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.flyer-item:hover .flyer-overlay {
  background: rgba(20, 12, 6, 0.3);
}

.flyer-item:hover .flyer-overlay span {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ─── Lightbox ───────────────────────────────────────────────────────────── */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 5, 2, 0.95);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-img {
  max-width: min(94vw, 1100px);
  max-height: 90vh;
  border-radius: 10px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.75);
  transform: scale(0.92);
  transition: transform 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
}

.lightbox-overlay.active .lightbox-img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.2s ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* ─── Floating "Book a Table" CTA ─────────────────────────────────────── */
.float-book {
  position: fixed;
  bottom: 28px;
  right: 26px;
  z-index: 90;
  background: var(--brand);
  color: #fff;
  border-radius: 50px;
  padding: 14px 22px;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 28px rgba(163, 71, 30, 0.55);
  transform: translateY(88px);
  opacity: 0;
  transition: transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease, background 0.2s ease;
  text-decoration: none;
}

.float-book.visible {
  transform: translateY(0);
  opacity: 1;
}

.float-book:hover {
  background: var(--brand-dark);
  color: #fff;
  transform: translateY(-3px);
}

/* ─── Gallery item hover overlay hint ──────────────────────────────────── */
.gallery-item::after {
  content: '\f00e';
  font-family: 'FontAwesome';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  background: rgba(20, 12, 6, 0);
  opacity: 0;
  transition: background 0.3s ease, opacity 0.3s ease;
  border-radius: 10px;
}

.gallery-item:hover::after {
  background: rgba(20, 12, 6, 0.42);
  opacity: 1;
}

/* ─── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .flyer-grid {
    grid-template-columns: 1fr;
  }

  .float-book {
    bottom: 18px;
    right: 14px;
    padding: 12px 16px;
    font-size: 14px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   MODERNIZATION ENHANCEMENTS
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Fase 2: Hero Enhancements ────────────────────────────────────────── */

/* Animated gradient overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(20,14,10,0.65) 0%,
    rgba(163,71,30,0.25) 40%,
    rgba(20,14,10,0.6) 70%,
    rgba(207,154,74,0.15) 100%);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  z-index: 1;
}

@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* Floating spice particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero-particles span {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0;
  animation: floatUp linear infinite;
}

@keyframes floatUp {
  0%   { opacity: 0;    transform: translateY(0) translateX(0) scale(0.5); }
  10%  { opacity: 0.25; }
  90%  { opacity: 0.15; }
  100% { opacity: 0;    transform: translateY(-100vh) translateX(var(--drift)) scale(1); }
}

.hero-particles span:nth-child(1)  { width: 4px; height: 4px; left: 8%;  bottom: -10px; --drift: 30px;  animation-duration: 12s; animation-delay: 0s; }
.hero-particles span:nth-child(2)  { width: 6px; height: 6px; left: 18%; bottom: -10px; --drift: -20px; animation-duration: 15s; animation-delay: 1s; }
.hero-particles span:nth-child(3)  { width: 3px; height: 3px; left: 30%; bottom: -10px; --drift: 40px;  animation-duration: 10s; animation-delay: 2.5s; }
.hero-particles span:nth-child(4)  { width: 5px; height: 5px; left: 42%; bottom: -10px; --drift: -35px; animation-duration: 18s; animation-delay: 0.5s; }
.hero-particles span:nth-child(5)  { width: 4px; height: 4px; left: 55%; bottom: -10px; --drift: 25px;  animation-duration: 14s; animation-delay: 3s; }
.hero-particles span:nth-child(6)  { width: 6px; height: 6px; left: 65%; bottom: -10px; --drift: -15px; animation-duration: 11s; animation-delay: 1.5s; }
.hero-particles span:nth-child(7)  { width: 3px; height: 3px; left: 75%; bottom: -10px; --drift: 50px;  animation-duration: 16s; animation-delay: 4s; }
.hero-particles span:nth-child(8)  { width: 5px; height: 5px; left: 85%; bottom: -10px; --drift: -40px; animation-duration: 13s; animation-delay: 2s; }
.hero-particles span:nth-child(9)  { width: 4px; height: 4px; left: 12%; bottom: -10px; --drift: 20px;  animation-duration: 17s; animation-delay: 5s; }
.hero-particles span:nth-child(10) { width: 6px; height: 6px; left: 48%; bottom: -10px; --drift: -25px; animation-duration: 19s; animation-delay: 3.5s; }
.hero-particles span:nth-child(11) { width: 3px; height: 3px; left: 92%; bottom: -10px; --drift: 15px;  animation-duration: 12s; animation-delay: 6s; }
.hero-particles span:nth-child(12) { width: 5px; height: 5px; left: 38%; bottom: -10px; --drift: -30px; animation-duration: 20s; animation-delay: 1s; }

/* Typewriter eyebrow */
.hero-content .eyebrow {
  display: inline-block;
  border-right: 2px solid var(--accent);
  animation: heroFadeUp 0.7s ease both 0.15s, blinkCursor 0.75s step-end infinite 1s;
  clip-path: inset(0 0 0 0);
}

@keyframes blinkCursor {
  50% { border-right-color: transparent; }
}

/* ─── Fase 3: Enhanced Reveal System ───────────────────────────────────── */
.js .reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js .reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js .reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.js .reveal-left.visible,
.js .reveal-right.visible,
.js .reveal-scale.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-5 { transition-delay: 0.5s; }

/* ─── Fase 4: Section Title Underline ──────────────────────────────────── */
.section-title {
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  background: var(--accent);
  margin-top: 10px;
  border-radius: 2px;
  transition: width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s;
}

.section-title.visible::after {
  width: 60px;
}

/* ─── Fase 5: Card 3D Tilt + Glow ─────────────────────────────────────── */
.card {
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card[data-tilt] {
  transform-style: preserve-3d;
  perspective: 800px;
}

.card[data-tilt]::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 16px;
  background: conic-gradient(from 0deg, var(--accent), var(--brand), var(--accent), var(--brand), var(--accent));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
  background-size: 100% 100%;
}

.card[data-tilt]:hover::before {
  opacity: 0.5;
}

.card[data-tilt]:hover {
  box-shadow: 0 20px 50px rgba(163, 71, 30, 0.2);
}

/* ─── Fase 6: Button Micro-interactions ────────────────────────────────── */
.btn-primary {
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(163, 71, 30, 0.35);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.25) 50%, transparent 70%);
  transition: left 0.6s ease;
}

.btn-primary:hover::after {
  left: 100%;
}

.btn-primary:hover {
  box-shadow: 0 8px 25px rgba(163, 71, 30, 0.5);
}

.btn-ghost:hover {
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(207, 154, 74, 0.2);
}

/* Floating button pulse */
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 8px 28px rgba(163,71,30,0.55); }
  50%      { box-shadow: 0 8px 40px rgba(163,71,30,0.8); }
}

.float-book.visible {
  animation: floatPulse 2.5s ease infinite;
}

.float-book.visible:hover {
  animation: none;
}

/* Nav link underline animation */
.main-nav a {
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--brand);
  border-radius: 1px;
  transition: width 0.3s ease, left 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 70%;
  left: 15%;
}

/* ─── Fase 7: Stats Bar Enhanced ───────────────────────────────────────── */
.stats-bar {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark), #c46a2e, var(--brand));
  background-size: 300% 300%;
  animation: gradientMove 8s ease infinite;
  position: relative;
}

@keyframes gradientMove {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.stat-icon {
  display: block;
  font-size: 28px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 8px;
}

.stat-number.counted {
  animation: countPulse 0.4s ease;
}

@keyframes countPulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.08); }
  100% { transform: scale(1); }
}

/* ─── Fase 8: Gallery Enhanced ─────────────────────────────────────────── */
.gallery-item {
  position: relative;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(6) {
  grid-column: span 2;
}

.gallery-item::after {
  content: attr(data-caption);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 15px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  padding-bottom: 20px;
  letter-spacing: 0.3px;
}

.gallery-item:hover img {
  transform: scale(1.08) rotate(0.5deg);
}

/* ─── Fase 9: Review Carousel ──────────────────────────────────────────── */
.review-strip {
  overflow: hidden;
  position: relative;
}

.review-carousel {
  overflow: hidden;
  padding: 10px 0;
}

.review-track {
  display: flex;
  gap: 24px;
  animation: scrollCarousel 30s linear infinite;
  width: max-content;
}

.review-track:hover {
  animation-play-state: paused;
}

@keyframes scrollCarousel {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.review-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 24px;
  min-width: 300px;
  max-width: 340px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

.review-card .review-stars {
  color: #fff;
  font-size: 16px;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.review-card .review-text {
  margin: 0 0 12px;
  color: #1f1d19;
  font-size: 15px;
  font-style: italic;
  line-height: 1.5;
}

.review-card .review-author {
  font-weight: 700;
  font-size: 13px;
  color: rgba(31, 29, 25, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ─── Fase 10: Section Dividers + FAQ Smooth ───────────────────────────── */
.stats-bar::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 100%;
  height: 30px;
  background: var(--brand);
  clip-path: polygon(0 0, 100% 0, 100% 0%, 50% 100%, 0 0%);
  z-index: 2;
}

.stats-bar + .section {
  padding-top: 100px;
}

.faq-item > p {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  transition: max-height 0.4s ease, padding 0.4s ease;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.faq-item[open] > p {
  max-height: 300px;
  padding: 0 22px 20px;
}

.faq-item summary::after {
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

/* ─── Fase 11: Glassmorphism Header ────────────────────────────────────── */
.site-header {
  transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px) saturate(1.4);
  box-shadow: 0 2px 20px rgba(33, 24, 16, 0.08);
}

/* ─── Fase 12: Reduced Motion ──────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .hero::before { animation: none; }
  .hero-particles { display: none; }
  .hero-content .eyebrow { animation: heroFadeUp 0.7s ease both 0.15s; border-right: none; }
  .review-track { animation: none; flex-wrap: wrap; }
  .stats-bar { animation: none; }
  .float-book.visible { animation: none; }
  .card[data-tilt] { perspective: none; transform-style: flat; }

  .js .reveal,
  .js .reveal-left,
  .js .reveal-right,
  .js .reveal-scale {
    transition-duration: 0.3s;
  }

  @keyframes heroFadeUp {
    from { opacity: 0; }
    to   { opacity: 1; }
  }
}

/* ─── Responsive: Carousel + Gallery masonry ───────────────────────────── */
@media (max-width: 992px) {
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6) {
    grid-column: span 1;
  }

  .review-card {
    min-width: 260px;
  }
}

@media (max-width: 640px) {
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6) {
    grid-column: span 1;
  }

  .review-card {
    min-width: 240px;
    padding: 18px;
  }

  .stats-bar::after {
    height: 20px;
    bottom: -20px;
  }

  .stats-bar + .section {
    padding-top: 74px;
  }
}

/* === Language switcher (added 2026-05-10 — i18n setup Semana 2) === */
#langSwitcher {
  display: inline-flex;
  gap: 4px;
  margin-left: 16px;
  align-items: center;
}
#langSwitcher button {
  background: transparent;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 4px;
  color: inherit;
  cursor: pointer;
  font: 600 12px/1 system-ui, sans-serif;
  padding: 6px 10px;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  letter-spacing: 0.5px;
}
#langSwitcher button:hover {
  background: rgba(0,0,0,0.05);
}
#langSwitcher button[aria-pressed="true"] {
  background: var(--accent, #c1841a);
  border-color: var(--accent, #c1841a);
  color: #fff;
}
@media (max-width: 768px) {
  #langSwitcher {
    margin: 16px 0 0 0;
    width: 100%;
    justify-content: center;
  }
}

/* === Hero mini for inner pages === */
.hero.hero-mini {
  min-height: 280px;
  padding: 80px 20px 40px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero.hero-mini::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 0;
}
.hero.hero-mini .container {
  position: relative;
  z-index: 1;
  color: #fff;
}

/* === Pedido online — shop UI (added 2026-05-10 Semana 3) === */
.order-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
}
@media (max-width: 900px) {
  .order-layout { grid-template-columns: 1fr; }
}

.delivery-selector {
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 24px;
}
.delivery-selector legend {
  font-weight: 700;
  padding: 0 8px;
}
.delivery-option {
  display: block;
  padding: 8px 0;
  cursor: pointer;
}
.delivery-option input { margin-right: 10px; }
.delivery-option small {
  display: block;
  margin-left: 24px;
  color: #666;
  font-size: 13px;
}
#zoneSelector { margin-top: 12px; padding-left: 24px; }
#zoneSelector label { display: block; font-weight: 600; margin-bottom: 4px; }
#zoneSelector select {
  width: 100%;
  max-width: 320px;
  padding: 8px;
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 4px;
}

.cat-block {
  margin-bottom: 16px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  background: #fff;
}
.cat-block summary {
  padding: 14px 18px;
  cursor: pointer;
  list-style: none;
  background: rgba(193, 132, 26, 0.06);
  border-radius: 8px 8px 0 0;
  user-select: none;
}
.cat-block summary::-webkit-details-marker { display: none; }
.cat-block summary h3 {
  display: inline;
  font-size: 18px;
  margin: 0;
}
.cat-block[open] summary { border-bottom: 1px solid rgba(0,0,0,0.08); border-radius: 8px 8px 0 0; }
.cat-products { padding: 8px 0; }

.product-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 18px;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  gap: 12px;
}
.product-row:last-child { border-bottom: none; }
.product-row.product-oos { opacity: 0.5; }
.product-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-name { font-weight: 600; }
.product-price { color: #666; font-size: 14px; margin-top: 2px; }
.add-btn {
  width: 36px; height: 36px;
  border: 1px solid var(--accent, #c1841a);
  background: #fff;
  color: var(--accent, #c1841a);
  border-radius: 50%;
  font-size: 22px; font-weight: 700;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.15s;
}
.add-btn:hover { background: var(--accent, #c1841a); color: #fff; }
.add-btn.added-flash { background: #2a9d4f; border-color: #2a9d4f; color: #fff; transform: scale(1.15); }

.order-cart {
  position: relative;
}
.cart-sticky {
  position: sticky;
  top: 20px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  padding: 18px 20px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
}
.cart-sticky h3 { margin: 0 0 16px 0; font-size: 18px; }
.cart-empty { color: #888; font-size: 14px; text-align: center; padding: 24px 0; }
.cart-item {
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 10px 0;
}
.cart-item:last-child { border-bottom: none; }
.cart-item-info { display: flex; justify-content: space-between; gap: 8px; }
.cart-item-name { font-weight: 500; font-size: 14px; }
.cart-item-price { color: #666; font-size: 14px; white-space: nowrap; }
.cart-item-controls {
  display: flex; gap: 6px; align-items: center;
  margin-top: 6px;
}
.qty-btn, .rm-btn {
  width: 28px; height: 28px;
  border: 1px solid rgba(0,0,0,0.15);
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.qty-btn:hover, .rm-btn:hover { background: rgba(0,0,0,0.05); }
.cart-qty { min-width: 24px; text-align: center; font-weight: 600; }
.rm-btn { color: #c33; margin-left: auto; }

.cart-footer {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 2px solid rgba(0,0,0,0.08);
}
.cart-total {
  font-size: 18px;
  margin: 0 0 8px 0;
  display: flex; justify-content: space-between;
}
.cart-disclaimer {
  font-size: 12px;
  color: #888;
  margin-bottom: 14px;
  font-style: italic;
}
.btn-lg { padding: 14px 24px; font-size: 16px; font-weight: 700; width: 100%; }
.btn-sm { padding: 6px 12px; font-size: 13px; margin-top: 8px; width: 100%; }

.loading-msg, .error-msg { text-align: center; padding: 40px 20px; color: #888; }
.error-msg { color: #c33; }

/* === Cookie banner (RGPD) === */
#cookieBanner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: rgba(20, 14, 10, 0.96);
  color: #fff;
  padding: 16px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}
.cookie-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}
.cookie-msg {
  flex: 1 1 60%;
  min-width: 280px;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}
.cookie-msg a {
  color: var(--accent, #c1841a);
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.cookie-actions button {
  padding: 10px 18px;
  font-size: 14px;
}
@media (max-width: 600px) {
  .cookie-actions { width: 100%; justify-content: flex-end; }
}


/* ============================================================
   PREMIUM HEADER (rediseño 2026-05-10 — referencia fabrica Mother India)
   ============================================================ */

:root {
  --topbar-height: 72px;
  --topbar-bg: rgba(20, 14, 10, 0.85);
  --topbar-bg-scrolled: rgba(20, 14, 10, 0.96);
  --topbar-line: rgba(255, 255, 255, 0.08);
  --c-gold: var(--accent, #c1841a);
  --c-cream: #f5e9d4;
}

/* Reset top spacing for body when topbar is fixed */
body { padding-top: var(--topbar-height); }

/* Hide old top-bar + site-header (deprecated layout) */
.top-bar { display: none !important; }
.site-header:not(.topbar) { display: none !important; }

.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--topbar-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all 0.25s ease;
  height: var(--topbar-height);
}
.topbar.is-scrolled {
  background: var(--topbar-bg-scrolled);
  border-bottom-color: var(--topbar-line);
}
.topbar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}
.topbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.topbar__logo img { height: 38px; width: auto; }
.topbar__wordmark {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--c-gold);
  letter-spacing: 1px;
  white-space: nowrap;
}
.topbar__nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  align-items: center;
}
.topbar__nav a {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--c-cream);
  text-decoration: none;
  padding: 10px 0;
  position: relative;
  white-space: nowrap;
}
.topbar__nav a::after {
  content: "";
  position: absolute;
  bottom: 4px; left: 50%;
  width: 0; height: 1.5px;
  background: var(--c-gold);
  transition: all 0.25s ease;
  transform: translateX(-50%);
}
.topbar__nav a:hover,
.topbar__nav a.active { color: var(--c-gold); }
.topbar__nav a:hover::after,
.topbar__nav a.active::after { width: 100%; }

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.topbar__tel {
  display: inline-flex;
  width: 38px; height: 38px;
  align-items: center;
  justify-content: center;
  color: var(--c-gold);
  border: 1px solid var(--topbar-line);
  border-radius: 50%;
  transition: all 0.2s ease;
  text-decoration: none;
}
.topbar__tel:hover {
  border-color: var(--c-gold);
  background: rgba(193, 132, 26, 0.1);
}

.lang-switch {
  display: inline-flex;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--topbar-line);
  border-radius: 100px;
}
.lang-switch button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: rgba(245, 233, 212, 0.65);
  border-radius: 100px;
  transition: all 0.2s ease;
  background: transparent;
  border: none;
  cursor: pointer;
}
.lang-switch button[aria-pressed="true"] {
  background: var(--c-gold);
  color: #1a1209;
}
.lang-switch button:hover:not([aria-pressed="true"]) { color: var(--c-gold); }
.lang-switch .flag {
  width: 16px;
  height: auto;
  display: block;
  flex: 0 0 auto;
  border-radius: 1px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
}

.topbar__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: var(--c-gold);
  color: #1a1209;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s ease;
}
.topbar__cta:hover { background: #d99428; transform: translateY(-1px); }

.topbar__burger {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-left: auto;
  background: transparent;
  border: none;
  cursor: pointer;
}
.topbar__burger span {
  width: 22px; height: 1.5px;
  background: var(--c-gold);
  transition: all 0.25s ease;
}
.topbar__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.topbar__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.topbar__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--topbar-height); left: 0; right: 0;
  flex-direction: column;
  padding: 24px;
  background: var(--topbar-bg-scrolled);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--topbar-line);
  z-index: 99;
  max-height: calc(100vh - var(--topbar-height));
  overflow-y: auto;
}
.mobile-menu a {
  padding: 14px 0;
  font-size: 1.1rem;
  font-family: "Playfair Display", Georgia, serif;
  color: var(--c-cream);
  text-decoration: none;
  border-bottom: 1px solid var(--topbar-line);
}
.mobile-menu a:hover { color: var(--c-gold); }
.mobile-menu.is-open { display: flex; }

@media (max-width: 980px) {
  .topbar__nav { display: none; }
  .topbar__actions .topbar__tel,
  .topbar__actions .topbar__cta { display: none; }
  .topbar__actions .lang-switch { display: none; } /* moved to mobile-menu */
  .topbar__actions { gap: 8px; }
  .topbar__burger { display: flex; margin-left: 0; }
}
@media (max-width: 480px) {
  .topbar__wordmark { display: none; }
  :root { --topbar-height: 64px; }
}

/* Lang switch dentro del mobile menu (toolbar superior) */
.mobile-menu__lang {
  display: none;
}
.mobile-menu.is-open .mobile-menu__lang {
  display: flex;
  gap: 6px;
  padding: 8px 0 16px;
  border-bottom: 1px solid var(--topbar-line);
  margin-bottom: 12px;
  justify-content: center;
}
.mobile-menu__lang button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: rgba(245, 233, 212, 0.65);
  border-radius: 100px;
  background: transparent;
  border: 1px solid var(--topbar-line);
  cursor: pointer;
}
.mobile-menu__lang button[aria-pressed="true"] {
  background: var(--c-gold);
  color: #1a1209;
  border-color: var(--c-gold);
}
.mobile-menu__lang button:hover:not([aria-pressed="true"]) { color: var(--c-gold); }
.mobile-menu__lang .flag {
  width: 16px;
  height: auto;
  display: block;
  flex: 0 0 auto;
  border-radius: 1px;
}

/* ============================================================
   MENU LIST PATTERN (referencia fabrica Mother India)
   ============================================================ */

.menu-accordion {
  max-width: 860px;
  margin: 0 auto;
}
.menu-cat {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  margin-bottom: 0;
}
.menu-cat[open] { background: rgba(193, 132, 26, 0.03); }
.menu-cat summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.4rem;
  color: #1a1209;
  transition: color 0.2s ease;
  user-select: none;
}
.menu-cat summary:hover { color: var(--c-gold); }
.menu-cat summary::-webkit-details-marker { display: none; }
.menu-cat__chev {
  font-family: system-ui, sans-serif;
  font-size: 1.6rem;
  color: var(--c-gold);
  font-weight: 300;
  transition: transform 0.25s ease;
  line-height: 1;
}
.menu-cat[open] .menu-cat__chev { transform: rotate(45deg); }

.menu-list {
  list-style: none;
  margin: 0;
  padding: 0 24px 24px;
}
.menu-list li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.menu-list li:last-child { border-bottom: none; }
.menu-list li.product-oos { opacity: 0.45; }
.menu-list li > .menu-name {
  flex: 1;
  font-size: 0.96rem;
  color: #2a1f15;
  display: flex;
  align-items: baseline;
}
.menu-list li > .menu-name::after {
  content: "";
  display: inline-block;
  flex: 1;
  margin: 0 8px;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.2);
  min-width: 1rem;
}
.menu-list li > .menu-price {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.05rem;
  color: var(--c-gold);
  font-weight: 600;
  flex-shrink: 0;
  white-space: nowrap;
}
.menu-list li > .menu-add {
  width: 32px; height: 32px;
  border: 1px solid var(--c-gold);
  background: transparent;
  color: var(--c-gold);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
  flex-shrink: 0;
  margin-left: 8px;
}
.menu-list li > .menu-add:hover { background: var(--c-gold); color: #fff; }
.menu-list li > .menu-add.added-flash { background: #2a9d4f; border-color: #2a9d4f; color: #fff; transform: scale(1.15); }

.menu-cat__note {
  padding: 0 24px 14px;
  color: #6a5a48;
  font-size: 0.88rem;
  font-style: italic;
}

/* Sticky category nav (for menu.html and pedido-online.html) */
.cat-nav-sticky {
  position: sticky;
  top: var(--topbar-height);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  z-index: 50;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 32px;
}
.cat-nav-sticky__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: thin;
}
.cat-nav-sticky a {
  flex-shrink: 0;
  padding: 6px 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #2a1f15;
  text-decoration: none;
  transition: all 0.15s;
  white-space: nowrap;
}
.cat-nav-sticky a:hover { border-color: var(--c-gold); color: var(--c-gold); }

/* ============================================================
   FIXES TAMAÑOS — carta y pedido online (2026-05-10)
   Reduce tamaños tipográficos y espaciados para mejor densidad
   ============================================================ */

/* Carta — más compacta y legible */
.menu-cat summary {
  padding: 14px 18px;            /* antes: 22px 24px */
  font-size: 1.15rem;            /* antes: 1.4rem */
}
.menu-cat__chev { font-size: 1.3rem; }

.menu-list { padding: 0 18px 16px; }
.menu-list li {
  padding: 8px 0;                /* antes: 10px 0 */
  gap: 8px;
}
.menu-list li > .menu-name { font-size: 0.92rem; }
.menu-list li > .menu-price { font-size: 0.98rem; }
.menu-list li > .menu-add {
  width: 28px;                   /* antes: 32px */
  height: 28px;
  font-size: 16px;
  margin-left: 6px;
}

/* Catalog container con max-width responsive */
#menuCatalogContainer, #catalogContainer {
  max-width: 880px;
  margin: 0 auto;
}

/* Sticky cat nav — ajuste vertical y compacto */
.cat-nav-sticky {
  padding: 8px 0;                 /* antes: 12px 0 */
  margin-bottom: 24px;
}
.cat-nav-sticky a {
  padding: 5px 11px;              /* antes: 6px 14px */
  font-size: 0.7rem;              /* antes: 0.78rem */
}

/* Order layout — ajuste columnas en pedido-online */
.order-layout {
  grid-template-columns: minmax(0, 1fr) 320px;   /* antes: 1fr 360px */
  gap: 24px;
}
@media (max-width: 1024px) {
  .order-layout { grid-template-columns: minmax(0, 1fr) 300px; }
}
@media (max-width: 900px) {
  .order-layout { grid-template-columns: 1fr; }
  .order-cart { position: static; }
  .cart-sticky { position: static; max-height: none; }
}

/* Hero mini — header+content más compacto */
.hero.hero-mini {
  min-height: 220px;              /* antes: 280px */
  padding: 60px 20px 32px;
}
.hero.hero-mini h1 { font-size: 2rem; line-height: 1.2; }
.hero.hero-mini p { font-size: 1rem; }

@media (max-width: 600px) {
  .hero.hero-mini { min-height: 180px; padding: 40px 16px 24px; }
  .hero.hero-mini h1 { font-size: 1.5rem; }
  .menu-cat summary { padding: 12px 14px; font-size: 1rem; }
  .menu-list { padding: 0 14px 12px; }
  .menu-list li > .menu-name { font-size: 0.88rem; }
  .menu-list li > .menu-price { font-size: 0.9rem; }
}

/* ============================================================
   FIX BOTONES CTA — 3 botones del menu/CTA con visual coherente
   (2026-05-10 fix tras feedback Kumar)
   ============================================================ */

/* btn-secondary y btn-ghost necesitan borde claro para verse en fondos crema */
.btn-secondary {
  background: #fff;
  color: #2a1f15;
  border: 2px solid #2a1f15;     /* borde marrón oscuro definido */
  padding: 12px 22px;
  border-radius: 100px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  cursor: pointer;
}
.btn-secondary:hover {
  background: #2a1f15;
  color: #fff;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.95);
  color: #2a1f15;
  border: 2px solid var(--c-gold, #c1841a);
  padding: 12px 22px;
  border-radius: 100px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.btn-ghost:hover {
  background: var(--c-gold, #c1841a);
  color: #fff;
  border-color: var(--c-gold, #c1841a);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(193, 132, 26, 0.3);
}

.btn-primary {
  /* Mantener estilo dorado dominante */
  background: var(--c-gold, #c1841a);
  color: #fff;
  border: 2px solid var(--c-gold, #c1841a);
  padding: 12px 22px;
  border-radius: 100px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  cursor: pointer;
}
.btn-primary:hover {
  background: #a06b14;
  border-color: #a06b14;
}

/* Actions container — alineación coherente en CTAs */
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

/* === Modelo Hindustani: categorías más visibles ===
   Cuando details está open por defecto, el chevron muestra X (rotación 45deg)
   Mantener summary clickable por si quiere colapsar uno
*/
.menu-cat[open] summary { border-bottom: 1px solid rgba(0,0,0,0.05); }

/* Anchor offset for sticky cat nav — al saltar a #cat-X no queda oculto bajo el nav sticky */
.menu-cat[id^="cat-"] {
  scroll-margin-top: calc(var(--topbar-height) + 80px);
}

/* ============================================================
   MODELO HINDUSTANI — secciones siempre abiertas (2026-05-10)
   Sustituye al patrón <details> con .menu-section + .dish-row
   ============================================================ */

.menu-section {
  padding: 56px 0 24px;
  position: relative;
  scroll-margin-top: calc(var(--topbar-height) + 80px);
}
.menu-section:first-of-type { padding-top: 16px; }
.menu-section:not(:first-of-type)::before {
  content: "✦   ✦   ✦";
  display: block;
  text-align: center;
  color: var(--c-gold);
  font-size: 12px;
  letter-spacing: 18px;
  margin-bottom: 48px;
  opacity: 0.55;
}
.menu-section__head {
  text-align: center;
  margin-bottom: 36px;
}
.menu-section__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  margin: 0 0 6px;
  color: #1a1209;
}
.menu-section__sub {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 15px;
  color: var(--c-gold);
  margin: 0;
}

.dish-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.dish-row:last-child { border-bottom: none; }
.dish-row.product-oos { opacity: 0.4; }
.dish-row__main { min-width: 0; }
.dish-row__name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 500;
  margin: 0 0 4px;
  color: #2a1f15;
  line-height: 1.3;
}
.dish-row__desc {
  font-size: 0.85rem;
  color: #6a5a48;
  margin: 0;
  line-height: 1.4;
}
.dish-row__price {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--c-gold);
  margin: 0;
  white-space: nowrap;
  align-self: center;
}
.dish-row__add {
  background: transparent;
  border: 1px solid var(--c-gold);
  color: var(--c-gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.15s;
  align-self: center;
  white-space: nowrap;
}
.dish-row__add:hover { background: var(--c-gold); color: #fff; }
.dish-row__add.is-added { background: #2a9d4f; border-color: #2a9d4f; color: #fff; }

@media (max-width: 600px) {
  .dish-row { grid-template-columns: 1fr auto; }
  .dish-row__add { grid-column: 2; grid-row: 2; }
}

/* Sticky cat nav active state (Hindustani-style) */
.cat-nav-sticky a.is-active {
  background: var(--c-gold);
  color: #fff;
  border-color: var(--c-gold);
}

/* ============================================================
   FOOTER REDESIGN — logo izq + iconos sociales SVG
   ============================================================ */
.site-footer { background: #1a1209; color: #d4c5a8; padding: 48px 0 24px; margin-top: 60px; }
.site-footer .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.foot-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 768px) {
  .foot-grid { grid-template-columns: 1fr; gap: 32px; }
}
.foot-brand img { height: 72px; width: auto; margin-bottom: 18px; display: block; }
.foot-brand p {
  font-size: 0.88rem;
  color: rgba(212, 197, 168, 0.7);
  line-height: 1.5;
  margin: 6px 0;
}
.foot-brand strong { color: var(--c-gold); font-weight: 600; }

.foot-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.foot-social a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: #d4c5a8;
  transition: all 0.2s ease;
  text-decoration: none;
}
.foot-social a:hover { border-color: var(--c-gold); color: var(--c-gold); background: rgba(193,132,26,0.08); }

.foot-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 600px) {
  .foot-cols { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
.foot-col h5 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.95rem;
  color: var(--c-gold);
  margin: 0 0 12px;
  font-weight: 600;
}
.foot-col p { margin: 4px 0; font-size: 0.88rem; }
.foot-col a { color: #d4c5a8; text-decoration: none; transition: color 0.15s; }
.foot-col a:hover { color: var(--c-gold); }

.foot-bottom {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  color: rgba(212,197,168,0.5);
}
.foot-bottom a { color: rgba(212,197,168,0.7); text-decoration: none; margin: 0 4px; }
.foot-bottom a:hover { color: var(--c-gold); }

/* Hide old footer-grid */
.site-footer .footer-grid { display: none !important; }
.site-footer .copyright,
.site-footer .footer-credit { display: none !important; }

/* ============================================================
   CONTACT — bloque "Síguenos" con redes sociales
   ============================================================ */
.contact-social-title {
  margin: 24px 0 10px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  color: var(--brand, #c1841a);
  font-weight: 600;
}
.contact-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.contact-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--border, #e2dccd);
  border-radius: 999px;
  text-decoration: none;
  color: var(--text, #2b1f12);
  background: #fff;
  transition: all 0.15s ease;
  font-size: 0.92rem;
  font-weight: 500;
}
.contact-social a:hover {
  border-color: var(--brand, #c1841a);
  color: var(--brand, #c1841a);
  background: rgba(193, 132, 26, 0.05);
  transform: translateY(-1px);
}
.contact-social a svg {
  flex-shrink: 0;
}

/* ============================================================
   FOOTER v7 — logo only (no wordmark) + responsive
   ============================================================ */
.foot-brand-logo {
  height: 72px;
  width: auto;
  margin-bottom: 18px;
  display: block;
}

/* Tablet: keep grid 2-col but tighten brand col */
@media (max-width: 992px) and (min-width: 769px) {
  .foot-grid { grid-template-columns: 240px 1fr; gap: 32px; }
  .foot-cols { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}
/* Mobile: stack brand on top, columns below in 3-col mini grid */
@media (max-width: 768px) {
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .foot-brand { text-align: left; }
  .foot-cols { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .foot-col h5 { font-size: 0.88rem; }
  .foot-col p, .foot-col a { font-size: 0.82rem; }
}
@media (max-width: 480px) {
  .foot-cols { grid-template-columns: 1fr 1fr; gap: 18px; }
}

/* ============================================================
   RESERVATION — WhatsApp + Email buttons
   ============================================================ */
.reservation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 12px;
}
.btn-whatsapp {
  background: #25d366;
  color: #fff;
  border: none;
  padding: 14px 26px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s ease, transform 0.18s ease;
  text-decoration: none;
  font-family: inherit;
  line-height: 1;
}
.btn-whatsapp:hover, .btn-whatsapp:focus {
  background: #1ebe57;
  transform: translateY(-1px);
}
.btn-whatsapp:active { transform: translateY(0); }
.reservation-actions .btn-secondary {
  padding: 14px 26px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 999px;
}
@media (max-width: 480px) {
  .reservation-actions { flex-direction: column; }
  .btn-whatsapp, .reservation-actions .btn-secondary { width: 100%; }
}

/* ============================================================
   CART FAB + DRAWER (Hindustani-style adapted to Mr Singh)
   ============================================================ */
.cart-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 60;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--c-gold, #c1841a);
  background: #1a1209;
  color: var(--c-gold, #c1841a);
  cursor: pointer;
  box-shadow: 0 12px 30px -6px rgba(42, 15, 10, .4), 0 4px 8px rgba(0,0,0,.12);
  display: grid;
  place-items: center;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.cart-fab:hover {
  transform: translateY(-2px) scale(1.04);
  background: var(--c-gold, #c1841a);
  color: #1a1209;
}
.cart-fab__count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: #c0392b;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  display: grid;
  place-items: center;
  border: 2px solid #faf5ec;
  transition: transform .2s ease;
}
.cart-fab__count.is-zero { display: none; }
.cart-fab.is-active .cart-fab__count { animation: cart-pulse .4s ease; }
@keyframes cart-pulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.25); }
  100% { transform: scale(1); }
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 70;
  pointer-events: none;
}
.cart-drawer.is-open { pointer-events: auto; }
.cart-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 14, 10, .65);
  opacity: 0;
  transition: opacity .3s ease;
  z-index: 1;
}
.cart-drawer.is-open .cart-drawer__overlay { opacity: 1; }
.cart-drawer__panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(480px, 100%);
  background: #faf5ec;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
  box-shadow: -20px 0 60px -10px rgba(0,0,0,.35);
  border-left: 1px solid var(--c-gold, #c1841a);
  z-index: 2;
}
.cart-drawer.is-open .cart-drawer__panel { transform: translateX(0); }
.cart-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  background: #fff;
}
.cart-drawer__head h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 24px;
  margin: 0;
  letter-spacing: -0.01em;
  color: #1a1209;
}
.cart-drawer__close {
  background: transparent;
  border: 0;
  font-size: 32px;
  line-height: 1;
  color: #6b5a48;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: background .2s ease, color .2s ease;
}
.cart-drawer__close:hover { background: var(--c-gold, #c1841a); color: #fff; }
.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 12px 28px;
}
.cart-drawer__foot {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 22px 28px 28px;
  background: #fff;
}

.cart-drawer .cart-empty {
  text-align: center;
  color: #6b5a48;
  padding: 60px 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
}

.cart-row {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 8px 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.cart-row:last-child { border-bottom: 0; }
.cart-row__main { min-width: 0; }
.cart-row__name {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  font-size: 16px;
  margin: 0 0 2px;
  line-height: 1.3;
  color: #1a1209;
}
.cart-row__price {
  font-size: 12px;
  color: #6b5a48;
  margin: 0;
  font-style: italic;
}
.cart-row__qty {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #faf5ec;
  border: 1px solid rgba(0,0,0,0.1);
  padding: 4px 6px;
  border-radius: 4px;
}
.cart-row__qty button {
  width: 24px; height: 24px;
  border: 0;
  background: transparent;
  color: #1a1209;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
  border-radius: 3px;
}
.cart-row__qty button:hover { background: var(--c-gold, #c1841a); color: #fff; }
.cart-row__qty span {
  min-width: 18px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}
.cart-row__sub {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 16px;
  color: var(--c-gold, #c1841a);
  margin: 0;
  white-space: nowrap;
  font-weight: 600;
}
.cart-row__del {
  background: transparent;
  border: 0;
  font-size: 18px;
  color: #6b5a48;
  cursor: pointer;
  width: 24px; height: 24px;
  line-height: 1;
  border-radius: 50%;
  transition: color .2s ease, background .2s ease;
}
.cart-row__del:hover { color: #c0392b; background: rgba(192, 57, 43, .08); }

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold, #c1841a);
  font-weight: 600;
}
.cart-total strong {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 30px;
  color: #1a1209;
  font-weight: 600;
  text-transform: none;
  letter-spacing: -0.01em;
}
.cart-checkout {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: #fff;
  border: 1px solid #25D366;
  border-radius: 100px;
  padding: 14px 24px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
  cursor: pointer;
  font-family: inherit;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.cart-checkout:hover {
  background: #1da851;
  border-color: #1da851;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37,211,102,0.25);
}
.cart-clear {
  width: 100%;
  background: transparent;
  border: 0;
  color: #6b5a48;
  font-size: 12px;
  padding: 8px;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: rgba(0,0,0,0.2);
  text-underline-offset: 4px;
  font-style: italic;
  font-family: 'Playfair Display', Georgia, serif;
}
.cart-clear:hover { color: #1a1209; }
.cart-note {
  font-size: 12px;
  color: #6b5a48;
  text-align: center;
  margin: 12px 0 0;
  line-height: 1.5;
  font-style: italic;
  font-family: 'Playfair Display', Georgia, serif;
}

@media (max-width: 720px) {
  .cart-drawer__panel { width: 100%; }
  .cart-fab { bottom: 18px; right: 18px; width: 54px; height: 54px; }
  .cart-drawer__head, .cart-drawer__body { padding-left: 20px; padding-right: 20px; }
  .cart-drawer__foot { padding: 18px 20px 24px; }
}
