/* ========== HERO ========== */
.hero {
  margin: 16px 20px;
  background: var(--primary);
  border-radius: var(--radius);
  display: flex;
  overflow: hidden;
  position: relative;
  min-height: 200px;
}
.hero-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}
.hero-subtitle {
  font-family: 'Brush Script MT', cursive;
  font-size: 18px;
  color: var(--accent);
  margin-bottom: 4px;
}
.hero-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 10px;
}
.hero-text {
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin-bottom: 16px;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  width: fit-content;
  transition: var(--transition);
}
.hero-btn:hover { background: var(--accent-hover); transform: translateX(4px); }
.hero-img {
  width: 45%;
  position: relative;
}
.hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.hero-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
}
.dot.active { background: var(--primary); }

/* ========== SEARCH ========== */
.search-bar {
  margin: 16px 20px;
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: 30px;
  padding: 4px 4px 4px 16px;
  box-shadow: var(--shadow);
}
.search-icon {
  color: var(--text-muted);
  font-size: 14px;
  margin-right: 10px;
}
.search-bar input {
  flex: 1;
  border: none;
  outline: none;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: transparent;
}
.search-bar input::placeholder { color: var(--text-muted); }
.filter-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  transition: var(--transition);
}
.filter-btn:hover { background: var(--primary-light); }

/* ========== CATEGORIES ========== */
.categories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 0 20px;
}
.cat-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.cat-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.cat-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.cat-info { flex: 1; }
.cat-info h3 { font-size: 13px; font-weight: 600; color: var(--text); }
.cat-info p { font-size: 10px; color: var(--text-light); }
.cat-arrow { font-size: 12px; }

/* ========== MEALS GRID ========== */
.meals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 0 20px 20px;
}

/* ========== SIDE MENU ========== */
.side-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 300;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}
.side-menu.open { visibility: visible; opacity: 1; }
.side-menu-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.side-menu-panel {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 280px;
  background: var(--white);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  border-radius: 0 20px 20px 0;
  overflow-y: auto;
}
.side-menu.open .side-menu-panel { transform: translateX(0); }
.side-menu-header {
  padding: 24px 20px;
  background: var(--primary);
  color: var(--white);
  position: relative;
}
.close-menu {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.side-nav { padding: 16px; }
.side-nav-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
  margin-bottom: 4px;
}
.side-nav-item i {
  width: 24px;
  text-align: center;
  color: var(--accent);
}
.side-nav-item:hover,
.side-nav-item.active { background: var(--bg); color: var(--primary); }
