/* ==========================================================================
   SHAWARMAS IMPERIO — Street Food Brutalist Design System
   Barranco, Lima - Perú
   Zero Emojis. Zero AI Builder Slop.
   ========================================================================== */

:root {
  --bg-main: #f5f2eb;
  --bg-surface: #ffffff;
  --bg-dark: #121212;
  --bg-card: #ffffff;
  
  --text-main: #121212;
  --text-muted: #5c5a55;
  --text-light: #f5f2eb;
  
  --brand-yellow: #ffcb05;
  --brand-yellow-hover: #e5b600;
  --brand-red: #e02f23;
  --brand-red-dark: #b81e14;
  --brand-green: #1d7c3f;
  --brand-whatsapp: #25d366;
  --brand-whatsapp-hover: #20ba59;
  
  --border-thick: 3px solid #121212;
  --border-medium: 2px solid #121212;
  --border-thin: 1px solid #121212;
  
  --shadow-hard-sm: 3px 3px 0px #121212;
  --shadow-hard-md: 5px 5px 0px #121212;
  --shadow-hard-lg: 8px 8px 0px #121212;
  
  --font-heading: 'Bebas Neue', Impact, sans-serif;
  --font-accent: 'Syne', sans-serif;
  --font-body: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 90px; /* space for sticky mobile order bar */
}

/* Background subtle street grain */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.035;
  background-image: radial-gradient(#000 1px, transparent 1px);
  background-size: 8px 8px;
  z-index: 9999;
}

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

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

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

/* ==========================================================================
   TICKER / TOP BAR
   ========================================================================== */

.top-bar {
  background-color: var(--bg-dark);
  color: var(--brand-yellow);
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 2px solid var(--brand-yellow);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 8px 0;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: tickerScroll 28s linear infinite;
}

.ticker-content {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-right: 20px;
}

.ticker-separator {
  color: var(--brand-red);
  font-weight: 900;
}

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

/* ==========================================================================
   SITE HEADER
   ========================================================================== */

.site-header {
  background-color: var(--bg-main);
  border-bottom: var(--border-thick);
  position: sticky;
  top: 0;
  z-index: 900;
}

.header-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand-link {
  display: flex;
  align-items: center;
}

.brand-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-item {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 6px 4px;
  position: relative;
  transition: color 0.15s ease;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background-color: var(--brand-red);
  transition: width 0.2s ease;
}

.nav-item:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Common Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 10px 18px;
  border: var(--border-medium);
  box-shadow: var(--shadow-hard-sm);
  transition: transform 0.1s ease, box-shadow 0.1s ease, background-color 0.15s ease;
  user-select: none;
}

.btn:hover {
  transform: translate(-1px, -1px);
  box-shadow: var(--shadow-hard-md);
}

.btn:active {
  transform: translate(2px, 2px);
  box-shadow: none;
}

.btn-black {
  background-color: var(--bg-dark);
  color: #ffffff;
}

.btn-black:hover {
  background-color: #222222;
}

.btn-yellow {
  background-color: var(--brand-yellow);
  color: var(--bg-dark);
}

.btn-yellow:hover {
  background-color: var(--brand-yellow-hover);
}

.btn-dark {
  background-color: var(--bg-dark);
  color: #ffffff;
}

.btn-outline {
  background-color: #ffffff;
  color: var(--bg-dark);
}

.btn-secondary {
  background-color: #eae7dd;
  color: var(--bg-dark);
}

.btn-whatsapp {
  background-color: var(--brand-whatsapp);
  color: #ffffff;
}

.btn-whatsapp:hover {
  background-color: var(--brand-whatsapp-hover);
}

.btn-sm {
  padding: 7px 12px;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

.icon-svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.icon-arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.btn:hover .icon-arrow {
  transform: translate(2px, -2px);
}

/* Cart Trigger Button in Header */
.btn-cart-trigger {
  position: relative;
  padding: 8px 14px;
}

.cart-label {
  font-weight: 800;
}

.cart-badge {
  background-color: var(--brand-red);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  min-width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #121212;
  padding: 0 4px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 40px 20px 60px 20px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 32px;
  align-items: stretch;
}

.hero-main-box {
  background-color: #ffffff;
  border: var(--border-thick);
  box-shadow: var(--shadow-hard-lg);
  padding: 36px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.stamp-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  background-color: var(--brand-yellow);
  color: var(--bg-dark);
  border: var(--border-medium);
}

.stamp-tag-inverted {
  background-color: var(--bg-dark);
  color: #ffffff;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3.2rem, 7vw, 5.4rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--bg-dark);
  margin-bottom: 18px;
}

.hero-subtext {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 28px;
  max-width: 600px;
}

.hero-features-list {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: var(--bg-main);
  border: var(--border-medium);
  padding: 14px 18px;
  margin-bottom: 30px;
}

.feature-badge {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-box {
  background-color: var(--bg-dark);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  padding: 4px 10px;
  line-height: 1;
  border: var(--border-thin);
}

.feature-info strong {
  display: block;
  font-size: 0.9rem;
  line-height: 1.1;
}

.feature-info small {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.feature-divider {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--brand-red);
  padding: 0 4px;
}

.feature-badge-highlight .feature-box {
  background-color: var(--brand-red);
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Hero Poster Card */
.hero-side-box {
  display: flex;
}

.street-poster-card {
  width: 100%;
  background-color: var(--brand-yellow);
  border: var(--border-thick);
  box-shadow: var(--shadow-hard-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.poster-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--bg-dark);
  border-bottom: var(--border-medium);
  padding-bottom: 12px;
}

.dot-indicator {
  width: 8px;
  height: 8px;
  background-color: var(--brand-red);
  border: 1.5px solid var(--bg-dark);
  display: inline-block;
}

.poster-logo-container {
  background-color: #ffffff;
  border: var(--border-thick);
  padding: 20px;
  margin: 24px 0;
  box-shadow: var(--shadow-hard-sm);
}

.poster-logo {
  width: 100%;
  max-height: 120px;
  object-fit: contain;
}

.poster-notice {
  background-color: #ffffff;
  border: var(--border-medium);
  padding: 16px;
  margin-bottom: 20px;
}

.notice-title {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--brand-red);
  margin-bottom: 4px;
}

.notice-address {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--bg-dark);
  line-height: 1.2;
}

.notice-district {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.poster-action-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ==========================================================================
   SIZES COMPARISON BANNER
   ========================================================================== */

.sizes-banner {
  max-width: 1240px;
  margin: 0 auto 60px auto;
  padding: 0 20px;
}

.banner-box {
  background-color: var(--bg-dark);
  color: #ffffff;
  border: var(--border-thick);
  box-shadow: var(--shadow-hard-lg);
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 40px;
  align-items: center;
}

.banner-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--brand-yellow);
  margin-bottom: 8px;
}

.banner-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 0.95;
  margin-bottom: 14px;
}

.banner-desc {
  color: #b0ada6;
  font-size: 0.95rem;
  line-height: 1.5;
}

.banner-sizes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.size-card {
  background-color: #1e1e1e;
  border: 2px solid #333333;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.size-card-mafia {
  background-color: #242424;
  border: 2px solid var(--brand-yellow);
  position: relative;
}

.size-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}

.size-tag {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #888888;
}

.tag-heavy {
  color: var(--brand-yellow);
}

.size-length {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  line-height: 1;
  color: #ffffff;
}

.size-card-mafia .size-length {
  color: var(--brand-yellow);
}

.size-name {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 6px;
}

.size-desc {
  font-size: 0.85rem;
  color: #b0ada6;
  line-height: 1.4;
  margin-bottom: 16px;
}

.size-price-range {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  background-color: #000000;
  padding: 4px 10px;
  border-left: 3px solid var(--brand-yellow);
}

/* ==========================================================================
   MENU SECTION
   ========================================================================== */

.section-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.menu-section {
  padding: 40px 0 70px 0;
}

.section-header-box {
  border-bottom: var(--border-thick);
  padding-bottom: 20px;
  margin-bottom: 36px;
}

.header-pretitle {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--brand-red);
  margin-bottom: 6px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--bg-dark);
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 700px;
}

.shawarma-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 26px;
}

.menu-card {
  background-color: var(--bg-surface);
  border: var(--border-thick);
  box-shadow: var(--shadow-hard-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.menu-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hard-lg);
}

.menu-card-popular {
  border-color: var(--brand-red);
}

.menu-card-imperio {
  border-color: #121212;
  background: linear-gradient(180deg, #fffcf0 0%, #ffffff 100%);
}

.card-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  border-bottom: var(--border-medium);
  background-color: #faf9f5;
}

.category-badge {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  background-color: var(--bg-dark);
  color: #ffffff;
}

.badge-red {
  background-color: var(--brand-red);
  color: #ffffff;
}

.badge-green {
  background-color: var(--brand-green);
  color: #ffffff;
}

.badge-yellow {
  background-color: var(--brand-yellow);
  color: var(--bg-dark);
  border: 1.5px solid var(--bg-dark);
}

.card-id {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: #888888;
}

.card-body {
  padding: 22px 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.item-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--bg-dark);
}

.item-eng {
  font-size: 0.8rem;
  font-weight: 700;
  color: #7a776f;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.item-description {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 22px;
  flex-grow: 1;
}

/* Pricing selector inside each card */
.pricing-selector-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: auto;
}

.size-option-label {
  cursor: pointer;
}

.size-option-label input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.size-option-box {
  border: var(--border-medium);
  padding: 8px 10px;
  background-color: #f7f6f0;
  display: flex;
  flex-direction: column;
  transition: all 0.15s ease;
}

.size-option-box .opt-name {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.size-option-box .opt-price {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  line-height: 1;
  color: var(--bg-dark);
}

.size-option-label input[type="radio"]:checked + .size-option-box {
  background-color: var(--brand-yellow);
  border-color: var(--bg-dark);
  box-shadow: 2px 2px 0px var(--bg-dark);
}

.size-option-label input[type="radio"]:checked + .size-option-box .opt-name {
  color: var(--bg-dark);
}

.card-footer {
  padding: 16px 20px 20px 20px;
  border-top: var(--border-thin);
  background-color: #ffffff;
}

.plus-sign {
  font-size: 1.3rem;
  line-height: 1;
  font-weight: 900;
}

/* ==========================================================================
   EXTRAS / SALSAS SECTION
   ========================================================================== */

.extras-section {
  padding: 50px 0 70px 0;
  background-color: #ece8dc;
  border-top: var(--border-thick);
  border-bottom: var(--border-thick);
}

.salsas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.salsa-card {
  background-color: #ffffff;
  border: var(--border-thick);
  box-shadow: var(--shadow-hard-md);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
}

.salsa-card-highlight {
  background-color: var(--brand-yellow);
}

.salsa-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  margin-bottom: 14px;
  border: var(--border-thin);
}

.badge-red-dark {
  background-color: var(--brand-red);
  color: #ffffff;
}

.badge-yellow-dark {
  background-color: #ffb700;
  color: var(--bg-dark);
}

.badge-white {
  background-color: #ffffff;
  color: var(--bg-dark);
}

.badge-black {
  background-color: var(--bg-dark);
  color: #ffffff;
}

.salsa-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  line-height: 0.9;
  letter-spacing: 0.02em;
}

.salsa-subtitle {
  font-size: 0.85rem;
  font-weight: 700;
  color: #555555;
  margin-bottom: 12px;
}

.salsa-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 20px;
  flex-grow: 1;
}

.salsa-card-highlight .salsa-desc {
  color: #2b2b2b;
}

.salsa-footer-tag {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--bg-dark);
  border-top: var(--border-thin);
  padding-top: 10px;
}

/* ==========================================================================
   DRINKS SECTION (Pa' beber — todo a 5)
   ========================================================================== */

.drinks-section {
  padding: 60px 0 80px 0;
}

.drinks-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 36px;
  align-items: center;
}

.drinks-info-col {
  background-color: #ffffff;
  border: var(--border-thick);
  box-shadow: var(--shadow-hard-lg);
  padding: 36px;
}

.drinks-price-box {
  background-color: var(--brand-red);
  color: #ffffff;
  border: var(--border-medium);
  padding: 14px 20px;
  margin-bottom: 24px;
  display: inline-block;
  box-shadow: var(--shadow-hard-sm);
}

.price-box-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.price-box-val {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  line-height: 0.9;
  letter-spacing: 0.02em;
}

.price-box-sub {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0.9;
}

.drinks-heading {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 4.2rem);
  line-height: 0.95;
  margin-bottom: 12px;
}

.drinks-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.drinks-grid-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.drink-item-card {
  background-color: #ffffff;
  border: var(--border-thick);
  box-shadow: var(--shadow-hard-sm);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: transform 0.12s ease;
}

.drink-item-card:hover {
  transform: translateX(4px);
}

.drink-code {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #888888;
}

.drink-name {
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.02em;
}

.drink-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.drink-item-action {
  display: flex;
  align-items: center;
  gap: 14px;
}

.drink-price-tag {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--brand-red);
  line-height: 1;
}

/* ==========================================================================
   LOCATION SECTION
   ========================================================================== */

.location-section {
  padding: 0 0 70px 0;
}

.location-card {
  background-color: var(--bg-dark);
  color: #ffffff;
  border: var(--border-thick);
  box-shadow: var(--shadow-hard-lg);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
}

.location-content {
  padding: 44px;
  border-right: var(--border-thick);
}

.location-header-tag {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--brand-yellow);
  margin-bottom: 8px;
}

.location-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 4.4rem);
  line-height: 0.95;
  margin-bottom: 20px;
}

.address-callout {
  background-color: #1f1f1f;
  border-left: 5px solid var(--brand-yellow);
  padding: 16px 20px;
  margin-bottom: 22px;
}

.address-line-main {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  line-height: 1;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.address-line-sub {
  font-size: 0.95rem;
  color: #b8b5ad;
  font-weight: 600;
}

.location-notes {
  font-size: 1rem;
  color: #b0ada6;
  line-height: 1.5;
  margin-bottom: 30px;
  max-width: 580px;
}

.location-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.location-buttons .btn-black {
  background-color: var(--brand-yellow);
  color: var(--bg-dark);
}

.location-buttons .btn-black:hover {
  background-color: var(--brand-yellow-hover);
}

.location-data-box {
  background-color: #181818;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.data-block {
  border-bottom: 1px solid #333333;
  padding-bottom: 16px;
}

.data-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--brand-yellow);
  margin-bottom: 4px;
}

.data-value {
  font-size: 1.05rem;
  color: #ffffff;
  font-weight: 600;
}

.phone-highlight {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--brand-whatsapp);
  letter-spacing: 0.04em;
  display: inline-block;
  line-height: 1;
}

.phone-highlight:hover {
  text-decoration: underline;
}

.data-stamp {
  background-color: #000000;
  border: 1.5px dashed #444444;
  padding: 12px;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #999999;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  background-color: #ffffff;
  border-top: var(--border-thick);
  padding: 40px 0 20px 0;
}

.footer-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-brand {
  margin-bottom: 28px;
}

.footer-logo {
  height: 48px;
  width: auto;
  margin-bottom: 10px;
}

.footer-tagline {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  border-top: var(--border-thin);
  border-bottom: var(--border-thin);
  padding: 18px 0;
  margin-bottom: 24px;
}

.footer-meta-item strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: #888888;
}

.footer-meta-item span,
.footer-meta-item a {
  font-size: 0.95rem;
  font-weight: 700;
}

.footer-meta-item a:hover {
  color: var(--brand-red);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #888888;
}

/* ==========================================================================
   STICKY BOTTOM ORDER BAR
   ========================================================================== */

.sticky-order-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--bg-dark);
  border-top: var(--border-thick);
  z-index: 850;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease;
}

.sticky-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sticky-info {
  display: flex;
  align-items: center;
  gap: 18px;
}

.sticky-count-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sticky-badge {
  background-color: var(--brand-red);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
}

.sticky-text {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #cccccc;
}

.sticky-total {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  line-height: 1;
  color: var(--brand-yellow);
  letter-spacing: 0.02em;
}

.sticky-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ==========================================================================
   MODALS & DRAWERS
   ========================================================================== */

.modal-overlay,
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  padding: 20px;
}

.modal-overlay.active,
.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Configuration Modal */
.modal-box {
  background-color: #ffffff;
  border: var(--border-thick);
  box-shadow: var(--shadow-hard-lg);
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  transform: translateY(20px);
  transition: transform 0.2s ease;
}

.modal-overlay.active .modal-box {
  transform: translateY(0);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px 24px;
  border-bottom: var(--border-thick);
  background-color: var(--brand-yellow);
}

.modal-tag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--bg-dark);
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  line-height: 1;
  color: var(--bg-dark);
}

.modal-close-btn {
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
  padding: 0 4px;
}

.modal-body {
  padding: 24px;
  overflow-y: auto;
  flex-grow: 1;
}

.modal-section {
  margin-bottom: 22px;
}

.modal-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.modal-label-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}

.modal-hint {
  font-size: 0.75rem;
  color: var(--brand-red);
  font-weight: 700;
}

.modal-size-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.modal-size-btn {
  border: var(--border-medium);
  padding: 10px;
  text-align: left;
  background-color: #f7f6f0;
  display: flex;
  flex-direction: column;
  transition: all 0.15s ease;
}

.modal-size-btn.selected {
  background-color: var(--bg-dark);
  color: #ffffff;
  border-color: var(--bg-dark);
}

.modal-size-btn .ms-title {
  font-size: 0.75rem;
  font-weight: 800;
}

.modal-size-btn .ms-price {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  line-height: 1;
  color: var(--brand-yellow);
}

.modal-sauces-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sauce-check-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: var(--border-thin);
  padding: 12px;
  background-color: #ffffff;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

.sauce-check-card:hover {
  background-color: #faf8f2;
}

.sauce-check-card input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--bg-dark);
  cursor: pointer;
}

.sauce-check-content {
  flex-grow: 1;
}

.sauce-name-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
}

.sauce-check-content strong {
  font-size: 0.88rem;
}

.sauce-check-content small {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.input-street {
  width: 100%;
  border: var(--border-medium);
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  background-color: #faf9f5;
}

.input-street:focus {
  outline: none;
  background-color: #ffffff;
  border-color: var(--brand-red);
}

.input-sm {
  padding: 8px 12px;
  font-size: 0.85rem;
}

.modal-footer {
  padding: 18px 24px;
  border-top: var(--border-thick);
  background-color: #faf9f5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.modal-subtotal span {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.modal-subtotal strong {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  line-height: 1;
  color: var(--bg-dark);
}

/* ==========================================================================
   DRAWER / CART MODAL
   ========================================================================== */

.drawer-box {
  background-color: #ffffff;
  border: var(--border-thick);
  box-shadow: var(--shadow-hard-lg);
  width: 100%;
  max-width: 560px;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
}

.drawer-header {
  background-color: var(--bg-dark);
  color: #ffffff;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: var(--border-thick);
}

.drawer-tag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--brand-yellow);
}

.drawer-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.02em;
}

.drawer-close-btn {
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
}

.drawer-body {
  padding: 20px 24px;
  overflow-y: auto;
  flex-grow: 1;
  min-height: 180px;
}

.cart-empty-state {
  text-align: center;
  padding: 40px 20px;
}

.empty-state-title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 8px;
}

.empty-state-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.cart-item-row {
  border: var(--border-medium);
  padding: 14px;
  margin-bottom: 12px;
  background-color: #faf9f5;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cir-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.cir-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  line-height: 1;
}

.cir-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  line-height: 1;
}

.cir-details {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.cir-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: var(--border-thin);
  padding-top: 8px;
  margin-top: 4px;
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-btn {
  width: 28px;
  height: 28px;
  background-color: var(--bg-dark);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
}

.qty-val {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  min-width: 20px;
  text-align: center;
}

.btn-remove-item {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--brand-red);
  letter-spacing: 0.04em;
  text-decoration: underline;
}

.drawer-footer {
  padding: 18px 24px;
  background-color: #faf9f5;
  border-top: var(--border-thick);
}

.order-mode-section {
  margin-bottom: 12px;
}

.mode-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.mode-toggle-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.mode-toggle {
  cursor: pointer;
}

.mode-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.mode-toggle span {
  display: block;
  border: var(--border-thin);
  padding: 6px 8px;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  background-color: #ffffff;
  transition: all 0.15s ease;
}

.mode-toggle input:checked + span {
  background-color: var(--bg-dark);
  color: #ffffff;
  border-color: var(--bg-dark);
}

.drawer-input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
}

.drawer-total-box {
  background-color: #ffffff;
  border: var(--border-medium);
  padding: 12px 16px;
  margin-bottom: 14px;
}

.drawer-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.drawer-total-row span {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.drawer-total-price {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--brand-red);
}

.drawer-total-hint {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.btn-clear-cart {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #888888;
  text-decoration: underline;
  padding: 4px;
}

.btn-clear-cart:hover {
  color: var(--brand-red);
}

/* ==========================================================================
   TOAST NOTIFICATION
   ========================================================================== */

.toast-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: var(--bg-dark);
  color: #ffffff;
  border: var(--border-medium);
  box-shadow: var(--shadow-hard-md);
  padding: 12px 20px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  z-index: 2000;
  transform: translateY(-80px);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
  max-width: 340px;
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  
  .banner-box {
    grid-template-columns: 1fr;
    padding: 28px;
    gap: 24px;
  }
  
  .drinks-layout {
    grid-template-columns: 1fr;
  }
  
  .location-card {
    grid-template-columns: 1fr;
  }
  
  .location-content {
    border-right: none;
    border-bottom: var(--border-thick);
    padding: 30px 20px;
  }
  
  .location-data-box {
    padding: 30px 20px;
  }
}

@media (max-width: 768px) {
  .site-header .nav-links {
    display: none; /* simple direct mobile nav */
  }

  .brand-logo-img {
    height: 40px;
  }

  .hero-main-box {
    padding: 24px 18px;
  }

  .banner-sizes-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-features-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .feature-divider {
    display: none;
  }

  .drawer-input-row {
    grid-template-columns: 1fr;
  }

  .sticky-text {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .hero-cta-group {
    flex-direction: column;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .location-buttons {
    flex-direction: column;
  }

  .location-buttons .btn {
    width: 100%;
  }

  .sticky-actions .btn {
    padding: 8px 12px;
    font-size: 0.8rem;
  }
}
