/* ============================================
   LALA GOURMET KC — Production Stylesheet
   Editorial Venezuelan · Bilingual ES/EN
   ============================================ */

:root {
  --cream: #FBF6EC;
  --cream-dark: #F2E9D6;
  --cream-darker: #E8DCC0;
  --red: #B5261E;
  --red-deep: #7A1812;
  --red-light: #D9482E;
  --mustard: #E8A93C;
  --mustard-deep: #C8841A;
  --mustard-light: #F4C46A;
  --blue: #003893;
  --blue-light: #1E5BC6;
  --blue-deep: #001E5C;
  --ink: #1F1A14;
  --ink-soft: #4A3F30;
  --ink-light: #6B5D48;
  --line: rgba(45, 35, 23, 0.1);
  --line-strong: rgba(45, 35, 23, 0.25);

  --shadow-sm: 0 4px 12px rgba(31, 26, 20, 0.08);
  --shadow-md: 0 12px 28px rgba(31, 26, 20, 0.12);
  --shadow-lg: 0 24px 60px rgba(31, 26, 20, 0.18);

  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.serif {
  font-family: 'Fraunces', serif;
  font-feature-settings: "ss01", "ss02";
}

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

a { color: inherit; text-decoration: none; }

/* Grain texture overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.12 0 0 0 0 0.1 0 0 0 0 0.08 0 0 0 0.08 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===========================================
   ANNOUNCEMENT BAR
   =========================================== */
.announcement {
  background: var(--ink);
  color: var(--cream);
  padding: 0.6rem 1.5rem;
  font-size: 0.82rem;
  text-align: center;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 101;
}
.announcement strong {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--mustard);
  font-weight: 500;
}

/* ===========================================
   NAVIGATION
   =========================================== */
nav.main-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 2.5rem;
  background: rgba(251, 246, 236, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: var(--transition);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-img {
  height: 52px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: var(--transition);
  position: relative;
  padding: 0.4rem 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--red);
  transition: width 0.25s ease;
}
.nav-links a:hover { color: var(--red); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--red); }

.nav-cta {
  background: var(--red);
  color: var(--cream) !important;
  padding: 0.65rem 1.3rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}
.nav-cta:hover {
  background: var(--red-deep);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(181, 38, 30, 0.3);
}
.nav-cta::after { display: none !important; }

.lang-toggle {
  display: flex;
  background: var(--cream-dark);
  border-radius: 999px;
  padding: 3px;
  font-size: 0.78rem;
  font-weight: 600;
}
.lang-toggle button {
  border: none;
  background: transparent;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  cursor: pointer;
  color: var(--ink-soft);
  font-family: inherit;
  font-weight: 600;
  transition: var(--transition);
  font-size: 0.78rem;
}
.lang-toggle button.active {
  background: var(--ink);
  color: var(--cream);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: var(--transition);
}

/* ===========================================
   BUTTONS
   =========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: inherit;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--red);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--red-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(122, 24, 18, 0.3);
}
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-secondary:hover {
  background: var(--ink);
  color: var(--cream);
}
.btn-mustard {
  background: var(--mustard);
  color: var(--ink);
}
.btn-mustard:hover {
  background: var(--mustard-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(200, 132, 26, 0.3);
}
.btn-cream {
  background: var(--cream);
  color: var(--ink);
}
.btn-cream:hover {
  background: var(--mustard);
  transform: translateY(-2px);
}

/* ===========================================
   PAGE HEADER (non-home pages)
   =========================================== */
.page-header {
  padding: 5rem 2.5rem 3.5rem;
  text-align: center;
  position: relative;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.page-header .breadcrumb {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--red);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  display: block;
}

.page-header h1 {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}
.page-header h1 em {
  font-style: italic;
  color: var(--red);
  font-weight: 500;
}

.page-header p {
  max-width: 38rem;
  margin: 0 auto;
  font-size: 1.05rem;
  color: var(--ink-soft);
}

/* ===========================================
   HOMEPAGE — HERO
   =========================================== */
.hero {
  position: relative;
  min-height: calc(100vh - 90px);
  padding: 5rem 2.5rem 4rem;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3rem;
  align-items: center;
  overflow: hidden;
}

.hero-deco {
  position: absolute;
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--mustard);
  opacity: 0.14;
  font-size: 22rem;
  font-weight: 800;
  top: 50%;
  right: -4rem;
  transform: translateY(-50%);
  pointer-events: none;
  line-height: 1;
  z-index: 0;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--cream-dark);
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 1.75rem;
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

h1.headline {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: var(--ink);
}
.headline em {
  font-style: italic;
  color: var(--red);
  font-weight: 500;
}
.headline .accent {
  display: inline-block;
  background: var(--mustard);
  color: var(--ink);
  padding: 0 0.4rem;
  transform: rotate(-2deg);
  font-style: italic;
  font-weight: 600;
  box-shadow: 4px 4px 0 var(--ink);
}

.hero p.lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 30rem;
  margin-bottom: 2.25rem;
  line-height: 1.55;
}

.hero-cta {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-meta {
  display: flex;
  gap: 2.5rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
  flex-wrap: wrap;
}
.hero-meta div strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  color: var(--ink);
  font-size: 1rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.15rem;
}

/* Hero image collage */
.hero-visual {
  position: relative;
  height: 620px;
  z-index: 2;
}

.hero-img {
  position: absolute;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--cream-dark);
  transition: transform 0.4s ease;
}
.hero-img:hover { transform: scale(1.03) rotate(0deg) !important; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; }

.hero-img-1 {
  width: 280px;
  height: 360px;
  top: 20px;
  left: 30px;
  transform: rotate(-3deg);
  background: linear-gradient(135deg, var(--red-light), var(--red-deep));
}
.hero-img-2 {
  width: 240px;
  height: 240px;
  top: 60px;
  right: 0;
  transform: rotate(4deg);
  background: linear-gradient(135deg, var(--mustard-light), var(--mustard-deep));
}
.hero-img-3 {
  width: 220px;
  height: 220px;
  bottom: 40px;
  right: 100px;
  transform: rotate(-5deg);
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
}

.hero-img-tag {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: rgba(31, 26, 20, 0.85);
  backdrop-filter: blur(8px);
  color: var(--cream);
  padding: 0.6rem 0.9rem;
  border-radius: 4px;
  text-align: left;
}
.hero-img-tag .name {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 1rem;
  display: block;
}
.hero-img-tag .price {
  font-size: 0.78rem;
  color: var(--mustard);
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ===========================================
   MARQUEE
   =========================================== */
.marquee {
  background: var(--ink);
  color: var(--cream);
  padding: 1.1rem 0;
  overflow: hidden;
  position: relative;
  border-top: 3px solid var(--mustard);
  border-bottom: 3px solid var(--mustard);
  z-index: 2;
}
.marquee-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: scroll 36s linear infinite;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.4rem;
  font-weight: 500;
  width: max-content;
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 3rem;
  padding-right: 3rem;
}
.marquee-track span::after {
  content: "✦";
  color: var(--mustard);
  font-style: normal;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===========================================
   GENERAL SECTIONS
   =========================================== */
section {
  padding: 6rem 2.5rem;
  position: relative;
  z-index: 2;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.section-head h2 {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  letter-spacing: -0.025em;
  line-height: 1;
  max-width: 22ch;
}
.section-head h2 em { color: var(--red); font-style: italic; font-weight: 500; }

.section-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--red);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  display: block;
}

.section-meta {
  font-size: 0.95rem;
  color: var(--ink-soft);
  max-width: 28rem;
  line-height: 1.65;
}

/* ===========================================
   FEATURED DISHES (homepage)
   =========================================== */
.featured-dishes {
  background: var(--cream-dark);
}

.dishes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1300px;
  margin: 0 auto;
}

.dish-card {
  background: var(--cream);
  border-radius: 6px;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
}
.dish-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.dish-image {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--cream-darker), var(--cream-dark));
  position: relative;
  overflow: hidden;
}
.dish-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.dish-card:hover .dish-image img { transform: scale(1.06); }

.dish-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--red);
  color: var(--cream);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.dish-tag.mustard { background: var(--mustard); color: var(--ink); }
.dish-tag.blue { background: var(--blue); color: var(--cream); }

.dish-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.dish-body h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 0.5rem;
}

.dish-body p {
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  flex: 1;
}

.dish-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px dashed var(--line-strong);
}

.dish-price {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--red);
  font-size: 1.25rem;
  font-weight: 600;
}

.dish-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.04em;
  transition: var(--transition);
}
.dish-link:hover { color: var(--red); }

/* ===========================================
   MENU CATEGORIES (full menu page)
   =========================================== */
.menu-nav {
  position: sticky;
  top: 88px;
  z-index: 50;
  background: rgba(251, 246, 236, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding: 1rem 2.5rem;
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.menu-nav a {
  flex-shrink: 0;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  background: var(--cream-dark);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: var(--transition);
  white-space: nowrap;
}
.menu-nav a:hover, .menu-nav a.active {
  background: var(--ink);
  color: var(--cream);
}

.menu-section {
  padding: 4rem 2.5rem;
  max-width: 1300px;
  margin: 0 auto;
}

.menu-category {
  margin-bottom: 5rem;
}

.menu-subcategory {
  margin-top: 3rem;
  margin-bottom: 2rem;
}
.menu-subcategory:first-of-type { margin-top: 0; }

.menu-subcategory-head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.menu-subcategory-head h3 {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  color: var(--red);
}

.menu-subcategory-head .sub-meta {
  font-size: 0.82rem;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}

.menu-subcategory-head::before {
  content: "";
  flex: 0 0 32px;
  height: 1px;
  background: var(--red);
}

.menu-category-head {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 2px solid var(--ink);
}

.menu-category-head h2 {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  letter-spacing: -0.02em;
}
.menu-category-head h2 em { color: var(--red); font-style: italic; font-weight: 500; }

.menu-category-head .cat-meta {
  margin-left: auto;
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--ink-soft);
  font-size: 1rem;
}

.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 1rem 2rem;
}

.menu-item {
  display: flex;
  gap: 1.25rem;
  padding: 1rem 0;
  border-bottom: 1px dashed var(--line);
  transition: var(--transition);
}
.menu-item:hover { background: rgba(232, 169, 60, 0.05); padding-left: 0.5rem; }

.menu-item-img {
  width: 100px;
  height: 100px;
  border-radius: 6px;
  background: var(--cream-dark);
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}
.menu-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Featured items with photos get a subtle highlight */
.menu-item.has-photo {
  background: var(--cream);
  border-radius: 8px;
  padding: 1rem;
  margin: 0.5rem 0;
  border: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.menu-item.has-photo:hover {
  padding-left: 1rem;
  border-color: var(--mustard);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.menu-item.has-photo .menu-item-img {
  width: 120px;
  height: 120px;
}

/* Text-only items: no image slot, refined typography */
.menu-item.text-only .menu-item-body {
  padding-left: 0;
}
.menu-item.text-only .menu-item-head h4 {
  font-size: 1.15rem;
}
.menu-item.text-only::before {
  content: "";
  width: 4px;
  align-self: stretch;
  background: var(--mustard);
  flex-shrink: 0;
  border-radius: 2px;
  margin: 0.25rem 0;
  opacity: 0.4;
  transition: var(--transition);
}
.menu-item.text-only:hover::before {
  opacity: 1;
  background: var(--red);
}

.menu-item-body {
  flex: 1;
  min-width: 0;
}

.menu-item-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.25rem;
}

.menu-item-head h4 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.menu-item-head .price {
  font-family: 'Fraunces', serif;
  color: var(--red-deep);
  font-weight: 600;
  font-size: 1.05rem;
  white-space: nowrap;
  font-feature-settings: "tnum";
}

.menu-item-desc {
  color: var(--ink-soft);
  font-size: 0.85rem;
  line-height: 1.5;
}

.menu-item-tags {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.4rem;
  flex-wrap: wrap;
}
.menu-item-tag {
  background: var(--cream-dark);
  color: var(--ink-soft);
  font-size: 0.7rem;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.menu-item-tag.spicy { background: var(--red); color: var(--cream); }
.menu-item-tag.signature { background: var(--mustard); color: var(--ink); }

/* ===========================================
   CATERING PAGE
   =========================================== */
.catering-hero {
  background: var(--ink);
  color: var(--cream);
  padding: 6rem 2.5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.catering-hero::before {
  content: "T";
  position: absolute;
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--mustard);
  opacity: 0.08;
  font-size: 32rem;
  font-weight: 800;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
}
.catering-hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}
.catering-hero h1 em { color: var(--mustard); font-style: italic; font-weight: 500; }
.catering-hero p {
  max-width: 38rem;
  margin: 0 auto;
  font-size: 1.1rem;
  opacity: 0.85;
  position: relative;
  z-index: 2;
}

.catering-trays {
  background: var(--cream);
  padding: 6rem 2.5rem;
}

.tray-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1300px;
  margin: 0 auto;
}

.tray-card {
  background: var(--cream-dark);
  border: 2px solid transparent;
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.tray-card:hover {
  border-color: var(--mustard);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.tray-card-image {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--mustard-light), var(--mustard-deep));
  display: grid;
  place-items: center;
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--ink);
  font-size: 4rem;
  font-weight: 800;
  position: relative;
  overflow: hidden;
}
.tray-card-image img { width: 100%; height: 100%; object-fit: cover; }
.tray-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(31,26,20,0.4));
}
.tray-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--ink);
  color: var(--cream);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 2;
}

.tray-card-body {
  padding: 1.75rem;
  flex: 1;
}

.tray-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
  letter-spacing: -0.015em;
}

.tray-sub {
  font-size: 0.85rem;
  color: var(--red);
  margin-bottom: 1rem;
  font-style: italic;
  font-family: 'Fraunces', serif;
}

.tray-options {
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
  line-height: 1.55;
  padding-bottom: 1.25rem;
  border-bottom: 1px dashed var(--line-strong);
}

.tray-pricing {
  display: grid;
  gap: 0.6rem;
}
.tray-pricing div {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
}
.tray-pricing strong {
  color: var(--red-deep);
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 600;
}

/* Catering form */
.catering-form-section {
  background: var(--cream-dark);
  padding: 6rem 2.5rem;
}

.form-wrapper {
  max-width: 720px;
  margin: 0 auto;
  background: var(--cream);
  padding: 3rem;
  border-radius: 6px;
  box-shadow: var(--shadow-md);
}

.form-wrapper h3 {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.form-wrapper h3 em { color: var(--red); font-style: italic; }

.form-wrapper > p {
  color: var(--ink-soft);
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--line-strong);
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--cream);
  color: var(--ink);
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(181, 38, 30, 0.1);
}

.form-group textarea {
  min-height: 110px;
  resize: vertical;
}

/* ===========================================
   STORY SECTION
   =========================================== */
.story-section {
  padding: 7rem 2.5rem;
  background: var(--cream);
}

.story {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.story-img {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--red), var(--red-deep) 50%, var(--ink));
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-lg);
}

.story-img-content {
  text-align: center;
  color: var(--cream);
  padding: 2.5rem;
  position: relative;
  z-index: 2;
}
.story-img-content .quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.story-img-content .quote-attr {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.85;
  font-weight: 500;
}

.story-img::before {
  content: """;
  position: absolute;
  top: -2rem;
  left: 1rem;
  font-family: 'Fraunces', serif;
  font-size: 18rem;
  color: var(--mustard);
  opacity: 0.18;
  line-height: 1;
}

.story-text h2 {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.story-text h2 em { color: var(--red); font-style: italic; font-weight: 500; }

.story-text p {
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
  font-size: 1.02rem;
  line-height: 1.7;
}

.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line-strong);
}
.story-stats div strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  color: var(--red);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}
.story-stats div span {
  font-size: 0.78rem;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
  margin-top: 0.4rem;
  font-weight: 500;
}

/* ===========================================
   STORY PAGE — TIMELINE
   =========================================== */
.timeline-section {
  background: var(--cream-dark);
  padding: 6rem 2.5rem;
}

.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--line-strong);
}

.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-marker {
  width: 60px;
  height: 60px;
  background: var(--red);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--cream);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 1rem;
  border: 3px solid var(--cream);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 2;
}

.timeline-content {
  background: var(--cream);
  padding: 1.5rem 1.75rem;
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
}

.timeline-content h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.timeline-content h3 em { color: var(--red); font-style: italic; }

.timeline-content p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.value-card {
  background: var(--cream);
  padding: 2rem;
  border-radius: 6px;
  border: 1px solid var(--line);
  transition: var(--transition);
}
.value-card:hover {
  transform: translateY(-4px);
  border-color: var(--mustard);
  box-shadow: var(--shadow-md);
}

.value-icon {
  width: 50px;
  height: 50px;
  background: var(--mustard);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--ink);
  margin-bottom: 1.25rem;
}

.value-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  letter-spacing: -0.015em;
}

.value-card p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ===========================================
   VISIT / CONTACT
   =========================================== */
.visit-section {
  background: var(--cream-dark);
  padding: 7rem 2.5rem;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.visit-info {
  background: var(--cream);
  padding: 2.5rem;
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
}

.visit-info h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.85rem;
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}
.visit-info h3 em { color: var(--red); font-style: italic; }

.visit-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  font-size: 0.95rem;
}
.visit-row:last-child { border-bottom: none; }
.visit-row .label {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--red);
  font-size: 0.95rem;
  font-weight: 500;
}
.visit-row .value { color: var(--ink); font-weight: 500; }
.visit-row .value a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1.5px solid var(--mustard);
  transition: var(--transition);
}
.visit-row .value a:hover { color: var(--red); border-color: var(--red); }

.hours-grid {
  display: grid;
  gap: 0.45rem;
  font-feature-settings: "tnum";
}
.hours-row { display: flex; justify-content: space-between; gap: 1rem; }
.hours-row.closed { color: var(--ink-light); }
.hours-row.today {
  background: var(--mustard);
  padding: 0.3rem 0.6rem;
  margin: 0 -0.6rem;
  border-radius: 4px;
  font-weight: 600;
}

.map {
  background: linear-gradient(135deg, var(--blue), var(--ink));
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: grid;
  place-items: center;
  color: var(--cream);
  box-shadow: var(--shadow-md);
}
.map-pin {
  width: 56px;
  height: 56px;
  background: var(--red);
  border-radius: 50%;
  border: 4px solid var(--cream);
  position: relative;
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
  animation: pin-pulse 2s infinite;
}
.map-pin::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid var(--red);
  opacity: 0.4;
  animation: ring 2s infinite;
}
@keyframes pin-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
@keyframes ring {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}
.map-overlay {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--cream);
  color: var(--ink);
  padding: 1.25rem 1.5rem;
  border-radius: 6px;
  font-size: 0.85rem;
  max-width: 300px;
  box-shadow: var(--shadow-md);
}
.map-overlay strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  font-weight: 600;
}
.map-overlay a {
  color: var(--red);
  font-weight: 600;
  margin-top: 0.5rem;
  display: inline-block;
  font-size: 0.82rem;
}
.map-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232,169,60,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,169,60,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* ===========================================
   TESTIMONIALS
   =========================================== */
.testimonials {
  background: var(--cream);
  padding: 6rem 2.5rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1300px;
  margin: 0 auto;
}

.testimonial {
  background: var(--cream-dark);
  padding: 2rem;
  border-radius: 6px;
  position: relative;
  border-left: 4px solid var(--mustard);
}

.testimonial-stars {
  color: var(--mustard);
  font-size: 1rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.testimonial blockquote {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--red);
  color: var(--cream);
  display: grid;
  place-items: center;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-meta {
  font-size: 0.82rem;
}
.testimonial-meta strong { display: block; color: var(--ink); }
.testimonial-meta span { color: var(--ink-soft); }

/* ===========================================
   CTA BANNER
   =========================================== */
.cta-banner {
  background: var(--red);
  color: var(--cream);
  padding: 5rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(232,169,60,0.15) 0%, transparent 50%),
                    radial-gradient(circle at 80% 50%, rgba(232,169,60,0.1) 0%, transparent 50%);
}
.cta-banner h2 {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}
.cta-banner h2 em { color: var(--mustard); font-style: italic; font-weight: 500; }
.cta-banner p {
  max-width: 32rem;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  opacity: 0.9;
  position: relative;
  z-index: 2;
}
.cta-banner .btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* ===========================================
   FOOTER
   =========================================== */
footer {
  background: var(--ink);
  color: var(--cream);
  padding: 5rem 2.5rem 2rem;
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1300px;
  margin: 0 auto 3.5rem;
}

.footer-brand h4 {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 2.2rem;
  margin-bottom: 1rem;
  letter-spacing: -0.015em;
  color: var(--cream);
}
.footer-brand p {
  font-size: 0.92rem;
  opacity: 0.7;
  max-width: 26rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}
.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(251, 246, 236, 0.1);
  display: grid;
  place-items: center;
  color: var(--cream);
  transition: var(--transition);
  border: 1px solid rgba(251, 246, 236, 0.2);
}
.social-links a:hover {
  background: var(--mustard);
  color: var(--ink);
  border-color: var(--mustard);
  transform: translateY(-2px);
}
.social-links a svg { width: 18px; height: 18px; }

.footer-col h5 {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--mustard);
  margin-bottom: 1.25rem;
  font-weight: 500;
  font-size: 1.05rem;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer-col a {
  color: rgba(251, 246, 236, 0.75);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--mustard); }

.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(251, 246, 236, 0.1);
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  opacity: 0.6;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ===========================================
   VENEZUELA CULTURE SECTIONS
   =========================================== */
.venezuela-banner {
  position: relative;
  height: 480px;
  overflow: hidden;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--cream);
  z-index: 2;
}
.venezuela-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.55);
  z-index: 1;
}
.venezuela-banner-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31,26,20,0.4) 0%, rgba(31,26,20,0.7) 100%);
}
.venezuela-banner-content {
  position: relative;
  z-index: 2;
  padding: 0 2rem;
  max-width: 760px;
}
.venezuela-banner-eyebrow {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--mustard);
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}
.venezuela-banner h2 {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 1.25rem;
}
.venezuela-banner h2 em { color: var(--mustard); font-style: italic; font-weight: 500; }
.venezuela-banner p {
  font-size: 1.1rem;
  line-height: 1.5;
  opacity: 0.92;
  max-width: 540px;
  margin: 0 auto;
}

/* Smaller landscape divider used between menu sections */
.venezuela-divider {
  position: relative;
  height: 220px;
  margin: 2rem 0 4rem;
  overflow: hidden;
  border-radius: 8px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--cream);
}
.venezuela-divider-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.6);
  z-index: 1;
}
.venezuela-divider-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(122,24,18,0.55) 0%, rgba(31,26,20,0.5) 100%);
}
.venezuela-divider-content {
  position: relative;
  z-index: 2;
  padding: 0 2rem;
}
.venezuela-divider-content .label {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--mustard);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}
.venezuela-divider-content h3 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.venezuela-divider-content h3 em { color: var(--mustard); font-style: italic; font-weight: 500; }

/* ===========================================
   AMBIENT VENEZUELA BACKDROPS
   Subtle landscape images behind sections
   =========================================== */
.has-vz-bg {
  position: relative;
  isolation: isolate;
}
.has-vz-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('images/venezuela-landscape.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  z-index: -1;
  pointer-events: none;
}

.has-vz-bg-2::before {
  background-image: url('images/venezuela-maracaibo.jpg');
  opacity: 0.07;
}

.has-vz-bg-3::before {
  background-image: url('images/venezuela-maracaibo.jpg');
  opacity: 0.07;
}

/* Hero gets a subtle Venezuelan landscape backdrop */
.hero.has-vz-bg::before {
  opacity: 0.12;
  background-image: url('images/venezuela-landscape.jpg');
}

/* Catering hero — full-bleed Venezuelan dramatic landscape */
.catering-hero.has-vz-bg-strong::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('images/venezuela-maracaibo.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
  z-index: 0;
}
.catering-hero.has-vz-bg-strong > * { position: relative; z-index: 2; }

/* Contact map gets Venezuelan landscape feel */
.map.has-vz-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('images/venezuela-landscape.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.4) saturate(0.8);
  z-index: 0;
}

/* Footer — Venezuelan silhouette in background */
footer.has-vz-bg::before {
  opacity: 0.1;
  background-image: url('images/venezuela-maracaibo.jpg');
}

/* ===========================================
   TEPUI SVG ILLUSTRATION (decorative element)
   Stylized table mountain - signature of Venezuela
   =========================================== */
.tepui-illustration {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.12;
}
.tepui-illustration svg { width: 100%; height: 100%; display: block; }

/* Specific placements */
.tepui-bottom-right {
  bottom: 0;
  right: 0;
  width: 380px;
  height: 200px;
}
.tepui-bottom-left {
  bottom: 0;
  left: 0;
  width: 380px;
  height: 200px;
  transform: scaleX(-1);
}

/* Decorative palm/tropical leaf accent */
.leaf-accent {
  position: absolute;
  pointer-events: none;
  opacity: 0.15;
  z-index: 0;
}
.leaf-accent svg { width: 100%; height: 100%; }

/* Section dividers — wave-like landscape silhouette */
.landscape-divider {
  width: 100%;
  height: 80px;
  display: block;
  margin: 0;
  position: relative;
  z-index: 2;
}
.landscape-divider svg { width: 100%; height: 100%; display: block; }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .menu-items-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  nav.main-nav { padding: 1rem 1.25rem; }
  .nav-links { gap: 1rem; }
  .nav-links li.desktop-only { display: none; }
  .mobile-toggle { display: block; }

  .hero {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem;
    gap: 2rem;
  }
  .hero-deco { font-size: 12rem; right: -2rem; opacity: 0.1; }
  .hero-visual { height: 460px; margin-top: 1rem; }
  .hero-img-1 { width: 220px; height: 290px; left: 0; }
  .hero-img-2 { width: 190px; height: 190px; right: 10px; }
  .hero-img-3 { width: 175px; height: 175px; bottom: 10px; right: 50px; }

  section { padding: 4rem 1.5rem; }

  .story { grid-template-columns: 1fr; gap: 2rem; }
  .visit-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .map { min-height: 350px; }

  .form-row { grid-template-columns: 1fr; }
  .form-wrapper { padding: 2rem 1.5rem; }

  .menu-category-head { flex-wrap: wrap; gap: 0.5rem; }
  .menu-category-head .cat-meta { margin-left: 0; width: 100%; }

  .timeline-item { grid-template-columns: 60px 1fr; gap: 1.25rem; }
  .timeline-marker { width: 50px; height: 50px; font-size: 0.85rem; }
  .timeline::before { left: 25px; }
}

@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .story-stats { grid-template-columns: 1fr; gap: 1rem; }
  .menu-item { flex-direction: row; }
  .menu-item-img { width: 80px; height: 80px; }
  .hero-meta { flex-direction: column; gap: 1rem; }
  .hero-img-1 { width: 180px; height: 230px; }
  .hero-img-2 { width: 160px; height: 160px; }
  .hero-img-3 { width: 145px; height: 145px; }
  h1.headline { font-size: 2.6rem; }
  .visit-row { grid-template-columns: 1fr; gap: 0.3rem; padding: 1rem 0; }
  .menu-nav { padding: 0.75rem 1.25rem; }
}

/* =====================================================
   ADD-TO-CART BUTTON (on menu items)
   ===================================================== */
.add-to-cart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  margin-top: 0.85rem;
  padding: 0.55rem 1rem;
  background: var(--ink);
  color: var(--cream);
  border: none;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  align-self: flex-start;
}
.add-to-cart-btn:hover {
  background: var(--red);
  transform: translateY(-1px);
}
.add-to-cart-btn:active { transform: translateY(0); }
.add-to-cart-btn.added {
  background: #1A6E36;
  pointer-events: none;
}
.menu-item.text-only .add-to-cart-btn {
  margin-top: 0.65rem;
  padding: 0.45rem 0.9rem;
  font-size: 0.72rem;
}

/* =====================================================
   CART NAV BUTTON (cart icon with count badge)
   ===================================================== */
.cart-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(0,0,0,0.12);
  color: var(--ink);
  cursor: pointer;
  position: relative;
  transition: background 0.2s ease, border-color 0.2s ease;
  margin-left: 0.5rem;
}
.cart-nav-btn:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.cart-nav-btn svg { width: 18px; height: 18px; }
.cart-nav-btn .cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--red);
  color: white;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.7rem;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  line-height: 1;
  border: 2px solid var(--cream);
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.cart-nav-btn.has-items .cart-count {
  display: inline-flex;
}
.cart-nav-btn.has-items {
  background: var(--mustard);
  border-color: var(--red);
  color: var(--ink);
}
.cart-nav-btn.has-items svg {
  stroke-width: 2.5;
}

/* =====================================================
   CART DRAWER (slides in from right)
   ===================================================== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.cart-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(420px, 100vw);
  background: var(--cream);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(0,0,0,0.18);
}
.cart-drawer.open {
  transform: translateX(0);
}
.cart-header {
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-header h3 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.6rem;
  margin: 0;
  color: var(--ink);
}
.cart-close {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--ink);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.cart-close:hover { background: rgba(0,0,0,0.06); }

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
}
.cart-empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: rgba(0,0,0,0.6);
}
.cart-empty-state svg {
  width: 64px;
  height: 64px;
  opacity: 0.25;
  margin-bottom: 1rem;
}
.cart-empty-state h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin: 0 0 0.4rem;
  color: var(--ink);
}
.cart-empty-state p {
  font-size: 0.9rem;
  margin: 0;
}

.cart-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.cart-line:last-child { border-bottom: none; }
.cart-line-name {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
  line-height: 1.3;
}
.cart-line-price {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
  white-space: nowrap;
  text-align: right;
}
.cart-line-qty {
  display: inline-flex;
  align-items: center;
  background: rgba(0,0,0,0.04);
  border-radius: 999px;
  padding: 0.15rem;
  grid-column: 1;
}
.cart-line-qty button {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: background 0.15s ease;
}
.cart-line-qty button:hover { background: rgba(0,0,0,0.08); }
.cart-line-qty span {
  min-width: 28px;
  text-align: center;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.88rem;
}
.cart-line-remove {
  grid-column: 2;
  background: transparent;
  border: none;
  font-size: 0.75rem;
  color: rgba(0,0,0,0.5);
  cursor: pointer;
  font-family: var(--font-sans);
  text-decoration: underline;
  padding: 0;
  text-align: right;
}
.cart-line-remove:hover { color: var(--red); }

.cart-footer {
  padding: 1.25rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.08);
  background: rgba(0,0,0,0.02);
}
.cart-totals {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
  font-family: var(--font-sans);
  font-size: 0.88rem;
}
.cart-totals .row {
  display: flex;
  justify-content: space-between;
}
.cart-totals .row.total {
  font-weight: 700;
  font-size: 1.05rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(0,0,0,0.1);
  color: var(--ink);
}
.cart-checkout-btn {
  display: block;
  width: 100%;
  padding: 0.95rem 1rem;
  background: var(--red);
  color: white;
  border: none;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, transform 0.15s ease;
}
.cart-checkout-btn:hover {
  background: var(--ink);
  transform: translateY(-1px);
}
.cart-clear-btn {
  display: block;
  width: 100%;
  margin-top: 0.6rem;
  padding: 0.5rem;
  background: transparent;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: rgba(0,0,0,0.5);
  text-decoration: underline;
  cursor: pointer;
  text-align: center;
}
.cart-clear-btn:hover { color: var(--red); }

.cart-delivery-note {
  display: block;
  margin-top: 0.85rem;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: rgba(0,0,0,0.55);
}
.cart-delivery-note a {
  color: var(--red);
  text-decoration: none;
  font-weight: 600;
}
.cart-delivery-note a:hover { text-decoration: underline; }

/* =====================================================
   TOAST NOTIFICATION (item added)
   ===================================================== */
.cart-toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translate(-50%, 100px);
  background: var(--ink);
  color: var(--cream);
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 1000;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.cart-toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* =====================================================
   ORDER OPTION MODAL (Pickup vs Delivery)
   ===================================================== */
.order-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.order-modal-overlay.open {
  display: flex;
  opacity: 1;
}
.order-modal {
  background: var(--cream);
  border-radius: 18px;
  padding: 2rem;
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}
.order-modal h3 {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.7rem;
  margin: 0 0 1.5rem;
  color: var(--ink);
}
.order-modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}
.order-modal-close:hover { background: rgba(0,0,0,0.06); }
.order-options {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}
.order-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.4rem 1rem;
  border: 2px solid rgba(0,0,0,0.1);
  border-radius: 14px;
  cursor: pointer;
  background: white;
  text-decoration: none;
  color: var(--ink);
  transition: border-color 0.2s ease, transform 0.15s ease, background 0.2s ease;
  text-align: center;
}
.order-option:hover {
  border-color: var(--red);
  transform: translateY(-2px);
  background: rgba(181, 38, 30, 0.03);
}
.order-option svg {
  width: 32px;
  height: 32px;
  color: var(--red);
  margin-bottom: 0.6rem;
}
.order-option strong {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.25rem;
  display: block;
}
.order-option span {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: rgba(0,0,0,0.6);
  line-height: 1.4;
}

/* =====================================================
   CHECKOUT PAGE
   ===================================================== */
.checkout-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}
.checkout-back {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--ink);
  text-decoration: none;
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.checkout-back:hover { color: var(--red); }
.checkout-page h1 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 3rem);
  margin: 0 0 2.5rem;
  color: var(--ink);
}
.checkout-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: start;
}
.checkout-form-section {
  background: white;
  border-radius: 14px;
  padding: 1.75rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(0,0,0,0.06);
}
.checkout-form-section h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1rem;
  margin: 0 0 1.2rem;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.field {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.field:last-child { margin-bottom: 0; }
.field label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(0,0,0,0.7);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.field input, .field select, .field textarea {
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  background: white;
  color: var(--ink);
  transition: border-color 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--red);
}
.field textarea {
  min-height: 80px;
  resize: vertical;
  font-family: var(--font-sans);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.sms-consent-disclosure {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(0,0,0,0.55);
  margin: 0.75rem 0 0;
  padding: 0;
}
.pickup-options {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.pickup-options label {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  border: 2px solid rgba(0,0,0,0.1);
  border-radius: 10px;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
  text-transform: none;
  letter-spacing: normal;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.pickup-options label:has(input:checked),
.pickup-options label.checked {
  border-color: var(--red);
  background: rgba(181, 38, 30, 0.05);
}
.pickup-options input[type="radio"] { accent-color: var(--red); }
.pickup-time-field { display: none; }
.pickup-time-field.show { display: flex; }

.order-summary {
  background: var(--ink);
  color: var(--cream);
  border-radius: 14px;
  padding: 1.75rem;
  position: sticky;
  top: 100px;
}
.order-summary h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1rem;
  margin: 0 0 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--cream);
}
.order-summary-lines {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.order-summary-line {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  font-family: var(--font-sans);
  font-size: 0.88rem;
}
.order-summary-line .qty-name {
  flex: 1;
  line-height: 1.35;
}
.order-summary-line .qty {
  opacity: 0.7;
  margin-right: 0.4rem;
}
.order-summary-line .line-price {
  white-space: nowrap;
  font-weight: 600;
}
.order-summary-totals {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  margin-bottom: 1.2rem;
}
.order-summary-totals .row {
  display: flex;
  justify-content: space-between;
}
.order-summary-totals .row.total {
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 0.4rem;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.order-summary-info {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  opacity: 0.6;
  line-height: 1.5;
  margin-top: 1rem;
}
.place-order-btn {
  display: block;
  width: 100%;
  padding: 1rem;
  background: var(--mustard);
  color: var(--ink);
  border: none;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  margin-top: 1rem;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, transform 0.15s ease;
}
.place-order-btn:hover {
  background: var(--red);
  color: white;
  transform: translateY(-1px);
}
.place-order-btn:disabled {
  background: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.5);
  cursor: not-allowed;
  transform: none;
}

.checkout-success {
  text-align: center;
  padding: 4rem 1.5rem;
  max-width: 540px;
  margin: 0 auto;
}
.checkout-success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #1A6E36;
  color: white;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.checkout-success-icon svg { width: 36px; height: 36px; }
.checkout-success h1 {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 2.4rem;
  margin: 0 0 1rem;
  color: var(--ink);
}
.checkout-success p {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: rgba(0,0,0,0.7);
  line-height: 1.6;
  margin: 0 0 2rem;
}

@media (max-width: 900px) {
  .checkout-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .order-summary { position: static; }
  .field-row { grid-template-columns: 1fr; }
  .cart-drawer { width: 100vw; }
}

@media (max-width: 540px) {
  .checkout-page { padding: 2rem 1rem 4rem; }
  .checkout-form-section { padding: 1.25rem; }
  .order-summary { padding: 1.25rem; }
  .pickup-options { flex-direction: column; }
}

/* =====================================================
   ORDER NOW HERO BUTTON (the primary CTA)
   ===================================================== */
.order-now-cta {
  cursor: pointer;
  background: none;
  border: none;
  font: inherit;
  color: inherit;
}

/* =====================================================
   PAYMENT MODAL (Stripe-Checkout-style mock)
   When wired to real Stripe Checkout, this modal is replaced
   by Stripe's hosted page. UI here is for demo + reference.
   ===================================================== */
.pay-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 20, 25, 0.85);
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.pay-overlay.open {
  display: flex;
  opacity: 1;
}
.pay-modal {
  background: white;
  border-radius: 16px;
  padding: 2rem 2rem 1.5rem;
  max-width: 440px;
  width: 100%;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  position: relative;
  font-family: var(--font-sans);
}
.pay-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}
.pay-header-left h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.78rem;
  margin: 0 0 0.2rem;
  color: rgba(0,0,0,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pay-header-left .pay-merchant {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--ink);
  font-weight: 500;
}
.pay-close {
  background: transparent;
  border: none;
  font-size: 1.4rem;
  color: rgba(0,0,0,0.5);
  cursor: pointer;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.pay-close:hover { background: rgba(0,0,0,0.06); }

.pay-amount-block {
  background: rgba(0,0,0,0.03);
  border-radius: 10px;
  padding: 1rem 1.2rem;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pay-amount-block .label {
  font-size: 0.78rem;
  color: rgba(0,0,0,0.6);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.pay-amount-block .amount {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.7rem;
  color: var(--ink);
  font-feature-settings: "tnum";
}

.pay-demo-banner {
  background: #FFF8E1;
  color: #7A5C00;
  border: 1px solid #F0D88A;
  border-radius: 8px;
  padding: 0.6rem 0.85rem;
  font-size: 0.75rem;
  margin-bottom: 1.25rem;
  text-align: center;
  font-weight: 500;
}

.pay-fields {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.pay-field-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(0,0,0,0.7);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.35rem;
  display: block;
}
.pay-input {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(0,0,0,0.18);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  background: white;
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  font-feature-settings: "tnum";
}
.pay-input:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(181, 38, 30, 0.15);
}
.pay-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.pay-card-row {
  position: relative;
}
.pay-card-icons {
  position: absolute;
  right: 0.7rem;
  top: 50%;
  transform: translateY(-30%);
  display: flex;
  gap: 0.3rem;
  pointer-events: none;
}
.pay-card-icons img {
  height: 18px;
  opacity: 0.55;
}

.pay-submit {
  margin-top: 1.5rem;
  width: 100%;
  padding: 0.95rem 1rem;
  background: var(--ink);
  color: white;
  border: none;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, transform 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
}
.pay-submit:hover:not(:disabled) {
  background: var(--red);
  transform: translateY(-1px);
}
.pay-submit:disabled {
  background: rgba(0,0,0,0.4);
  cursor: not-allowed;
  transform: none;
}
.pay-submit .spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: pay-spin 0.7s linear infinite;
}
.pay-submit.processing .spinner { display: inline-block; }
.pay-submit.processing .pay-label-text { opacity: 0.85; }
@keyframes pay-spin {
  to { transform: rotate(360deg); }
}

.pay-secure-footer {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.7rem;
  color: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.pay-secure-footer svg {
  width: 12px;
  height: 12px;
  opacity: 0.55;
}

@media (max-width: 540px) {
  .pay-modal { padding: 1.5rem 1.25rem 1.25rem; }
  .pay-amount-block .amount { font-size: 1.4rem; }
}

/* =====================================================
   ORDER SUCCESS SCREEN ENHANCEMENTS
   ===================================================== */
.checkout-success-ordernum {
  display: inline-block;
  margin: 1rem 0 1.5rem;
  padding: 0.5rem 1.2rem;
  background: var(--cream);
  border: 1px dashed rgba(0,0,0,0.2);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(0,0,0,0.7);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.checkout-success-ordernum strong {
  color: var(--red);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  font-weight: 600;
  margin-left: 0.3rem;
  letter-spacing: 0;
  text-transform: none;
}
.checkout-success-eta {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: rgba(0,0,0,0.55);
}

/* =====================================================
   MODIFIER MODAL — used for items requiring a customer choice
   (empanada filling, cheese size, drink size, soda flavor, etc.)
   ===================================================== */
.modifier-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1100;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modifier-modal-overlay.open { display: flex; }
.modifier-modal {
  background: #fff;
  width: 100%;
  max-width: 460px;
  border-radius: 14px;
  padding: 1.75rem 1.5rem 1.25rem;
  box-shadow: 0 24px 48px rgba(0,0,0,0.32);
  position: relative;
  font-family: var(--font-sans, 'Inter', system-ui, sans-serif);
  max-height: 92vh;
  overflow-y: auto;
}
.modifier-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.9rem;
  background: none;
  border: 0;
  font-size: 1.6rem;
  line-height: 1;
  color: rgba(0,0,0,0.55);
  cursor: pointer;
  padding: 0.25rem 0.5rem;
}
.modifier-modal-close:hover { color: rgba(0,0,0,0.85); }
.modifier-modal-item-name {
  font-family: var(--font-serif, 'Fraunces', serif);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 1.5rem 0.35rem 0;
  color: var(--red);
}
.modifier-modal-title {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(0,0,0,0.55);
  margin: 0 0 1rem 0;
}
.modifier-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.modifier-option {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.modifier-option:hover { border-color: rgba(181, 38, 30, 0.5); background: rgba(181, 38, 30, 0.03); }
.modifier-option input[type="radio"] {
  margin: 0;
  accent-color: var(--red);
  width: 1.1rem;
  height: 1.1rem;
}
.modifier-option:has(input:checked) {
  border-color: var(--red);
  background: rgba(181, 38, 30, 0.06);
}
.modifier-option-label {
  font-size: 0.95rem;
  color: rgba(0,0,0,0.85);
  font-weight: 500;
}
.modifier-modal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.modifier-modal-price {
  font-family: var(--font-serif, 'Fraunces', serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--red);
}
.modifier-modal-confirm {
  flex: 1;
  max-width: 280px;
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
}
.modifier-modal-confirm:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Cart line modifier label */
.cart-line-modifier {
  grid-column: 1 / -1;
  font-size: 0.78rem;
  color: rgba(0,0,0,0.6);
  font-style: italic;
  margin-top: -0.15rem;
  margin-bottom: 0.15rem;
}

/* Modifier badge on the menu card "Add" button area */
.menu-item-modifier-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(0,0,0,0.55);
  margin-top: 0.35rem;
  font-weight: 500;
}
.menu-item-modifier-hint::before {
  content: "▸";
  color: var(--red);
}

/* =====================================================
   CLOSED BANNER — shows when restaurant is closed.
   Gates the cart so customers can't checkout outside hours.
   ===================================================== */
.closed-banner {
  display: none;
  position: sticky;
  top: 0;
  z-index: 90;
  background: linear-gradient(135deg, #B5261E 0%, #7A1812 100%);
  color: #FBF6EC;
  padding: 0.85rem 1.25rem;
  font-family: var(--font-sans, 'Inter', system-ui, sans-serif);
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.closed-banner-emoji {
  font-size: 1.4rem;
  flex-shrink: 0;
}
.closed-banner-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.closed-banner-title {
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}
.closed-banner-sub {
  font-size: 0.78rem;
  opacity: 0.88;
  margin-top: 0.1rem;
}
@media (max-width: 600px) {
  .closed-banner-text { align-items: center; text-align: center; }
}

/* When closed, gray out cart checkout button */
body.is-closed .cart-checkout-btn,
body.is-closed [data-checkout-btn] {
  opacity: 0.55;
  pointer-events: none;
  filter: grayscale(40%);
}

/* =====================================================
   STALE / REMOVED ITEM HIDING (used for migration cleanup)
   ===================================================== */
.menu-item.is-removed { display: none !important; }

/* =====================================================
   TIP SELECTOR (checkout page)
   ===================================================== */
.tip-selector {
  margin: 1rem 0;
}
.tip-selector-label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(0,0,0,0.6);
  margin-bottom: 0.6rem;
  font-weight: 600;
}
.tip-options {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.tip-option {
  flex: 1;
  min-width: 70px;
  padding: 0.7rem 0.5rem;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(0,0,0,0.75);
  transition: all 0.15s;
}
.tip-option:hover { border-color: rgba(181, 38, 30, 0.5); }
.tip-option.active {
  border-color: var(--red);
  background: var(--red);
  color: #FBF6EC;
}
.tip-option-amount {
  display: block;
  font-size: 0.72rem;
  margin-top: 0.15rem;
  opacity: 0.85;
}
.tip-custom-wrap {
  margin-top: 0.6rem;
  display: none;
}
.tip-custom-wrap.active { display: block; }
.tip-custom-wrap input {
  width: 100%;
  max-width: 200px;
  padding: 0.55rem 0.75rem;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
}

/* Cart-line-modifier styling - for grid-based cart lines, second pass */
.cart-line {
  position: relative;
}

/* Order summary modifier label */
.summary-line-mod {
  color: rgba(0,0,0,0.55);
  font-style: italic;
  font-size: 0.85em;
}
