/* ========== RESET & BASE ========== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1A1A1A;
  background: #FFFFFF;
  line-height: 1.5;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 48px 0;
}

.text-center {
  text-align: center;
}

.desktop-only {
  display: none;
}

.mobile-only {
  display: block;
}

@media (min-width: 768px) {
  .section {
    padding: 64px 0;
  }
  .desktop-only {
    display: block;
  }
  .mobile-only {
    display: none;
  }
}

/* ========== BUTTONS ========== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #C8102E;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border: none;
  border-radius: 12px;
  padding: 12px 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(200, 16, 46, 0.35);
}

.btn-primary:hover {
  background: #A00D24;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(200, 16, 46, 0.45);
}

.btn-primary--large {
  font-size: 16px;
  padding: 16px 32px;
}

.btn-primary--small {
  font-size: 12px;
  padding: 8px 16px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(200, 16, 46, 0.3);
}

.btn-text {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s;
}

.btn-text:hover {
  color: #fff;
}

.btn-glass {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.3);
}

.btn-outline-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.2s;
}

.btn-outline-hero:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-add {
  width: 32px;
  height: 32px;
  background: #C8102E;
  border: none;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  box-shadow: 0 4px 12px rgba(200, 16, 46, 0.3);
  transition: all 0.2s;
  flex-shrink: 0;
}

.btn-add:hover {
  background: #A00D24;
  transform: scale(1.05);
}

.btn-dark {
  display: block;
  width: 100%;
  background: #1A1A1A;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  border: none;
  border-radius: 12px;
  padding: 16px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-dark:hover {
  background: #333;
  transform: translateY(-2px);
}

.btn-white {
  display: block;
  width: 100%;
  background: #fff;
  color: #C8102E;
  font-weight: 700;
  font-size: 15px;
  border: none;
  border-radius: 12px;
  padding: 16px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
  background: #f9f9f9;
  transform: translateY(-2px);
}

.btn-outline {
  background: #fff;
  color: #1A1A1A;
  font-weight: 700;
  font-size: 14px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 12px 32px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-outline:hover {
  border-color: #C8102E;
  color: #C8102E;
}

.link-red {
  color: #C8102E;
  font-size: 14px;
  font-weight: 700;
}

.link-red:hover {
  text-decoration: underline;
}

/* ========== SECTION HEADERS ========== */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
}

.section-header--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.section-label__bar {
  width: 4px;
  height: 24px;
  background: #C8102E;
  border-radius: 100px;
}

.section-label__text {
  color: #C8102E;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.section-label--orange .section-label__text,
.section-label--orange span {
  color: #FF6B35;
}

.section-title {
  font-size: 24px;
  font-weight: 800;
  color: #1A1A1A;
  letter-spacing: -0.02em;
}

.section-subtitle {
  color: #6b7280;
  font-size: 14px;
  margin-top: 8px;
  max-width: 480px;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 30px;
  }
  .section-subtitle {
    font-size: 16px;
  }
}

/* Ion Badge */
.ion-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 16, 46, 0.1);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 16px;
}

.ion-badge span {
  color: #C8102E;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.ion-badge--orange {
  background: rgba(255, 107, 53, 0.1);
}

.ion-badge--orange span {
  color: #FF6B35;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2));
}

.hero__nav {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 0;
}

.hero__logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #C8102E;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(200, 16, 46, 0.4);
}

.hero__logo-text {
  color: #fff;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.02em;
}

.hero__nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: calc(100% - 60px);
  padding: 0 20px 40px;
}

.hero__location-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 100px;
  padding: 6px 12px;
  margin-bottom: 16px;
  width: fit-content;
}

.hero__location-pill span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 500;
}

.hero__title {
  color: #fff;
  font-weight: 800;
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 500px;
}

.hero__title-accent {
  color: #FFB800;
}

.hero__subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  font-weight: 500;
  margin-top: 12px;
  max-width: 420px;
}

.hero__cta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero__stat {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero__stat strong {
  color: #fff;
  font-size: 14px;
}

.hero__stat-sub {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.hero__stat-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.2);
}

.hero__stat-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: 500;
}

@media (min-width: 768px) {
  .hero {
    height: 600px;
  }
  .hero__nav {
    padding: 32px 48px 0;
  }
  .hero__content {
    padding: 0 48px 48px;
  }
  .hero__title {
    font-size: 56px;
  }
  .hero__subtitle {
    font-size: 18px;
  }
}

/* ========== FEATURED DISHES ========== */
.featured-dishes {
  background: #fff;
}

.dishes-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.dishes-grid::-webkit-scrollbar {
  display: none;
}

@media (min-width: 768px) {
  .dishes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: visible;
    padding-bottom: 0;
  }
}

/* Dish Card */
.dish-card {
  min-width: 260px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  scroll-snap-align: start;
}

.dish-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.dish-card__image-wrap {
  position: relative;
  height: 176px;
  overflow: hidden;
}

.dish-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dish-card:hover .dish-card__image {
  transform: scale(1.05);
}

.dish-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  padding: 4px 10px;
  border-radius: 100px;
}

.dish-card__tag--red { background: #C8102E; }
.dish-card__tag--orange { background: #FF6B35; }
.dish-card__tag--yellow { background: #FFB800; }

.dish-card__fav {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: background 0.2s;
  color: #6b7280;
}

.dish-card__fav:hover {
  background: #fff;
}

.dish-card__body {
  padding: 16px;
}

.dish-card__info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.dish-card__name {
  font-size: 15px;
  font-weight: 700;
  color: #1A1A1A;
  line-height: 1.3;
}

.dish-card__restaurant {
  font-size: 12px;
  color: #6b7280;
  margin-top: 4px;
  font-weight: 500;
}

.dish-card__rating {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #f0fdf4;
  padding: 2px 8px;
  border-radius: 6px;
  flex-shrink: 0;
}

.dish-card__rating span {
  font-size: 12px;
  font-weight: 700;
  color: #15803d;
}

.dish-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #f3f4f6;
}

.dish-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dish-card__price {
  font-size: 18px;
  font-weight: 800;
  color: #C8102E;
}

.dish-card__time {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #9ca3af;
  font-size: 12px;
  font-weight: 500;
}

/* ========== LIVE KITCHEN ========== */
.live-kitchen {
  background: #FFF8F0;
}

.live-camera {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
  max-width: 900px;
  margin: 0 auto;
}

.live-camera__bg {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .live-camera__bg {
    height: 400px;
  }
}

.live-camera__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.4));
}

.live-camera__top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
}

@media (min-width: 768px) {
  .live-camera__top {
    padding: 24px;
  }
}

.live-camera__top-left,
.live-camera__top-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #dc2626;
  border-radius: 100px;
  padding: 4px 12px;
}

.live-indicator__dot {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.live-indicator span {
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.live-viewers {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 100px;
  padding: 4px 12px;
}

.live-viewers span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 10px;
  font-weight: 500;
}

.live-hd {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 100px;
  padding: 4px 12px;
}

.live-hd span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 10px;
  font-weight: 500;
}

.live-camera__btn {
  width: 32px;
  height: 32px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.live-camera__timestamp {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 100px;
  padding: 4px 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
  font-family: 'Courier New', monospace;
  z-index: 2;
}

@media (min-width: 768px) {
  .live-camera__timestamp {
    top: 24px;
  }
}

/* Camera Grid */
.live-camera__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.live-camera__grid-v1 {
  position: absolute;
  left: 33.33%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.live-camera__grid-v2 {
  position: absolute;
  left: 66.66%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.live-camera__grid-h1 {
  position: absolute;
  top: 33.33%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.live-camera__grid-h2 {
  position: absolute;
  top: 66.66%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.live-camera__bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 16px;
}

@media (min-width: 768px) {
  .live-camera__bottom {
    padding: 24px;
  }
}

.live-camera__bottom-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.live-camera__kitchen-badge {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #FFB800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.live-camera__kitchen-name {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: block;
}

.live-camera__kitchen-cam {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

/* Feature Cards */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .features-grid {
    gap: 24px;
  }
}

.feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s;
}

.feature-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .feature-card {
    padding: 24px;
  }
}

.feature-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(200, 16, 46, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

@media (min-width: 768px) {
  .feature-card__icon {
    width: 48px;
    height: 48px;
  }
}

.feature-card__title {
  font-size: 12px;
  font-weight: 700;
  color: #1A1A1A;
}

@media (min-width: 768px) {
  .feature-card__title {
    font-size: 14px;
  }
}

.feature-card__desc {
  font-size: 10px;
  color: #9ca3af;
  margin-top: 4px;
}

@media (min-width: 768px) {
  .feature-card__desc {
    font-size: 12px;
  }
}

/* ========== SUBSCRIPTIONS ========== */
.subscriptions {
  background: #fff;
}

.plans-grid {
  display: grid;
  gap: 16px;
  align-items: start;
}

@media (min-width: 768px) {
  .plans-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.plan-card {
  position: relative;
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s;
}

.plan-card:hover {
  transform: translateY(-4px);
}

@media (min-width: 768px) {
  .plan-card {
    padding: 32px;
  }
}

.plan-card--featured {
  background: linear-gradient(135deg, #C8102E, #FF6B35);
  color: #fff;
  border: none;
  box-shadow: 0 8px 40px rgba(200, 16, 46, 0.3);
}

@media (min-width: 768px) {
  .plan-card--featured {
    transform: scale(1.05);
  }
  .plan-card--featured:hover {
    transform: scale(1.05) translateY(-4px);
  }
}

.plan-card--premium {
  background: linear-gradient(135deg, rgba(255, 184, 0, 0.08), rgba(255, 107, 53, 0.08));
}

.plan-card__badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #FFB800;
  color: #1A1A1A;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 16px;
  border-radius: 0 24px 0 12px;
}

.plan-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.plan-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(200, 16, 46, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.plan-card__icon--white {
  background: rgba(255, 255, 255, 0.2);
}

.plan-card__icon--gold {
  background: rgba(255, 107, 53, 0.15);
}

.plan-card__name {
  font-size: 18px;
  font-weight: 700;
}

.plan-card__price {
  margin-bottom: 4px;
}

.plan-card__amount {
  font-size: 40px;
  font-weight: 800;
}

.plan-card__period {
  font-size: 14px;
  color: #9ca3af;
}

.plan-card--featured .plan-card__period {
  color: rgba(255, 255, 255, 0.7);
}

.plan-card__desc {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 24px;
}

.plan-card--featured .plan-card__desc {
  color: rgba(255, 255, 255, 0.8);
}

.plan-card__features {
  margin-bottom: 32px;
}

.plan-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #4b5563;
  padding: 6px 0;
}

.plan-card--featured .plan-card__features li {
  color: rgba(255, 255, 255, 0.9);
}

.check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.check-icon--white {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* ========== POPULAR MEALS ========== */
.popular-meals {
  background: #FAFAFA;
}

.category-filters {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 16px;
  margin-bottom: 24px;
  -webkit-overflow-scrolling: touch;
}

.category-filters::-webkit-scrollbar {
  display: none;
}

.category-btn {
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.2s;
}

.category-btn:hover {
  background: #f3f4f6;
}

.category-btn--active {
  background: #C8102E;
  color: #fff;
  border-color: #C8102E;
  box-shadow: 0 4px 12px rgba(200, 16, 46, 0.3);
}

.meals-grid {
  display: grid;
  gap: 12px;
}

@media (min-width: 768px) {
  .meals-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .meals-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Meal Card */
.meal-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  cursor: pointer;
}

.meal-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.meal-card__image-wrap {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.meal-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.meal-card:hover .meal-card__image {
  transform: scale(1.1);
}

.meal-card__content {
  flex: 1;
  min-width: 0;
}

.meal-card__name {
  font-size: 14px;
  font-weight: 700;
  color: #1A1A1A;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.meal-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.meal-card__rating {
  display: flex;
  align-items: center;
  gap: 2px;
}

.meal-card__rating span {
  font-size: 12px;
  font-weight: 700;
  color: #1A1A1A;
}

.meal-card__orders {
  color: #9ca3af;
  font-size: 10px;
  font-weight: 500;
}

.meal-card__dot {
  color: #d1d5db;
  font-size: 12px;
}

.meal-card__price {
  font-size: 14px;
  font-weight: 800;
  color: #C8102E;
  margin-top: 4px;
}

/* ========== FOOTER ========== */
.footer {
  background: #1A1A1A;
  color: #fff;
  padding: 48px 0;
}

.footer__grid {
  display: grid;
  gap: 32px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

.footer__desc {
  color: #9ca3af;
  font-size: 14px;
  line-height: 1.6;
}

.footer__socials {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer__social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.2s;
}

.footer__social-btn:hover {
  background: #C8102E;
}

.footer__links h4 {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
}

.footer__links li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__links li a,
.footer__links li {
  color: #9ca3af;
  font-size: 14px;
  padding: 4px 0;
  transition: color 0.2s;
}

.footer__links li a:hover {
  color: #FFB800;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer__bottom p {
  color: #6b7280;
  font-size: 12px;
}

.footer__bottom-links {
  display: flex;
  gap: 24px;
}

.footer__bottom-links a {
  color: #6b7280;
  font-size: 12px;
  transition: color 0.2s;
}

.footer__bottom-links a:hover {
  color: #fff;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}