:root {
  --jbiw-text: #111827;
  --jbiw-muted: #6b7280;
  --jbiw-line: #e5e7eb;
  --jbiw-soft: #f8fafc;
  --jbiw-positive: #129447;
}

.jbiw-widget,
.jbiw-widget * {
  box-sizing: border-box;
}

.jbiw-widget {
  --jbiw-accent: #2b53a0;
  --jbiw-active-provider-accent: var(--jbiw-accent);
  --jbiw-control-height: 42px;
  width: 100%;
  max-width: 100%;
  direction: rtl;
  color: var(--jbiw-text);
  background: #fff;
  border: 1px solid var(--jbiw-line);
  border-radius: 8px;
  font-family: inherit;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(17, 24, 39, 0.04);
  container-type: inline-size;
  container-name: jbiw;
}

.jbiw-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 12px 14px;
  min-height: 76px;
  padding: 12px 14px;
}

.jbiw-heading {
  display: flex;
  flex: 0 1 auto;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
  max-width: 100%;
}

.jbiw-symbol {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--jbiw-accent);
  background: color-mix(
    in srgb,
    var(--jbiw-accent) 8%,
    #fff
  );
  border: 1px solid
    color-mix(
      in srgb,
      var(--jbiw-accent) 18%,
      #fff
    );
  border-radius: 8px;
  flex: 0 0 auto;
  margin-top: 2px;
}

.jbiw-heading-text {
  display: grid;
  align-content: start;
  gap: 2px;
  min-width: 0;
}

.jbiw-title {
  display: block;
  color: var(--jbiw-text);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.55;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.jbiw-subtitle {
  display: block;
  color: var(--jbiw-accent);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.jbiw-subtitle b {
  font: inherit;
}

.jbiw-helper {
  display: block;
  color: var(--jbiw-muted);
  font-size: 11px;
  line-height: 1.6;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.jbiw-actions-wrap {
  display: flex;
  flex: 0 1 auto;
  align-items: center;
  gap: 8px;
  width: auto;
  max-width: 100%;
  min-width: 0;
  margin: 0;
}

.jbiw-providers-scroll {
  display: none;
  appearance: none;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: var(--jbiw-control-height);
  height: var(--jbiw-control-height);
  min-width: var(--jbiw-control-height);
  min-height: var(--jbiw-control-height);
  padding: 0;
  color: var(--jbiw-accent);
  background: #fff;
  border: 1px solid var(--jbiw-accent);
  border-radius: 7px;
  cursor: pointer;
  font-family: inherit;
  transition:
    color 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    opacity 160ms ease;
  -webkit-tap-highlight-color: transparent;
}

.jbiw-providers-scroll:hover {
  color: #fff;
  background: var(--jbiw-accent);
  border-color: var(--jbiw-accent);
  box-shadow: 0 0 0 3px
    color-mix(
      in srgb,
      var(--jbiw-accent) 12%,
      transparent
    );
}

.jbiw-providers-scroll:focus,
.jbiw-providers-scroll:focus-visible {
  outline: none !important;
  box-shadow: none;
}

.jbiw-providers-scroll:active {
  transform: translateY(1px);
}

.jbiw-actions-wrap
  .jbiw-providers-scroll[hidden] {
  display: none !important;
}


.jbiw-scroll-icon {
  display: block;
  width: 18px;
  height: 18px;
  pointer-events: none;
}

.jbiw-providers {
  display: flex;
  flex: 0 1 auto;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  width: auto;
  min-width: 0;
  max-width: 100%;
  padding: 4px;
  direction: rtl;
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  scroll-padding-inline: 4px;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

.jbiw-providers::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.jbiw-provider {
  --jbiw-provider-accent: var(
    --jbiw-accent
  );
  appearance: none;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: max-content;
  min-width: max-content;
  height: var(--jbiw-control-height);
  min-height: var(--jbiw-control-height);
  padding: 0 12px;
  color: var(--jbiw-provider-accent);
  background: #fff;
  border: 1px solid
    var(--jbiw-provider-accent);
  border-radius: 7px;
  cursor: pointer;
  font-family: inherit;
  scroll-snap-align: start;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    color 160ms ease,
    background-color 160ms ease;
  -webkit-tap-highlight-color: transparent;
}

.jbiw-provider[data-provider="snapppay"] {
  --jbiw-provider-accent: #008efa;
}

.jbiw-provider[data-provider="torobpay"] {
  --jbiw-provider-accent: #a2e96f;
}

.jbiw-provider[data-provider="digipay"] {
  --jbiw-provider-accent: #0038ff;
}

/* رنگ فعال عمومی ویجت بر اساس Provider انتخاب‌شده */
.jbiw-widget:has(
  .jbiw-provider[data-provider="snapppay"].is-active
) {
  --jbiw-active-provider-accent: #008efa;
}

.jbiw-widget:has(
  .jbiw-provider[data-provider="torobpay"].is-active
) {
  --jbiw-active-provider-accent: #a2e96f;
}

.jbiw-widget:has(
  .jbiw-provider[data-provider="digipay"].is-active
) {
  --jbiw-active-provider-accent: #0038ff;
}


.jbiw-provider-name,
.jbiw-provider-plan,
.jbiw-provider-logo {
  color: var(--jbiw-provider-accent);
}


.jbiw-provider:focus,
.jbiw-provider:focus-visible {
  outline: none !important;
}

.jbiw-provider:hover,
.jbiw-provider:focus-visible {
  color: #fff;
  background: var(--jbiw-provider-accent);
  border-color: var(--jbiw-provider-accent);
  box-shadow: 0 0 0 3px
    color-mix(
      in srgb,
      var(--jbiw-provider-accent) 12%,
      transparent
    );
}

.jbiw-provider:hover
  .jbiw-provider-name,
.jbiw-provider:hover
  .jbiw-provider-plan,
.jbiw-provider:hover
  .jbiw-provider-logo,
.jbiw-provider:focus-visible
  .jbiw-provider-name,
.jbiw-provider:focus-visible
  .jbiw-provider-plan,
.jbiw-provider:focus-visible
  .jbiw-provider-logo {
  color: #fff;
}


.jbiw-provider.is-active {
  color: #fff;
  background: var(--jbiw-provider-accent);
  border-color: var(--jbiw-provider-accent);
  box-shadow:
    0 0 0 2px #fff inset,
    0 0 0 3px
      color-mix(
        in srgb,
        var(--jbiw-provider-accent) 16%,
        transparent
      );
}

.jbiw-provider.is-active
  .jbiw-provider-name,
.jbiw-provider.is-active
  .jbiw-provider-plan,
.jbiw-provider.is-active
  .jbiw-provider-logo {
  color: #fff;
}


.jbiw-provider-logo {
  display: inline-grid;
  place-items: center;
  position: relative;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  min-width: 22px;
  color: var(--jbiw-provider-accent);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  overflow: hidden;
  pointer-events: none;
}

/*
 * فقط زمانی فعال می‌شود که PHP یک فایل SVG معتبر
 * و موجود برای Provider پیدا کرده باشد.
 */
.jbiw-provider-logo.has-icon::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: currentColor;

  -webkit-mask-image: var(--jbiw-provider-icon);
  mask-image: var(--jbiw-provider-icon);

  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;

  -webkit-mask-position: center;
  mask-position: center;

  -webkit-mask-size: contain;
  mask-size: contain;
}





.jbiw-provider-name {
  font-size: 12px;
  font-weight: 750;
  line-height: 1;
  white-space: nowrap;
}

.jbiw-provider-plan {
  display: none;
  color: var(--jbiw-muted);
  font-size: 10px;
  line-height: 1;
  white-space: nowrap;
}


.jbiw-panel {
  padding: 0 14px 14px;
  border-top: 1px solid var(--jbiw-line);
}

.jbiw-panel[hidden] {
  display: none;
}

.jbiw-panel.is-provider-changing {
  animation:
    jbiw-provider-change 320ms ease both;
}

@keyframes jbiw-provider-change {
  0% {
    opacity: 0.55;
    transform: translateY(3px);
  }

  55% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .jbiw-panel.is-provider-changing {
    animation: none;
  }
}

.jbiw-detail-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 12px 2px 4px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  scrollbar-color:
    color-mix(
      in srgb,
      var(--jbiw-accent) 60%,
      #94a3b8
    )
    color-mix(
      in srgb,
      var(--jbiw-accent) 6%,
      #f1f5f9
    );
  scrollbar-gutter: stable;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
}

.jbiw-detail-track::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}

.jbiw-detail-track::-webkit-scrollbar-track {
  background: color-mix(
    in srgb,
    var(--jbiw-accent) 6%,
    #f1f5f9
  );
  border-radius: 999px;
}

.jbiw-detail-track::-webkit-scrollbar-thumb {
  background: color-mix(
    in srgb,
    var(--jbiw-accent) 60%,
    #94a3b8
  );
  border-radius: 999px;
}

.jbiw-detail {
  display: grid;
  flex: 0 0 auto;
  align-content: center;
  justify-items: center;
  gap: 4px;
  min-width: 132px;
  min-height: 48px;
  padding: 0 16px;
  border-inline-start: 1px solid
    var(--jbiw-line);
  text-align: center;
  scroll-snap-align: start;
}

.jbiw-detail:first-child {
  padding-inline-start: 0;
  border-inline-start: 0;
}

.jbiw-detail span,
.jbiw-detail-label {
  color: var(--jbiw-muted);
  font-size: 11px;
  line-height: 1.45;
  white-space: nowrap;
}

.jbiw-detail b,
.jbiw-detail-value {
  color: var(--jbiw-text);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
  white-space: nowrap;
}

.jbiw-detail [data-jbiw-installment],
.jbiw-detail-value[data-jbiw-installment] {
  color: var(--jbiw-accent);
}

.jbiw-positive,
.jbiw-detail-value.is-positive {
  color: var(--jbiw-positive) !important;
}

.jbiw-installment-amount {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  direction: rtl;
  gap: 4px;
  max-width: 100%;
  white-space: nowrap !important;
}

.jbiw-installment-number {
  color: var(--jbiw-accent) !important;
  font: inherit;
  white-space: nowrap !important;
  overflow-wrap: normal !important;
}

.jbiw-installment-currency {
  color: var(--jbiw-accent);
  font-size: 0.72em;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.jbiw-timeline-wrap {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--jbiw-line);
}

.jbiw-timeline {
  --jbiw-step-size: 24px;
  display: grid;
  grid-template-columns: repeat(
    var(--jbiw-steps, 4),
    minmax(74px, 1fr)
  );
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.jbiw-timeline-step {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 7px;
  min-width: 0;
  padding-top: 2px;
  text-align: center;
}

.jbiw-timeline-step::before {
  content: "";
  position: absolute;
  top: calc(
    var(--jbiw-step-size) / 2 + 1px
  );
  inset-inline: 50% -50%;
  height: 1px;
  background: var(--jbiw-line);
  z-index: 0;
}

.jbiw-timeline-step:first-child::before {
  inset-inline-start: 50%;
}

.jbiw-timeline-step:last-child::before {
  inset-inline-end: 50%;
}

.jbiw-timeline-dot {
  display: inline-grid;
  place-items: center;
  position: relative;
  z-index: 1;
  width: var(--jbiw-step-size);
  height: var(--jbiw-step-size);

  color: var(--jbiw-active-provider-accent);
  background:
    color-mix(
      in srgb,
      var(--jbiw-active-provider-accent) 10%,
      #fff
    );
  border: 1px solid
    color-mix(
      in srgb,
      var(--jbiw-active-provider-accent) 22%,
      #fff
    );

  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}


.jbiw-timeline-step.is-current
  .jbiw-timeline-dot {
  color: #fff;
  background: var(--jbiw-active-provider-accent);
  border-color: var(--jbiw-active-provider-accent);
  box-shadow: 0 0 0 4px
    color-mix(
      in srgb,
      var(--jbiw-active-provider-accent) 14%,
      transparent
    );
}


.jbiw-timeline-title {
  color: var(--jbiw-text);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.45;
}

.jbiw-timeline-note {
  color: var(--jbiw-muted);
  font-size: 10.5px;
  line-height: 1.55;
}

/* =========================================================
   راهنمای انتخاب درگاه اقساطی در صفحه تسویه‌حساب
   ظاهر ساده، ظریف و غیرتهاجمی
   ========================================================= */

.jbiw-checkout-notice {
  display: flex;
  align-items: flex-start;
  gap: 7px;

  margin-top: 12px;
  padding: 10px 2px 0;

  color: var(--jbiw-muted);
  background: transparent;
  border: 0;
  border-top: 1px solid var(--jbiw-line);
  border-radius: 0;

  font-size: 10.5px;
  font-weight: 500;
  line-height: 1.85;
  text-align: right;
}

/* آیکون راهنما */
.jbiw-checkout-notice-icon {
  display: block;
  flex: 0 0 17px;
  width: 17px;
  height: 17px;
  margin-top: 2px;

  color: var(--jbiw-active-provider-accent);
  opacity: 0.85;
}

/* محتوای متنی پیام و لینک */
.jbiw-checkout-notice-content {
  display: block;
  flex: 1 1 auto;
  min-width: 0;

  line-height: inherit;
  text-align: right;
  overflow-wrap: break-word;
  text-wrap: pretty;
}

/* متن اصلی پیام */
.jbiw-checkout-notice-content > span {
  min-width: 0;
}

/* لینک یا عنوان موقت «اطلاعات بیشتر» */
.jbiw-checkout-notice-link {
  display: inline;
  margin-inline-start: 5px;

  color: var(--jbiw-active-provider-accent);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;

  transition:
    color 160ms ease,
    opacity 160ms ease,
    text-decoration-color 160ms ease;
}

/* فقط لینک واقعی و فعال */
a.jbiw-checkout-notice-link:hover,
a.jbiw-checkout-notice-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* فوکوس قابل‌مشاهده بدون ایجاد کادر بزرگ */
a.jbiw-checkout-notice-link:focus-visible {
  outline: 1px dotted currentColor;
  outline-offset: 2px;
}

/* حالت موقت و غیرفعال تا زمان تعیین URL */
.jbiw-checkout-notice-link.is-disabled {
  opacity: 0.65;
  cursor: default;
  user-select: none;
}



@media (min-width: 920px) {
  .jbiw-provider-plan {
    display: inline;
  }
}

@media (max-width: 767px) {
  .jbiw-main {
    display: grid;
    grid-template-columns:
      minmax(0, 1fr) auto;
    gap: 8px 10px;
    min-height: 0;
    padding: 10px;
  }

  .jbiw-heading {
    min-width: 0;
    align-items: flex-start;
  }

  .jbiw-symbol {
    width: 30px;
    height: 30px;
    margin-top: 2px;
  }

  .jbiw-title {
    font-size: 14px;
    white-space: normal;
  }

  .jbiw-subtitle {
    font-size: 13px;
  }

  .jbiw-helper {
    font-size: 10.5px;
    white-space: normal;
  }

  
  .jbiw-actions-wrap {
    display: flex;
    grid-column: 1 / -1;
    align-items: center;
    direction: rtl;
    gap: 8px;
    width: 100%;
    min-width: 0;
  }

  .jbiw-providers-scroll {
    display: inline-flex;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
  }

  .jbiw-providers-scroll-prev {
    order: 1;
  }

  .jbiw-providers {
    order: 2;
    flex: 1 1 0;
    width: 0;
    min-width: 0;
    max-width: none;
    gap: 7px;
    padding: 4px;
    direction: rtl;
    justify-content: flex-start;
    scroll-padding-inline-start: 4px;
    scroll-padding-inline-end: 4px;
  }

  .jbiw-providers-scroll-next {
    order: 3;
  }



  .jbiw-provider {
    height: 40px;
    min-height: 40px;
    padding: 0 10px;
  }

  .jbiw-provider-name {
    display: inline;
    font-size: 11.5px;
  }

  .jbiw-panel {
    padding: 0 10px 12px;
  }

  .jbiw-detail {
    min-width: 118px;
    padding: 0 12px;
  }

  .jbiw-installment-amount {
    display: inline-flex;
    gap: 3px;
    white-space: nowrap !important;
    overflow-wrap: normal !important;
  }

  .jbiw-installment-number {
    font-size: 12.5px;
    white-space: nowrap !important;
    overflow-wrap: normal !important;
  }

  .jbiw-installment-currency {
    font-size: 9px;
    white-space: nowrap !important;
    overflow-wrap: normal !important;
  }
}

@container jbiw (max-width: 620px) {
  
  .jbiw-actions-wrap {
    display: flex;
    align-items: center;
    direction: rtl;
    gap: 8px;
    width: 100%;
    min-width: 0;
  }

  .jbiw-providers-scroll {
    display: inline-flex;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
  }

  .jbiw-providers-scroll-prev {
    order: 1;
  }

  .jbiw-providers {
    order: 2;
    flex: 1 1 0;
    width: 0;
    min-width: 0;
    max-width: none;
    gap: 7px;
    padding: 4px;
    direction: rtl;
    justify-content: flex-start;
    scroll-padding-inline-start: 4px;
    scroll-padding-inline-end: 4px;
  }

  .jbiw-providers-scroll-next {
    order: 3;
  }



  .jbiw-detail-track {
    display: grid;
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 0;
    overflow-x: hidden;
    overflow-y: visible;
    padding: 12px 0 4px;
  }

  .jbiw-detail {
    min-width: 0;
    min-height: 58px;
    padding: 8px 10px;
    border-inline-start: 1px solid
      var(--jbiw-line);
    border-block-end: 1px solid
      var(--jbiw-line);
  }

  .jbiw-detail:nth-child(odd) {
    border-inline-start: 0;
  }

  .jbiw-detail:nth-last-child(-n + 2) {
    border-block-end: 0;
  }

  .jbiw-detail:first-child {
    padding-inline-start: 10px;
  }

  .jbiw-detail span,
  .jbiw-detail b,
  .jbiw-detail-label,
  .jbiw-detail-value {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .jbiw-installment-amount,
  .jbiw-installment-number,
  .jbiw-installment-currency {
    white-space: nowrap !important;
    overflow-wrap: normal !important;
  }

.jbiw-timeline {
  grid-template-columns:
    repeat(2, minmax(108px, 132px));
  justify-content: center;
  column-gap: 16px;
  row-gap: 20px;

  width: fit-content;
  max-width: 100%;
  margin-inline: auto;

  direction: rtl;
}


  .jbiw-timeline-step {
    position: relative;
    display: grid;
    grid-template-columns:
      var(--jbiw-step-size)
      minmax(0, 1fr);
    grid-template-rows: auto auto;
    justify-items: start;
    align-items: start;
    align-content: start;
    gap: 1px 8px;
    min-width: 0;
    min-height: 44px;
    padding: 0;
    text-align: right;
  }

.jbiw-timeline-step::before {
  display: none;
  content: "";
  position: absolute;
  z-index: 0;
  top: calc(var(--jbiw-step-size) / 2);
  right: calc(var(--jbiw-step-size) / 2);
  left: auto;
  width: calc(100% + 8px);
  height: 1px;
  background:
  color-mix(
    in srgb,
    var(--jbiw-active-provider-accent) 18%,
    var(--jbiw-line)
  );
  transform: translateY(-50%);
  pointer-events: none;
}


  .jbiw-timeline-step:nth-child(odd):not(:last-child)::before {
    display: block;
  }

  /*
   * دایره روی خط اتصال قرار می‌گیرد.
   */
  .jbiw-timeline-dot {
    position: relative;
    z-index: 2;
    grid-column: 1;
    grid-row: 1 / 3;
    align-self: start;
  }

.jbiw-timeline-title,
.jbiw-timeline-note {
  position: relative;
  z-index: 2;
  justify-self: start;
  min-width: 0;
  max-width: 100%;
  padding-inline: 3px;
  background: #fff;
  box-shadow: 0 0 0 4px #fff;
  text-align: right;
}


  .jbiw-timeline-title {
    grid-column: 2;
    grid-row: 1;
  }

  .jbiw-timeline-note {
    grid-column: 2;
    grid-row: 2;
  }
}


@media (max-width: 390px) {
  .jbiw-provider {
    gap: 5px;
    padding-inline: 9px;
  }

  .jbiw-provider-logo {
    flex-basis: 18px;
    width: 18px;
    height: 18px;
    min-width: 18px;
  }

  .jbiw-provider-name {
    font-size: 11px;
  }
}

/*@container jbiw (max-width: 200px) {*/
/*  .jbiw-timeline {*/
/*    grid-template-columns: 1fr;*/
/*  }*/
/*}*/

/* =========================================================
   TorobPay exceptions
   فقط عنوان، متن تعداد اقساط و خود SVG لوگو
   بدون تغییر Background، Border یا Accent اصلی کارت
   ========================================================= */

/* عنوان ترب‌پی:
   در حالت عادی، Hover، Focus و انتخاب‌شده سبز تیره بماند */
.jbiw-provider[data-provider="torobpay"] .jbiw-provider-name,
.jbiw-provider[data-provider="torobpay"]:hover .jbiw-provider-name,
.jbiw-provider[data-provider="torobpay"]:focus-visible .jbiw-provider-name,
.jbiw-provider[data-provider="torobpay"].is-active .jbiw-provider-name {
  color: #044100 !important;
}

/* متن «۴ قسط»:
   در Hover، Focus و حالت انتخاب‌شده سفید نشود */
.jbiw-provider[data-provider="torobpay"]:hover .jbiw-provider-plan,
.jbiw-provider[data-provider="torobpay"]:focus-visible .jbiw-provider-plan,
.jbiw-provider[data-provider="torobpay"].is-active .jbiw-provider-plan {
  color: #044100 !important;
}

/* حذف فقط پس‌زمینه قاب زیر SVG لوگوی ترب‌پی */
.jbiw-provider[data-provider="torobpay"] .jbiw-provider-logo.has-icon,
.jbiw-provider[data-provider="torobpay"]:hover .jbiw-provider-logo.has-icon,
.jbiw-provider[data-provider="torobpay"]:focus-visible .jbiw-provider-logo.has-icon,
.jbiw-provider[data-provider="torobpay"].is-active .jbiw-provider-logo.has-icon {
  background: transparent !important;
  background-color: transparent !important;
}

/* خود SVG لوگوی ترب‌پی:
   در Hover، Focus و حالت انتخاب‌شده سفید نشود */
.jbiw-provider[data-provider="torobpay"]:hover
  .jbiw-provider-logo.has-icon::before,
.jbiw-provider[data-provider="torobpay"]:focus-visible
  .jbiw-provider-logo.has-icon::before,
.jbiw-provider[data-provider="torobpay"].is-active
  .jbiw-provider-logo.has-icon::before {
  background-color: #044100 !important;
}


