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

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

body {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  background: #ffffff;
  color: #0f172a;
  line-height: 1.6;
}

/* ===============================
   CHECKOUT 5 CONTAINER
================================ */
#checkout-5 {
  max-width: 860px;
  margin: 60px auto;
  padding: 36px 32px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

/* ===============================
   TITLE
================================ */
#checkout-5 h2 {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

#checkout-5 h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 26px 0 14px;
}

/* ===============================
   DIVIDER
================================ */
#checkout-5 hr {
  border: none;
  height: 1px;
  background: #e5e7eb;
  margin: 18px 0;
}

/* ===============================
   TEXT
================================ */
#checkout-5 p {
  font-size: 15px;
  color: #374151;
}

#checkout-5 strong {
  color: #0f172a;
}

/* ===============================
   BENEFIT LIST
================================ */
.checkout-benefit ul {
  padding-left: 18px;
  margin-top: 12px;
}

.checkout-benefit li {
  font-size: 14.5px;
  margin-bottom: 8px;
  color: #374151;
}

/* ===============================
   PRICE SECTION
================================ */
.checkout-price,
.checkout-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-normal {
  font-size: 18px;
  font-weight: 700;
  color: #dc2626;
}

.price-total {
  font-size: 24px;
  font-weight: 700;
  color: #2563eb;
}

/* ===============================
   VOUCHER
================================ */
.checkout-voucher label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

.checkout-voucher input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1.5px solid #e5e7eb;
  background: #f9fafb;
  font-weight: 600;
}

.discount-info {
  margin-top: 6px;
  font-size: 13px;
  color: #16a34a;
  font-weight: 600;
}

/* ===============================
   FORM
================================ */
#checkout-5 input,
#checkout-5 select {
  width: 100%;
  padding: 13px 14px;
  border-radius: 12px;
  border: 1.5px solid #e5e7eb;
  background: #f9fafb;
  font-family: inherit;
  font-size: 14px;
  transition: 0.25s ease;
}

#checkout-5 input:focus,
#checkout-5 select:focus {
  outline: none;
  border-color: #2563eb;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

/* ===============================
   AGREEMENT
================================ */
.agreement {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
}

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

.agreement a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
}

.agreement a:hover {
  text-decoration: underline;
}

/* ===============================
   BUTTON
================================ */
.btn-wa {
  width: 100%;
  margin-top: 22px;
  padding: 15px;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border: none;
  border-radius: 16px;
  cursor: pointer;
  transition: 0.25s ease;
}

.btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(34, 197, 94, 0.4);
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 640px) {
  #checkout-5 {
    margin: 30px 14px;
    padding: 24px 18px;
  }

  #checkout-5 h2 {
    font-size: 22px;
  }

  .checkout-price,
  .checkout-total {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .price-total {
    font-size: 20px;
  }
}