/* =========================
   GOOGLE FONT
========================= */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

/* =========================
   BASE
========================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  background: #f6f7f9;
  color: #0f172a;
}
/* =========================
   SELECT (WAJIB)
========================= */
#checkout select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid #e5e7eb;
  background: #f9fafb;
  font-family: inherit;
  margin-bottom: 14px;
}

#checkout select:focus {
  outline: none;
  border-color: #f59e0b;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(245,158,11,0.15);
}

/* =========================
   AGREEMENT
========================= */
.agreement {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
}

.agreement input {
  margin-top: 4px;
}

.agreement label {
  font-size: 0.85rem;
  line-height: 1.5;
}
/* =========================
   CHECKOUT CARD
========================= */
#checkout {
  max-width: 720px;
  margin: 40px auto;
  padding: 28px 24px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 14px 36px rgba(0,0,0,0.08);
}

/* =========================
   SECTION SPACING
========================= */
.section {
  margin-bottom: 22px;
}

/* =========================
   TYPOGRAPHY
========================= */
#checkout h2 {
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

#checkout h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #2563eb;
  margin-bottom: 10px;
}

#checkout h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
}

#checkout p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #374151;
}

/* =========================
   LIST
========================= */
#checkout ul {
  padding-left: 18px;
  margin-top: 6px;
}

#checkout li {
  font-size: 0.9rem;
  margin-bottom: 6px;
}

/* =========================
   PRICE
========================= */
.price-normal {
  font-weight: 600;
}

.discount {
  color: #15803d;
  font-weight: 600;
}

.total {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed #e5e7eb;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: #dc2626;
}

/* =========================
   FORM
========================= */
#checkout label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 6px;
}

#checkout input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid #e5e7eb;
  background: #f9fafb;
  font-family: inherit;
  transition: 0.25s ease;
  margin-bottom: 14px;
}

#checkout input:focus {
  outline: none;
  border-color: #f59e0b;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(245,158,11,0.15);
}

/* =========================
   BUTTON
========================= */
#checkout button {
  width: 100%;
  margin-top: 8px;
  padding: 14px;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: 0.25s ease;
}

#checkout button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(249,115,22,0.4);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 480px) {
  #checkout {
    margin: 20px 12px;
    padding: 20px 16px;
  }

  .total {
    font-size: 1.2rem;
  }
}