/* ========================= */
/* Cart & Checkout Styling - Earthy Tone */
/* ========================= */
.row {
  width: 100%;
  margin: 0 auto;
}

.card {
  width: 100%;
  max-width: 500px;
  margin: 1rem auto;
  border-radius: 20px;
  padding: 20px;
  background-color: #fff8f1; /* soft earth beige */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.card-header {
  background-color: #a3512d; /* burnt clay */
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  border-bottom: none;
  text-align: center;
  text-transform: uppercase;
  padding: 0.75rem;
  border-radius: 20px 20px 0 0;
}

.card-body {
  padding: 1.5rem;
}

.card-img-top {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  background-color: #f2e3c6; /* warm sand */
}

.card-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #3c2b22; /* earth brown */
}

.form-label {
  color: #4a2e1d; /* rich earth */
}

.form-select {
  border: 1px solid #e1a95f; /* tribal gold */
  border-radius: 8px;
  padding: 8px;
  color: #3c2b22;
  font-size: 1rem;
  background-color: #fffdf8;
  box-shadow: 0 2px 4px rgba(225, 169, 95, 0.05);
  transition: all 0.3s ease;
}

.form-select:focus {
  border-color: #b45633; /* terracotta */
  outline: none;
  box-shadow: 0 4px 10px rgba(180, 86, 51, 0.15);
}

.card-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: #a3512d; /* burnt clay */
}

.text-danger {
  font-size: 1.2rem;
  color: #8c3a26; /* clay red */
}

.text-black {
  color: #3c2b22; /* earth brown */
  font-size: 0.95rem;
}

.text-end {
  font-size: 1.1rem;
  font-weight: bold;
  color: #4a2e1d; /* rich earth */
}

.text-end h4 {
  font-size: 1.9rem;
  font-weight: bold;
  color: #3c2b22;
}

.paypal_formbg {
  width: 60%;
  max-width: 500px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e1a95f; /* tribal gold */
  border-radius: 25px;
  padding: 10px;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.2);
  margin: 10px auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.paypal_formbg center {
  width: 100%;
}

.paypal_formbg:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.btn {
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 0.95rem;
}

.btn-success {
  background-color: #3c2b22; /* earth brown */
  border: none;
  color: #fff;
}

.btn-success:hover {
  background-color: #4a2e1d;
}

.btn-danger {
  background-color: #b45633; /* terracotta */
  border: none;
  color: #fffdf8;
}

.btn-dark {
  background-color: #8c3a26; /* clay red */
  border: none;
  color: #fff;
}

.btn-warning {
  background-color: #e1a95f; /* tribal gold */
  border: none;
  color: #3c2b22;
}

.btn-color {
  color: #3c2b22;
  border: 1px solid #e1a95f;
}

.btn-color:hover {
  background: #e1a95f;
  transform: scale(1.05);
  color: #3c2b22;
}

/* Responsive */
@media (max-width: 768px) {
  .card {
    max-width: 90%;
  }

  .img-fluid {
    max-width: 125px;
  }

  .btn-outline-secondary,
  button.btn-secondary {
    font-size: 0.85rem;
  }
}
