/* Checkout Styles */
.checkout-step {
  margin-bottom: 30px;
}

.checkout-step h3 {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.checkout-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.order-item {
  display: flex;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

.order-item-details {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.order-item-name {
  flex-grow: 1;
  font-weight: 500;
}

.order-item-quantity {
  margin: 0 15px;
  color: #666;
}

.order-item-price {
  font-weight: 600;
}

.order-summary {
  margin: 20px 0;
  padding: 15px;
  background-color: #f9f9f9;
  border-radius: 8px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.summary-row.total {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #ddd;
  font-weight: 700;
  font-size: 1.1rem;
}

.terms-container {
  margin: 20px 0;
}

.terms-label {
  display: flex;
  align-items: center;
}

.terms-label input {
  margin-right: 10px;
}

.order-confirmation {
  text-align: center;
  padding: 30px 0;
}

.confirmation-icon {
  font-size: 60px;
  color: #4cd137;
  margin-bottom: 20px;
}

.order-reference {
  margin: 20px 0;
  padding: 15px;
  background-color: #f9f9f9;
  border-radius: 8px;
  font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .checkout-actions {
    flex-direction: column;
  }
  
  .checkout-actions button {
    width: 100%;
    margin-bottom: 10px;
  }
  
  .order-item-details {
    flex-direction: column;
  }
  
  .order-item-quantity, .order-item-price {
    margin-top: 5px;
  }
}
