@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&display=swap');

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

:root {
  --orange-50:  #fdf2f2;
  --orange-100: #fde8e8;
  --orange-200: #fbd5d5;
  --orange-300: #f8b4b4;
  --orange-400: #f98080;
  --orange-500: #980500; /* Primary */
  --orange-600: #7a0400;
  --orange-700: #650300;
  --orange-800: #4d0200;
  --orange-900: #350100;

  --bg: #fefcfb;
  --bg-card: #ffffff;
  --bg-surface: #fdf2f2;

  --text-primary: #2b0a08;
  --text-secondary: #980500;
  --text-muted: #8b6b69;
  --radius: 16px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Subtle BG pattern */
.bg-glow {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 600px 400px at 50% 0%, rgba(249,115,22,0.08), transparent),
    radial-gradient(ellipse 400px 300px at 80% 80%, rgba(234,88,12,0.04), transparent);
}

/* HEADER */
.header {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  padding: 16px;
  background: linear-gradient(180deg, var(--orange-100) 0%, var(--bg) 100%);
}

.logo-wrap {
  width: 100%; height: auto;
  animation: fadeDown 0.6s ease-out;
}
.logo-wrap img { width: 100%; height: auto; border-radius: 12px; }

/* CATEGORY NAV */
.cat-nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; gap: 8px;
  padding: 12px 16px;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  background: rgba(254,252,249,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(249,115,22,0.12);
  scrollbar-width: none;
}
.cat-nav::-webkit-scrollbar { display: none; }

.cat-btn {
  flex-shrink: 0;
  padding: 8px 18px;
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: 50px;
  background: var(--bg-card);
  color: var(--text-muted);
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem; font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.cat-btn.active, .cat-btn:hover {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color: #fff;
  border-color: var(--orange-500);
  box-shadow: 0 4px 20px rgba(249,115,22,0.25);
}

/* MENU SECTION */
.menu {
  position: relative; z-index: 1;
  padding: 32px 16px;
  margin: 0;
  background: var(--orange-50);
  border-top: 3px solid var(--orange-400);
}

.category {
  margin-top: 28px;
  animation: fadeUp 0.5s ease-out both;
}
.category:first-child {
  margin-top: 0;
}

.cat-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
}
.cat-icon {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--orange-400), var(--orange-600));
  border-radius: 12px; font-size: 1.2rem;
  box-shadow: 0 4px 16px rgba(249,115,22,0.2);
}
.cat-header h2 {
  font-size: 1.15rem; font-weight: 700;
  color: var(--orange-800);
}

/* PRODUCT CARDS */
.products { display: flex; flex-direction: column; gap: 8px; }

.product-card {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px;
  background: var(--bg-card);
  border: 1px solid rgba(249,115,22,0.08);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}
.product-card:hover {
  border-color: rgba(249,115,22,0.2);
  box-shadow: 0 4px 16px rgba(249,115,22,0.1);
  transform: translateX(4px);
}

.product-name {
  font-size: 0.95rem; font-weight: 500;
  color: var(--text-primary);
}

.product-price {
  flex-shrink: 0;
  padding: 6px 14px;
  background: var(--orange-50);
  border: 1px solid rgba(249,115,22,0.15);
  border-radius: 50px;
  font-size: 0.85rem; font-weight: 700;
  color: var(--orange-700);
  white-space: nowrap;
}

/* FOOTER */
.footer {
  position: relative; z-index: 1;
  text-align: center;
  padding: 24px 16px;
  border-top: 1px solid rgba(249,115,22,0.1);
  color: var(--text-muted);
  font-size: 0.75rem;
}

/* ANIMATIONS */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Staggered animation */
.category:nth-child(2) { animation-delay: 0.1s; }
.category:nth-child(3) { animation-delay: 0.15s; }
.category:nth-child(4) { animation-delay: 0.2s; }
.category:nth-child(5) { animation-delay: 0.25s; }

.logo-wrap { max-width: 180px; }

/* Responsive */
@media (min-width: 600px) {
  .header { align-items: flex-start; }

}
