/* ===== Checkout Page ===== */

.checkout-page {
  padding: 90px 0;
  max-width: 900px;
  margin: 0 auto;
}

.checkout-title {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.checkout-subtitle {
  text-align: center;
  color: #555;
  margin-bottom: 50px;
}

.checkout-container {
  background: #f2f5f8;
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.checkout-form h3 {
  margin-bottom: 20px;
  font-size: 1.4rem;
}

/* Inputs */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 35px;
}

.checkout-form input {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.checkout-form input:focus {
  outline: none;
  border-color: #1f4568;
  box-shadow: 0 0 0 2px rgba(31, 69, 104, 0.15);
}

.hp-field{
  position:absolute;
  left:-9999px;
  opacity:0;
}

.checkout-summary {
  background: #ffffff;
  border-radius: 16px;
  padding: 25px;
  border: 1px solid #e0e0e0;
  margin-bottom: 35px;
}

.checkout-summary h3 {
  margin-bottom: 15px;
}

.summary-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.summary-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.summary-list li:last-child {
  border-bottom: none;
}

.item-name {
  font-weight: 500;
}

.item-qty {
  color: #555;
}

.checkout-submit {
  width: 100%;
  padding: 16px;
  background: #0077b6;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.checkout-submit:hover {
  background: #1f4568;
  transform: translateY(-2px);
}

.form-checkbox {
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.form-checkbox input {
    margin-right: 8px;
}

/* Mobile */
@media (max-width: 700px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .checkout-form {
    padding: 30px 25px;
  }
}
