body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  /* font-family: 'Poppins', sans-serif; */
  color: #333;
  line-height: 1.6;
}
  .cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-family: Arial, sans-serif;
  }

  .cart-table th, .cart-table td {
    border: 1px solid #ddd;
    padding: 12px 15px;
    text-align: center;
  }

  .cart-table th {
    background-color: #333;
    color: #fff;
    font-weight: bold;
  }

  .cart-table tr:nth-child(even) {
    background-color: #f9f9f9;
  }

  .cart-table tr:hover {
    background-color: #f1f1f1;
  }

  .cart-table .product-name {
    text-align: left;
  }

  .cart-table .quantity-badge {
    background-color: #007bff;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: bold;
  }

  .cart-table .remove-btn {
    background-color: #ff4d4d;
    color: white;
    border: none;
    padding: 6px 12px;
    cursor: pointer;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
  }

  .cart-table .remove-btn:hover {
    background-color: #e60000;
  }

  .cart-table tfoot th {
    text-align: right;
    padding-right: 20px;
    background-color: #f0f0f0;
  }
.sepet-container {
  width: 90%;
  max-width: 900px;
  margin: 40px auto;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.sepet-container h2 {
  color: #333;
  margin-bottom: 15px;
}
.sepet-container input,
.sepet-container textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

.sepet-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}
.sepet-item img {
    width: 100px;
    border-radius: 8px;
}
.sepet-item-info {
    flex: 1;
    margin-left: 15px;
}
.sepet-item-info h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}
.adet {
    width: 60px;
    text-align: center;
    font-size: 16px;
}
.total {
    font-size: 18px;
    font-weight: bold;
    margin-top: 15px;
    text-align: right;
}
.sepet-btn {
    display: inline-block;
    background: rgb(8, 8, 97);
    color: #fff;
    padding: 14px 24px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
    width: 100%;
    text-align: center;
    transition: background 0.3s ease;
    }
.sepet-btn:hover {
    background: rgb(35, 35, 143);
  }

/* Ana bölüm */
.bagis-sizin-adiniza {
  margin-top: 20px;
  font-family: 'Poppins', sans-serif;
}

/* Başlık */
.bagis-sizin-adiniza strong {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 8px;
}

/* Seçenekleri hizala */
.bagis-secenekler {
  display: flex;
  align-items: center;
  gap: 20px; /* Evet / Hayır arası boşluk */
}

.bagis-secenekler label {
  display: flex;
  align-items: center;
  font-weight: 500;
  cursor: pointer;
}

.bagis-secenekler input[type="radio"] {
  margin-right: 6px;
}


.bagis-sizin-adiniza input[type="text"] {
  margin-top: 8px;
  padding: 10px;
  width: 100%;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 15px;
}


  @media (max-width: 768px) {
    .cart-table {
      display: block;
      width: 100%;
      overflow-x: auto;
      font-size: 14px;
    }
    .cart-table th, .cart-table td {
      padding: 8px 10px;
      font-size: 13px;
    }
  }
  
  @media (max-width: 480px) {
    .cart-table th, .cart-table td {
      padding: 6px 6px;
      font-size: 12px;
    }
  }

  @media (max-width: 480px) {
    .sepet-container input,
    .sepet-container textarea {
      padding: 8px;
      font-size: 14px;
    }
    .sepet-btn {
      font-size: 14px;
      padding: 8px 10px;
      width: 100%;
    }
    .bagis-secenekler {
      flex-direction: column;
      gap: 10px;
      align-items: flex-start;
    }
  }
