/* ==========================================================================
   BOTANİK KAFE KIRŞEHİR - PIXEL-PERFECT MOBILE & DESKTOP STYLES
   100% Responsive, Touch-Optimized, No Overflows
   ========================================================================== */

/* 3D Background Canvas Layer */
#webgl-canvas-container,
#webgl-canvas-container canvas {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  z-index: 0 !important;
  pointer-events: none !important;
  touch-action: none !important;
}

/* Main Page Container */
.site-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  pointer-events: auto;
}

/* ==========================================================================
   NAVIGATION BAR (RESTORED FIXED & FLEX)
   ========================================================================== */
.luxury-navbar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  max-width: 100vw !important;
  z-index: 1000 !important;
  padding: 16px 28px !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  transition: var(--transition-medium) !important;
  background: linear-gradient(180deg, rgba(6, 11, 9, 0.95) 0%, rgba(6, 11, 9, 0) 100%) !important;
  box-sizing: border-box !important;
}

.luxury-navbar.scrolled {
  background: rgba(6, 11, 9, 0.98) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  border-bottom: 1px solid var(--border-glass) !important;
  padding: 10px 20px !important;
  box-shadow: var(--shadow-lg) !important;
}

.brand-container {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo {
  height: 42px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(223, 183, 108, 0.4));
}

.brand-title-group {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #fff;
  line-height: 1.1;
  white-space: nowrap;
}

.brand-tagline {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: var(--gold-primary);
  text-transform: uppercase;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
}

.nav-link {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition-fast);
  padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-light);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.audio-controller {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 28, 23, 0.85);
  border: 1px solid var(--border-glass);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  cursor: pointer;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 600;
  transition: var(--transition-fast);
}

.equalizer-bars {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 12px;
}

.eq-bar {
  width: 2px;
  background: var(--gold-primary);
  height: 4px;
  border-radius: 1px;
}

.audio-controller.playing .eq-bar:nth-child(1) { animation: soundWave 0.8s infinite alternate ease-in-out; }
.audio-controller.playing .eq-bar:nth-child(2) { animation: soundWave 0.5s infinite alternate ease-in-out 0.2s; }
.audio-controller.playing .eq-bar:nth-child(3) { animation: soundWave 1.0s infinite alternate ease-in-out 0.4s; }

@keyframes soundWave {
  0% { height: 2px; }
  100% { height: 12px; }
}

.table-indicator {
  display: none;
  align-items: center;
  gap: 6px;
  background: rgba(21, 128, 61, 0.25);
  border: 1px solid var(--emerald-light);
  color: #86efac;
  padding: 5px 10px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
}

.table-indicator.active {
  display: flex;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 130px 16px 60px;
  box-sizing: border-box;
}

.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.42) contrast(1.15);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(6, 11, 9, 0.3) 0%, rgba(6, 11, 9, 0.88) 75%, #060b09 100%),
              linear-gradient(to bottom, transparent 65%, #060b09 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 0 auto;
}

.hero-logo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 28, 23, 0.88);
  border: 1px solid var(--border-glass-bright);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  max-width: 95%;
}

.hero-logo-badge img {
  height: 20px;
  width: auto;
}

.hero-logo-badge span {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  font-weight: 700;
  white-space: nowrap;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0.03em;
  color: #fff;
  margin: 4px 0;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9);
  word-break: break-word;
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 2vw, 1.25rem);
  color: #e2e8f0;
  max-width: 640px;
  width: 100%;
  font-style: italic;
  line-height: 1.5;
  padding: 0 10px;
  box-sizing: border-box;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
  width: 100%;
}

/* Feature Cards Bar */
.hero-features-bar {
  position: relative;
  z-index: 3;
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  width: 100%;
  max-width: 960px;
}

.feature-pill {
  background: rgba(14, 25, 20, 0.85);
  border: 1px solid var(--border-glass);
  padding: 12px 14px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  transition: transform var(--transition-fast);
}

.feature-icon {
  font-size: 1.25rem;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.feature-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  color: #fff;
}

.feature-text span {
  font-size: 0.68rem;
  color: var(--text-muted);
  display: block;
}

/* ==========================================================================
   MENU & CATALOG SECTION
   ========================================================================== */
.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 16px;
  position: relative;
  z-index: 10;
  box-sizing: border-box;
}

.section-header {
  text-align: center;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
}

.section-subtitle {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: var(--gold-primary);
  text-transform: uppercase;
  font-weight: 700;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.03em;
  line-height: 1.2;
}

.section-desc {
  color: var(--text-muted);
  max-width: 580px;
  font-size: 0.88rem;
}

/* Category Tabs (Smooth Swipeable Bar) */
.menu-controls {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.search-bar-wrap {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}

.search-input {
  width: 100%;
  background: rgba(14, 25, 20, 0.9);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
  padding: 12px 18px 12px 42px;
  color: #fff;
  font-size: 0.9rem;
  outline: none;
  box-sizing: border-box;
}

.search-input:focus {
  border-color: var(--gold-primary);
}

.search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-primary);
  font-size: 0.95rem;
}

.category-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.cat-btn {
  background: rgba(14, 25, 20, 0.8);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.cat-btn:hover, .cat-btn.active {
  background: var(--gold-gradient);
  color: #060b09;
  border-color: var(--gold-light);
  font-weight: 700;
}

.dietary-tags {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.tag-btn {
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-dim);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  cursor: pointer;
}

.tag-btn.active {
  background: rgba(21, 128, 61, 0.3);
  border-color: var(--emerald-light);
  color: #86efac;
}

/* Product Cards Grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glass-bright);
}

.product-media {
  position: relative;
  height: 190px;
  width: 100%;
  background: #0d1a14;
  overflow: hidden;
  cursor: pointer;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.product-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
}

.product-badge-star {
  background: var(--gold-gradient);
  color: #060b09;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.product-fav-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(6, 11, 9, 0.75);
  border: 1px solid var(--border-glass);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}

.product-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 6px;
}

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

.product-category-name {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-primary);
  font-weight: 600;
}

.product-calories {
  font-size: 0.72rem;
  color: var(--text-dim);
}

.product-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.product-description {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-footer {
  margin-top: auto;
  padding-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-subtle);
}

.btn-add-cart {
  background: rgba(223, 183, 108, 0.15);
  border: 1px solid var(--border-glass-bright);
  color: var(--gold-light);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-add-cart:hover {
  background: var(--gold-gradient);
  color: #060b09;
  transform: scale(1.06);
}

/* ==========================================================================
   RESERVATION & OTHER PANELS
   ========================================================================== */
.reservation-card-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border-glass-bright);
  border-radius: var(--radius-xl);
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 36px;
}

.reservation-visual-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(12, 22, 17, 0.9) 0%, rgba(6, 11, 9, 0.95) 100%);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 26px;
}

.res-ambiance-badge {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  color: var(--gold-light);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.res-visual-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin: 10px 0;
}

.res-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.res-features-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #cbd5e1;
  font-size: 0.85rem;
}

.res-features-list li i {
  color: var(--gold-primary);
}

.reservation-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.zone-picker {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.zone-option {
  background: rgba(14, 25, 20, 0.8);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 10px;
  text-align: center;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  color: #cbd5e1;
}

.zone-option:hover, .zone-option.selected {
  background: rgba(223, 183, 108, 0.2);
  border-color: var(--gold-primary);
  color: var(--gold-light);
}

/* Wheel Section */
.wheel-section-wrap {
  background: linear-gradient(135deg, rgba(14, 25, 20, 0.95) 0%, rgba(6, 11, 9, 0.98) 100%);
  border: 1px solid var(--border-glass-bright);
  border-radius: var(--radius-xl);
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 32px;
}

.wheel-canvas-box {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 0 auto;
}

#wheel-canvas {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid var(--gold-primary);
  box-shadow: 0 0 30px rgba(223, 183, 108, 0.3);
}

.wheel-pointer {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 24px solid var(--gold-light);
  z-index: 10;
}

.wheel-center-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--gold-gradient);
  border: 2px solid #fff;
  color: #060b09;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 12;
}

/* Modals (Display None when inactive so zero click interference) */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(3, 7, 5, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 2000;
  display: none !important;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal-backdrop.active {
  display: flex !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

.modal-box {
  background: #0d1a14;
  border: 1px solid var(--border-glass-bright);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 24px;
  position: relative;
  box-shadow: var(--shadow-luxury);
}

.modal-close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-subtle);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Mobile Bottom Dock */
.pwa-bottom-dock {
  display: none;
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 20px);
  max-width: 460px;
  background: rgba(8, 16, 12, 0.98);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-glass-bright);
  border-radius: var(--radius-full);
  padding: 6px 8px;
  z-index: 1500;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.9), 0 0 20px rgba(223, 183, 108, 0.15);
  justify-content: space-around;
  align-items: center;
}

.dock-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  padding: 4px 6px;
  white-space: nowrap;
}

.dock-item i {
  font-size: 1.05rem;
}

.dock-item.active, .dock-item:hover {
  color: var(--gold-light);
}

.dock-badge {
  position: absolute;
  top: -2px;
  right: 2px;
  background: var(--gold-gradient);
  color: #060b09;
  font-size: 0.6rem;
  font-weight: 800;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* PWA Banner (Mobile Only) */
.pwa-install-banner {
  position: fixed;
  bottom: 78px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 24px);
  max-width: 400px;
  background: #0d1a14;
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-lg);
  padding: 10px 14px;
  z-index: 1600;
  box-shadow: var(--shadow-luxury);
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

@media (min-width: 769px) {
  .pwa-install-banner {
    display: none !important;
  }
}

/* Footer */
.luxury-footer {
  background: #040806;
  border-top: 1px solid var(--border-glass);
  padding: 60px 16px 110px;
  position: relative;
  z-index: 10;
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 30px;
}

.footer-brand h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 8px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

.footer-col h5 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  margin-bottom: 14px;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.82rem;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  max-width: 1280px;
  margin: 36px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--text-dim);
  font-size: 0.8rem;
}

.creator-badge:hover {
  background: var(--gold-gradient) !important;
  color: #060b09 !important;
  border-color: var(--gold-light) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(223, 183, 108, 0.4);
}

.creator-badge:hover i {
  color: #060b09 !important;
}

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

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (0px - 768px Mobile Specialist Rules)
   ========================================================================== */
@media (max-width: 992px) {
  .nav-links {
    display: none;
  }
  .pwa-bottom-dock {
    display: flex;
  }
  .reservation-card-wrap, .wheel-section-wrap {
    grid-template-columns: 1fr;
    padding: 24px 18px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .luxury-navbar {
    padding: 10px 14px;
  }
  .brand-logo {
    height: 34px;
  }
  .brand-name {
    font-size: 0.92rem;
    letter-spacing: 0.04em;
  }
  .brand-tagline {
    display: none; /* Hide subtitle to avoid top bar crowding */
  }
  .audio-controller span {
    display: none; /* Icon-only audio on small screens */
  }
  .audio-controller {
    padding: 8px 10px;
  }
  .btn-icon {
    width: 36px;
    height: 36px;
  }

  .hero-section {
    padding: 95px 14px 40px;
    min-height: auto;
  }
  .hero-logo-badge {
    padding: 5px 12px;
  }
  .hero-logo-badge span {
    font-size: 0.7rem;
  }
  .hero-title {
    font-size: 1.85rem;
    line-height: 1.18;
  }
  .hero-subtitle {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .hero-actions .btn-gold,
  .hero-actions .btn-outline-gold {
    width: 100%;
    padding: 13px 16px;
    font-size: 0.82rem;
  }

  .hero-features-bar {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 18px;
  }
  .feature-pill {
    padding: 10px;
    gap: 8px;
  }
  .feature-icon {
    font-size: 1.1rem;
  }
  .feature-text strong {
    font-size: 0.72rem;
  }
  .feature-text span {
    font-size: 0.62rem;
  }

  /* Horizontal swipeable category list */
  .category-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    width: 100%;
  }
  .category-tabs::-webkit-scrollbar {
    display: none;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .section-container {
    padding: 44px 14px;
  }

  .zone-picker {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .wheel-canvas-box {
    width: 240px;
    height: 240px;
  }
}

@media (max-width: 400px) {
  .brand-name {
    font-size: 0.85rem;
  }
  .hero-features-bar {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 1.65rem;
  }
}
