/* ============================================
   HOME PAGE
   ============================================ */

/* --- Hero Banner --- */
.hero-banner {
  background: linear-gradient(135deg, #FF1E8C 0%, #D4006E 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  margin-bottom: var(--space-6);
  position: relative;
  overflow: hidden;
  min-height: 160px;
  display: flex;
  align-items: center;
}

/* Decorative circles */
.hero-banner {
  background: linear-gradient(135deg, #FF1E8C 0%, #D4006E 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  margin-bottom: var(--space-6);
  position: relative;
  overflow: hidden;
  min-height: 160px;
  display: flex;
  align-items: center;
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 140px;
  height: 140px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
}

.hero-banner::after {
  content: '🍽️';
  position: absolute;
  right: 20px;
  bottom: -10px;
  font-size: 80px;
  opacity: 0.18;
}

.hero-banner__text {
  position: relative;
  z-index: 1;
}

.hero-banner__sub {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.hero-banner__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: var(--space-2);
}

.hero-banner__tag {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.75);
  font-style: italic;
}

/* --- Category Pills --- */
.category-strip {
  display: flex;
  gap: var(--space-2);
  overflow-x: auto;
  padding-bottom: var(--space-2);
  margin-bottom: var(--space-6);
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.category-strip::-webkit-scrollbar {
  display: none;
}

.category-pill {
  flex-shrink: 0;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  border: 2px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text-muted);
  transition: all 0.15s ease;
  white-space: nowrap;
}

.category-pill.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #ffffff;
}

/* --- Food Grid --- */
.food-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}