

/* GENEL */
/* === SEPET SAYFASI ARKA PLAN GÖRSELİ + FLU EFEKT === */
body {
  position: relative;
  min-height: 100vh;
  background: #1e1e1e; /* yedek arka plan */
  overflow-x: hidden;
}

/* Arka plan görselini blur ve koyuluk  */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("/assets/img/shopping-bag-cart_23-2148879372.jpg") center/cover no-repeat;
  filter: brightness(0.35) blur(6px); /* koyuluk + flu */
  z-index: -1;
  transition: filter 0.5s ease;
}


/* Başlıklar */
h2, h3 {
  color: #b3201f;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* === SEPET ANA ALAN === */
.cart-section {
  padding: 140px 0 100px;
}

.cart-container {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 60px 55px;
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

/* Başlık */
.cart-container h2 {
  font-size: 26px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 35px;
}

/* === TABLO === */
.cart-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 35px;
}

.cart-table th {
  color: #fff;
  font-weight: 500;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  padding: 12px 0;
  font-size: 15px;
  letter-spacing: 0.3px;
}

.cart-table td {
  padding: 14px 0;
  color: #ddd;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  vertical-align: middle;
  font-size: 14.5px;
}

.cart-table input[type="number"] {
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: #fff;
  width: 65px;
  text-align: center;
  border-radius: 6px;
  padding: 6px;
  outline: none;
  transition: all 0.2s ease;
}

.cart-table input[type="number"]:focus {
  box-shadow: 0 0 0 2px #b3201f66;
}

/* Sil butonu */
.remove-btn {
  border: 1px solid #b3201f;
  color: #b3201f;
  background: transparent;
  border-radius: 8px;
  padding: 5px 12px;
  transition: all 0.3s ease;
  font-size: 14px;
}

.remove-btn:hover {
  background: #b3201f;
  color: #fff;
}

/* === TEKLİF FORMU === */
.offer-form {
  margin-top: 40px;
}

.offer-form .row {
  row-gap: 20px;
}

.offer-form input,
.offer-form textarea {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  border-radius: 8px;
  padding: 14px 16px;
  width: 100%;
  font-size: 15px;
  transition: all 0.3s ease;
}

.offer-form input:focus,
.offer-form textarea:focus {
  border-color: #b3201f;
  outline: none;
}

.offer-form input::placeholder,
.offer-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.offer-form textarea {
  resize: none;
  min-height: 120px;
}

/* === BUTON === */
.btn-offer {
  background: linear-gradient(90deg, #b3201f, #d83838);
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: 10px;
  font-weight: 500;
  width: 100%;
  font-size: 16px;
  letter-spacing: 0.4px;
  transition: all 0.3s ease;
  margin-top: 15px;
}

.btn-offer:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(179, 32, 31, 0.45);
}

/* === TABLO YÜKLENİYOR MESAJI === */
.text-muted {
  color: rgba(255, 255, 255, 0.6) !important;
  font-style: italic;
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
  .cart-container {
    padding: 40px 30px;
  }
  .btn-offer {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .cart-container {
    padding: 35px 22px;
  }
  .cart-table th, .cart-table td {
    font-size: 14px;
  }
  .cart-table input[type="number"] {
    width: 55px;
  }
}
