/* ========================= */
/* Cart Card Styling - Earthy Tone */
/* ========================= */
.card {
  border: none;
  padding: 20px;
  background-color: #fff8f1; /* soft earth beige */
  border-radius: 20px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.card:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.card-img-top {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  background-color: #fff; /* 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 */
}

.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;
}

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