/* ============================================================
   CHEF GORDO FOODIE — Design System
   Inspired by: DaMaria Roma (editorial) + SQEW UK (impact)
   Colors: #FEE3D0 / #262626 / #E9A229 / #CD4322
   ============================================================ */

/* === FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;0,900;1,400;1,700&family=Inter:wght@300;400;500;600;700&family=Bebas+Neue&display=swap');

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

/* === CUSTOM PROPERTIES === */
:root {
  /* Brand Colors */
  --cream: #FEE3D0;
  --cream-light: #FFF5ED;
  --dark: #262626;
  --dark-soft: #333333;
  --gold: #E9A229;
  --gold-light: #F5C563;
  --red: #CD4322;
  --red-dark: #A83519;

  /* Semantic */
  --bg-primary: var(--cream);
  --bg-secondary: var(--dark);
  --text-on-light: var(--dark);
  --text-on-dark: var(--cream);
  --accent-primary: var(--gold);
  --accent-secondary: var(--red);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-impact: 'Bebas Neue', Impact, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Borders */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(38, 38, 38, 0.08);
  --shadow-md: 0 8px 24px rgba(38, 38, 38, 0.12);
  --shadow-lg: 0 16px 48px rgba(38, 38, 38, 0.16);
  --shadow-gold: 0 8px 32px rgba(233, 162, 41, 0.3);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 0.2s;
  --duration-normal: 0.4s;
  --duration-slow: 0.8s;

  /* Z-index layers */
  --z-base: 1;
  --z-menu: 50;
  --z-nav: 100;
  --z-cart: 200;
  --z-overlay: 300;
  --z-mobile-bar: 150;
}

/* === BASE === */
html {
  scroll-behavior: auto; /* Lenis handles this */
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text-on-light);
  background-color: var(--bg-primary);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
}

ul, ol {
  list-style: none;
}

/* === TYPOGRAPHY === */
.font-display {
  font-family: var(--font-display);
}

.font-impact {
  font-family: var(--font-impact);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.1;
  font-weight: 700;
}

/* === LOADING SCREEN === */
.loader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  animation: loaderPulse 1.4s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.08); opacity: 1; }
}

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: transform 0.4s var(--ease-out), background 0.3s;
}

.nav--scrolled {
  background: rgba(38, 38, 38, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.75rem 2rem;
}

.nav--hidden {
  transform: translateY(-100%);
}

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

.nav__logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.nav__logo-text {
  font-family: var(--font-impact);
  font-size: 1.3rem;
  color: var(--cream);
  letter-spacing: 0.06em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  padding: 0.25rem 0;
  transition: color var(--duration-fast);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link:hover {
  color: var(--gold);
}

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

.nav__cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: var(--gold);
  color: var(--dark);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all var(--duration-fast) var(--ease-out);
}

.nav__cart-btn:hover {
  background: var(--gold-light);
  transform: scale(1.05);
  box-shadow: var(--shadow-gold);
}

.nav__cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 22px;
  height: 22px;
  background: var(--red);
  color: white;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease-out);
}

.nav__cart-badge.bounce {
  animation: badgeBounce 0.5s var(--ease-out);
}

@keyframes badgeBounce {
  0% { transform: scale(1); }
  40% { transform: scale(1.4); }
  100% { transform: scale(1); }
}

.nav__cart-badge:empty,
.nav__cart-badge[data-count="0"] {
  display: none;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  z-index: calc(var(--z-overlay) + 1);
}

.nav__hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--cream);
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}

.nav__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: var(--z-overlay);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-out), visibility 0.4s;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__link {
  font-family: var(--font-impact);
  font-size: 3rem;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  position: relative;
  transform: translateY(20px);
  opacity: 0;
  transition: color 0.3s, transform 0.4s var(--ease-out), opacity 0.4s;
}

.mobile-menu.active .mobile-menu__link {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu__link:hover {
  color: var(--gold);
}

.mobile-menu__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: var(--cream);
  opacity: 0.6;
  transition: all 0.3s var(--ease-out);
  z-index: 10;
  padding: 0.5rem;
}

.mobile-menu__close:hover {
  opacity: 1;
  color: var(--gold);
  transform: rotate(90deg);
}

.mobile-menu__link::before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--red);
  transition: width 0.3s var(--ease-out);
}

.mobile-menu__link:hover::before {
  width: 100%;
}

/* === HERO SEQUENCE === */
.hero-sequence {
  height: 300vh; /* Scrollytelling height */
  background: #F19845;
  position: relative;
}

.hero-sequence__container {
  height: 100vh;
  position: sticky;
  top: 0;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F19845;
}

.hero-sequence__canvas {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.hero-sequence__overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  padding: var(--space-xl);
  pointer-events: none; /* Initially ignore clicks */
  background: rgba(254, 227, 208, 0.9); /* var(--cream) approx with opacity */
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 90%;
  margin-top: 15vh; /* Push slightly down so it doesn't cover the main logo character if possible, depending on framing */
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  border: 1px solid rgba(233, 162, 41, 0.3);
}

.hero-sequence__overlay.active {
  pointer-events: auto;
}

.hero-sequence__badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: var(--dark);
  color: var(--gold);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
  text-transform: uppercase;
}

.hero-sequence__title {
  font-family: var(--font-impact);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: var(--space-sm);
}

.hero-sequence__highlight {
  color: var(--red);
}

.hero-sequence__subtitle {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-style: italic;
  margin: 0 auto var(--space-xl);
  color: rgba(38,38,38,0.8);
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--gold);
  color: var(--dark);
}

.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn--outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
}

.btn--outline:hover {
  background: var(--dark);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--dark);
  color: var(--cream);
}

.btn--dark:hover {
  background: var(--dark-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--red {
  background: var(--red);
  color: white;
}

.btn--red:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 0.6rem 1.2rem;
  font-size: 0.8rem;
}

.btn--lg {
  padding: 1.2rem 2.5rem;
  font-size: 0.95rem;
}

/* Ripple effect on click */
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transform: scale(0);
  animation: rippleEffect 0.6s ease-out;
  pointer-events: none;
}

@keyframes rippleEffect {
  to { transform: scale(4); opacity: 0; }
}

/* === TICKER / MARQUEE === */
.ticker {
  background: var(--dark);
  padding: 1rem 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  position: relative;
}

.ticker--cream {
  background: var(--cream);
  border-color: var(--red);
}

.ticker__content {
  display: inline-flex;
  animation: tickerScroll 25s linear infinite;
  will-change: transform;
}

.ticker__item {
  font-family: var(--font-impact);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0 2rem;
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}

.ticker--cream .ticker__item {
  color: var(--dark);
}

.ticker__separator {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

/* Ticker text style variants — Dark bg */
.ticker__item--fill {
  color: var(--gold);
}

.ticker__item--outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gold);
  letter-spacing: 0.08em;
}

/* Ticker text style variants — Cream bg */
.ticker--cream .ticker__item--fill-dark {
  color: var(--dark);
}

.ticker--cream .ticker__item--outline-dark {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--dark);
  letter-spacing: 0.08em;
}

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

/* === SECTION COMMONS === */
.section {
  padding: var(--space-3xl) var(--space-xl);
  position: relative;
}

.section--dark {
  background: var(--dark);
  color: var(--cream);
}

.section--cream {
  background: var(--cream);
  color: var(--dark);
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section__overline {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: var(--space-sm);
  display: block;
}

.section__title {
  font-family: var(--font-impact);
  font-size: clamp(3rem, 7vw, 6rem);
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: var(--space-sm);
}

.section__title--outline {
  -webkit-text-stroke: 2px currentColor;
  color: transparent;
  transition: color 1s var(--ease-out);
}

.section__title--outline.filled {
  color: currentColor;
  -webkit-text-stroke: 0;
}

.section__subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.3rem);
  opacity: 0.7;
  max-width: 500px;
  margin: 0 auto;
}

.section__divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin: var(--space-md) 0;
}

.section__divider-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
}

.section__divider-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  transform: rotate(45deg);
}

/* === MENU SECTION === */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.menu-tab {
  padding: 0.75rem 2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
  transition: all 0.3s var(--ease-out);
  cursor: pointer;
}

.menu-tab:hover {
  background: var(--dark);
  color: var(--cream);
}

.menu-tab.active {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  max-width: 1200px;
  margin: 0 auto;
}

/* === PRODUCT CARD === */
.product-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  box-shadow: var(--shadow-sm);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-card:hover .product-card__img {
  transform: scale(1.06);
}

.product-card:hover .product-card__overlay {
  opacity: 1;
}

.product-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--dark);
}

.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.product-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(38,38,38,0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: var(--space-md);
}

.product-card__quick-add {
  padding: 0.7rem 1.5rem;
  background: var(--gold);
  color: var(--dark);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.3s var(--ease-out) 0.1s;
}

.product-card:hover .product-card__quick-add {
  transform: translateY(0);
  opacity: 1;
}

.product-card__badge {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  padding: 0.35rem 0.8rem;
  background: var(--red);
  color: white;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 3;
}

.product-card__body {
  padding: var(--space-md);
}

.product-card__name {
  font-family: var(--font-impact);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.product-card__weight {
  font-size: 0.8rem;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.product-card__desc {
  font-size: 0.85rem;
  color: #777;
  line-height: 1.5;
  margin-bottom: var(--space-sm);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card__price {
  font-family: var(--font-impact);
  font-size: 2.2rem;
  color: var(--dark);
  letter-spacing: 0.02em;
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 0.1rem;
}

.product-card__price::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 8px;
  background: var(--gold);
  opacity: 0.25;
  border-radius: 2px;
  z-index: -1;
}

.product-card__price-currency {
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 800;
}

.product-card__add-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.3s var(--ease-out);
}

.product-card__add-btn:hover {
  background: var(--gold);
  color: var(--dark);
  transform: rotate(90deg) scale(1.1);
}

.product-card__add-btn.added {
  background: var(--red);
  color: white;
  animation: addedPop 0.4s var(--ease-out);
}

@keyframes addedPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

/* === TACO CARD (special wider layout) === */
.taco-card {
  background: var(--dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: var(--shadow-lg);
  max-width: 900px;
  margin: 0 auto;
}

.taco-card__img-wrap {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.taco-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.taco-card:hover .taco-card__img {
  transform: scale(1.05);
}

.taco-card__content {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--cream);
}

.taco-card__name {
  font-family: var(--font-impact);
  font-size: 2.2rem;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-xs);
  letter-spacing: 0.04em;
}

.taco-card__subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  opacity: 0.8;
  margin-bottom: var(--space-md);
}

.taco-card__details {
  margin-bottom: var(--space-md);
}

.taco-card__detail-title {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.5rem;
  margin-top: 1rem;
}

.taco-card__detail-title:first-child {
  margin-top: 0;
}

.taco-card__detail-item {
  font-size: 0.9rem;
  color: rgba(254, 227, 208, 0.75);
  padding: 0.2rem 0;
}

.taco-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(254,227,208,0.15);
}

.taco-card__price {
  font-family: var(--font-impact);
  font-size: 2rem;
  color: var(--cream);
}

.taco-card__price-unit {
  font-size: 0.9rem;
  color: var(--gold);
  font-family: var(--font-body);
}

.taco-card__add-btn {
  padding: 0.8rem 2rem;
  background: var(--gold);
  color: var(--dark);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s var(--ease-out);
}

.taco-card__add-btn:hover {
  background: var(--gold-light);
  transform: scale(1.05);
  box-shadow: var(--shadow-gold);
}

/* === ABOUT SECTION === */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

.about__img-side {
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

.about__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  will-change: transform;
}

.about__content-side {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-2xl);
}

.about__overline {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.about__title {
  font-family: var(--font-impact);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: var(--space-md);
}

.about__text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--dark-soft);
  margin-bottom: var(--space-md);
  max-width: 480px;
}

.about__socials {
  display: flex;
  gap: 1rem;
  margin-top: var(--space-md);
}

.about__social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border: 2px solid var(--dark);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s var(--ease-out);
}

.about__social-link:hover {
  background: var(--dark);
  color: var(--cream);
  transform: translateY(-2px);
}

/* === CATERING SECTION (Centered + Float Images) === */
.catering {
  background: var(--dark);
  padding: var(--space-3xl) var(--space-xl);
  position: relative;
  overflow: hidden;
}

.catering__centered {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.catering__float-img {
  position: absolute;
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 3px solid rgba(233, 162, 41, 0.4);
  z-index: 0;
  opacity: 0.4;
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

.catering__centered:hover .catering__float-img {
  opacity: 0.6;
}

.catering__float-img--1 {
  top: 0;
  left: -60px;
  transform: rotate(-8deg);
}

.catering__float-img--2 {
  top: 10%;
  right: -60px;
  transform: rotate(6deg);
}

.catering__float-img--3 {
  bottom: 15%;
  left: -40px;
  transform: rotate(4deg);
}

.catering__float-img--4 {
  bottom: 5%;
  right: -50px;
  transform: rotate(-5deg);
}

.catering__menu-card {
  position: relative;
  z-index: 2;
  background: rgba(38, 38, 38, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(233, 162, 41, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  text-align: center;
  color: var(--cream);
}

.catering__title {
  font-family: var(--font-impact);
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
  line-height: 0.95;
}

.catering__subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  opacity: 0.8;
  margin-bottom: var(--space-lg);
}

.catering__menu-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  text-align: left;
  margin-bottom: var(--space-md);
}

.catering__menu-group {
  margin-bottom: var(--space-md);
}

.catering__menu-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.catering__menu-title::before {
  content: '';
  width: 12px;
  height: 2px;
  background: var(--red);
}

.catering__menu-items {
  font-size: 0.9rem;
  color: rgba(254,227,208,0.7);
  line-height: 1.8;
}

.catering__cta {
  margin-top: var(--space-xl);
}

.catering__event-types {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-top: var(--space-md);
  justify-content: center;
}

.catering__event-tag {
  padding: 0.5rem 1rem;
  border: 1px solid rgba(254,227,208,0.2);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  color: var(--cream);
  font-weight: 500;
  transition: all 0.3s;
}

.catering__event-tag:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(233,162,41,0.1);
}

/* === FOOTER === */
.footer {
  background: var(--cream);
  padding: var(--space-2xl) var(--space-xl) var(--space-lg);
  border-top: 3px solid var(--gold);
  position: relative;
  overflow: hidden;
}

.footer__fire-canvas {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.footer__left {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__link {
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s;
}

.footer__link:hover {
  color: var(--gold);
}

.footer__center {
  text-align: center;
}

.footer__logo-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  margin: 0 auto var(--space-sm);
}

.footer__brand {
  font-family: var(--font-impact);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
}

.footer__right {
  text-align: right;
}

.footer__social-links {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
  margin-bottom: var(--space-sm);
}

.footer__social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-out);
  font-size: 1rem;
}

.footer__social-icon:hover {
  background: var(--dark);
  color: var(--cream);
  transform: translateY(-2px);
}

.footer__bottom {
  text-align: center;
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(38,38,38,0.1);
  font-size: 0.8rem;
  color: #999;
  position: relative;
  z-index: 1;
}

/* === CART SLIDE-OUT === */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(38, 38, 38, 0.6);
  backdrop-filter: blur(4px);
  z-index: var(--z-cart);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 90vw;
  height: 100vh;
  background: white;
  z-index: calc(var(--z-cart) + 1);
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.cart-panel.active {
  transform: translateX(0);
}

.cart-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  border-bottom: 2px solid var(--cream);
  flex-shrink: 0;
}

.cart-panel__title {
  font-family: var(--font-impact);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
}

.cart-panel__close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s var(--ease-out);
}

.cart-panel__close:hover {
  background: var(--dark);
  color: var(--cream);
  transform: rotate(90deg);
}

.cart-panel__items {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-md) var(--space-lg);
}

.cart-panel__empty {
  text-align: center;
  padding: var(--space-2xl) var(--space-md);
  color: #aaa;
}

.cart-panel__empty-icon {
  font-size: 3rem;
  margin-bottom: var(--space-sm);
  opacity: 0.3;
}

.cart-panel__empty-text {
  font-size: 1rem;
  margin-bottom: var(--space-md);
}

/* Cart Item */
.cart-item {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: var(--space-sm);
  align-items: center;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  animation: cartItemIn 0.3s var(--ease-out);
}

@keyframes cartItemIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.cart-item__img {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.cart-item__info {
  min-width: 0;
}

.cart-item__name {
  font-family: var(--font-impact);
  font-size: 1rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.15rem;
}

.cart-item__price {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 700;
}

.cart-item__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.cart-item__qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid #ddd;
  border-radius: var(--radius-full);
  padding: 0.2rem 0.4rem;
}

.cart-item__qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  transition: background 0.2s;
  color: var(--dark);
}

.cart-item__qty-btn:hover {
  background: var(--cream);
}

.cart-item__qty-val {
  font-weight: 700;
  font-size: 0.9rem;
  min-width: 20px;
  text-align: center;
}

.cart-item__remove {
  font-size: 0.75rem;
  color: var(--red);
  font-weight: 600;
  transition: opacity 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cart-item__remove:hover {
  opacity: 0.7;
}

/* Cart Footer */
.cart-panel__footer {
  padding: var(--space-md) var(--space-lg);
  border-top: 2px solid var(--cream);
  flex-shrink: 0;
  background: white;
}

.cart-panel__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-md);
}

.cart-panel__total-label {
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cart-panel__total-value {
  font-family: var(--font-impact);
  font-size: 2rem;
  color: var(--dark);
}

.cart-panel__checkout-btn {
  width: 100%;
  padding: 1.1rem;
  font-size: 1rem;
}

.cart-panel__whatsapp-icon {
  font-size: 1.2rem;
}

/* === MOBILE BOTTOM BAR === */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  z-index: var(--z-mobile-bar);
  padding: 0.5rem 1rem;
  padding-bottom: calc(0.5rem + env(safe-area-inset-bottom, 0px));
  border-top: 2px solid var(--gold);
}

.mobile-bar__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.mobile-bar__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem;
  color: var(--cream);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.2s;
  border-radius: var(--radius-sm);
  position: relative;
}

.mobile-bar__btn:hover,
.mobile-bar__btn.active {
  color: var(--gold);
}

.mobile-bar__btn-icon {
  font-size: 1.3rem;
}

.mobile-bar__btn .nav__cart-badge {
  position: absolute;
  top: 0;
  right: calc(50% - 20px);
}

/* Order Now special */
.mobile-bar__btn--order {
  background: var(--gold);
  color: var(--dark);
  border-radius: var(--radius-full);
  padding: 0.6rem 1rem;
}

.mobile-bar__btn--order:hover {
  color: var(--dark);
  background: var(--gold-light);
}

/* === SCROLL ANIMATIONS (initial states) === */
[data-animate] {
  opacity: 0;
}

[data-animate="fade-up"] {
  transform: translateY(40px);
}

[data-animate="fade-left"] {
  transform: translateX(-40px);
}

[data-animate="fade-right"] {
  transform: translateX(40px);
}

[data-animate="scale-in"] {
  transform: scale(0.9);
}

[data-animate="clip-reveal"] {
  clip-path: inset(100% 0 0 0);
}

/* === FIXED BOTTOM CART BAR === */
.cart-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-fixed);
  background: var(--dark);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.5rem;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  border-top: 2px solid var(--gold);
}

.cart-bottom-bar.visible {
  transform: translateY(0);
}

.cart-bottom-bar__info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.cart-bottom-bar__count {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.7;
  font-weight: 600;
}

.cart-bottom-bar__total {
  font-family: var(--font-impact);
  font-size: 1.3rem;
  color: var(--gold);
  letter-spacing: 0.03em;
}

.cart-bottom-bar__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  background: var(--gold);
  color: var(--dark);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all 0.3s var(--ease-out);
  cursor: pointer;
  border: none;
}

.cart-bottom-bar__btn:hover {
  background: var(--gold-light);
  transform: scale(1.05);
  box-shadow: var(--shadow-gold);
}

/* === RESPONSIVE === */
@media (max-width: 1199px) {
  .hero {
    grid-template-columns: 1fr 1fr;
  }

  .hero__left {
    padding: var(--space-xl) var(--space-lg);
  }

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

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

@media (max-width: 767px) {
  :root {
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
  }

  .nav {
    padding: 0.75rem 1rem;
  }

  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav__cart-btn {
    padding: 0.5rem 0.8rem;
    font-size: 0;
  }

  .nav__cart-btn svg {
    width: 20px;
    height: 20px;
  }

  /* Hero Sequence Mobile */
  .hero-sequence {
    height: 150vh; /* Much shorter scroll distance on mobile */
  }

  .hero-sequence__container {
    height: 100vh; /* Full screen but shorter scroll */
  }

  /* Menu */
  .menu-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .menu-tabs {
    padding: 0 var(--space-sm);
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .menu-tabs::-webkit-scrollbar {
    display: none;
  }

  .menu-tab {
    flex-shrink: 0;
  }

  /* Taco Card Mobile */
  .taco-card {
    grid-template-columns: 1fr;
  }

  .taco-card__img-wrap {
    min-height: 250px;
  }

  /* About */
  .about {
    grid-template-columns: 1fr;
  }

  .about__img-side {
    min-height: 50vh;
  }

  .about__content-side {
    padding: var(--space-xl) var(--space-md);
    text-align: center;
    align-items: center;
  }

  .about__socials {
    justify-content: center;
  }

  /* Catering */
  .catering__menu-columns {
    grid-template-columns: 1fr;
  }

  .catering__float-img {
    width: 120px;
    height: 120px;
  }

  .catering__float-img--1 {
    left: -30px;
    top: -20px;
  }

  .catering__float-img--2 {
    right: -30px;
  }

  .catering__float-img--3 {
    left: -20px;
  }

  .catering__float-img--4 {
    right: -20px;
  }

  .catering__menu-card {
    padding: var(--space-lg) var(--space-md);
  }

  /* Footer */
  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-lg);
  }

  .footer__right {
    text-align: center;
  }

  .footer__social-links {
    justify-content: center;
  }

  /* Mobile Bottom Bar */
  .mobile-bar {
    display: block;
  }

  body {
    padding-bottom: 0;
  }

  /* Cart */
  .cart-panel {
    width: 100vw;
    max-width: 100vw;
  }

  /* Section padding */
  .section {
    padding: var(--space-2xl) var(--space-md);
  }

  .section__title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  /* Mobile Menu links */
  .mobile-menu__link {
    font-size: 2.2rem;
  }
}

@media (max-width: 400px) {
  .hero__title {
    font-size: 2.8rem;
  }

  .product-card__name {
    font-size: 1.3rem;
  }

  .product-card__price {
    font-size: 1.5rem;
  }
}

/* === UTILITY CLASSES === */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.text-gold { color: var(--gold); }
.text-red { color: var(--red); }
.text-cream { color: var(--cream); }

/* === DECORATIVE ELEMENTS === */
.deco-line {
  width: 60px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

.deco-diamond {
  width: 10px;
  height: 10px;
  background: var(--red);
  transform: rotate(45deg);
  display: inline-block;
}

/* Noise texture overlay for sections */
.section--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.section--dark > * {
  position: relative;
  z-index: 1;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: var(--dark);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* ============================================================
   CHECKOUT MULTI-STEP — Chef Gordo Foodie
   ============================================================ */

/* Step indicator */
.cart-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.checkout-steps {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  padding: 4px 0;
}

.checkout-step {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: #999;
  transition: color 0.2s;
}

.checkout-step.active { color: var(--dark); }
.checkout-step.done .checkout-step__num { background: #22c55e; color: #fff; }

.checkout-step__num {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #e5e5e5;
  color: #888;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}

.checkout-step.active .checkout-step__num {
  background: var(--dark, #1a1a1a);
  color: #fff;
}

.checkout-step__line {
  flex: 1;
  height: 1px;
  background: #ddd;
  min-width: 12px;
}

/* Cart steps */
.cart-step {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
}

/* Checkout form */
.checkout-form {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.checkout-section-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #666;
  margin-bottom: 12px;
}

.checkout-field {
  margin-bottom: 12px;
}

.checkout-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: #555;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.checkout-input {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  background: #fff;
  color: #1a1a1a;
  transition: border-color 0.15s;
  outline: none;
  -webkit-appearance: none;
}

.checkout-input:focus { border-color: var(--dark, #1a1a1a); }

/* Payment methods */
.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.payment-method input[type="radio"] { display: none; }

.payment-method__card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 2px solid #e5e5e5;
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  background: #fff;
}

.payment-method input:checked + .payment-method__card {
  border-color: var(--dark, #1a1a1a);
  background: #f9f9f9;
}

.payment-method__icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(37,211,102,0.12);
  color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.payment-method__info { flex: 1; }
.payment-method__name { font-size: 13px; font-weight: 700; color: #1a1a1a; }
.payment-method__desc { font-size: 11px; color: #888; margin-top: 1px; }

.payment-method__check {
  font-size: 16px;
  color: var(--dark, #1a1a1a);
  opacity: 0;
  transition: opacity 0.15s;
}
.payment-method input:checked + .payment-method__card .payment-method__check { opacity: 1; }

/* Total bar */
.checkout-total-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1a1a1a;
  color: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
}
.checkout-total-val {
  font-size: 20px;
  font-weight: 800;
  color: #F97316;
}

/* Checkout nav buttons */
.checkout-nav {
  padding: 14px 16px;
  display: flex;
  gap: 8px;
  border-top: 1px solid #eee;
}
.checkout-nav .btn { flex: 1; justify-content: center; }

/* Payment flow screens */
.payment-flow {
  padding: 24px 16px 16px;
  text-align: center;
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.pay-flow-icon { font-size: 48px; margin-bottom: 12px; }
.pay-flow-title { font-size: 18px; font-weight: 800; margin-bottom: 8px; color: #1a1a1a; }
.pay-flow-desc { font-size: 13px; color: #666; line-height: 1.6; margin-bottom: 20px; }

.pay-summary {
  background: #f5f5f5;
  border-radius: 10px;
  padding: 14px;
  font-size: 13px;
  text-align: left;
  margin-bottom: 20px;
  color: #333;
  line-height: 1.8;
}

.pay-confirm-btn {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 15px;
  border-radius: 10px;
}

/* Pago Móvil data */
.pago-movil-data {
  background: #f0f4ff;
  border: 1.5px solid #c7d7ff;
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 16px;
  text-align: left;
}

.pm-data-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid #e0e8ff;
  font-size: 13px;
  gap: 8px;
}
.pm-data-row:last-child { border-bottom: none; }

.pm-label { font-weight: 600; color: #555; flex-shrink: 0; }
.pm-val { color: #1a1a1a; font-weight: 500; text-align: right; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; justify-content: flex-end; }

.pm-copy-btn {
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 4px;
  background: #1a1a1a;
  color: #fff;
  font-family: inherit;
  cursor: pointer;
  border: none;
  font-weight: 600;
}

.pm-monto-row { background: rgba(249,115,22,0.06); border-radius: 6px; padding: 8px 6px !important; }
.pm-monto { font-size: 16px; font-weight: 800; color: #F97316; }
.pm-tasa-note { font-size: 11px; color: #888; margin-top: 6px; font-style: italic; }

/* Success screen */
#cart-step-success .pay-flow-icon { font-size: 64px; margin-bottom: 16px; }
#cart-step-success { overflow-y: auto; }
