/* components.css — Section and component styles */

/* ═══════════════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  background-color: var(--orange);
  overflow: hidden;
  padding: 88px 0 108px;
  text-align: center;
}

/*
  ── HERO BACKGROUND PHOTO ──────────────────────────────────────────────
  Replace the background-image URL below with your own photo.
  Good photo ideas: mangonada close-up, elote, colorful paletas,
  storefront, or a flat-lay of your products.
  Recommended size: at least 1600x900 px.
  The opacity and mix-blend-mode keep it barely visible through the orange.
  Adjust opacity between 0.08 (almost invisible) and 0.22 (more visible).
  ───────────────────────────────────────────────────────────────────────
*/
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero/los-mangos-midway.jpg'); /* place los-mangos-midway.jpg in the same folder as this HTML file */
  background-size: cover;
  background-position: center center;
  opacity: 0.14;
  mix-blend-mode: luminosity;
  z-index: 0;
}

/* decorative circles */
.hero-circle-1 {
  position: absolute;
  width: 580px; height: 580px;
  border-radius: 50%;
  border: 72px solid rgba(255,207,45,0.12);
  top: -220px; right: -160px;
  pointer-events: none;
  z-index: 1;
}
.hero-circle-2 {
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: rgba(255,207,45,0.08);
  bottom: -160px; left: -100px;
  pointer-events: none;
  z-index: 1;
}

/* all content above background layers */
.hero-inner { position: relative; z-index: 2; }

.hero-badge {
  display: inline-block;
  background: rgba(255,207,45,0.22);
  color: #FFE680;
  border: 1.5px solid rgba(255,207,45,0.42);
  border-radius: 50px;
  padding: 5px 18px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  margin-bottom: 18px;
  animation: fadeD .5s ease both;
}
.hero h1 {
  color: #fff;
  margin-bottom: 12px;
  animation: fadeD .5s .08s ease both;
}
.hero h1 .acc { color: var(--yellow); }
.hero-sub {
  font-size: clamp(0.97rem, 2.2vw, 1.12rem);
  color: rgba(255,255,255,0.84);
  max-width: 500px;
  margin: 0 auto 30px;
  font-weight: 400;
  animation: fadeD .5s .16s ease both;
}
.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeD .5s .24s ease both;
}
@keyframes fadeD {
  from { opacity: 0; transform: translateY(-14px); }
  to   { opacity: 1; transform: none; }
}

/* wave dividers */
.wave { display: block; width: 100%; line-height: 0; }
.wave svg { display: block; width: 100%; }

/* ═══════════════════════════════════════════════════════════════════════
   MENU SECTION
═══════════════════════════════════════════════════════════════════════ */
.menu-section { background: var(--offwhite); padding: 80px 0; }

.section-intro { margin-bottom: 44px; }
.section-intro h2 { color: var(--text); margin-bottom: 8px; }
.section-intro p {
  color: var(--muted);
  font-size: 0.96rem;
  max-width: 500px;
  margin: 0 auto;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .menu-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 500px) { .menu-grid { grid-template-columns: 1fr; } }

.menu-card-items {
  list-style: none;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.menu-card-items li {
  font-size: 0.82rem;
  color: var(--mc-text, var(--fine));
  padding-left: 10px;
  position: relative;
}
.menu-card-items li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--mc-accent, var(--orange));
  font-weight: 700;
  font-size: 1rem;
}

.menu-card {
  background: var(--mc-bg, var(--white));
  border-radius: var(--radius-lg);
  padding: 28px 22px 24px;
  border: 1.5px solid var(--mc-border, rgba(0,0,0,0.07));
  box-shadow: 0 3px 18px rgba(0,0,0,0.05);
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.menu-card:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(0,0,0,0.1); }
.menu-card:focus-visible { outline: 2.5px solid var(--mc-accent, var(--orange)); outline-offset: 3px; }
.menu-card-emoji { font-size: 2.2rem; margin-bottom: 10px; display: block; }
.menu-card h3 {
  color: var(--mc-title, var(--orange));
  margin-bottom: 8px;
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  font-weight: 700;
}
.menu-card p { font-size: 0.87rem; color: var(--muted); line-height: 1.62; }
.menu-card-tap {
  margin-top: auto;
  padding-top: 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--mc-accent, var(--orange));
  opacity: 0.65;
  transition: opacity .15s;
  display: flex;
  align-items: center;
  gap: 4px;
}
.menu-card:hover .menu-card-tap { opacity: 1; }
.menu-card-badge {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 50px;
  padding: 3px 10px;
  margin-bottom: 9px;
  background: var(--mc-badge-bg, var(--orange-lt));
  color: var(--mc-badge-text, var(--orange-dk));
}

/* ── MENU CARD COLOR CLASSES ─────────────────────────────────────────── */
/* Specialties → Mango Orange */
.mc-orange {
  --mc-bg:         #FFF0E6;
  --mc-border:     rgba(247,107,28,0.22);
  --mc-badge-bg:   rgba(247,107,28,0.12);
  --mc-badge-text: #C85610;
  --mc-title:      #C85610;
  --mc-text:       #7A3A10;
  --mc-accent:     #F76B1C;
}
/* Ice Cream / Helado → Sky Blue (cold, classic) */
.mc-blue {
  --mc-bg:         #E6F1FB;
  --mc-border:     rgba(55,138,221,0.22);
  --mc-badge-bg:   rgba(55,138,221,0.12);
  --mc-badge-text: #185FA5;
  --mc-title:      #185FA5;
  --mc-text:       #0C447C;
  --mc-accent:     #378ADD;
}
/* Sorbet / Nieve → Mint Teal (fruity, icy) */
.mc-teal {
  --mc-bg:         #E1F5EE;
  --mc-border:     rgba(29,158,117,0.22);
  --mc-badge-bg:   rgba(29,158,117,0.12);
  --mc-badge-text: #0F6E56;
  --mc-title:      #0F6E56;
  --mc-text:       #085041;
  --mc-accent:     #1D9E75;
}
/* Elotes → Corn Amber (golden yellow) */
.mc-amber {
  --mc-bg:         #FEF4E0;
  --mc-border:     rgba(239,159,39,0.25);
  --mc-badge-bg:   rgba(239,159,39,0.14);
  --mc-badge-text: #854F0B;
  --mc-title:      #854F0B;
  --mc-text:       #633806;
  --mc-accent:     #EF9F27;
}
/* Antojitos → Spicy Coral Red */
.mc-coral {
  --mc-bg:         #FAECE7;
  --mc-border:     rgba(216,90,48,0.22);
  --mc-badge-bg:   rgba(216,90,48,0.12);
  --mc-badge-text: #993C1D;
  --mc-title:      #993C1D;
  --mc-text:       #712B13;
  --mc-accent:     #D85A30;
}
/* Paletas → Strawberry Pink */
.mc-pink {
  --mc-bg:         #FBEAF0;
  --mc-border:     rgba(212,83,126,0.22);
  --mc-badge-bg:   rgba(212,83,126,0.12);
  --mc-badge-text: #993556;
  --mc-title:      #993556;
  --mc-text:       #72243E;
  --mc-accent:     #D4537E;
}
/* Bebidas → Hibiscus Purple (jamaica agua fresca) */
.mc-purple {
  --mc-bg:         #EEEDFE;
  --mc-border:     rgba(127,119,221,0.22);
  --mc-badge-bg:   rgba(127,119,221,0.12);
  --mc-badge-text: #534AB7;
  --mc-title:      #534AB7;
  --mc-text:       #3C3489;
  --mc-accent:     #7F77DD;
}
/* Fruit → Watermelon Green */
.mc-green {
  --mc-bg:         #EAF3DE;
  --mc-border:     rgba(99,153,34,0.22);
  --mc-badge-bg:   rgba(99,153,34,0.12);
  --mc-badge-text: #3B6D11;
  --mc-title:      #3B6D11;
  --mc-text:       #27500A;
  --mc-accent:     #639922;
}


/* ═══════════════════════════════════════════════════════════════════════
   MENU MODAL
═══════════════════════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 18, 8, 0.65);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 540px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  box-shadow: 0 32px 80px rgba(0,0,0,0.28);
  transform: translateY(18px) scale(0.98);
  transition: transform .22s ease;
  scrollbar-width: thin;
}
.modal-overlay.open .modal-box { transform: none; }
.modal-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px 18px;
  border-bottom: 3px solid var(--yellow);
  position: sticky;
  top: 0;
  background: var(--white);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  z-index: 2;
}
.modal-emoji { font-size: 2rem; flex-shrink: 0; }
.modal-title-wrap { flex: 1; }
.modal-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 3px;
}
.modal-badge {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: var(--orange-lt);
  color: var(--orange-dk);
  border-radius: 50px;
  padding: 2px 10px;
}
.modal-close {
  background: var(--offwhite);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  color: var(--muted);
  flex-shrink: 0;
  transition: background .15s, color .15s;
  -webkit-tap-highlight-color: transparent;
}
.modal-close:hover { background: var(--orange-lt); color: var(--orange); }
.modal-body { padding: 22px 24px 8px; }
.modal-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: 20px;
}
.modal-items-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--orange);
  margin-bottom: 12px;
}
.modal-items-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 8px;
}
@media (max-width: 440px) { .modal-items-grid { grid-template-columns: 1fr; } }
.modal-item {
  background: var(--offwhite);
  border: 1px solid rgba(247,107,28,0.1);
  border-radius: 10px;
  padding: 9px 12px 9px 10px;
  font-size: 0.8rem;
  color: var(--text);
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  gap: 7px;
}
.modal-item::before {
  content: '·';
  color: var(--orange);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1;
  flex-shrink: 0;
}
.modal-footer {
  padding: 18px 24px 24px;
  display: flex;
  justify-content: center;
  border-top: 1px solid rgba(0,0,0,0.06);
  margin-top: 12px;
}

/* ═══════════════════════════════════════════════════════════════════════
   FAVORITES
═══════════════════════════════════════════════════════════════════════ */
.faves { background: var(--yellow); padding: 64px 0; }
.faves h2 { color: var(--text); margin-bottom: 36px; }

.faves-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
@media (max-width: 960px) { .faves-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .faves-grid { grid-template-columns: repeat(2, 1fr); } }

.fav-card {
  background: rgba(255,255,255,0.62);
  border-radius: var(--radius);
  padding: 22px 16px;
  text-align: center;
  border: 1.5px solid rgba(255,255,255,0.82);
  transition: background .18s, transform .18s;
  cursor: default;
}
.fav-card:hover { background: rgba(255,255,255,0.9); transform: scale(1.03); }
.fav-icon { font-size: 2rem; margin-bottom: 10px; }
.fav-card h3 { font-size: 1rem; color: var(--orange-dk); margin-bottom: 5px; }
.fav-card p  { font-size: 0.78rem; color: var(--muted); }

/* ═══════════════════════════════════════════════════════════════════════
   ORDER ONLINE
═══════════════════════════════════════════════════════════════════════ */
.order-section { background: var(--white); padding: 80px 0; }

.order-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 680px;
  margin: 24px auto 0;
}
.order-cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--offwhite);
  border: 1.5px solid rgba(247,107,28,0.15);
  border-radius: 50px;
  padding: 6px 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted);
}

.order-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 680px;
  margin: 32px auto 0;
}
@media (max-width: 600px) { .order-grid { grid-template-columns: 1fr; max-width: 320px; } }

.order-card {
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: var(--radius);
  padding: 20px 22px;
  min-height: 72px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  box-shadow: var(--shadow);
  transition: transform .17s, box-shadow .17s;
  -webkit-tap-highlight-color: transparent;
}
.order-card:hover  { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.order-card:active { transform: scale(0.97); }
.order-card.uber   { background: #000; }
.order-card.grub   { background: #F15A22; }
.order-card.dash   { background: #FF3008; }
.order-logo        { font-size: 1.5rem; }

/* ═══════════════════════════════════════════════════════════════════════
   VISIT US
═══════════════════════════════════════════════════════════════════════ */
.visit { background: var(--offwhite); padding: 80px 0; }

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 44px;
  align-items: stretch;
}
@media (max-width: 700px) { .visit-grid { grid-template-columns: 1fr; } }

.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: 0 3px 18px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}
.info-card h3 {
  color: var(--orange);
  font-size: 1.1rem;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px dashed rgba(0,0,0,0.07);
  font-size: 0.9rem;
}
.hours-row:last-of-type { border-bottom: none; }
.hours-day  { font-family: 'Poppins', sans-serif; font-weight: 500; color: var(--muted); }
.hours-time { font-family: 'Poppins', sans-serif; font-weight: 600; color: var(--text); }
.hours-note {
  margin-top: auto;
  padding-top: 14px;
  font-size: 0.78rem;
  color: var(--fine);
  line-height: 1.6;
}

.address-lines { margin-bottom: 20px; }
.biz-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 6px;
}
.address-lines p {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.75;
}

/* store photo — used in Find Us card and footer; fails silently if image missing */
.store-photo {
  width: 100%;
  height: 180px;
  background-image: url('../images/hero/los-mangos-midway-5923.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.footer-store-photo {
  width: 100%;
  height: 130px;
  background-image: url('../images/hero/los-mangos-midway-5923.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  margin-bottom: 14px;
}

/* ═══════════════════════════════════════════════════════════════════════
   SOCIAL
═══════════════════════════════════════════════════════════════════════ */
.social-section {
  background-color: var(--orange);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.social-section-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero/los-mangos-midway.jpg');
  background-size: cover;
  background-position: center center;
  opacity: 0.14;
  mix-blend-mode: luminosity;
  z-index: 0;
}
.social-section::before {
  content: '';
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  border: 56px solid rgba(255,207,45,0.12);
  top: -160px; right: -100px;
  pointer-events: none;
  z-index: 1;
}
.social-section h2   { color: #fff; margin-bottom: 10px; position: relative; z-index: 2; }
.social-sub {
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  font-size: 0.97rem;
  position: relative;
  z-index: 2;
}
.social-sub .hashtag { font-family: 'Poppins', sans-serif; font-weight: 700; color: #fff; }
.social-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
@media (max-width: 480px) {
  .social-row { gap: 10px; }
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.14);
  border: 1.5px solid rgba(255,255,255,0.32);
  color: #fff;
  border-radius: 50px;
  padding: 12px 22px;
  min-height: 48px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background .17s, transform .17s;
  -webkit-tap-highlight-color: transparent;
}
.social-btn:hover  { background: rgba(255,255,255,0.26); transform: translateY(-2px); }
.social-btn:active { transform: scale(0.97); }

/* ═══════════════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════════════ */
.footer {
  background: #160D04;
  padding: 56px 0 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.4fr;
  gap: 36px;
  margin-bottom: 44px;
}

/* Responsive footer grid */
@media (max-width: 960px) {
  .footer-top { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 620px) {
  /* On mobile: brand spans full width, then 2 columns for the nav cols */
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-contact { grid-column: 1 / -1; }
}
@media (max-width: 380px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-contact { grid-column: auto; }
}

/* brand col */
.footer-brand .f-logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--yellow);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}
.f-logo-img {
  display: block;
  width: 34px;
  height: 34px;
  background-image: url('los-mango-midway-logo.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}
.footer-brand p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.46);
  line-height: 1.75;
  max-width: 230px;
}

/* nav cols */
.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: rgba(255,255,255,0.9);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.48);
  transition: color .15s;
  display: inline-block;
  padding: 2px 0;
}
.footer-col ul li a:hover { color: var(--yellow); }

/* contact col */
.footer-contact h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: rgba(255,255,255,0.9);
  margin-bottom: 16px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 13px;
}
.contact-icon { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.contact-item p,
.contact-item a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}
.contact-item a { transition: color .15s; display: block; }
.contact-item a:hover { color: var(--yellow); }

/* footer bottom bar */
.footer-divider { height: 1px; background: rgba(255,255,255,0.08); margin-bottom: 22px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.28);
}
.sister-brands {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.sister-brands a {
  color: rgba(255,207,45,0.55);
  font-size: 0.78rem;
  transition: color .15s;
}
.sister-brands a:hover { color: var(--yellow); }
.s-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════════════
   DAILY SPECIALS
═══════════════════════════════════════════════════════════════════════ */
.specials-section {
  background: var(--offwhite);
  padding: 80px 0;
  border-top: 3px solid var(--yellow);
}

.specials-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 44px;
}
@media (max-width: 960px) { .specials-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .specials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 380px) { .specials-grid { grid-template-columns: 1fr; } }

.special-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 18px 22px;
  text-align: center;
  box-shadow: 0 3px 16px rgba(0,0,0,0.05);
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
  overflow: hidden;
}
.special-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.special-card::before {
  content: '';
  display: block;
  height: 5px;
  width: 100%;
  position: absolute;
  top: 0; left: 0; right: 0;
}
.special-mon::before  { background: #4CAF50; }
.special-tue::before  { background: var(--orange); }
.special-wed::before  { background: #9C27B0; }
.special-thu::before  { background: #2196F3; }
.special-fri::before  { background: var(--yellow-dk); }

.special-day {
  font-family: 'Poppins', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  border-radius: 50px;
  padding: 3px 12px;
  margin-bottom: 12px;
  margin-top: 6px;
}
.special-mon .special-day  { background: #E8F5E9; color: #2E7D32; }
.special-tue .special-day  { background: var(--orange-lt); color: var(--orange-dk); }
.special-wed .special-day  { background: #F3E5F5; color: #6A1B9A; }
.special-thu .special-day  { background: #E3F2FD; color: #1565C0; }
.special-fri .special-day  { background: var(--yellow-lt); color: var(--yellow-dk); }

.special-emoji { font-size: 2rem; margin-bottom: 10px; display: block; }

.special-card h3 {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 7px;
  line-height: 1.3;
}
.special-card p {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 12px;
  flex: 1;
}
.special-price {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--orange);
}
.special-bogo {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--orange);
  text-align: center;
  line-height: 1.2;
}

@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .menu-section { padding: 56px 0; }
  .faves { padding: 48px 0; }
  .specials-section { padding: 56px 0; }
  .hero { padding: 60px 0 80px; }
  .visit { padding: 56px 0; }
  .order-section { padding: 56px 0; }
  .social-section { padding: 52px 0; }
  .footer { padding: 44px 0 24px; }
}

/* ═══════════════════════════════════════════════════════════════════════
   THE SPLITS
═══════════════════════════════════════════════════════════════════════ */
.splits-section { background: var(--yellow-lt); padding: 80px 0; }

.splits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}
@media (max-width: 700px) { .splits-grid { grid-template-columns: 1fr; } }

.split-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.split-card:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(0,0,0,0.12); }

.split-card-top {
  padding: 36px 24px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.split-emoji { font-size: 3.5rem; line-height: 1; display: block; }
.split-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}
.split-card-bottom {
  padding: 0 24px 28px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.split-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}
.split-stripe {
  height: 6px;
  width: 100%;
}
.split-banana .split-stripe  { background: linear-gradient(90deg, #FFCF2D, #F76B1C, #FFCF2D); }
.split-pepino .split-stripe  { background: linear-gradient(90deg, #63A020, #A8D55A, #63A020); }
.split-upside .split-stripe  { background: linear-gradient(90deg, #D4537E, #F76B1C, #D4537E); }

.split-banana h3 { color: #854F0B; }
.split-pepino h3 { color: #3B6D11; }
.split-upside h3 { color: #993C1D; }

/* ═══════════════════════════════════════════════════════════════════════
   NEW ITEMS
═══════════════════════════════════════════════════════════════════════ */
.new-section { background: var(--white); padding: 80px 0; }

.new-badge {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  background: var(--orange);
  color: #fff;
  border-radius: 50px;
  padding: 3px 12px;
  margin-bottom: 10px;
}

.new-featured {
  background: var(--orange-lt);
  border: 2px solid rgba(247,107,28,0.22);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .new-featured { grid-template-columns: 1fr; padding: 28px 24px; text-align: center; }
  .new-featured-emoji { text-align: center; }
}
.new-featured-emoji { font-size: 5rem; line-height: 1; }
.new-featured h3 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--orange-dk);
  margin-bottom: 10px;
}
.new-featured p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 520px;
}

.new-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 700px) { .new-cards-row { grid-template-columns: 1fr; } }

.new-card {
  background: var(--offwhite);
  border: 1.5px solid rgba(247,107,28,0.14);
  border-radius: var(--radius-lg);
  padding: 26px 22px 22px;
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.new-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.new-card-emoji { font-size: 2.2rem; margin-bottom: 10px; display: block; }
.new-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--orange-dk);
  margin-bottom: 8px;
}
.new-card p { font-size: 0.87rem; color: var(--muted); line-height: 1.65; }

/* ── TODAY'S SPECIAL HIGHLIGHT ───────────────────────────────────────── */
.today-banner {
  display: none;
  width: calc(100% + 36px);
  margin: -24px -18px 14px;
  padding: 9px 0;
  background: var(--orange);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  text-align: center;
}
.special-card.today {
  border: 2.5px solid var(--orange);
  box-shadow: 0 0 0 4px rgba(247,107,28,0.16), 0 12px 40px rgba(247,107,28,0.24);
  transform: translateY(-6px);
  z-index: 1;
  position: relative;
}
.special-card.today .today-banner { display: block; }