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

:root {
  --c-primary:    #FF6B35;
  --c-secondary:  #FFD93D;
  --bg-card:      rgba(255, 255, 255, 0.02);
  --text-light:   #ffffff;
  --text-muted:   #9ca3af;
  --border-light: rgba(255, 255, 255, 0.06);
  --glass-blur:   blur(24px);
  --glass-border: 1px solid var(--border-light);
  --font-head:    'Outfit', sans-serif;
  --font-body:    'Inter', sans-serif;
  --transition:   all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ── Reset ── */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background:
    radial-gradient(ellipse at 15% 10%, rgba(255,107,53,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 90%, rgba(255,160,50,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(180,40,20,0.05) 0%, transparent 80%),
    linear-gradient(150deg, #1f0b08 0%, #0d0403 40%, #120403 100%);
  background-attachment: fixed;
  color: var(--text-light);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 5% -10%,  rgba(255,107,53,0.15)  0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 95% 110%, rgba(255,160,30,0.1)  0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 85% 15%,  rgba(220,50,40,0.08)  0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
  padding: 0 1.2rem;
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  padding: 4rem 0 3rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-name {
  font-size: clamp(2.2rem, 8vw, 3.8rem);
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 0.8rem;
  background: linear-gradient(180deg, #FFFFFF 0%, #A3A3B5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.hero-slogan {
  font-size: 1.05rem;
  color: var(--c-primary);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 600;
  opacity: 0.9;
}

/* ══════════════════════════════════════
   STICKY NAV — OUTER (tam genişlik bg)
══════════════════════════════════════ */
.cat-nav-outer {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(90deg, rgba(35, 10, 5, 0.96) 0%, rgba(65, 20, 5, 0.96) 50%, rgba(35, 10, 5, 0.96) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 107, 53, 0.25);
  transition: box-shadow 0.3s ease;
}
.cat-nav-outer.scrolled {
  box-shadow: 0 8px 32px rgba(255, 107, 53, 0.2);
}

/* ── Inner wrapper (ortalanmış, flex) ── */
.cat-nav-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 700px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  transition: padding 0.3s ease;
}
.cat-nav-outer.scrolled .cat-nav-wrapper {
  padding: 0.55rem 1rem;
}

/* ── Ok Butonları ── */
.nav-arrow {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: all 0.2s ease;
  z-index: 2;
}
.nav-arrow:hover {
  background: var(--c-primary);
  border-color: transparent;
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(255,107,53,0.4);
}
.nav-arrow:active { transform: scale(0.92); }
.nav-arrow.hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.85);
}

/* ── Scroll Track ── */
.cat-nav-track {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  position: relative;
}
.cat-nav-track::before,
.cat-nav-track::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 24px;
  z-index: 1;
  pointer-events: none;
}
.cat-nav-track::before {
  left: 0;
  background: linear-gradient(to right, rgba(35, 10, 5, 0.96), transparent);
}
.cat-nav-track::after {
  right: 0;
  background: linear-gradient(to left, rgba(35, 10, 5, 0.96), transparent);
}

/* ── Cat-nav ── */
.cat-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 0.15rem 1rem;
}
.cat-nav::-webkit-scrollbar { display: none; }

/* ── Kategori Butonları ── */
.cat-btn {
  flex-shrink: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  color: var(--text-muted);
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  text-decoration: none;
}
.cat-btn i {
  font-size: 0.95rem;
  opacity: 0.6;
  transition: var(--transition);
}
.cat-btn:hover {
  background: rgba(255,255,255,0.09);
  color: #FFF;
  transform: translateY(-2px);
}
.cat-btn.active {
  background: linear-gradient(135deg, var(--c-primary) 0%, #E85A2A 100%);
  color: #FFF;
  border-color: transparent;
  box-shadow: 0 8px 25px rgba(255,107,53,0.4);
}
.cat-btn.active i { opacity: 1; }

/* ══════════════════════════════════════
   MENU SECTION
══════════════════════════════════════ */
.menu-section { padding: 2.5rem 0 5rem; }
.category-block { margin-bottom: 3.5rem; scroll-margin-top: 80px; }

.category-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.8rem;
  margin-bottom: 1.8rem;
  color: #FFF;
  letter-spacing: -0.5px;
}
.category-title i {
  color: var(--c-secondary);
  font-size: 1.4rem;
  background: rgba(255,217,61,0.1);
  width: 45px; height: 45px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px rgba(255,217,61,0.2);
}
.category-title::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.1), transparent);
}

/* ══════════════════════════════════════
   PRODUCT CARD
══════════════════════════════════════ */
.product-card {
  background: #000000;
  border: 1px solid rgba(255, 107, 53, 0.25);
  border-left: 3px solid var(--c-primary);
  border-radius: 20px;
  padding: 1.2rem;
  margin-bottom: 1.2rem;
  display: flex;
  gap: 1.2rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 10px 25px rgba(0,0,0,0.6), inset 0 0 20px rgba(255, 107, 53, 0.05);
  animation: cardFadeIn 0.4s ease both;
}

@keyframes cardFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.product-card:hover {
  transform: translateY(-6px) scale(1.02);
  background: #050505;
  border-color: var(--c-primary);
  box-shadow: 0 15px 35px rgba(255,107,53,0.2), 0 0 0 1px var(--c-primary);
}
.product-card:active { transform: scale(0.98); }

.product-img-wrap {
  width: 140px;
  height: 120px;
  flex-shrink: 0;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
}
.product-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: var(--transition);
}
.product-card:hover .product-img { transform: scale(1.12) rotate(3deg); }

.product-placeholder {
  font-size: 2.5rem;
  color: rgba(255,255,255,0.1);
  transition: var(--transition);
}
.product-card:hover .product-placeholder {
  color: rgba(255,255,255,0.2);
  transform: scale(1.1);
}

.product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.product-name {
  font-size: 1.15rem;
  color: #FFF;
  line-height: 1.2;
  font-family: var(--font-head);
  font-weight: 600;
}
.product-price {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.15rem;
  white-space: nowrap;
  background: linear-gradient(135deg, var(--c-secondary), #FFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.product-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
}
.product-meta {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.badge {
  font-size: 0.72rem;
  padding: 0.25rem 0.55rem;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.badge-featured {
  background: linear-gradient(135deg, rgba(255,107,53,0.2), rgba(255,107,53,0.05));
  color: var(--c-primary);
  border: 1px solid rgba(255,107,53,0.3);
  box-shadow: 0 4px 10px rgba(255,107,53,0.1);
}
.badge-allergen {
  background: rgba(255,255,255,0.03);
  color: #AAA;
  border: 1px solid rgba(255,255,255,0.1);
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.site-footer {
  text-align: center;
  padding: 3rem 1rem 4rem;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.6) 100%);
  position: relative;
  z-index: 1;
}
.footer-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.footer-text i { color: var(--c-primary); font-size: 1.1rem; }

.wifi-box {
  margin-top: 1.5rem;
  padding: 0.8rem 1.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(10px);
  color: #FFF;
}
.wifi-box strong { color: var(--c-secondary); font-family: var(--font-head); font-size: 1.1rem; }

.copyright {
  margin-top: 2.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ══════════════════════════════════════
   MOBILE RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 520px) {
  .hero { padding: 2.5rem 0 2rem; }
  .hero-slogan { font-size: 0.82rem; letter-spacing: 2.5px; }

  .cat-nav-wrapper { padding: 0.65rem 0.75rem; gap: 0.35rem; }
  .cat-btn { padding: 0.5rem 0.95rem; font-size: 0.82rem; }
  .cat-btn i { font-size: 0.85rem; }
  .nav-arrow { width: 32px; height: 32px; font-size: 0.72rem; }

  .product-card { padding: 1rem; gap: 0.9rem; border-radius: 18px; }
  .product-img-wrap { width: 110px; height: 95px; border-radius: 14px; }
  .product-name { font-size: 1rem; }
  .product-price { font-size: 1rem; }

  .category-title { font-size: 1.4rem; }
  .category-title i { width: 38px; height: 38px; font-size: 1.1rem; }

  .site-footer { padding: 2rem 1rem 3rem; }
}

@media (max-width: 380px) {
  .product-img-wrap { width: 95px; height: 85px; }
  .product-card { gap: 0.75rem; padding: 0.85rem; }
}
