.checkout-section {
  padding: 6rem 0;
  background: var(--creamy-beige);
}
.checkout-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.order-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
  border-bottom: 1px dashed var(--border);
}
.item-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.qty-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: white;
  cursor: pointer;
  font-weight: bold;
}

.checkout-totals {
  margin: 2rem 0;
  padding: 1.5rem 0;
  border-top: 2px solid var(--border);
}
.total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.grand-total {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-brand);
  margin-top: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}
.full-width {
  grid-column: 1 / -1;
}
.form-grid input,
.form-grid textarea {
  width: 100%;
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--yogurt-white);
  font-family: inherit;
}
.btn-full {
  width: 100%;
  justify-content: center;
}
#pay-button {
    width: 100%;
    background-color: var(--primary-brand); /* Your new Orange #ED820E */
    color: white;
    padding: 1.2rem;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(237, 130, 14, 0.2); /* Soft orange shadow */
    margin-top: 1rem;
    display: block;
}

#pay-button:hover {
    background-color: var(--brand-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(237, 130, 14, 0.3);
}

/* Style for when the button is clicked */
#pay-button:active {
    transform: translateY(-1px);
}

/* Style for the "Clear Order" link below the button */
.btn-clear {
    display: block;
    width: 100%;
    text-align: center;
    background: none;
    border: none;
    color: var(--text-light);
    text-decoration: underline;
    margin-top: 1.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-clear:hover {
    color: var(--danger-color, #ef4444);
}
