/* Checkout Page */
.checkout-form {
  background: linear-gradient(135deg, #fff8dc 0%, #fffacd 100%);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(184, 134, 11, 0.2);
  border: 2px solid #daa520;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #8b4513;
  font-weight: bold;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid #daa520;
  border-radius: 8px;
  font-size: 1rem;
  background: #fff8dc;
  color: #2c1810;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #b8860b;
  box-shadow: 0 0 5px rgba(184, 134, 11, 0.3);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.payment-option {
  background: linear-gradient(135deg, #fff8dc 0%, #fffacd 100%);
  border: 2px solid #daa520;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.payment-option:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(184, 134, 11, 0.3);
}

.payment-option.selected {
  border-color: #b8860b;
  background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
  color: #2c1810;
}

.payment-logo {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.order-summary {
  background: linear-gradient(135deg, #fff8dc 0%, #fffacd 100%);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(184, 134, 11, 0.2);
  border: 2px solid #daa520;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #daa520;
}

.summary-total {
  font-size: 1.2rem;
  font-weight: bold;
  color: #8b4513;
  border-top: 2px solid #b8860b;
  padding-top: 1rem;
  margin-top: 1rem;
}

.place-order-btn {
  background: linear-gradient(135deg, #b8860b 0%, #daa520 100%);
  color: #fff8dc;
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.place-order-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(184, 134, 11, 0.3);
}

.back-to-cart {
  background: transparent;
  color: #8b4513;
  border: 2px solid #8b4513;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  margin-right: 1rem;
  transition: all 0.3s ease;
}

.back-to-cart:hover {
  background: #8b4513;
  color: #ffd700;
}
