/* =============================================
   HoneyDip Donuts & Diner
   Old-School Diner + Honey Bee Theme
   ============================================= */

:root {
  --honey: #F5A623;
  --honey-dark: #DAA520;
  --honey-deep: #B8860B;
  --amber: #D4831E;
  --brown: #3D2B1F;
  --brown-light: #5C4033;
  --cream: #FFF8E7;
  --cream-dark: #F5ECD7;
  --red-diner: #C41E3A;
  --white: #FFFFFF;
  --off-white: #FDFAF3;
  --text: #2D1B0E;
  --text-muted: #7A6B5D;
}

/* --- Reset & Base --- */

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

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

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

::selection {
  background-color: var(--honey);
  color: var(--brown);
}

/* --- Typography --- */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
}

.text-honey {
  color: var(--honey);
}

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--honey-dark);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--brown);
  margin-bottom: 1.5rem;
}

/* --- Buttons --- */

.btn-honey {
  background-color: var(--honey);
  color: var(--brown);
  border: 2px solid var(--honey);
  font-weight: 600;
  border-radius: 50px;
  padding: 0.6rem 2rem;
  transition: all 0.3s ease;
}

.btn-honey:hover {
  background-color: var(--honey-deep);
  border-color: var(--honey-deep);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(245, 166, 35, 0.4);
}

.btn-outline-light {
  border-radius: 50px;
  padding: 0.6rem 2rem;
  font-weight: 500;
  border-width: 2px;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  transform: translateY(-2px);
}

/* === NAVIGATION === */

#mainNav {
  background-color: rgba(61, 43, 31, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.75rem 0;
  transition: all 0.3s ease;
  border-bottom: 3px solid var(--honey);
}

#mainNav.scrolled {
  padding: 0.4rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.brand-text {
  font-family: 'Pacifico', cursive;
  font-size: 1.5rem;
  color: var(--honey) !important;
  transition: color 0.3s ease;
}

.brand-subtext {
  font-family: 'Pacifico', cursive;
  font-size: 1.5rem;
  color: var(--honey) !important;
}

.navbar-brand:hover .brand-text {
  color: var(--white) !important;
}

.nav-link {
  color: var(--cream) !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 1rem !important;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--honey);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--honey) !important;
}

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

.nav-cta {
  background-color: var(--honey);
  color: var(--brown) !important;
  border-radius: 50px;
  margin-left: 0.5rem;
  font-weight: 600;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background-color: var(--white);
  color: var(--brown) !important;
}

/* Hamburger menu custom */
.navbar-toggler {
  border: 2px solid var(--honey);
  padding: 6px 10px;
  border-radius: 6px;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.3);
}

.navbar-toggler-bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--honey);
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* === HERO === */

.hero {
  position: relative;
  min-height: 100vh;
  background: url('images/hero-bg.jpg') center center / cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.honeycomb-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(245, 166, 35, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(245, 166, 35, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(212, 131, 30, 0.05) 0%, transparent 40%);
  opacity: 1;
}

/* Honeycomb pattern via SVG background */
.honeycomb-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Cpath d='M28 66L0 50L0 16L28 0L56 16L56 50L28 66L28 100' fill='none' stroke='%23F5A623' stroke-width='0.5' opacity='0.08'/%3E%3C/svg%3E");
  background-size: 56px 100px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(45, 27, 14, 0.55) 0%, rgba(45, 27, 14, 0.7) 100%);
}

.hero-badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--honey);
  border: 1px solid rgba(245, 166, 35, 0.4);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  backdrop-filter: blur(4px);
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 900;
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 0.5rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero-brand-text {
  font-family: 'Pacifico', cursive;
  font-weight: 400;
  display: block;
  margin-bottom: 0.35em;
}

.hero-title .text-honey {
  color: var(--white);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero-subtitle-text {
  font-family: 'Pacifico', cursive;
  font-size: clamp(1.5rem, 4.5vw, 2.8rem);
  font-weight: 400;
  color: var(--honey);
  display: block;
  margin-top: 0.5rem;
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 248, 231, 0.8);
  margin: 1.5rem auto 2rem;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Floating Bee */
.floating-bee {
  position: absolute;
  right: 10%;
  top: 20%;
  animation: float 6s ease-in-out infinite, drift 12s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes drift {
  0%, 100% { margin-left: 0; }
  25% { margin-left: 30px; }
  75% { margin-left: -20px; }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--honey);
  border-bottom: 2px solid var(--honey);
  transform: rotate(45deg);
  animation: scrollBounce 2s ease-in-out infinite;
  opacity: 0.6;
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.6; }
  50% { transform: rotate(45deg) translateY(8px); opacity: 1; }
}

/* === ABOUT === */

.section-about {
  padding: 6rem 0;
  background-color: var(--cream);
  position: relative;
}

.about-image-wrapper {
  position: relative;
}

.about-image-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(61, 43, 31, 0.15);
}

.retro-photo-frame {
  border: 6px solid var(--honey-dark);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.retro-photo-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid rgba(245, 166, 35, 0.3);
  border-radius: 8px;
  margin: 4px;
  pointer-events: none;
  z-index: 1;
}

.about-photo {
  width: 100%;
  display: block;
  object-fit: cover;
}

.about-text {
  font-size: 1.05rem;
  color: var(--brown-light);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.2rem;
  background-color: var(--white);
  border-radius: 10px;
  border: 1px solid rgba(218, 165, 32, 0.2);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(245, 166, 35, 0.15);
  border-color: var(--honey);
}

.feature-card i {
  font-size: 1.2rem;
  color: var(--honey);
}

.feature-card span {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--brown);
}

/* === MENU === */

.section-menu {
  padding: 6rem 0;
  background-color: var(--brown);
  position: relative;
  overflow: hidden;
}

.section-menu .section-label {
  color: var(--honey);
}

.section-menu .section-title {
  color: var(--white);
}

.honeycomb-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Cpath d='M28 66L0 50L0 16L28 0L56 16L56 50L28 66L28 100' fill='none' stroke='%23F5A623' stroke-width='0.3' opacity='0.06'/%3E%3C/svg%3E");
  background-size: 56px 100px;
  pointer-events: none;
}

/* Pricing Banner */
.pricing-banner {
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.12), rgba(218, 165, 32, 0.08));
  border: 1px solid rgba(245, 166, 35, 0.25);
  border-radius: 16px;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
}

.pricing-title {
  font-family: 'Pacifico', cursive;
  font-size: 1.5rem;
  color: var(--honey);
  margin-bottom: 1.25rem;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0;
}

.price-label {
  color: var(--cream);
  font-size: 0.95rem;
}

.price-value {
  color: var(--honey);
  font-weight: 700;
  font-size: 1.1rem;
  font-family: 'Playfair Display', serif;
}

.fancy-side {
  border-left: 1px solid rgba(245, 166, 35, 0.2);
}

@media (max-width: 767.98px) {
  .fancy-side {
    border-left: none;
    border-top: 1px solid rgba(245, 166, 35, 0.2);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
  }
}

/* Donut Grid */
.menu-category-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.donut-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.donut-tag {
  display: inline-block;
  background: rgba(255, 248, 231, 0.08);
  color: var(--cream);
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  border: 1px solid rgba(255, 248, 231, 0.12);
  transition: all 0.3s ease;
}

.donut-tag:hover {
  background: rgba(245, 166, 35, 0.15);
  border-color: var(--honey);
  color: var(--honey);
  transform: translateY(-2px);
}

.donut-tag.fancy {
  border-color: rgba(245, 166, 35, 0.3);
  background: rgba(245, 166, 35, 0.08);
}

.donut-tag.seasonal {
  border-color: rgba(196, 30, 58, 0.4);
  background: rgba(196, 30, 58, 0.1);
  color: #FFB6C1;
}

/* Specialty cards */
.specialty-card {
  background: rgba(255, 248, 231, 0.06);
  border: 1px solid rgba(245, 166, 35, 0.2);
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
  transition: all 0.3s ease;
}

.specialty-card:hover {
  background: rgba(245, 166, 35, 0.1);
  border-color: var(--honey);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(245, 166, 35, 0.15);
}

.specialty-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--cream);
  font-weight: 600;
}

/* Diner cards */
.diner-card {
  background: rgba(255, 248, 231, 0.06);
  border: 1px solid rgba(255, 248, 231, 0.1);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.diner-card:hover {
  background: rgba(245, 166, 35, 0.08);
  border-color: rgba(245, 166, 35, 0.3);
  transform: translateY(-4px);
}

.diner-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(245, 166, 35, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.diner-card-icon i {
  font-size: 1.4rem;
  color: var(--honey);
}

.diner-card h4 {
  font-size: 1.15rem;
  color: var(--honey);
  margin-bottom: 0.75rem;
}

.diner-card p {
  color: rgba(255, 248, 231, 0.7);
  font-size: 0.92rem;
  margin: 0;
}

.menu-note {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-style: italic;
  opacity: 0.7;
  color: rgba(255, 248, 231, 0.5);
}

/* === MENU TABS === */

.menu-tabs {
  display: flex;
  gap: 0.5rem;
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}

.menu-tab {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1.8rem;
  border: 2px solid rgba(245, 166, 35, 0.3);
  border-radius: 50px;
  background: transparent;
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.menu-tab:hover {
  border-color: var(--honey);
  color: var(--honey);
  background: rgba(245, 166, 35, 0.08);
}

.menu-tab.active {
  background: var(--honey);
  border-color: var(--honey);
  color: var(--brown);
}

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

/* === MENU ITEMS (Breakfast & Lunch) === */

.menu-block {
  background: rgba(255, 248, 231, 0.04);
  border: 1px solid rgba(245, 166, 35, 0.12);
  border-radius: 16px;
  padding: 2rem;
}

.menu-block-note {
  color: rgba(255, 248, 231, 0.55);
  font-size: 0.88rem;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.menu-items-list {
  display: flex;
  flex-direction: column;
}

.menu-item {
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255, 248, 231, 0.06);
}

.menu-item:last-child {
  border-bottom: none;
}

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

.menu-item-name {
  font-weight: 600;
  color: var(--cream);
  font-size: 0.95rem;
}

.menu-item-name small {
  font-weight: 400;
  color: rgba(255, 248, 231, 0.5);
  font-size: 0.82rem;
}

.menu-item-price {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--honey);
  font-size: 0.95rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-item-price small {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  color: rgba(255, 248, 231, 0.5);
}

.menu-item-desc {
  color: rgba(255, 248, 231, 0.5);
  font-size: 0.83rem;
  margin: 0.2rem 0 0 0;
  line-height: 1.5;
}

.menu-sub-title {
  font-family: 'Pacifico', cursive;
  font-size: 1.15rem;
  color: var(--honey);
  margin-bottom: 0.75rem;
  font-weight: 400;
}

.menu-addons {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(245, 166, 35, 0.15);
}

.menu-addons p {
  color: rgba(255, 248, 231, 0.6);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.menu-addons strong {
  color: var(--honey);
  font-size: 0.88rem;
}

.addon-list {
  font-size: 0.8rem;
  color: rgba(255, 248, 231, 0.45);
}

.menu-addons-inline {
  color: rgba(255, 248, 231, 0.5);
  font-size: 0.83rem;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px dashed rgba(245, 166, 35, 0.12);
  margin-bottom: 0;
}

.menu-addons-inline strong {
  color: var(--honey);
}

.sides-grid {
  display: flex;
  flex-direction: column;
}

.menu-disclaimer {
  color: rgba(255, 248, 231, 0.3);
  font-size: 0.75rem;
  font-style: italic;
}

/* Tab pane transitions */
.tab-pane {
  animation: fadeInTab 0.4s ease;
}

@keyframes fadeInTab {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === HOURS & LOCATION === */

.section-hours {
  padding: 6rem 0;
  background-color: var(--cream);
}

.info-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(61, 43, 31, 0.08);
  border: 1px solid rgba(218, 165, 32, 0.15);
  height: 100%;
  transition: all 0.3s ease;
}

.info-card:hover {
  box-shadow: 0 12px 40px rgba(61, 43, 31, 0.12);
  transform: translateY(-2px);
}

.info-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--cream-dark);
}

.info-card-header i {
  font-size: 1.5rem;
  color: var(--honey);
}

.info-card-header h3 {
  font-size: 1.3rem;
  color: var(--brown);
  margin: 0;
}

/* Hours list */
.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px dashed rgba(218, 165, 32, 0.2);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row .day {
  font-weight: 600;
  color: var(--brown);
  font-size: 0.95rem;
}

.hours-row .time {
  font-weight: 500;
  color: var(--brown-light);
  font-size: 0.95rem;
}

.hours-row.closed .day {
  color: var(--text-muted);
}

.hours-row.closed .time {
  color: var(--red-diner);
  font-weight: 700;
}

.hours-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  background: var(--cream);
  padding: 0.6rem 1rem;
  border-radius: 8px;
  text-align: center;
}

/* Location */
.location-details {
  margin-bottom: 1.5rem;
}

.location-details address {
  font-size: 1.05rem;
  color: var(--brown);
  font-style: normal;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--honey-deep);
  text-decoration: none;
  transition: color 0.3s ease;
}

.phone-link:hover {
  color: var(--honey);
}

.carry-out-note {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  margin-bottom: 0;
}

/* === MAP === */

.section-map {
  line-height: 0;
  border-top: 4px solid var(--honey);
}

.section-map iframe {
  filter: sepia(15%) saturate(90%);
}

/* === FOOTER === */

.site-footer {
  background-color: var(--brown);
  padding: 3rem 0 2rem;
  position: relative;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Pacifico', cursive;
  font-size: 1.2rem;
  color: var(--honey);
  margin-bottom: 0.25rem;
}

@media (min-width: 992px) {
  .footer-brand {
    justify-content: flex-start;
  }
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255, 248, 231, 0.5);
  margin-bottom: 0;
}

.social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.social-links a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(245, 166, 35, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--honey);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.social-links a:hover {
  background-color: var(--honey);
  border-color: var(--honey);
  color: var(--brown);
  transform: translateY(-3px);
}

.footer-copy {
  font-size: 0.85rem;
  color: rgba(255, 248, 231, 0.5);
  margin-bottom: 0.25rem;
}

.footer-address {
  font-size: 0.8rem;
  color: rgba(255, 248, 231, 0.3);
  margin-bottom: 0;
}

.footer-honeycomb-border {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--honey) 0px,
    var(--honey) 20px,
    transparent 20px,
    transparent 24px
  );
}

/* === ANIMATIONS === */

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === RESPONSIVE === */

@media (max-width: 991.98px) {
  .hero-title {
    font-size: clamp(2.5rem, 12vw, 5rem);
  }

  .floating-bee {
    display: none;
  }

  .navbar-collapse {
    background-color: rgba(61, 43, 31, 0.98);
    margin-top: 0.5rem;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(245, 166, 35, 0.2);
  }

  .nav-cta {
    display: inline-block;
    margin-top: 0.5rem;
    margin-left: 0;
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .section-about,
  .section-menu,
  .section-hours {
    padding: 4rem 0;
  }

  .pricing-banner {
    padding: 1.5rem;
  }

  .info-card {
    padding: 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
  }

  .menu-tab {
    padding: 0.55rem 1.2rem;
    font-size: 0.85rem;
  }

  .menu-block {
    padding: 1.25rem;
  }

  .menu-item-header {
    flex-wrap: wrap;
    gap: 0.25rem;
  }

  .menu-item-price {
    font-size: 0.88rem;
  }
}

/* --- Utility: striped accent (diner stripe) --- */
.diner-stripe {
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--honey) 0px,
    var(--honey) 12px,
    var(--brown) 12px,
    var(--brown) 24px
  );
}
