body {
  font-family: 'Roboto', sans-serif;
}

/* --- CUSTOM CSS DÜZELTMELERİ --- */
#language-overlay {
  background-color: var(--background-color, #fff) !important;
}
.product-card {
  width: 100% !important;
  min-height: auto;
  display: flex;
  flex-direction: row; /* Mobilde yan yana */
  justify-content: space-between;
  margin-bottom: 15px;
  overflow: visible; /* FAB butonu taşabilsin */
}

.mdl-card__supporting-text {
  flex: 1; /* Sol taraf genişlesin */
  width: auto;
  padding-right: 10px;
  display: flex;
  flex-direction: column;
}

/* Başlık ve Açıklama */
.mdl-card__supporting-text h4 {
  margin: 0 0 5px 0;
  font-size: 18px;
  font-weight: bold;
}
.mdl-card__supporting-text p {
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 10px;
  color: #666;
}

/* Resim Alanı */
.mdl-card__media {
  width: 110px;
  height: 110px;
  flex-shrink: 0; /* Resim sıkışmasın */
  background-color: #eee;
  margin: 10px;
  border-radius: 8px;
  overflow: hidden;
}
.mdl-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Fiyat ve Varyasyon Alanı */
.price {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 10px;
}

/* Ingredients & Extras Listesi */
h6 {
  margin: 10px 0 5px 0;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}
.extras-list,
.ingredients-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.mdl-checkbox {
  height: auto;
  margin-bottom: 4px;
}
.mdl-checkbox__label {
  font-size: 12px;
}

/* Floating Action Button (Sepete Ekle) Konumu */
.add-to-cart-button {
  position: absolute !important;
  right: 10px !important;
  bottom: -20px !important; /* Kartın hafif dışına taşsın */
  z-index: 5;
  left: auto !important;
}

/* --- DİL SEÇİM EKRANI --- */
#lang-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #212121;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s;
}
.lang-card {
  width: 80%;
  max-width: 300px;
  text-align: center;
  background: transparent;
  box-shadow: none;
}
.lang-btn {
  width: 100%;
  margin-bottom: 10px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* --- SEPET BARI (FLOATING) --- */
.persistent-cart-bar {
  position: fixed;
  bottom: 20px;
  left: 5%;
  width: 90%;
  border-radius: 40px;
  padding: 15px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
  z-index: 100;
  cursor: pointer;
  transform: translateY(150%);
  transition: transform 0.3s ease;
}
.persistent-cart-bar.is-visible {
  transform: translateY(0);
}

/* --- KATEGORİ SEKMELERİ --- */
.category-tabs {
  white-space: nowrap;
  overflow-x: auto;
  padding: 10px;
  position: sticky;
  top: 56px;
  z-index: 10;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.mdl-chip {
  margin-right: 5px;
  cursor: pointer;
}
