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

body {
  font-family: 'Inter', sans-serif;
  background: #f8fafc;
  color: #1e293b;
  line-height: 1.5;
}

.menu-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 24px 20px 48px;
  background: #ffffff;
  min-height: 100vh;
}

/* İşletme Kartı */
.business-card {
  background: linear-gradient(135deg, #fef9f0, #ffffff);
  border-radius: 32px;
  padding: 24px;
  margin-bottom: 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  border: 1px solid #fef3c7;
}

.business-header {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.business-logo {
  width: 160px;
  height: 160px;
  border-radius: 20px;
  background: #f59e0b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: bold;
  color: #fff;
  object-fit: cover;
}

.business-info h1 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #0f172a;
}

.business-address, .business-phone {
  font-size: 13px;
  color: #64748b;
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.business-address i, .business-phone i {
  width: 16px;
  color: #f59e0b;
}

.business-social {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.business-social a {
  color: #94a3b8;
  font-size: 20px;
  transition: color 0.2s;
}

.business-social a:hover {
  color: #f59e0b;
}

/* Kategori - Ortalanmış, İkonlu */
.category-wrapper {
  margin-bottom: 28px;
  position: sticky;
  top: 0;
  background: white;
  padding: 8px 0 12px;
  z-index: 10;
}

.category-center {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cat-btn {
  background: #f1f5f9;
  border: none;
  padding: 10px 24px;
  border-radius: 60px;
  font-size: 14px;
  font-weight: 500;
  color: #475569;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cat-btn i {
  font-size: 14px;
}

.cat-btn:hover {
  background: #fef3c7;
  color: #f59e0b;
}

.cat-btn:hover i {
  color: #f59e0b;
}

.cat-btn.active {
  background: #f59e0b;
  color: white;
}

.cat-btn.active i {
  color: white;
}

/* Menü Listesi */
.menu-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Menü Kartı - Görselli */
.menu-card {
  background: white;
  border: 1px solid #f0f2f5;
  border-radius: 24px;
  padding: 16px;
  display: flex;
  gap: 16px;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s;
}

.menu-card:hover {
  border-color: #fde68a;
  background: #fefef8;
  transform: translateX(4px);
}

/* Ürün Görseli */
.menu-image {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: #fef3c7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.menu-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-image i {
  font-size: 32px;
  color: #f59e0b;
}

/* Ürün Bilgileri */
.menu-info {
  flex: 1;
}

.menu-name {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.menu-badge {
  background: #fef3c7;
  font-size: 10px;
  font-weight: 600;
  color: #b45309;
  padding: 2px 8px;
  border-radius: 30px;
}

.menu-price {
  font-size: 16px;
  font-weight: 700;
  color: #f59e0b;
  margin-top: 4px;
}

.menu-arrow {
  color: #cbd5e1;
  font-size: 14px;
  flex-shrink: 0;
}

.menu-card:hover .menu-arrow {
  color: #f59e0b;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.show {
  display: flex;
}

.modal-content {
  background: white;
  max-width: 500px;
  width: 100%;
  border-radius: 32px;
  padding: 28px;
  position: relative;
  max-height: 85vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #94a3b8;
}

/* Modal Görsel */
.modal-image {
  width: 120px;
  height: 120px;
  margin: 0 auto 16px;
  border-radius: 60px;
  overflow: hidden;
  background: #fef3c7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-image i {
  font-size: 48px;
  color: #f59e0b;
}

.modal-content h2 {
  font-size: 24px;
  text-align: center;
  margin-bottom: 8px;
}

.modal-price {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #f59e0b;
  margin-bottom: 24px;
}

.modal-section {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f0f2f5;
}

.modal-section-title {
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #334155;
}

.modal-badge {
  background: #fef3c7;
  display: inline-block;
  padding: 6px 14px;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 600;
  color: #b45309;
  margin-top: 8px;
}

/* Legal Footer */
.legal-footer {
  background: #fef2e8;
  padding: 14px 18px;
  border-radius: 16px;
  margin: 32px 0 16px;
  font-size: 11px;
  color: #9a3412;
  text-align: center;
}

.footer-credit {
  text-align: center;
  font-size: 11px;
  color: #cbd5e1;
  padding-top: 16px;
}

/* Toast */
.menu-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #1e293b;
  color: white;
  padding: 10px 24px;
  border-radius: 60px;
  font-size: 13px;
  z-index: 1100;
  transition: 0.2s;
  opacity: 0;
}

.menu-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* Responsive */
@media (max-width: 600px) {
  .menu-container {
    padding: 16px 14px 32px;
  }
  
  .business-header {
    flex-direction: column;
    text-align: center;
  }
  
  .business-info h1 {
    font-size: 22px;
  }
  
  .business-address, .business-phone {
    justify-content: center;
  }
  
  .business-social {
    justify-content: center;
  }
  
  .category-center {
    gap: 8px;
  }
  
  .cat-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
  
  .menu-card {
    padding: 12px;
    gap: 12px;
  }
  
  .menu-image {
    width: 65px;
    height: 65px;
  }
  
  .modal-content {
    padding: 20px;
  }
  
  .modal-image {
    width: 90px;
    height: 90px;
  }
}