/* Vishop credit / installment calculator */
.vcc-root {
  position: relative;
  z-index: 40;
  margin: 14px 0 18px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: #1a1a1a;
  pointer-events: auto !important;
}

.vcc-root button,
.vcc-root .vcc-teaser,
.vcc-root .vcc-link,
.vcc-root .vcc-tab,
.vcc-root .vcc-card,
.vcc-root .vcc-term,
.vcc-root .vcc-close,
.vcc-root .vcc-cta {
  pointer-events: auto !important;
  position: relative;
  z-index: 1;
  -webkit-tap-highlight-color: rgba(47, 111, 237, 0.2);
}

/* Jivo full-viewport measuring layer sometimes intercepts clicks */
jdiv.jv-pseudo-height,
.jv-pseudo-height {
  pointer-events: none !important;
}

.vcc-teaser {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid #e3e8ef;
  border-radius: 12px;
  background: #f7f9fc;
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.vcc-teaser:hover,
.vcc-teaser:focus {
  border-color: #2f6fed;
  box-shadow: 0 0 0 3px rgba(47, 111, 237, 0.12);
  outline: none;
}

.vcc-teaser-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #e6ebf2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2f6fed;
  flex: 0 0 auto;
}

.vcc-teaser-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 10px;
}

.vcc-link {
  background: none;
  border: 0;
  padding: 0;
  color: #2f6fed;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.vcc-from {
  font-size: 14px;
  color: #333;
}

.vcc-from b {
  font-weight: 700;
}

.vcc-chevron {
  font-size: 22px;
  color: #8a94a6;
  line-height: 1;
}

.vcc-panel {
  margin-top: 10px;
  padding: 16px;
  border: 1px solid #dfe6f0;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(16, 36, 68, 0.08);
}

.vcc-panel[hidden],
.vcc-panel:not(.is-open) {
  display: none !important;
}

.vcc-panel.is-open {
  display: block !important;
}

.vcc-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.vcc-title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
}

.vcc-sub {
  font-size: 12px;
  color: #6b7280;
  margin-top: 4px;
}

.vcc-close {
  border: 0;
  background: #f1f4f8;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  color: #445;
}

.vcc-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  background: #f7f9fc;
  border-radius: 10px;
  margin-bottom: 14px;
  font-size: 14px;
}

.vcc-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.vcc-tab {
  flex: 1;
  border: 1px solid #d7dee8;
  background: #fff;
  border-radius: 10px;
  padding: 10px 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  color: #334;
}

.vcc-tab.is-active {
  border-color: #2f6fed;
  background: #eef4ff;
  color: #1d4ed8;
}

.vcc-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #667085;
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.vcc-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 10px;
}

.vcc-card,
.vcc-term {
  border: 1px solid #d7dee8;
  background: #fff;
  border-radius: 10px;
  padding: 11px 12px;
  font-size: 14px;
  cursor: pointer;
  color: #222;
  text-align: left;
}

.vcc-card.is-active,
.vcc-term.is-active {
  border-color: #2f6fed;
  background: #eef4ff;
  color: #1d4ed8;
  font-weight: 600;
}

.vcc-card small {
  display: block;
  color: #667085;
  font-weight: 400;
  margin-top: 3px;
  font-size: 12px;
}

.vcc-terms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.vcc-term {
  text-align: center;
  min-width: 72px;
}

.vcc-result {
  border-top: 1px solid #eef1f5;
  padding-top: 12px;
  margin-top: 8px;
}

.vcc-result-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 8px 0;
  font-size: 14px;
}

.vcc-result-row[hidden] {
  display: none !important;
}

.vcc-result-row strong {
  font-size: 22px;
  color: #0f766e;
}

.vcc-result-row.muted {
  color: #667085;
  font-size: 13px;
}

.vcc-legend {
  margin: 8px 0 0;
  padding: 10px 12px 10px 28px;
  background: #f8fafc;
  border-radius: 10px;
  font-size: 13px;
  color: #334;
  line-height: 1.55;
}

.vcc-legend li {
  margin: 2px 0;
}

.vcc-note {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.45;
  margin: 12px 0 10px;
}

.vcc-cta {
  display: inline-block;
  background: #2f6fed;
  color: #fff !important;
  text-decoration: none !important;
  border-radius: 10px;
  padding: 11px 16px;
  font-size: 14px;
  font-weight: 600;
}

.vcc-cta:hover {
  background: #2159d1;
}

@media (max-width: 520px) {
  .vcc-tabs {
    flex-direction: column;
  }

  .vcc-cards {
    grid-template-columns: 1fr;
  }

  .vcc-result-row strong {
    font-size: 18px;
  }
}
