:root {
  --color-bg: #05100c; /* Koyu zümrüt/siyah zemin */
  --color-emerald: #0a1f16;
  --color-gold: #d4af37;
  --color-gold-light: #f3d573;
  --color-amber: #cc7722; /* İştah açıcı sıcak kehribar */
  --color-copper: #b85d19; /* Bakır yansımalar */
  --color-text-main: #f5f5f5;
  --color-text-muted: #a0aab2;
  
  --glass-bg: rgba(10, 31, 22, 0.55);
  --glass-border: rgba(212, 175, 55, 0.15);
  
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Outfit', sans-serif;
}

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

body {
  background-color: var(--color-bg);
  color: var(--color-text-main);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

/* Sıcak Pub Işıklandırma Efektleri (Kehribar/Bakır/Zümrüt) */
.ambient-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  z-index: -1;
  opacity: 0.35;
  pointer-events: none;
}
.glow-1 {
  top: -10%; left: -20%;
  width: 300px; height: 300px;
  background: var(--color-amber);
}
.glow-2 {
  top: 40%; right: -20%;
  width: 400px; height: 400px;
  background: var(--color-copper);
}
.glow-3 {
  bottom: -10%; left: 20%;
  width: 350px; height: 350px;
  background: var(--color-emerald);
  box-shadow: 0 0 120px 60px var(--color-amber);
}

/* Üst Başlık (Header) */
.top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: linear-gradient(to bottom, rgba(5,16,12,0.95) 0%, rgba(5,16,12,0) 100%);
  position: relative;
  z-index: 10;
}
.brand .logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-gold);
  letter-spacing: 2px;
}
.brand .subtitle {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.ai-btn {
  background: rgba(204, 119, 34, 0.15);
  border: 1px solid rgba(204, 119, 34, 0.4);
  color: var(--color-gold-light);
  padding: 8px 14px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.ai-btn:hover {
  background: rgba(204, 119, 34, 0.3);
}
.ai-btn span.material-icons-round {
  font-size: 1.1rem;
}

/* Sabit (Sticky) Üst Menü */
.category-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  overflow-x: auto;
  gap: 15px;
  padding: 15px 20px;
  background: rgba(5, 16, 12, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--glass-border);
  scrollbar-width: none;
}
.category-nav::-webkit-scrollbar {
  display: none;
}
.cat-btn {
  background: transparent;
  border: none;
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 5px 0;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}
.cat-btn.active {
  color: var(--color-gold);
}
.cat-btn.active::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-amber);
  box-shadow: 0 -2px 10px var(--color-amber);
}

/* Ana İçerik Konteyneri */
.menu-container {
  padding: 20px;
  padding-bottom: 80px;
}

/* Seviye 2 Başlık (Örn: Salata, Aperatifler) */
.section-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-gold-light);
  margin: 35px 0 15px 0;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

/* Ürün Kartı (Glassmorphism) */
.product-card {
  display: flex;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 15px;
  margin-bottom: 15px;
  gap: 15px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  transition: transform 0.2s ease;
}
.product-card:active {
  transform: scale(0.98);
}
.product-img {
  width: 90px;
  height: 90px;
  border-radius: 12px;
  object-fit: cover;
  background: rgba(0,0,0,0.3);
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}
.product-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text-main);
  margin-bottom: 4px;
}
.product-desc {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 10px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-price {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-amber); /* Fiyatlarda amber tonu iştah açıcı */
  font-weight: 600;
  margin-top: auto;
}

/* Yükleniyor Durumu */
.loading-state {
  text-align: center;
  color: var(--color-gold);
  padding: 50px 0;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0% { opacity: 0.5; }
  50% { opacity: 1; }
  100% { opacity: 0.5; }
}

/* KVKK Footer */
.kvkk-footer {
  text-align: center;
  padding: 20px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 40px;
}
.kvkk-footer a {
  color: var(--color-gold);
  text-decoration: none;
}
