body {
  font-family: 'Arial', sans-serif;
  background: #fde0e0;
  margin: 0;
  color: #333;
}

.checkout-page {
  max-width: 1200px;
  margin: 80px auto 50px;
  padding: 30px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.checkout-page h1 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
  color: #ff4d6d;
}

.checkout-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

/* ===== Checkout Form ===== */
.checkout-form {
  flex: 1 1 500px;
}

.checkout-form h2 {
  margin-bottom: 20px;
  color: #222;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.form-group input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  transition: all 0.2s;
}

.form-group input:focus {
  border-color: #ff4d6d;
  outline: none;
  box-shadow: 0 0 5px rgba(0,123,255,0.3);
}

/* ===== Order Summary ===== */
.order-summary {
  flex: 1 1 350px;
  background: #f9f9f9;
  padding: 25px;
  border-radius: 10px;
}

.order-summary h2 {
  margin-bottom: 20px;
  color: #222;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 16px;
}

.summary-item.total {
  font-weight: bold;
  font-size: 18px;
  margin-top: 20px;
  border-top: 1px solid #ccc;
  padding-top: 15px;
}

/* Payment Method */
.payment-method label {
  display: block;
  margin-bottom: 10px;
  cursor: pointer;
  font-weight: 500;
}

.payment-method input {
  margin-right: 10px;
}

/* Place Order Button */
.place-order-btn {
  display: block;
  width: 100%;
  padding: 15px;
  margin-top: 20px;
  background: #ff4d6d;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
}

.place-order-btn:hover {
  background: #ff4d6d;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,123,255,0.3);
}

/* Responsive */
@media(max-width: 900px){
  .checkout-container {
    flex-direction: column;
  }
}
