/* Cart / checkout / purchase UI extracted for modular structure */

/* CART / CHECKOUT */
.top-menu {
  position: fixed;
}

.top-menu-nav {
  width: min(calc(var(--container) - 120px), calc(100% - 160px));
}

.cart-nav-btn {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  min-width: 118px;
  height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(18, 26, 36, 0.12);
  border-radius: 999px;
  background: #ffffff;
  color: #121a24;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(10, 18, 28, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  z-index: 5;
}

.cart-nav-btn:hover {
  transform: translateY(calc(-50% - 2px));
  box-shadow: 0 14px 28px rgba(10, 18, 28, 0.12);
  border-color: rgba(22, 157, 211, 0.25);
}

.cart-nav-icon {
  font-size: 18px;
  line-height: 1;
}

.cart-nav-badge {
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: #d82424;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.term-selector-wrap {
  margin-top: 12px;
  padding: 10px 10px 8px;
  border-radius: 16px;
  background: rgba(18, 26, 36, 0.04);
}

.term-selector-label {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 800;
  color: #24313f;
}

.term-selector-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.term-selector {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(18, 26, 36, 0.12);
  border-radius: 12px;
  background: #ffffff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  color: #121a24;
  padding: 0 12px;
}

.term-price-preview {
  font-size: 12px;
  line-height: 1.45;
  font-weight: 700;
  color: #52606f;
}

.card-add-note {
  margin-top: 8px;
  font-size: 11px;
  line-height: 1.45;
  color: #6a7682;
}

.checkout-shell {
  width: min(var(--container), calc(100% - 36px));
  min-height: 100vh;
  margin: 0 auto;
  padding-top: calc(var(--menu-height) + 32px);
  padding-bottom: 48px;
}

.checkout-page-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.checkout-kicker {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #169dd3;
  margin-bottom: 8px;
}

.checkout-page-head h2 {
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #111111;
}

.checkout-page-head p {
  margin-top: 10px;
  max-width: 760px;
  font-size: 16px;
  line-height: 1.7;
  color: #52606f;
}

.checkout-back-btn,
.checkout-secondary-btn,
.agreement-link {
  font-family: inherit;
}

.checkout-back-btn,
.checkout-secondary-btn {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid rgba(18, 26, 36, 0.12);
  background: #ffffff;
  color: #121a24;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 20px;
  align-items: start;
}

.checkout-main-card,
.checkout-side-card,
.thankyou-card {
  background: #ffffff;
  border: 2px solid rgba(18, 26, 36, 0.08);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.checkout-main-card,
.checkout-side-card {
  padding: 24px;
}

.checkout-card-head h3 {
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #121a24;
}

.checkout-card-head p {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.7;
  color: #5a6877;
}

.cart-empty-state {
  margin-top: 22px;
  padding: 28px;
  border-radius: 20px;
  background: rgba(18, 26, 36, 0.03);
  text-align: center;
}

.cart-empty-state h3 {
  font-size: 24px;
  letter-spacing: -0.03em;
  color: #121a24;
}

.cart-empty-state p {
  max-width: 520px;
  margin: 10px auto 18px;
  font-size: 15px;
  line-height: 1.7;
  color: #52606f;
}

.cart-list-wrap {
  margin-top: 20px;
}

.cart-list {
  display: grid;
  gap: 14px;
}

.cart-item {
  border: 1px solid rgba(18, 26, 36, 0.1);
  border-radius: 20px;
  padding: 18px;
  background: #ffffff;
}

.cart-item-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
}

.cart-item-title {
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #121a24;
}

.cart-item-meta,
.cart-item-warning,
.cart-item-total-note,
.checkout-summary-meta,
.checkout-summary-empty {
  font-size: 13px;
  line-height: 1.65;
  color: #5a6877;
}

.cart-item-category {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(22, 157, 211, 0.08);
  color: #169dd3;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cart-item-controls {
  display: grid;
  grid-template-columns: minmax(220px, 260px) auto;
  gap: 14px;
  align-items: end;
  margin-top: 14px;
}

.cart-item-remove {
  min-height: 44px;
  padding: 0 16px;
  border: none;
  border-radius: 14px;
  background: #121a24;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.cart-item-warning {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(216, 36, 36, 0.08);
  color: #a02626;
  font-weight: 700;
}

.summary-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(18, 26, 36, 0.08);
  font-size: 15px;
  color: #24313f;
}

.summary-line strong {
  font-size: 17px;
  color: #121a24;
}

.summary-total-line strong {
  font-size: 22px;
}

.cart-campaign-box {
  margin: 18px 0 20px;
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(22, 157, 211, 0.08), rgba(153, 25, 135, 0.06));
}

.cart-campaign-title {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #121a24;
  margin-bottom: 10px;
}

.cart-campaign-box ul {
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: #24313f;
  font-size: 13px;
  line-height: 1.6;
  font-weight: 600;
}

.checkout-form {
  margin-top: 20px;
}

.billing-type-switch {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px;
  border-radius: 18px;
  background: rgba(18, 26, 36, 0.04);
}

.billing-switch-btn {
  min-height: 42px;
  padding: 0 16px;
  border: none;
  border-radius: 12px;
  background: transparent;
  color: #52606f;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.billing-switch-btn.active {
  background: #121a24;
  color: #ffffff;
}

.checkout-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.form-field-full {
  grid-column: 1 / -1;
}

.checkout-form .form-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 800;
  color: #18222d;
}

.checkout-form .form-field input,
.checkout-form .form-field textarea {
  width: 100%;
  border: 1px solid rgba(18, 26, 36, 0.12);
  border-radius: 14px;
  background: #ffffff;
  font-family: inherit;
  font-size: 14px;
  color: #121a24;
  padding: 14px 14px;
}

.checkout-form .form-field textarea {
  min-height: 110px;
  resize: vertical;
}

.conditional-field {
  display: none;
}

.conditional-field.active-field {
  display: block;
}

.checkout-warning-box {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 127, 0, 0.10);
  color: #8d4a00;
  font-size: 13px;
  line-height: 1.65;
  font-weight: 700;
}

.checkout-warning-box.active {
  display: block;
}

.agreement-boxes {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.agreement-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(18, 26, 36, 0.04);
  font-size: 13px;
  line-height: 1.65;
  font-weight: 700;
  color: #18222d;
}

.agreement-item input {
  margin-top: 3px;
}

.agreement-link {
  border: none;
  background: transparent;
  color: #169dd3;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  padding: 0;
}

.checkout-actions-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}

.checkout-summary-list {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}

.checkout-summary-item {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(18, 26, 36, 0.04);
}

.checkout-summary-item strong {
  display: block;
  font-size: 15px;
  color: #121a24;
}

.checkout-summary-price {
  margin-top: 6px;
  font-size: 15px;
  font-weight: 900;
  color: #121a24;
}

.thankyou-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 44px 28px;
}

.thankyou-icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(180deg, #35baf0, #169dd3);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  font-weight: 900;
  box-shadow: 0 18px 34px rgba(22, 157, 211, 0.22);
}

.thankyou-card h2 {
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #111111;
}

.thankyou-card p {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.7;
  color: #52606f;
}

.thankyou-summary {
  margin: 22px 0 24px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(18, 26, 36, 0.04);
  font-size: 14px;
  line-height: 1.7;
  color: #24313f;
}

.toast-message {
  position: fixed;
  right: 18px;
  bottom: 18px;
  max-width: 360px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #121a24;
  color: #ffffff;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 800;
  box-shadow: 0 18px 38px rgba(10, 18, 28, 0.24);
  z-index: 3000;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.toast-message.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .top-menu-nav {
    width: min(calc(var(--container) - 130px), calc(100% - 150px));
    gap: 22px;
  }

  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .checkout-side-card {
    order: -1;
  }
}

@media (max-width: 860px) {
  .top-menu {
    height: auto;
    min-height: var(--menu-height);
    padding: 10px 0;
  }

  .top-menu-nav {
    width: calc(100% - 24px);
    justify-content: flex-start;
    padding-right: 110px;
    gap: 14px 18px;
  }

  .top-menu-nav a {
    font-size: 15px;
  }

  .cart-nav-btn {
    right: 12px;
    min-width: 96px;
    height: 42px;
    padding: 0 12px;
  }

  .cart-nav-text {
    display: none;
  }

  .checkout-shell {
    width: calc(100% - 20px);
    padding-top: calc(var(--menu-height) + 26px);
  }

  .checkout-page-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .cart-item-controls,
  .checkout-grid,
  .checkout-actions-row {
    grid-template-columns: 1fr;
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .cart-item-top {
    grid-template-columns: 1fr;
  }

  .checkout-main-card,
  .checkout-side-card,
  .thankyou-card {
    padding: 18px;
    border-radius: 22px;
  }

  .checkout-page-head h2 {
    font-size: 28px;
  }
}


/* INSTALLMENT TABLES */
.installment-box {
  margin-bottom: 12px;
  border-radius: 18px;
  border: 1px solid rgba(18, 26, 36, 0.1);
  background: linear-gradient(180deg, rgba(247, 249, 252, 0.95), rgba(255, 255, 255, 0.98));
  overflow: hidden;
}

.installment-toggle-btn {
  width: 100%;
  border: none;
  background: transparent;
  min-height: 46px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  color: #121a24;
  cursor: pointer;
}

.installment-toggle-btn:hover {
  background: rgba(22, 157, 211, 0.04);
}

.installment-toggle-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(18, 26, 36, 0.08);
  font-size: 18px;
  line-height: 1;
  transition: transform 0.3s ease;
}

.installment-box.active .installment-toggle-icon {
  transform: rotate(45deg);
}

.installment-panel {
  border-top: 1px solid rgba(18, 26, 36, 0.08);
  padding: 12px 12px 14px;
}

.installment-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.installment-panel-head strong {
  font-size: 14px;
  color: #121a24;
}

.installment-panel-head span {
  font-size: 12px;
  font-weight: 700;
  color: #169dd3;
}

.installment-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.installment-table {
  width: 100%;
  min-width: 420px;
  border-collapse: collapse;
}

.installment-table th,
.installment-table td {
  padding: 9px 8px;
  border-bottom: 1px solid rgba(18, 26, 36, 0.08);
  text-align: left;
  font-size: 12px;
  line-height: 1.4;
  color: #253240;
}

.installment-table th {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #6a7786;
}

.home-installment-sign {
  position: relative;
  margin: -4px auto 12px;
  width: fit-content;
  min-width: 162px;
  text-align: center;
  padding: 9px 16px 10px;
  border-radius: 16px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, #ff5b5b, #d82424);
  box-shadow: 0 10px 22px rgba(216, 36, 36, 0.24);
  animation: homeInstallmentFloat 2.2s ease-in-out infinite;
}

.home-installment-sign::before,
.home-installment-sign::after {
  content: '';
  position: absolute;
  top: -12px;
  width: 2px;
  height: 14px;
  background: rgba(18, 26, 36, 0.28);
}

.home-installment-sign::before { left: 28px; }
.home-installment-sign::after { right: 28px; }

.home-installment-sign span {
  position: relative;
  display: inline-block;
}

.home-installment-sign span::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 16px;
  height: 10px;
  background: rgba(104, 18, 18, 0.22);
  filter: blur(5px);
}

@keyframes homeInstallmentFloat {
  0%, 100% { transform: rotate(-2deg) translateY(0); }
  50% { transform: rotate(2deg) translateY(-4px); }
}

@media (max-width: 900px) {
  .installment-toggle-btn {
    min-height: 44px;
    font-size: 13px;
    padding: 0 14px;
  }

  .installment-panel {
    padding: 12px 10px 12px;
  }

  .installment-table {
    min-width: 380px;
  }

  .home-installment-sign {
    min-width: 148px;
    font-size: 12px;
    padding: 8px 14px 9px;
  }
}


.installment-box {
  position: relative;
}

@media (hover: hover) and (pointer: fine) {
  .installment-toggle-btn {
    cursor: default;
  }

  .installment-toggle-btn:hover {
    background: rgba(22, 157, 211, 0.04);
  }
}

#lockStage {
  opacity: 0 !important;
  transform: translateY(8px) scale(0.85);
  pointer-events: none;
}

#lockStage.visible {
  opacity: 1 !important;
}




/* ==== KOLAYADMIN PAYTR SAFE LAYER START ==== */
.ka-paytr-modal {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: none;
}

.ka-paytr-modal.active {
  display: block;
}

.ka-paytr-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 12, 18, 0.58);
  backdrop-filter: blur(6px);
}

.ka-paytr-modal__dialog {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(960px, calc(100% - 24px));
  height: min(760px, calc(100vh - 24px));
  transform: translate(-50%, -50%);
  background: #ffffff;
  border-radius: 28px;
  border: 1px solid rgba(18, 26, 36, 0.08);
  box-shadow: 0 24px 80px rgba(8, 16, 24, 0.26);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.ka-paytr-modal__close {
  position: absolute;
  right: 16px;
  top: 14px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(18, 26, 36, 0.06);
  color: #18222d;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
  transition: transform 0.2s ease, background 0.2s ease;
}

.ka-paytr-modal__close:hover {
  transform: scale(1.06);
  background: rgba(18, 26, 36, 0.1);
}

.ka-paytr-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 22px 14px;
  border-bottom: 1px solid rgba(18, 26, 36, 0.07);
  background:
    radial-gradient(circle at left top, rgba(22,157,211,0.08), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,0.95), #ffffff);
}

.ka-paytr-brand__logo {
  width: 146px;
  max-width: 34vw;
  height: auto;
  object-fit: contain;
}

.ka-paytr-brand__text h3 {
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #121a24;
  margin: 0;
}

.ka-paytr-brand__text p {
  margin: 6px 0 0;
  color: #5b6977;
  font-size: 14px;
  line-height: 1.5;
}

.ka-paytr-alert {
  display: none;
  margin: 14px 22px 0;
  padding: 12px 14px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 600;
}

.ka-paytr-alert.show {
  display: block;
}

.ka-paytr-alert.is-success {
  background: rgba(24, 164, 76, 0.08);
  color: #106d31;
  border: 1px solid rgba(24, 164, 76, 0.14);
}

.ka-paytr-alert.is-error {
  background: rgba(216, 36, 36, 0.08);
  color: #8d1818;
  border: 1px solid rgba(216, 36, 36, 0.12);
}

.ka-paytr-loader {
  flex: 1;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 20px;
}

.ka-paytr-loader.hidden {
  display: none;
}

.ka-paytr-loader__spinner {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 4px solid rgba(22, 157, 211, 0.14);
  border-top-color: #169dd3;
  animation: kaPaytrSpin 0.9s linear infinite;
}

@keyframes kaPaytrSpin {
  to { transform: rotate(360deg); }
}

.ka-paytr-loader p {
  font-size: 15px;
  color: #506070;
  font-weight: 600;
}

.ka-paytr-frame-wrap {
  display: none;
  flex: 1;
  min-height: 0;
  padding: 16px 22px 12px;
}

.ka-paytr-frame-wrap.visible {
  display: block;
}

.ka-paytr-frame {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 1px solid rgba(18, 26, 36, 0.08);
  border-radius: 18px;
  background: #ffffff;
}

.ka-paytr-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 14px 22px 22px;
  border-top: 1px solid rgba(18, 26, 36, 0.07);
  background: #ffffff;
}

.ka-paytr-btn {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  border: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
}

.ka-paytr-btn--ghost {
  background: rgba(18, 26, 36, 0.08);
  color: #18222d;
}

.ka-paytr-btn--primary {
  background: linear-gradient(180deg, #35baf0, #169dd3);
  color: #ffffff;
  box-shadow: 0 14px 26px rgba(22, 157, 211, 0.24);
}

@media (max-width: 768px) {
  .ka-paytr-modal__dialog {
    width: calc(100% - 12px);
    height: calc(100vh - 12px);
    border-radius: 22px;
  }

  .ka-paytr-brand {
    padding: 18px 18px 12px;
  }

  .ka-paytr-brand__logo {
    width: 120px;
  }

  .ka-paytr-frame-wrap {
    padding: 12px 18px 10px;
  }

  .ka-paytr-frame {
    min-height: 420px;
  }

  .ka-paytr-actions {
    padding: 12px 18px 18px;
  }
}
/* ==== KOLAYADMIN PAYTR SAFE LAYER END ==== */

/* INSTALLMENT FIX - WEB PAKETLERİ TAŞMA ÇÖZÜMÜ */

.plan-card .installment-table {
  min-width: 100% !important;
}

.plan-card .installment-table td,
.plan-card .installment-table th {
  white-space: normal;
  word-break: break-word;
}

.plan-card .installment-panel {
  overflow: hidden;
}

.plan-card .installment-table-wrap {
  overflow-x: hidden;
}

/* TL ALT SATIRA DÜŞME SORUNU FIX */
.installment-table td {
  white-space: nowrap;
}

.plan-card .installment-table td:last-child {
  font-size: 1.1rem;
  opacity: 0.85;
}

.ka-installment-inline-note {
  display: none;
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.55;
  font-weight: 800;
  color: #8d4a00;
}

.installment-box.ka-installment-disabled {
  opacity: 0.58;
}

.installment-box.ka-installment-disabled .installment-toggle-btn {
  cursor: not-allowed;
}

.home-installment-sign.ka-installment-sign-disabled {
  opacity: 0.65;
}

.ka-domain-installment-note {
  display: none;
  margin: 14px 0 0;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 127, 0, 0.10);
  color: #8d4a00;
  font-size: 13px;
  line-height: 1.6;
  font-weight: 800;
}
