/* =============================================================
 * LIORA BABY — sepet.css
 * Sepet sayfasına özel stiller
 * ============================================================= */

/* ─── Boş Sepet ──────────────────────────────────────────────── */
.lb-empty-cart {
  text-align: center;
  padding: 5rem 1rem;
}
.lb-empty-cart-icon {
  font-size: 5rem;
  color: var(--lb-rose-light);
  margin-bottom: 1.5rem;
  display: block;
}
.lb-empty-cart h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--lb-text);
  margin-bottom: 0.75rem;
}
.lb-empty-cart p {
  color: #9a7e74;
  font-size: 1rem;
  margin-bottom: 2rem;
}

/* ─── Sepet Ürün Kartı ───────────────────────────────────────── */
.lb-cart-item {
  background: #fff;
  border: 1px solid rgba(107,76,59,0.1);
  border-radius: 16px;
  padding: 1.25rem;
  display: flex;
  gap: 1.25rem;
  transition: box-shadow 0.2s ease;
}
.lb-cart-item:hover {
  box-shadow: 0 4px 20px rgba(107,76,59,0.1);
}

/* Ürün Görseli */
.lb-cart-item-img {
  flex-shrink: 0;
  width: 110px;
  height: 110px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--lb-cream-2);
  border: 1px solid rgba(107,76,59,0.1);
}
.lb-cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* İçerik */
.lb-cart-item-body {
  flex: 1;
  min-width: 0;
}
.lb-cart-item-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--lb-text);
  margin-bottom: 0.2rem;
}
.lb-cart-item-desc {
  font-size: 0.82rem;
  color: #9a7e74;
  margin-bottom: 0.65rem;
}

/* Kişiselleştirme Badge Listesi */
.lb-cart-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
}
.lb-cart-opt-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  color: var(--lb-brown);
  background: var(--lb-rose-light);
  border-radius: 50px;
  padding: 0.2rem 0.65rem;
}
.lb-cart-opt-badge i {
  font-size: 0.65rem;
  opacity: 0.75;
}

/* Alt Satır: Adet + Fiyat */
.lb-cart-item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Adet Kontrolü */
.lb-qty-ctrl {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid rgba(107,76,59,0.18);
  border-radius: 50px;
  overflow: hidden;
  background: var(--lb-cream);
}
.lb-qty-btn {
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: var(--lb-brown);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.lb-qty-btn:hover {
  background: var(--lb-rose-light);
}
.lb-qty-val {
  min-width: 32px;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--lb-text);
  font-family: 'DM Sans', sans-serif;
}

/* Fiyat */
.lb-cart-item-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--lb-brown);
  font-family: 'DM Sans', sans-serif;
  letter-spacing: -0.01em;
}

/* Sil Butonu */
.lb-cart-remove-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #c9a89a;
  font-size: 0.88rem;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-family: 'DM Sans', sans-serif;
}
.lb-cart-remove-btn:hover {
  color: #b94040;
  background: #fdf0f0;
}

/* ─── Sipariş Özeti Kartı ────────────────────────────────────── */
.lb-order-summary {
  background: #fff;
  border: 1px solid rgba(107,76,59,0.1);
  border-radius: 20px;
  padding: 1.75rem;
  position: sticky;
  top: 88px;
}
.lb-order-summary-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--lb-text);
  margin-bottom: 1.25rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(107,76,59,0.1);
}
.lb-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.92rem;
  color: #6b5248;
  margin-bottom: 0.65rem;
}
.lb-summary-row.lb-summary-total {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--lb-text);
  padding-top: 0.85rem;
  border-top: 1px solid rgba(107,76,59,0.12);
  margin-top: 0.4rem;
}
.lb-summary-row .lb-kargo-free {
  color: #4caf50;
  font-weight: 600;
}
.lb-summary-total .lb-total-price {
  color: var(--lb-brown);
  font-size: 1.25rem;
}

/* Sepet Butonları */
.lb-btn-siparis {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--lb-brown);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.9rem 1.5rem;
  font-size: 0.98rem;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  cursor: pointer;
  margin-top: 1.25rem;
}
.lb-btn-siparis:hover {
  background: #573b2c;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(107,76,59,0.28);
}
.lb-btn-devam {
  display: block;
  width: 100%;
  text-align: center;
  color: var(--lb-brown);
  border: 1.5px solid rgba(107,76,59,0.25);
  border-radius: 50px;
  padding: 0.7rem 1.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  background: transparent;
  transition: border-color 0.2s, background 0.2s;
  margin-top: 0.65rem;
}
.lb-btn-devam:hover {
  border-color: var(--lb-brown);
  background: var(--lb-cream);
  color: var(--lb-brown);
}

/* Güven Notu */
.lb-cart-trust {
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(107,76,59,0.08);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.lb-cart-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.79rem;
  color: #9a7e74;
}
.lb-cart-trust-item i {
  color: var(--lb-gold);
  width: 14px;
  flex-shrink: 0;
}

/* ─── Mobil ──────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .lb-cart-item {
    flex-direction: row;
    gap: 1rem;
    padding: 1rem;
  }
  .lb-cart-item-img {
    width: 88px;
    height: 88px;
  }
  .lb-cart-item-title {
    font-size: 0.95rem;
  }
  .lb-order-summary {
    position: static;
    margin-top: 1.5rem;
  }
}
