/* ==========================================================================
   SAGUARO BREAKFAST BURRITOS - MASTER STYLESHEET
   A playful, hand-crafted Sonoran desert & food-truck chalkboard design system
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. RESET & BASE SETUP
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Nunito', 'Patrick Hand', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--black);
  background-color: var(--yellow);
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

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

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

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

ul, ol {
  list-style: none;
}

/* --------------------------------------------------------------------------
   2. BRAND VARIABLES & TOKENS
   -------------------------------------------------------------------------- */
:root {
  --yellow: #FFDB59;
  --yellow-light: #FFEFA8;
  --yellow-dark: #F2C838;
  --pink: #F34C91;
  --pink-light: #FF7EB3;
  --pink-dark: #D42870;
  --green: #6CCF55;
  --green-dark: #4DAE36;
  --turquoise: #13B8C4;
  --turquoise-dark: #0EA0AB;
  --orange: #F49A23;
  --orange-dark: #D47B09;
  --cream: #FFF9EA;
  --cream-dark: #F3E7C9;
  --black: #171717;
  --white: #FFFFFF;
  --chalkboard: #1A1C1A;
  --kraft: #D99B5C;

  /* Typography */
  --font-display: 'Luckiest Guy', 'Chewy', cursive, sans-serif;
  --font-fun: 'Chewy', cursive, sans-serif;
  --font-hand: 'Patrick Hand', 'Kalam', cursive, sans-serif;
  --font-body: 'Nunito', sans-serif;

  /* Hand-drawn Borders & Shadows */
  --border-thick: 3.5px solid var(--black);
  --border-medium: 2.5px solid var(--black);
  --border-thin: 1.5px solid var(--black);
  --shadow-cartoon: 4px 4px 0px var(--black);
  --shadow-cartoon-lg: 6px 6px 0px var(--black);
  --shadow-cartoon-sm: 2.5px 2.5px 0px var(--black);
  --radius-card: 22px;
  --radius-pill: 999px;
  --radius-wavy: 255px 15px 225px 15px/15px 225px 15px 255px;

  /* Layout */
  --max-width: 1200px;
  --header-height: 84px;
}

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY & DECORATIVE HELPERS
   -------------------------------------------------------------------------- */
.font-display {
  font-family: var(--font-display);
  letter-spacing: 0.5px;
}

.font-fun {
  font-family: var(--font-fun);
  letter-spacing: 0.5px;
}

.font-hand {
  font-family: var(--font-hand);
}

.font-body {
  font-family: var(--font-body);
}

.text-pink { color: var(--pink); }
.text-green { color: var(--green); }
.text-turquoise { color: var(--turquoise); }
.text-orange { color: var(--orange); }
.text-yellow { color: var(--yellow); }
.text-white { color: var(--white); }
.text-black { color: var(--black); }

/* Wavy underline accent */
.wavy-underline {
  position: relative;
  display: inline-block;
}
.wavy-underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 8'%3E%3Cpath d='M0 4 Q 5 0, 10 4 T 20 4' fill='none' stroke='%23F34C91' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 16px 8px;
}

/* Doodle Sparkles & Stars */
.sparkle-icon {
  display: inline-block;
  vertical-align: middle;
  transform: translateY(-2px);
}

/* Screen reader only helper */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Layout container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* --------------------------------------------------------------------------
   4. BUTTONS & INTERACTIVE BADGES
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-fun);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  border: var(--border-thick);
  box-shadow: var(--shadow-cartoon);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
  user-select: none;
  white-space: nowrap;
}

.btn:hover {
  transform: translate(-2px, -2px) scale(1.02);
  box-shadow: 6px 6px 0px var(--black);
}

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

.btn:focus-visible {
  outline: 3px dashed var(--black);
  outline-offset: 4px;
}

.btn-pink {
  background-color: var(--pink);
  color: var(--white);
}
.btn-pink:hover {
  background-color: var(--pink-light);
}

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

.btn-green {
  background-color: var(--green);
  color: var(--black);
}
.btn-green:hover {
  background-color: #7de066;
}

.btn-turquoise {
  background-color: var(--turquoise);
  color: var(--black);
}
.btn-turquoise:hover {
  background-color: #26ceda;
}

/* Starburst Stickers */
.starburst-badge {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-display);
  border-radius: 50%;
  border: var(--border-medium);
  box-shadow: var(--shadow-cartoon-sm);
  z-index: 5;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.starburst-badge:hover {
  transform: scale(1.08) rotate(4deg);
}

.starburst-black {
  background-color: var(--black);
  color: var(--white);
}

.starburst-cream {
  background-color: var(--cream);
  color: var(--black);
}

/* --------------------------------------------------------------------------
   5. HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--yellow);
  z-index: 100;
  border-bottom: var(--border-medium);
  transition: box-shadow 0.2s ease, background-color 0.2s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 12px rgba(23, 23, 23, 0.12);
  background-color: rgba(255, 219, 89, 0.96);
  backdrop-filter: blur(8px);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo-img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: var(--border-medium);
  box-shadow: var(--shadow-cartoon-sm);
  background-color: var(--cream);
  object-fit: cover;
  transition: transform 0.2s ease;
}

.header-brand:hover .brand-logo-img {
  transform: rotate(-6deg) scale(1.05);
}

.brand-text-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text-top {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--black);
  letter-spacing: 0.5px;
}

.brand-text-bottom {
  font-family: var(--font-fun);
  font-size: 0.85rem;
  color: var(--pink);
  letter-spacing: 1px;
}

/* Nav Menu */
.header-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-family: var(--font-fun);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.5px;
  position: relative;
  padding: 6px 2px;
  transition: color 0.15s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background-color: var(--pink);
  border-radius: 2px;
  transition: width 0.2s ease;
}

.nav-link:hover {
  color: var(--pink);
}

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

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

.btn-header-order {
  font-size: 1.05rem;
  padding: 10px 22px;
}

/* Hamburger Toggle */
.mobile-nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  background-color: var(--black);
  color: var(--white);
  border-radius: 12px;
  border: var(--border-medium);
  box-shadow: var(--shadow-cartoon-sm);
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: transform 0.15s ease;
}

.mobile-nav-toggle:hover {
  transform: scale(1.05);
}

.hamburger-icon {
  width: 24px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger-line {
  height: 3.5px;
  width: 100%;
  background-color: var(--white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-nav-toggle.active .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-nav-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle.active .hamburger-line:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-nav-drawer {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--yellow);
  border-bottom: var(--border-thick);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  padding: 24px;
  flex-direction: column;
  gap: 16px;
  z-index: 99;
}

.mobile-nav-drawer.open {
  display: flex;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mobile-nav-link {
  font-family: var(--font-fun);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--black);
  padding: 8px 12px;
  border-radius: 8px;
  transition: background-color 0.15s ease;
}

.mobile-nav-link:hover {
  background-color: rgba(243, 76, 145, 0.15);
  color: var(--pink);
}

/* --------------------------------------------------------------------------
   6. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  background-color: var(--yellow);
  padding-top: 50px;
  padding-bottom: 80px;
  overflow: hidden;
  width: 100%;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../assets/backgrounds/hero-bg.png');
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  opacity: 0.15;
  pointer-events: none;
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 36px;
}

/* Hero Left / Text */
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-title-wrap {
  position: relative;
}

/* Stacked 3D Bubble Typography */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6.2vw, 5.2rem);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--white);
  /* Layered 3D Cartoon Shadow */
  text-shadow:
    -3px -3px 0 var(--black),  
     3px -3px 0 var(--black),
    -3px  3px 0 var(--black),
     3px  3px 0 var(--black),
     6px  6px 0 var(--black),
     8px  8px 0 var(--black);
  margin-bottom: 8px;
  user-select: none;
}

.hero-title .title-saguaro {
  display: block;
  color: #6CCF55;
  background: linear-gradient(180deg, #87E570 0%, #5CBF46 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #6CCF55;
}

.hero-title .title-breakfast {
  display: block;
  color: var(--white);
  -webkit-text-fill-color: var(--white);
}

.hero-title .title-burritos {
  display: block;
  color: #F34C91;
  background: linear-gradient(180deg, #FF7EB3 0%, #F34C91 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #F34C91;
}

/* Sparkle accents near title */
.title-doodle-sparkle {
  position: absolute;
  top: -10px;
  right: 20px;
  width: 32px;
  height: 32px;
  animation: sparkle-float 3s ease-in-out infinite alternate;
}

@keyframes sparkle-float {
  0% { transform: rotate(0deg) scale(0.9); }
  100% { transform: rotate(15deg) scale(1.15); }
}

.hero-tagline {
  font-family: var(--font-fun);
  font-size: clamp(1.4rem, 2.4vw, 1.95rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.25;
  letter-spacing: 0.5px;
}

.hero-tagline span {
  display: block;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
}

/* Hero Right / Food Showcase */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-food-frame {
  position: relative;
  width: 100%;
  max-width: 340px;
  background-color: transparent;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-food-img {
  width: 100%;
  max-height: 410px;
  height: auto;
  border: none;
  border-radius: 0;
  box-shadow: none;
  background-color: transparent;
  filter: drop-shadow(0 14px 22px rgba(23, 23, 23, 0.3));
  object-fit: contain;
  transition: transform 0.3s ease;
}

.hero-food-frame:hover .hero-food-img {
  transform: rotate(-1deg) scale(1.02);
}

/* Made Fresh Prominent Wavy Die-Cut Sticker Badge */
.hero-starburst {
  position: absolute;
  bottom: -15px;
  right: 12px;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(8deg);
  z-index: 10;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-starburst:hover {
  transform: rotate(-2deg) scale(1.08);
}

.hero-starburst-svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

/* Floating Sun doodle */
.hero-sun-doodle {
  position: absolute;
  top: -30px;
  right: 60px;
  width: 76px;
  height: 76px;
  z-index: 3;
  animation: sun-spin 20s linear infinite;
}

@keyframes sun-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Side decorative cactus */
.hero-side-cactus {
  position: absolute;
  top: 10px;
  right: -20px;
  width: 65px;
  height: 120px;
  z-index: 0;
  opacity: 0.9;
}

/* --------------------------------------------------------------------------
   7. WAVY SECTION DIVIDERS
   -------------------------------------------------------------------------- */
.section-wavy-divider {
  width: 100%;
  line-height: 0;
  overflow: hidden;
  position: relative;
  z-index: 10;
}

.section-wavy-divider svg {
  display: block;
  width: 100%;
  height: 48px;
}

/* --------------------------------------------------------------------------
   8. SIGNATURE BURRITOS SECTION
   -------------------------------------------------------------------------- */
.signature-section {
  position: relative;
  background-color: var(--cream);
  padding-top: 20px;
  padding-bottom: 70px;
  border-bottom: var(--border-medium);
}

.section-header-center {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  text-transform: uppercase;
  color: var(--black);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  letter-spacing: 1px;
}

.burritos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  position: relative;
  z-index: 2;
}

.burrito-card {
  background-color: var(--white);
  border: var(--border-thick);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-cartoon);
  padding: 16px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.burrito-card:hover {
  transform: translateY(-4px);
  box-shadow: 6px 8px 0px var(--black);
}

.card-header-burrito {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.card-title-burrito {
  font-family: var(--font-fun);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.15;
  display: flex;
  align-items: center;
  gap: 6px;
}

.badge-veg {
  font-family: var(--font-fun);
  font-size: 0.95rem;
  color: var(--green-dark);
  font-weight: bold;
}

.card-food-slot {
  width: 100%;
  height: 140px;
  border-radius: 14px;
  border: var(--border-medium);
  overflow: hidden;
  background-color: var(--yellow-light);
  margin-bottom: 14px;
  position: relative;
}

.card-food-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.burrito-card:hover .card-food-img {
  transform: scale(1.05);
}

.card-description {
  font-family: var(--font-hand);
  font-size: 1.12rem;
  color: #2b2b2b;
  line-height: 1.35;
  flex-grow: 1;
  margin-bottom: 14px;
}

.card-price-tag {
  font-family: var(--font-fun);
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: auto;
}

/* Card title colors */
.title-daystarter { color: var(--turquoise); }
.title-muscle { color: var(--green-dark); }
.title-westerner { color: var(--orange); }
.title-jumpin { color: var(--pink); }

.price-daystarter { color: var(--turquoise); }
.price-muscle { color: var(--green-dark); }
.price-westerner { color: var(--orange); }
.price-jumpin { color: var(--pink); }

/* Flanking Cacti in Signature Section */
.signature-cactus-right {
  position: absolute;
  top: 30px;
  right: -10px;
  width: 90px;
  height: auto;
  pointer-events: none;
  z-index: 1;
}

.signature-cactus-left {
  position: absolute;
  bottom: 10px;
  left: -15px;
  width: 75px;
  height: auto;
  pointer-events: none;
  z-index: 1;
  transform: scaleX(-1);
}

/* --------------------------------------------------------------------------
   9. BUILD YOUR OWN SECTION
   -------------------------------------------------------------------------- */
.byo-section {
  position: relative;
  background-color: var(--turquoise);
  padding: 50px 0 60px;
  border-top: var(--border-thick);
  border-bottom: var(--border-thick);
  overflow: hidden;
}

.byo-panel-wrapper {
  background-color: #0EB6C2;
  border: var(--border-thick);
  border-radius: 30px;
  box-shadow: var(--shadow-cartoon-lg);
  padding: 36px 32px;
  position: relative;
  background-image: radial-gradient(rgba(255,255,255,0.15) 2px, transparent 2px);
  background-size: 24px 24px;
}

.byo-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  gap: 28px;
  margin-bottom: 30px;
}

/* BYO Left Column */
.byo-col-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.byo-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.2vw, 3.6rem);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--white);
  text-shadow:
    -2.5px -2.5px 0 var(--black),  
     2.5px -2.5px 0 var(--black),
    -2.5px  2.5px 0 var(--black),
     2.5px  2.5px 0 var(--black),
     5px  5px 0 var(--black);
  margin-bottom: 16px;
}

.byo-arrow-doodle {
  font-size: 2.2rem;
  color: var(--yellow);
  display: inline-block;
  transform: rotate(-10deg);
}

.byo-cactus-ill {
  width: 70px;
  height: 110px;
  margin-bottom: 12px;
}

.byo-sticker-perfect {
  background-color: var(--black);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 20px;
  border: var(--border-medium);
  box-shadow: var(--shadow-cartoon-sm);
  font-family: var(--font-display);
  font-size: 0.95rem;
  transform: rotate(-6deg);
  letter-spacing: 0.5px;
}

.byo-sticker-perfect span {
  color: var(--pink);
}

/* BYO Center Column (Ingredients) */
.byo-col-center {
  background-color: rgba(255, 255, 255, 0.18);
  border: var(--border-medium);
  border-radius: 20px;
  padding: 24px 28px;
  backdrop-filter: blur(4px);
}

.byo-subheading {
  font-family: var(--font-fun);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.byo-protein-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-bottom: 24px;
}

.byo-item {
  font-family: var(--font-fun);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 6px;
}

.byo-item-star {
  color: var(--black);
  font-size: 0.85rem;
}

.byo-toppings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
}

/* BYO Right Column (Combo Starburst) */
.byo-col-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.combo-starburst {
  width: 140px;
  height: 140px;
  background-color: var(--cream);
  border-radius: 50%;
  border: var(--border-thick);
  box-shadow: var(--shadow-cartoon);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(6deg);
  padding: 10px;
  transition: transform 0.25s ease;
}

.combo-starburst:hover {
  transform: rotate(-3deg) scale(1.06);
}

.combo-line1 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--black);
  line-height: 1;
}

.combo-line2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--pink);
  line-height: 1.1;
  margin-bottom: 4px;
}

.combo-item {
  font-family: var(--font-fun);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.15;
}

.byo-cta-wrap {
  text-align: center;
  position: relative;
  z-index: 2;
}

.btn-byo-start {
  font-size: 1.3rem;
  padding: 14px 38px;
}

/* --------------------------------------------------------------------------
   10. DRINKS & SIDES SECTION
   -------------------------------------------------------------------------- */
.drinks-section {
  position: relative;
  background-color: var(--cream);
  padding: 50px 0 70px;
  border-bottom: var(--border-medium);
}

.drinks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.drink-card {
  background-color: var(--white);
  border: var(--border-thick);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-cartoon);
  padding: 22px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.drink-card:hover {
  transform: translateY(-4px);
  box-shadow: 6px 8px 0px var(--black);
}

.card-title-drink {
  font-family: var(--font-fun);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 14px;
}

.card-content-drink {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-grow: 1;
}

.drink-flavors-list {
  font-family: var(--font-fun);
  font-size: 1.05rem;
  color: var(--black);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.drink-flavors-list li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.drink-flavor-star {
  font-size: 0.75rem;
  color: var(--pink);
}

.drink-food-slot {
  width: 100%;
  height: 110px;
  border-radius: 14px;
  border: var(--border-medium);
  overflow: hidden;
  background-color: var(--yellow-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.drink-food-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: var(--white);
}

/* --------------------------------------------------------------------------
   11. WEEKLY SPECIAL & OUR STORY (TWO COLUMNS)
   -------------------------------------------------------------------------- */
.feature-section {
  position: relative;
  background-color: var(--yellow);
  padding: 60px 0 70px;
  border-bottom: var(--border-medium);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

/* Left: Chalkboard Weekly Special */
.chalkboard-panel {
  background-color: var(--chalkboard);
  color: var(--white);
  border: var(--border-thick);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-cartoon-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  background-image: 
    radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(0,0,0,0.2) 100%);
  background-size: 16px 16px, 100% 100%;
}

.chalkboard-border-inner {
  border: 2px dashed rgba(255, 255, 255, 0.4);
  border-radius: 16px;
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.special-heading-top {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.special-title-main {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  text-align: center;
  color: var(--green);
  text-transform: uppercase;
  line-height: 1;
  text-shadow:
    -2px -2px 0 var(--black),  
     2px -2px 0 var(--black),
    -2px  2px 0 var(--black),
     2px  2px 0 var(--black),
     4px  4px 0 rgba(0,0,0,0.8);
  margin-bottom: 16px;
}

.special-content-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}

.special-desc-pink {
  font-family: var(--font-fun);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--pink-light);
  line-height: 1.35;
  margin-bottom: 12px;
}

.special-desc-green {
  font-family: var(--font-fun);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1.3;
}

.special-food-slot {
  width: 100%;
  height: 130px;
  border-radius: 14px;
  border: 2px solid rgba(255,255,255,0.4);
  overflow: hidden;
}

.special-food-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Right: Our Story Panel */
.story-panel {
  background-color: var(--cream);
  border: var(--border-thick);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-cartoon-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.story-border-inner {
  border: 2px dashed rgba(23, 23, 23, 0.3);
  border-radius: 16px;
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.story-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.story-body-wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  gap: 16px;
  flex-grow: 1;
}

.story-copy {
  font-family: var(--font-hand);
  font-size: 1.25rem;
  color: #222;
  line-height: 1.45;
}

.story-copy p {
  margin-bottom: 12px;
}

.story-cactus-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.story-cactus-img {
  width: 160px;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(4px 4px 0px rgba(0,0,0,0.1));
}

/* --------------------------------------------------------------------------
   12. VISIT / HOURS / ORDER STRIP
   -------------------------------------------------------------------------- */
.visit-strip {
  position: relative;
  background-color: var(--pink);
  color: var(--white);
  padding: 50px 0;
  border-top: var(--border-thick);
  border-bottom: var(--border-thick);
  overflow: hidden;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 32px;
  align-items: center;
}

.visit-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.visit-col-title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  text-transform: uppercase;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.5px;
}

.visit-info-text {
  font-family: var(--font-fun);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
}

.hours-schedule {
  font-family: var(--font-fun);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
}

.hours-schedule span {
  display: block;
}

.order-way-list {
  font-family: var(--font-fun);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 8px;
}

.order-way-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.order-col-content {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
}

.takeout-bag-visual {
  width: 80px;
  height: 95px;
  filter: drop-shadow(3px 3px 0px rgba(0,0,0,0.2));
}

/* --------------------------------------------------------------------------
   13. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  position: relative;
  background-color: var(--yellow);
  background-image: url('../assets/backgrounds/footer-bg.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  padding: 50px 0 25px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  width: 100%;
}

.site-footer .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr 1.2fr;
  gap: 28px;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 30px;
}

.footer-brand-col {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: var(--border-medium);
  box-shadow: var(--shadow-cartoon-sm);
  background-color: var(--cream);
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: var(--border-thin);
  box-shadow: var(--shadow-cartoon-sm);
  transition: transform 0.15s ease, background-color 0.15s ease;
}

.social-btn:hover {
  transform: translateY(-2px) scale(1.1);
  background-color: var(--pink);
}

.footer-contact-info {
  font-family: var(--font-fun);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.35;
}

.footer-speech-bubble {
  background-color: var(--white);
  border: var(--border-thick);
  border-radius: 20px;
  box-shadow: var(--shadow-cartoon);
  padding: 14px 18px;
  position: relative;
  text-align: center;
}

.footer-speech-bubble::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 12px solid var(--black);
}

.footer-speech-bubble::after {
  content: '';
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-right: 9px solid var(--white);
}

.speech-bubble-text {
  font-family: var(--font-display);
  font-size: 0.98rem;
  color: var(--black);
  line-height: 1.2;
}

.footer-bottom-bar {
  border-top: none;
  padding-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--font-fun);
  font-size: 0.95rem;
  color: var(--black);
}

.footer-legal-links {
  display: flex;
  gap: 16px;
}

.footer-legal-links a:hover {
  color: var(--pink);
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   14. ORDER COMING SOON PAGE
   -------------------------------------------------------------------------- */
.order-page-main {
  min-height: calc(100vh - var(--header-height) - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  position: relative;
  background-color: var(--yellow);
}

.order-card-coming-soon {
  background-color: var(--cream);
  border: var(--border-thick);
  border-radius: 32px;
  box-shadow: var(--shadow-cartoon-lg);
  max-width: 680px;
  width: 100%;
  padding: 48px 36px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.order-page-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  text-transform: uppercase;
  color: var(--black);
  line-height: 1.05;
  margin-bottom: 20px;
}

.order-page-subtitle {
  font-family: var(--font-hand);
  font-size: 1.45rem;
  color: #333;
  line-height: 1.4;
  margin-bottom: 28px;
}

.order-info-box {
  background-color: var(--white);
  border: var(--border-medium);
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow-cartoon-sm);
  margin-bottom: 32px;
}

.order-info-box h3 {
  font-family: var(--font-fun);
  font-size: 1.35rem;
  color: var(--pink);
  margin-bottom: 6px;
}

.order-info-box p {
  font-family: var(--font-fun);
  font-size: 1.15rem;
  color: var(--black);
}

/* --------------------------------------------------------------------------
   15. RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
/* Tablet (768px - 1199px) */
@media (max-width: 1199px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    align-items: center;
  }

  .hero-ctas {
    justify-content: center;
  }

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

  .byo-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

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

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

  .visit-col-order {
    grid-column: span 2;
  }

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

/* Mobile (< 768px) */
@media (max-width: 767px) {
  :root {
    --header-height: 72px;
  }

  .header-nav {
    display: none;
  }

  .header-actions .btn-header-order {
    display: none;
  }

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

  .hero-section {
    padding-top: 24px;
    padding-bottom: 50px;
  }

  .hero-title {
    font-size: 2.8rem;
  }

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

  .byo-toppings-grid {
    grid-template-columns: 1fr;
  }

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

  .special-content-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .story-body-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .visit-col-order {
    grid-column: span 1;
  }

  .footer-main-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand-col {
    justify-content: center;
  }

  .footer-social-links {
    justify-content: center;
  }

  .footer-speech-bubble::before,
  .footer-speech-bubble::after {
    display: none;
  }

  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
  }
}

/* --------------------------------------------------------------------------
   16. ACCESSIBILITY & PREFERS-REDUCED-MOTION
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
