/* ==============================
   PREMIUM CHECKOUT LAYOUT
   ============================== */

  



.checkout-container {
  max-width: 1100px;
  margin: 50px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  align-items: start;
}

.billing-box {
  background: #ffffff;
  padding: 28px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.billing-box h3 {
  font-size: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.billing-box input {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.billing-box input:focus {
  border-color: #ff9800;
  outline: none;
}

.order-box {
  background: #ffffff;
  padding: 28px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.order-box h3 {
  font-size: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.order-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: center;
}

.order-item img {
  width: 90px;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #eee;
}

.order-item p {
  font-size: 14px;
  margin-bottom: 6px;
  font-weight: 600;
}

.order-row {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  margin: 8px 0;
}

.order-row.total {
  font-size: 20px;
  font-weight: bold;
  color: #2e7d32;
}

.order-box form input[type="text"] {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px dashed #aaa;
  margin-top: 10px;
}

.order-box form button {
  margin-top: 10px;
  width: 100%;
  padding: 12px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.order-box form button:hover {
  background: #000;
}

.pay-btn {
  width: 100%;
  margin-top: 20px;
  padding: 16px;
  background: linear-gradient(135deg, #43a047, #2e7d32);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.pay-btn:hover {
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .checkout-container {
    grid-template-columns: 1fr;
  }
}
