/* Kupon Sistemi - Sade ve Minimal Tasarım */

.alert {
  padding: 10px 15px;
  margin: 10px 0;
  border-radius: 3px;
  font-size: 14px;
  text-align: center;
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-danger {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.cupon {
  margin: 15px 0;
  padding: 15px;
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 4px;
}

.cupon label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #495057;
  font-size: 14px;
}

.cupon form {
  display: flex;
  gap: 8px;
  align-items: center;
}

.cupon input[type="text"] {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid #ced4da;
  border-radius: 3px;
  font-size: 14px;
  color: #495057;
  background-color: #ffffff;
}

.cupon input[type="text"]:focus {
  outline: none;
  border-color: #007bff;
}

.cupon input[type="text"]::placeholder {
  color: #6c757d;
}

.btn-cupon {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 3px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
}

.btn-cupon:hover {
  background-color: #0056b3;
}

.applied-coupon {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  border-radius: 4px;
  padding: 15px;
  margin: 10px 0;
  text-align: center;
}

.coupon-info {
  margin-bottom: 10px;
  color: #155724;
  font-size: 14px;
}

.coupon-info strong {
  color: #0d4a0d;
  font-weight: 600;
}

.btn-remove-coupon {
  background-color: #dc3545;
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 3px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
}

.btn-remove-coupon:hover {
  background-color: #c82333;
}

/* Fiyat gösterimi için ek stiller */
.price-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.price1 {
  font-weight: 500;
  color: #495057;
}

.price2 {
  font-weight: 600;
  color: #212529;
}

.line2 {
  height: 1px;
  background-color: #dee2e6;
  margin: 5px 0;
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
  .cupon form {
    flex-direction: column;
    gap: 10px;
  }

  .cupon input[type="text"] {
    width: 100%;
  }

  .btn-cupon {
    width: 100%;
  }

  .applied-coupon {
    padding: 12px;
  }

  .alert {
    margin: 8px 0;
    padding: 8px 12px;
    font-size: 13px;
  }
}
