/* ============================================================
   PAYTOUA.COM â€” Components
   Original Zen design style
   ============================================================ */

/* â”€â”€ Buttons â”€â”€ */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-family);
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: all var(--transition-bounce);
  white-space: nowrap;
  text-decoration: none;
  position: relative;
}

.btn:active { transform: scale(0.96); }

.btn-primary {
  background-color: var(--color-accent);
  color: #fff;
}
.btn-primary:hover { background-color: var(--color-accent-hover); transform: translateY(-2px); }

.btn-highlight {
  background: var(--gradient-brand);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(255, 87, 34, 0.3);
}
.btn-highlight:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255, 87, 34, 0.4); filter: brightness(1.05); }

.btn-secondary {
  background-color: rgba(0, 0, 0, 0.04);
  color: var(--color-text-primary);
  border: 1px solid var(--color-border);
}
.btn-secondary:hover { background-color: rgba(0, 0, 0, 0.08); transform: translateY(-2px); }

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text-primary);
}
.btn-outline:hover { border-color: var(--color-text-primary); }

.btn-ghost {
  background: transparent;
  color: var(--color-text-primary);
  border: 1.5px solid var(--color-border);
}
.btn-ghost:hover { border-color: var(--color-border-strong); background: var(--color-surface-2); }

.btn-outline-white {
  background: transparent;
  color: rgba(255,255,255,.75);
  border: 1.5px solid rgba(255,255,255,.18);
}
.btn-outline-white:hover { border-color: rgba(255,255,255,.45); color: #fff; background: rgba(255,255,255,.07); }

.btn-sm  { padding: 8px 16px; font-size: .875rem; }
.btn-lg  { padding: 16px 32px; font-size: 1.125rem; }
.btn-icon { width: 40px; height: 40px; padding: 0; border-radius: 50%; }

/* â”€â”€ Cards â”€â”€ */
.card {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-normal), transform var(--transition-bounce);
  border: 1px solid var(--color-border);
}

.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.card-highlight { position: relative; overflow: hidden; }
.card-highlight::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, #ff5722, #ff8c00);
}

/* â”€â”€ Badges â”€â”€ */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.5px;
}

.badge-success   { background-color: rgba(16, 163, 66, 0.1); color: var(--color-success); }
.badge-highlight { background-color: rgba(255, 87, 34, 0.1);  color: var(--color-highlight); }
.badge-muted     { background: var(--color-surface-2); color: var(--color-text-muted); border: 1px solid var(--color-border); }
.badge-error     { background: var(--color-error-soft); color: var(--color-error); }

/* â”€â”€ Form Inputs â”€â”€ */
.input-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.input-label { font-size: 0.875rem; font-weight: 500; color: var(--color-text-secondary); }

.input-field {
  width: 100%; padding: 16px 20px; font-size: 1.125rem;
  border-radius: var(--radius-md); border: 1px solid var(--color-border);
  background-color: var(--color-surface); color: var(--color-text-primary);
  font-family: var(--font-family); outline: none;
  transition: all var(--transition-normal);
}
.input-field:focus { border-color: var(--color-text-primary); box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05); }

/* â”€â”€ SmartPay controls (calculator) â”€â”€ */
.smartpay-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 10px 0 14px;
}

.smartpay-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--color-text-primary);
  cursor: pointer;
  user-select: none;
}

.smartpay-toggle input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--color-highlight);
}

.smartpay-bank-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.smartpay-bank-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.smartpay-bank-select {
  height: 38px;
  min-width: 156px;
  border-radius: 12px;
  border: 1.5px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text-primary);
  font-size: 0.86rem;
  font-weight: 700;
  padding: 0 10px;
  outline: none;
}

.smartpay-bank-select[multiple] {
  height: auto;
  min-height: 38px;
  padding-top: 6px;
  padding-bottom: 6px;
}

.smartpay-bank-select[multiple] option {
  padding: 4px 6px;
}

.smartpay-bank-wrap[hidden] {
  display: none !important;
}

.smartpay-bank-select:focus {
  border-color: var(--color-highlight);
}

.smartpay-row.is-off .smartpay-bank-wrap {
  opacity: 0.58;
}

.smartpay-row.is-disabled {
  opacity: 0.56;
}

@media (max-width: 768px) {
  .smartpay-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin: 8px 0 12px;
  }

  .smartpay-bank-wrap {
    width: 100%;
  }

  .smartpay-bank-select {
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
  }
}

/* â”€â”€ Country Picker â”€â”€ */
.country-picker-wrap { position: relative; }
.country-picker-btn  { transition: all var(--transition-fast); }
.country-picker-btn:hover { border-color: var(--color-text-primary) !important; }

.country-panel {
  position: absolute;
  left: 0; right: 0; top: calc(100% + 8px);
  z-index: 2000;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 12px;
  max-height: 400px;
  display: flex; flex-direction: column;
}
.country-panel[hidden] { display: none; }

.country-search {
  width: 100%; height: 44px !important;
  border-radius: 12px !important; border: 1px solid var(--color-border) !important;
  padding: 0 16px !important; margin-bottom: 12px;
  font-size: 0.95rem !important; font-family: var(--font-family); outline: none;
  background: var(--color-surface-2) !important; color: var(--color-text-primary) !important;
}
.country-search:focus { border-color: var(--color-highlight) !important; }

.country-search-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.country-search-row .country-search {
  margin-bottom: 0;
  flex: 1 1 auto;
}

.country-panel-close {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  background: var(--color-surface-2);
  color: var(--color-text-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
}

.country-panel-close:hover {
  border-color: var(--color-highlight);
  color: var(--color-highlight);
  background: var(--color-surface);
}

.country-list { max-height: 280px; overflow-y: auto; display: flex; flex-direction: column; gap: 4px; }
.country-list::-webkit-scrollbar { width: 3px; }
.country-list::-webkit-scrollbar-thumb { background: var(--color-border); border-radius: 3px; }

.country-option {
  width: 100%; border: 1px solid transparent;
  background: transparent; border-radius: 10px;
  padding: 10px 12px; text-align: left;
  display: flex; align-items: center; gap: 12px;
  cursor: pointer; transition: all var(--transition-fast);
}
.country-option:hover { background: var(--color-surface-2); }
.country-option.active { background: var(--color-highlight-soft); border-color: rgba(var(--color-highlight-rgb), .18); }

.country-picker-flag,
#senderPickerFlag,
#recipientPickerFlag {
  width: 30px;
  height: 30px;
  min-width: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  line-height: 1;
}

.country-option-flag {
  width: 24px;
  height: 24px;
  min-width: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  line-height: 1;
}
.country-option-name { flex: 1; min-width: 0; font-size: 0.95rem; font-weight: 600; color: var(--color-text-primary); }
.country-option-code {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 48%;
}
.country-empty { padding: 12px; color: var(--color-text-muted); font-size: .9rem; text-align: center; }

.bar-picker-flag {
  width: 22px;
  height: 22px;
  min-width: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  line-height: 1;
}
.bar-picker-name { font-size: .84rem; font-weight: 600; flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bar-picker-code { font-size: .68rem; color: var(--color-text-muted); font-weight: 700; }

.country-picker-flag img,
#senderPickerFlag img,
#recipientPickerFlag img,
.country-option-flag img,
.bar-picker-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

/* â”€â”€ Mobile nav button â”€â”€ */
.nav-mobile-btn { }

/* ============================================================
   RESULTS PAGE
   ============================================================ */

.results-hero {
  padding: 100px 0 28px;
  border-bottom: 1px solid var(--color-border);
}

.breadcrumb {
  display: flex; align-items: center; gap: 5px;
  font-size: .72rem; color: var(--color-text-muted);
  margin-bottom: 12px; font-weight: 500;
}
.breadcrumb a:hover { color: var(--color-text-primary); }
.breadcrumb-sep { opacity: .4; }

.results-meta-bar {
  display: flex; align-items: flex-start;
  justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}

.results-hero h1 { font-size: clamp(1.375rem, 4vw, 2rem); margin-bottom: 4px; line-height: 1.1; }
.results-hero p  { font-size: .9rem; color: var(--color-text-secondary); margin: 0; }

/* View toggle */
.view-toggle {
  display: flex; background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill); padding: 3px; gap: 2px; flex-shrink: 0;
}
.view-btn {
  width: 32px; height: 32px; border: none; background: transparent;
  border-radius: var(--radius-pill); display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--color-text-muted); transition: all var(--transition-fast);
}
.view-btn.active { background: var(--color-surface); color: var(--color-text-primary); box-shadow: var(--shadow-xs); }

/* â”€â”€ Compare bar â”€â”€ */
.compare-bar-toggle {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--color-surface); border: 1.5px solid var(--color-border);
  border-radius: var(--radius-xl); padding: 12px 18px;
  margin: 16px 0 0; cursor: pointer;
  transition: border-color var(--transition-fast), border-radius var(--transition-fast); gap: 12px;
}
.compare-bar-toggle:hover { border-color: var(--color-border-strong); }
.compare-bar-toggle.open {
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  border-bottom-color: var(--color-border);
}

.compare-bar-summary {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap; flex: 1; min-width: 0;
}
.compare-bar-chip {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 10px; background: var(--color-surface-2);
  border: 1px solid var(--color-border); border-radius: var(--radius-pill);
  font-size: .75rem; font-weight: 600; color: var(--color-text-primary); white-space: nowrap;
}
.compare-bar-chevron {
  flex-shrink: 0; color: var(--color-text-muted); transition: transform var(--transition-normal);
}
.compare-bar-toggle.open .compare-bar-chevron { transform: rotate(180deg); }

.compare-bar {
  background: var(--color-surface); border: 1.5px solid var(--color-border);
  border-top: none; border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  display: grid; grid-template-columns: 1fr 1fr 1.2fr auto;
  gap: 10px; align-items: end; box-shadow: var(--shadow-md);
  max-height: 0; padding: 0 18px; opacity: 0; pointer-events: none; overflow: hidden;
  transition:
    max-height .32s cubic-bezier(.4,0,.2,1),
    padding    .32s cubic-bezier(.4,0,.2,1),
    opacity    .24s ease;
}
.compare-bar.expanded {
  max-height: 220px; padding: 18px; opacity: 1; pointer-events: all;
}

.compare-bar-field label {
  display: block; font-size: .68rem; font-weight: 700;
  color: var(--color-text-muted); text-transform: uppercase;
  letter-spacing: .07em; margin-bottom: 5px;
}
.compare-bar-field .field-inner {
  display: flex; align-items: center; gap: 6px;
  background: var(--color-surface-2); border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md); padding: 0 12px; height: 55px;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}
.compare-bar-field .field-inner:focus-within {
  border-color: var(--color-highlight); box-shadow: var(--shadow-glow); background: #fff;
}
.compare-bar-field input[type="number"] {
  border: none; outline: none; font-size: 1rem; font-weight: 700;
  color: var(--color-text-primary); font-family: var(--font-family);
  background: transparent; width: 100%;
}
.bar-ccy-select {
  border: none; outline: none; background: transparent;
  font-size: .78rem; font-weight: 800; color: var(--color-text-secondary);
  cursor: pointer; appearance: none; -webkit-appearance: none;
}
.bar-picker-btn {
  display: flex; align-items: center; gap: 8px;
  background: var(--color-surface-2); border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md); padding: 0 12px; height: 55px; width: 100%;
  cursor: pointer; color: var(--color-text-primary); font-family: var(--font-family);
  transition: border-color var(--transition-fast), background var(--transition-fast); text-align: left;
}
.bar-picker-btn:hover, .bar-picker-btn.open { border-color: var(--color-highlight); background: #fff; }
.compare-bar .btn-search { height: 55px; padding: 0 18px; }

.swap-wrap[hidden],
.compare-bar-swap[hidden] {
  display: none !important;
}

.swap-wrap .swap-btn.is-swapping,
.swap-wrap #swapBtn.is-swapping {
  transform: translateY(12px) rotate(180deg);
}

@media (max-width: 900px) {
  .compare-bar { grid-template-columns: 1fr 1fr; }
  .compare-bar .btn-search { grid-column: 1 / -1; width: 100%; }
}
@media (max-width: 560px) {
  .compare-bar { grid-template-columns: 1fr; }
  .compare-bar.expanded { max-height: 420px; }
}

@media (max-width: 640px) {
  body.country-sheet-open,
  html.country-sheet-open {
    overflow: hidden;
  }
  body.country-sheet-open {
    overscroll-behavior: contain;
  }
  body.country-sheet-open::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9190;
    background: rgba(15, 23, 42, 0.48);
  }
  .country-panel {
    position: fixed;
    inset: 0;
    width: auto;
    min-height: 100dvh;
    height: 100dvh;
    max-width: none;
    max-height: 100dvh;
    padding: calc(12px + env(safe-area-inset-top, 0px)) 16px calc(20px + env(safe-area-inset-bottom, 0px));
    border-radius: 0;
    box-shadow: none;
    box-sizing: border-box;
    background: var(--color-surface);
    transform: translate3d(0, 100%, 0);
    opacity: 0;
    transition: transform .22s cubic-bezier(.2, .8, .2, 1), opacity .18s ease;
    overscroll-behavior: contain;
    z-index: 9200;
    will-change: transform;
    overflow: hidden;
    touch-action: pan-y;
  }
  .country-panel::before {
    content: '';
    display: block;
    width: 44px;
    height: 5px;
    margin: 4px auto 14px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.9);
    flex-shrink: 0;
  }
  .country-panel.sheet-visible {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  .country-panel.sheet-closing {
    transform: translate3d(0, 100%, 0);
    opacity: 0;
  }
  .country-search-row {
    position: relative;
    top: auto;
    z-index: 2;
    min-height: 64px;
    padding: 8px 0 16px;
    background: var(--color-surface);
    margin-bottom: 8px;
    flex-shrink: 0;
  }
  .country-search {
    height: 64px !important;
    border-radius: 18px !important;
    font-size: 1rem !important;
    padding: 0 20px !important;
  }
  .country-panel-close {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 18px;
  }
  .country-list {
    max-height: none;
    flex: 1 1 auto;
    min-height: 0;
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;
  }
  .country-option {
    min-height: 64px;
    border-radius: 16px;
    padding: 14px 16px;
  }
  .country-picker-wrap {
    position: static !important;
    z-index: auto !important;
  }
  .hero,
  .hero-content,
  .calc-container,
  .calc-mockup {
    overflow: visible !important;
  }
}

/* â”€â”€ Status line â”€â”€ */
#statusLine {
  padding: 8px 14px; border-radius: var(--radius-md);
  background: var(--color-highlight-soft);
  border: 1px solid rgba(var(--color-highlight-rgb), .14);
  font-size: .78rem; font-weight: 600; color: var(--color-text-secondary); margin: 12px 0 0;
}

.rate-update-toast {
  position: fixed;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  max-width: min(420px, calc(100vw - 24px));
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(var(--color-highlight-rgb), .32);
  background: rgba(255, 255, 255, 0.96);
  color: var(--color-text-primary);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.35;
  z-index: 4200;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease;
  pointer-events: none;
}

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

@media (max-width: 900px) {
  .rate-update-toast {
    left: 12px;
    right: 12px;
    max-width: none;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  }
}

/* â”€â”€ Methods â”€â”€ */
.res-section-label {
  font-size: .68rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .09em;
  color: var(--color-text-muted); margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.res-section-label::after { content: ''; flex: 1; height: 1px; background: var(--color-border); }

#methods { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }

.method {
  background: var(--color-surface); border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg); padding: 12px 16px;
  cursor: pointer; transition: all var(--transition-fast); flex: 1; min-width: 120px;
}
.method:hover { border-color: var(--color-highlight); }
.method.active { border-color: var(--color-highlight); background: var(--color-highlight-soft); box-shadow: var(--shadow-glow); }
.method-name { font-size: .68rem; font-weight: 700; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
.method-value { font-size: 1.25rem; font-weight: 800; line-height: 1.1; color: var(--color-text-primary); letter-spacing: -.03em; }

/* ============================================================
   RESULT CARDS â€” Original Provider Row Style
   ============================================================ */

.results-content { padding: 24px 0 64px; }

#results {
  display: flex; flex-direction: column;
  gap: 0; margin-bottom: 24px;
}

/* â”€â”€ Card outer â€” provider-row style â”€â”€ */
#results .card,
.result-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: visible;
  position: relative;
  margin-bottom: 16px;
  padding: 0; /* reset generic .card padding */
  transition: box-shadow var(--transition-normal), transform var(--transition-bounce), border-color var(--transition-fast);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

#results .card:hover,
.result-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
  border-color: var(--color-text-primary);
}

/* Best deal */
#results .card.best,
.result-card.best {
  border: 2px solid var(--color-highlight);
  background: var(--color-surface);
}

/* Best deal badge â€” "ĐˇĐ°ĐĽŃ‹Đą Đ˛Ń‹ĐłĐľĐ´Đ˝Ń‹Đą" floating tag above card */
#results .card.best::before {
  content: 'ĐˇĐ°ĐĽŃ‹Đą Đ˛Ń‹ĐłĐľĐ´Đ˝Ń‹Đą';
  position: absolute;
  top: -13px; left: 20px;
  background: var(--gradient-brand);
  color: #fff;
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px rgba(255, 87, 34, 0.4);
  white-space: nowrap;
  pointer-events: none;
  z-index: 4;
}

/* â”€â”€ Card main row â”€â”€ */
.result-card-main {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 20px 24px;
}

/* Service logo â€” left column */
.svc-logo {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: var(--color-surface-2);
  overflow: hidden;
  border: 1px solid var(--color-border);
  margin-right: 16px;
}
.svc-logo svg { width: 100%; height: 100%; display: block; border-radius: var(--radius-sm); }

/* Center info â€” like .provider-details */
.result-info {
  flex: 1;
  min-width: 0;
  padding-left: 20px;
  border-left: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.service {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text-primary);
  letter-spacing: -.02em;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.desc {
  font-size: .875rem;
  color: var(--color-text-secondary);
  line-height: 1.4;
  margin-top: 2px;
}
.desc-limit { color: #B45309; font-weight: 600; }

.pills { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 6px; }

.pill {
  display: inline-flex; align-items: center; gap: 3px;
  padding: 3px 8px; border-radius: var(--radius-pill);
  font-size: .68rem; font-weight: 600;
  background: var(--color-surface-2); border: 1px solid var(--color-border);
  color: var(--color-text-secondary);
}
.pill-speed { background: rgba(16, 163, 66, 0.08); border-color: rgba(16, 163, 66, 0.15); color: var(--color-success-text); }
.pill-fee   { background: var(--color-highlight-soft); border-color: rgba(var(--color-highlight-rgb), .14); color: var(--color-highlight); }
.pill-rate  { background: rgba(10,10,200,.05); border-color: rgba(10,10,200,.12); color: #1818D0; }

.fee-old  { text-decoration: line-through; color: var(--color-text-muted); }
.fee-note { color: var(--color-success-text); font-weight: 700; }

/* Right â€” price block */
.result-price-block {
  text-align: right;
  flex-shrink: 0;
  margin-left: 24px;
  padding-left: 24px;
  border-left: 1px solid var(--color-border);
  min-width: 120px;
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-success);
  letter-spacing: -.03em;
  margin-bottom: 3px;
}

.good { color: var(--color-success-text); font-weight: 600; font-size: .78rem; text-align: right; }
.bad  { color: var(--color-error);        font-weight: 600; font-size: .78rem; text-align: right; }

/* â”€â”€ Row helpers (app.js layout) â”€â”€ */
#results .card .row {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 16px;
  padding: 24px 24px 8px;
}

/* Right column of .row: price block with border separator */
#results .card .row > div:last-child:not(:only-child) {
  border-left: 1px solid var(--color-border);
  padding-left: 24px;
  flex-shrink: 0;
  text-align: right;
}

#results .card .service-line {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 2px;
}

/* .desc lines below .row get horizontal padding */
#results .card > .desc {
  padding: 0 24px;
  margin-bottom: 2px;
}
#results .card > .desc:last-of-type {
  padding-bottom: 0;
}

/* link-btn and pills get padding */
#results .card > .link-btn {
  padding: 8px 24px 12px;
  display: block;
}
#results .card > .pills {
  padding: 0 24px 16px;
}

#results > .results-live-summary {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 2px 0 18px;
  padding: 0 4px;
  border: none;
  background: transparent;
  color: var(--color-text-secondary);
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.35;
}

/* Best badge */
.result-best-tag {
  position: absolute;
  top: -12px; left: 20px;
  background: var(--gradient-brand);
  color: #fff;
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px rgba(255, 87, 34, 0.35);
}

/* Action row */
.result-card-actions {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px 14px; gap: 8px;
}

.link-btn {
  display: inline-flex; align-items: center; gap: 5px;
  background: transparent; border: none;
  color: var(--color-highlight); font-weight: 700; font-size: .875rem;
  cursor: pointer; padding: 0; font-family: var(--font-family);
  transition: gap var(--transition-fast);
}
.link-btn:hover { gap: 9px; }

.svc-refresh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(var(--color-highlight-rgb), .28);
  background: rgba(var(--color-highlight-rgb), .08);
  color: var(--color-highlight);
  font-size: .78rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast), opacity var(--transition-fast);
  flex-shrink: 0;
}
.svc-refresh-btn:hover {
  border-color: var(--color-highlight);
  background: rgba(var(--color-highlight-rgb), .14);
  color: var(--color-highlight);
}
.svc-refresh-btn:disabled { opacity: .45; cursor: default; }
.svc-refresh-ms { font-size: .65rem; color: var(--color-text-muted); font-weight: 600; }
@media (max-width: 768px) {
  .svc-refresh-btn {
    height: 26px;
    padding: 0 10px;
    font-size: .72rem;
  }
}

/* â”€â”€ "More info" button (mobile only) â”€â”€ */
.btn-more-info {
  display: none;
  align-items: center; gap: 5px;
  padding: 7px 14px;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  font-size: .8rem; font-weight: 600;
  color: var(--color-text-secondary); cursor: pointer;
  transition: all var(--transition-fast);
  font-family: var(--font-family);
}
.btn-more-info:hover { border-color: var(--color-highlight); color: var(--color-highlight); background: var(--color-highlight-soft); }

@media (max-width: 900px) { .btn-more-info { display: inline-flex; } }

/* â”€â”€ Desktop expand button â”€â”€ */
.btn-expand-card {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 7px 14px;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  font-size: .8rem; font-weight: 600;
  color: var(--color-text-secondary); cursor: pointer;
  transition: all var(--transition-fast);
  font-family: var(--font-family);
}
.btn-expand-card:hover { border-color: var(--color-text-primary); color: var(--color-text-primary); }
.btn-expand-card .expand-icon { transition: transform var(--transition-normal); }
.btn-expand-card.expanded-btn .expand-icon { transform: rotate(180deg); }

@media (max-width: 900px) { .btn-expand-card { display: none; } }

/* â”€â”€ Expandable detail panel (desktop) â”€â”€ */
.result-card-details {
  border-top: none;
  background: transparent;
  overflow: hidden; max-height: 0;
  transition: max-height .35s cubic-bezier(.4,0,.2,1), padding .28s ease;
  padding: 0 24px;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}
.result-card-details.open {
  border-top: 1px solid var(--color-border);
  background: var(--color-surface-2);
  max-height: 400px;
  padding: 18px 24px;
}

.detail-grid {
  display: grid; grid-template-columns: repeat(3, 1fr) auto;
  gap: 16px; align-items: start;
}
.detail-block-label {
  font-size: .65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--color-text-muted); margin-bottom: 4px;
}
.detail-block-value { font-size: .95rem; font-weight: 700; color: var(--color-text-primary); }
.detail-block-sub   { font-size: .75rem; color: var(--color-text-muted); margin-top: 2px; }

.detail-transfer-methods {
  grid-column: 1 / -1; border-top: 1px solid var(--color-border);
  padding-top: 14px; margin-top: 4px;
}
.detail-methods-label {
  font-size: .65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--color-text-muted); margin-bottom: 8px;
}
.detail-methods-list { display: flex; flex-wrap: wrap; gap: 6px; }
.detail-method-chip {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 10px; background: var(--color-surface);
  border: 1px solid var(--color-border); border-radius: var(--radius-pill);
  font-size: .75rem; font-weight: 600; color: var(--color-text-secondary);
}
.detail-cta { display: flex; gap: 8px; align-items: center; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--color-border); flex-wrap: wrap; }

/* â”€â”€ Sort bar â”€â”€ */
.sort-bar { display: flex; align-items: center; gap: 6px; margin-bottom: 12px; flex-wrap: wrap; }
.sort-label { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--color-text-muted); }
.sort-btn {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 5px 12px; border-radius: var(--radius-pill);
  border: 1.5px solid var(--color-border);
  background: var(--color-surface);
  font-size: .75rem; font-weight: 600; cursor: pointer;
  color: var(--color-text-secondary); transition: all var(--transition-fast);
  font-family: var(--font-family);
}
.sort-btn:hover  { border-color: var(--color-highlight); color: var(--color-highlight); }
.sort-btn.active { background: var(--color-highlight); color: #fff; font-weight: 700; border-color: var(--color-highlight); }

/* â”€â”€ Tracking â”€â”€ */
#tracking { margin-bottom: 28px; }
#tracking .card { margin-bottom: 8px; padding: 16px 20px; box-shadow: none; }
table { width: 100%; border-collapse: collapse; font-size: .8rem; }
th, td { text-align: left; border-bottom: 1px solid var(--color-border); padding: 8px 10px; }
th { font-weight: 700; color: var(--color-text-muted); font-size: .65rem; text-transform: uppercase; letter-spacing: .07em; background: var(--color-surface-2); }
tr:last-child td { border-bottom: none; }
tr:hover td { background: var(--color-surface-2); }

/* ============================================================
   DRAWER â€” GOOGLE PLAY BOTTOM SHEET STYLE (Mobile only)
   ============================================================ */

.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(10,10,10,.55); z-index: 9000;
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .26s ease, visibility 0s linear .26s;
}
.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity .26s ease;
}

/* Right-to-left full-screen panel (mobile) */
.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: auto;
  width: 100%;
  max-height: 100%;
  background: var(--color-surface);
  z-index: 9001;
  transform: translate3d(100%, 0, 0);
  transition: transform .3s cubic-bezier(.22, 1, .36, 1);
  display: flex; flex-direction: column;
  box-shadow: -8px 0 48px rgba(10,10,10,.25);
  border-radius: 0;
  overflow: hidden;
  will-change: transform;
  backface-visibility: hidden;
}
.drawer.open { transform: translate3d(0, 0, 0); }
.drawer.is-dragging,
.drawer-overlay.is-dragging {
  transition: none !important;
}
.drawer.is-opening,
.drawer-overlay.is-opening {
  pointer-events: none !important;
}

/* Hide drag handle (was for bottom sheet) */
.drawer-handle { display: none; }

@media (min-width: 901px) {
  .drawer-overlay, .drawer { display: none !important; }
}

.drawer-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 76px;
  padding: 14px 20px 16px;
  border-bottom: 1px solid var(--color-border);
  flex-shrink: 0;
  background: var(--color-surface);
}
.drawer-service-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: calc(100% - 108px);
  min-width: 0;
  margin: 0 auto;
}
.drawer-service-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.drawer-service-logo {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #f5f5f5;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  padding: 3px;
}
.drawer-service-logo svg, .drawer-service-logo img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 999px;
}
.drawer-service-logo img {
  object-fit: contain;
  background: #fff;
}
.drawer-service-name {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--color-text-primary);
  letter-spacing: -.02em;
  line-height: 1.15;
}
.drawer-service-amount {
  font-size: .78rem;
  color: var(--color-text-muted);
  font-weight: 500;
  margin-top: 3px;
  text-align: center;
}
.drawer-close {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--color-border); background: var(--color-surface-2);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--color-text-secondary);
  transition: all var(--transition-fast); flex-shrink: 0;
}
.drawer-close:hover { background: var(--color-surface-3); color: var(--color-text-primary); }
.drawer-back-btn {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 999px;
}

.drawer-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--color-border); flex-shrink: 0;
}
.drawer-stat { background: var(--color-surface-2); padding: 14px 14px; text-align: center; }
.drawer-stat-value { font-size: 1.125rem; font-weight: 800; color: var(--color-text-primary); letter-spacing: -.03em; line-height: 1.1; }
.drawer-stat-label { font-size: .62rem; color: var(--color-text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-top: 3px; }

/* Drawer tabs â€” text only with underline */
.drawer-tabs {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  padding: 14px 20px 0;
  overflow-x: auto;
  scrollbar-width: none;
  flex-shrink: 0;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}
.drawer-tabs::-webkit-scrollbar { display: none; }

.drawer-tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 0 0 12px;
  font-size: .84rem;
  font-weight: 700;
  color: var(--color-text-muted);
  border: none;
  background: transparent;
  border-radius: 0;
  cursor: pointer;
  white-space: nowrap;
  transition: color var(--transition-fast);
  font-family: var(--font-family);
  flex-shrink: 0;
}
.drawer-tab::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--color-highlight);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--transition-fast);
}
.drawer-tab:hover {
  color: var(--color-text-primary);
  border-color: transparent;
  background: transparent;
}
.drawer-tab.active {
  color: var(--color-text-primary);
  background: transparent;
  border-color: transparent;
}
.drawer-tab.active::after {
  transform: scaleX(1);
}
.drawer-tab-svg {
  display: none;
}

.drawer-body { flex: 1; overflow-y: auto; padding: 20px; }
.drawer-body::-webkit-scrollbar { width: 3px; }
.drawer-body::-webkit-scrollbar-thumb { background: var(--color-border); border-radius: 3px; }

.drawer-panel { display: none; }
.drawer-panel.active { display: block; }

/* Transfer options */
.transfer-option {
  background: var(--color-surface-2); border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md); padding: 14px 16px; margin-bottom: 8px;
  transition: all var(--transition-fast); cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.transfer-option:hover { border-color: rgba(var(--color-highlight-rgb), .3); background: var(--color-surface); }
.transfer-option.selected { border-color: var(--color-highlight); background: var(--color-highlight-soft); }

.transfer-option-name   { font-weight: 700; font-size: .9rem; color: var(--color-text-primary); margin-bottom: 3px; }
.transfer-option-meta   { font-size: .72rem; color: var(--color-text-muted); display: flex; gap: 8px; flex-wrap: wrap; }
.transfer-option-extra  { margin-top: 6px; display: flex; flex-direction: column; gap: 2px; }
.transfer-option-extra-line { font-size: .68rem; line-height: 1.3; color: var(--color-text-muted); word-break: break-word; }
.transfer-option-amount { font-size: 1.125rem; font-weight: 700; color: var(--color-text-primary); white-space: nowrap; }
.transfer-option-diff   { font-size: .7rem; font-weight: 700; text-align: right; }

/* Bonus card */
.bonus-card {
  background: var(--gradient-brand); border-radius: var(--radius-lg);
  padding: 20px; margin-bottom: 14px; color: #fff; position: relative; overflow: hidden;
}
.bonus-card::before {
  content: ''; position: absolute; top: -30px; right: -30px;
  width: 100px; height: 100px; border-radius: 50%; background: rgba(255,255,255,.1);
}
.bonus-card-title { font-size: 1rem; font-weight: 800; margin-bottom: 6px; position: relative; z-index: 1; }
.bonus-card-desc  { font-size: .84rem; color: rgba(255,255,255,.85); margin-bottom: 12px; position: relative; z-index: 1; }
.bonus-badge { display: inline-flex; align-items: center; gap: 4px; padding: 4px 10px; background: rgba(255,255,255,.2); border-radius: var(--radius-pill); font-size: .72rem; font-weight: 700; color: #fff; position: relative; z-index: 1; border: 1px solid rgba(255,255,255,.25); }

.bonus-steps { display: flex; flex-direction: column; gap: 6px; margin-top: 14px; }
.bonus-step  { display: flex; align-items: flex-start; gap: 10px; padding: 12px; background: var(--color-surface-2); border: 1px solid var(--color-border); border-radius: var(--radius-sm); }
.bonus-step-num { width: 26px; height: 26px; border-radius: 50%; background: var(--color-highlight-soft); border: 1px solid rgba(var(--color-highlight-rgb), .18); display: flex; align-items: center; justify-content: center; font-size: .72rem; font-weight: 800; color: var(--color-highlight); flex-shrink: 0; }
.bonus-step-text { font-size: .84rem; color: var(--color-text-secondary); line-height: 1.5; }

/* About */
.about-section { margin-bottom: 18px; }
.about-section-title { font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--color-text-muted); margin-bottom: 8px; }
.about-rating { display: flex; align-items: center; gap: 14px; padding: 14px; background: var(--color-surface-2); border-radius: var(--radius-lg); border: 1px solid var(--color-border); margin-bottom: 10px; }
.about-rating-score { font-size: 2.25rem; font-weight: 900; color: var(--color-text-primary); letter-spacing: -.05em; line-height: 1; }
.about-rating-stars { color: #f59e0b; font-size: .9rem; }
.about-rating-count { font-size: .72rem; color: var(--color-text-muted); margin-top: 2px; }
.about-features-list { display: flex; flex-direction: column; gap: 5px; }
.about-feature-item { display: flex; align-items: center; gap: 8px; padding: 9px 12px; background: var(--color-surface-2); border-radius: var(--radius-sm); border: 1px solid var(--color-border); font-size: .84rem; color: var(--color-text-secondary); }
.about-feature-check { width: 16px; height: 16px; flex-shrink: 0; color: var(--color-success-text); }

/* Video cards â€” YouTube-like list */
.video-panel-head {
  margin-bottom: 14px;
}
.video-platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #ffeded;
  color: #d90429;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.video-panel-copy {
  margin-top: 10px;
  font-size: .82rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}
.video-card {
  display: grid;
  grid-template-columns: 156px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin-bottom: 12px;
  text-decoration: none;
  color: inherit;
}
.video-card:hover .video-title {
  color: #065fd4;
}
.video-thumb {
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: 88px;
  background: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.14);
}
.video-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,0.02) 0%, rgba(15,23,42,0.24) 100%);
}
.video-thumb-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #101828, #334155);
  opacity: .95;
}
.video-play-btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255,255,255,.95);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111827;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
  transition: transform var(--transition-bounce), background var(--transition-fast);
}
.video-card:hover .video-play-btn {
  transform: scale(1.08);
  background: #fff;
}
.video-duration {
  position: absolute;
  right: 8px;
  bottom: 8px;
  z-index: 2;
  padding: 3px 6px;
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.88);
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  line-height: 1;
}
.video-info {
  min-width: 0;
  padding: 2px 0 0;
}
.video-title {
  font-weight: 800;
  font-size: .9rem;
  line-height: 1.35;
  color: var(--color-text-primary);
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.video-channel-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.video-channel-avatar {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #ff0033;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .68rem;
  font-weight: 800;
  flex-shrink: 0;
}
.video-channel-name {
  min-width: 0;
  font-size: .74rem;
  font-weight: 700;
  color: var(--color-text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.video-meta {
  font-size: .72rem;
  color: var(--color-text-muted);
  line-height: 1.45;
}
.video-note {
  margin-top: 14px;
  padding: 12px 14px;
  background: var(--color-surface-2);
  border-radius: 14px;
  border: 1px solid var(--color-border);
  font-size: .8rem;
  color: var(--color-text-muted);
  text-align: center;
}
@media (max-width: 640px) {
  .video-card {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
    border: 1px solid var(--color-border);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
  }
  .video-thumb {
    width: 100%;
    min-height: 0;
  }
  .video-info {
    padding: 0;
  }
  .video-title {
    font-size: .84rem;
    margin-bottom: 6px;
  }
  .video-channel-row {
    gap: 6px;
    margin-bottom: 4px;
  }
  .video-channel-name,
  .video-meta {
    font-size: .7rem;
    white-space: normal;
  }
}

/* Articles */
.article-item { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--color-border); cursor: pointer; text-decoration: none; }
.article-item:last-child { border-bottom: none; }
.article-item:hover .article-title { color: var(--color-highlight); }
.article-thumb { width: 56px; height: 56px; border-radius: var(--radius-sm); background: var(--color-surface-2); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; border: 1px solid var(--color-border); }
.article-tag   { font-size: .62rem; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; color: var(--color-highlight); margin-bottom: 4px; }
.article-title { font-weight: 700; font-size: .84rem; color: var(--color-text-primary); line-height: 1.4; margin-bottom: 3px; transition: color var(--transition-fast); }
.article-meta  { font-size: .68rem; color: var(--color-text-muted); }

/* Drawer articles â€” editorial cards */
.drawer-articles-head {
  margin-bottom: 16px;
}
.drawer-articles-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(15,23,42,0.08), rgba(59,130,246,0.12));
  color: var(--color-text-primary);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.drawer-articles-copy {
  margin-top: 10px;
  font-size: .82rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}
.drawer-articles-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.drawer-article-feature,
.drawer-article-card {
  display: block;
  text-decoration: none;
  color: inherit;
}
.drawer-article-feature {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}
.drawer-article-cover {
  position: relative;
  min-height: 164px;
  padding: 16px;
  background: linear-gradient(135deg, #0f172a 0%, #1d4ed8 55%, #60a5fa 100%);
  overflow: hidden;
}
.drawer-article-cover--feature::before {
  content: '';
  position: absolute;
  inset: auto -12% -52% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  filter: blur(2px);
}
.drawer-article-cover-glow {
  position: absolute;
  top: -26px;
  right: -14px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
  filter: blur(4px);
}
.drawer-article-pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}
.drawer-article-cover-meta {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 5px 9px;
  border-radius: 10px;
  background: rgba(15,23,42,.72);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
}
.drawer-article-content {
  padding: 18px 18px 16px;
}
.drawer-article-kicker {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #2563eb;
  margin-bottom: 8px;
}
.drawer-article-title {
  font-size: .96rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--color-text-primary);
  margin-bottom: 10px;
}
.drawer-article-title--feature {
  font-size: 1.12rem;
  letter-spacing: -.02em;
}
.drawer-article-summary {
  font-size: .8rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
}
.drawer-articles-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.drawer-article-card {
  min-width: 0;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}
.drawer-article-card:hover,
.drawer-article-feature:hover {
  transform: translateY(-2px);
}
.drawer-article-card:hover {
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
  border-color: rgba(59,130,246,.22);
}
.drawer-article-card-top,
.drawer-article-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.drawer-article-card-top {
  margin-bottom: 12px;
}
.drawer-article-mini-meta,
.drawer-article-source,
.drawer-article-link {
  font-size: .7rem;
  font-weight: 700;
}
.drawer-article-mini-meta,
.drawer-article-source {
  color: var(--color-text-muted);
}
.drawer-article-link {
  color: #2563eb;
}
.drawer-article-footer {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}
.drawer-article-card--blue {
  background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
}
.drawer-article-card--dark {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.drawer-article-card--light {
  background: linear-gradient(180deg, #ffffff 0%, #fffaf1 100%);
}
@media (max-width: 560px) {
  .drawer-article-cover {
    min-height: 148px;
  }
  .drawer-articles-grid {
    grid-template-columns: 1fr;
  }
  .drawer-article-title--feature {
    font-size: 1rem;
  }
}

/* Recommendations */
.rec-card { background: var(--color-surface-2); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 14px 16px; margin-bottom: 7px; display: flex; align-items: flex-start; gap: 12px; }
.rec-icon  { width: 36px; height: 36px; border-radius: var(--radius-sm); background: var(--color-highlight-soft); border: 1px solid rgba(var(--color-highlight-rgb), .14); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.rec-title { font-weight: 700; font-size: .875rem; color: var(--color-text-primary); margin-bottom: 3px; }
.rec-desc  { font-size: .8rem; color: var(--color-text-secondary); line-height: 1.5; }

/* Drawer CTA */
.drawer-cta { display: flex; flex-direction: column; gap: 8px; padding-top: 16px; margin-top: 16px; border-top: 1px solid var(--color-border); }
.drawer-cta .btn { width: 100%; justify-content: center; }
@media (max-width: 900px) {
  .drawer-overlay {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  #serviceDrawer,
  #serviceDrawer * {
    -webkit-tap-highlight-color: transparent;
  }
  #serviceDrawer {
    display: flex;
    flex-direction: column;
    height: 100dvh;
    max-height: 100dvh;
  }
  #serviceDrawer .drawer-header {
    min-height: 72px;
    padding: 14px 18px 10px;
  }
  #serviceDrawer .drawer-back-btn {
    left: 18px;
  }
  #serviceDrawer .drawer-service-info {
    max-width: calc(100% - 92px);
    gap: 10px;
  }
  #serviceDrawer .drawer-service-name {
    font-size: 1rem;
  }
  #serviceDrawer .drawer-stats,
  #serviceDrawer .drawer-cta .btn-ghost {
    display: none !important;
  }
  #serviceDrawer .drawer-close {
    display: inline-flex !important;
  }
  #serviceDrawer .drawer-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-height: 0;
    padding: 14px 18px 0;
  }
  #serviceDrawer .drawer-panel.active {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 100%;
  }
  #serviceDrawer .drawer-tabs {
    padding: 10px 16px 12px;
  }
  #serviceDrawer .drawer-cta {
    position: sticky;
    bottom: 0;
    margin: auto -18px 0;
    padding: 14px 18px calc(16px + env(safe-area-inset-bottom, 0px));
    border-top: none;
    background: var(--color-surface);
    box-shadow: 0 -18px 30px -24px rgba(15, 23, 42, 0.45);
    z-index: 3;
  }
}

/* ============================================================
   THEME SWITCHER
   ============================================================ */

#theme-switcher {
  display: none !important;
}

#theme-toggle-btn {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--color-text-primary); color: var(--color-surface);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: var(--shadow-lg);
}
#theme-toggle-btn:hover { transform: scale(1.12) rotate(20deg); }

#theme-panel {
  display: none; flex-direction: column; gap: 6px;
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: 24px; padding: 16px; box-shadow: 0 20px 48px rgba(0,0,0,.15);
  min-width: 200px; animation: slideUpFade 0.25s ease-out;
  max-height: 65vh; overflow-y: auto;
}
#theme-panel.open { display: flex; }

@keyframes slideUpFade {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

#theme-panel h4 {
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--color-text-muted); margin-bottom: 8px; padding: 0 4px;
}

.theme-option {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: 14px;
  cursor: pointer; border: 1px solid transparent;
  transition: all 0.15s ease; font-size: 0.9rem; font-weight: 500;
  font-family: var(--font-family); color: var(--color-text-primary);
  background: transparent; width: 100%; text-align: left;
}
.theme-option:hover { background: rgba(0,0,0,0.04); }
.theme-option.active { background: rgba(0,0,0,0.06); border-color: rgba(0,0,0,0.1); font-weight: 700; }

.theme-swatch { width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0; border: 2px solid rgba(0,0,0,0.08); }

/* ============================================================
   MOBILE NAV
   ============================================================ */

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,.52);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .24s ease, visibility 0s linear .24s;
}
.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity .24s ease;
}

.mobile-nav-panel {
  position: fixed;
  inset: 0;
  width: auto;
  height: 100dvh;
  max-width: none;
  max-height: 100dvh;
  background: var(--color-surface);
  padding: calc(12px + env(safe-area-inset-top, 0px)) 20px calc(24px + env(safe-area-inset-bottom, 0px));
  z-index: 1002;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  opacity: 0.98;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(100%, 0, 0);
  transition: transform .28s cubic-bezier(.22, 1, .36, 1), opacity .22s ease, visibility 0s linear .28s;
  will-change: transform;
  backface-visibility: hidden;
}
.mobile-nav-panel::-webkit-scrollbar { display: none; }
.mobile-nav-panel.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
  transition: transform .28s cubic-bezier(.22, 1, .36, 1), opacity .22s ease;
}
.mobile-nav-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px; padding-bottom: 14px; border-bottom: 1px solid var(--color-border);
  flex-shrink: 0;
}
.mobile-nav-link {
  position: relative;
  padding: 16px 0;
  border-radius: 0;
  border: none;
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 12px;
  background: transparent;
}
.mobile-nav-link svg { flex-shrink: 0; opacity: .72; }
.mobile-nav-link:hover { background: transparent; color: var(--color-text-primary); }
.mobile-nav-link.active { background: transparent; color: var(--color-text-primary); }
.mobile-nav-link.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--color-highlight);
  border-radius: 999px;
}
.mobile-nav-services {
  display: none !important;
}
.mobile-nav-services::-webkit-scrollbar { display: none; }
.mobile-nav-service-logo {
  width: 100%;
  aspect-ratio: 1;
  min-width: 0;
  border-radius: 18px;
  border: 1px solid var(--color-border);
  background: var(--color-surface-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}
.mobile-nav-service-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.mobile-nav-footer {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--color-border);
}

html.mobile-nav-open,
body.mobile-nav-open,
html.country-sheet-open,
body.country-sheet-open {
  overflow: hidden;
}

html.drawer-open,
body.drawer-open {
  overflow: hidden;
  overscroll-behavior: none;
}

@media (max-width: 768px) {
  #results .card,
  #results .card.best,
  #results .card .row,
  .card-price-col {
    overflow: visible !important;
  }
  #results .card,
  .result-card,
  #results .card:hover,
  .result-card:hover {
    transform: none !important;
  }
  #results .card:hover,
  .result-card:hover {
    box-shadow: var(--shadow-sm);
    border-color: var(--color-border);
  }
  #results .card.card-opening-drawer,
  .result-card.card-opening-drawer {
    pointer-events: none;
  }
  #results .card.best::before {
    display: none;
  }
}

/* â”€â”€ Select field â”€â”€ */
select.input-field {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23111111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  padding-right: 48px;
}

/* â”€â”€ Scroll animations â”€â”€ */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }

/* ============================================================
   RESULTS PAGE â€” NAVBAR CALCULATOR
   ============================================================ */

/* Results page navbar layout: logo | menu */
.results-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}

.results-nav-logo {
  flex-shrink: 0;
}

/* Compact calc bar in navbar */
.results-nav-calc {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
}

.results-nav-calc-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--color-surface-2);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 7px 14px;
  cursor: pointer;
  font-family: var(--font-family);
  color: var(--color-text-secondary);
  font-size: .82rem;
  font-weight: 600;
  transition: all var(--transition-fast);
  white-space: nowrap;
  overflow: hidden;
  min-width: 0;
  flex: 1;
  max-width: 560px;
}
.results-nav-calc-btn:hover { border-color: var(--color-highlight); color: var(--color-text-primary); background: var(--color-surface); }

.results-nav-calc-chip {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 2px 8px;
  font-size: .75rem; font-weight: 700;
  color: var(--color-text-primary);
  white-space: nowrap; flex-shrink: 0;
}

.results-nav-calc-sep {
  color: var(--color-text-muted);
  font-size: .75rem;
  flex-shrink: 0;
}

.results-nav-calc-amount {
  font-weight: 700;
  color: var(--color-text-primary);
  font-size: .82rem;
  flex-shrink: 0;
}

.results-nav-search-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--color-highlight);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  flex-shrink: 0;
  margin-left: auto;
}

/* Results navbar menu button */
.results-nav-menu-btn {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--color-border);
  background: transparent;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-text-primary);
  flex-shrink: 0;
  transition: all var(--transition-fast);
}
.results-nav-menu-btn:hover { background: var(--color-surface-2); border-color: var(--color-border-strong); }

/* Mobile: hide chips, show compact icon */
@media (max-width: 640px) {
  .results-nav-calc-chip,
  .results-nav-calc-sep,
  .results-nav-calc-amount { display: none; }
  .results-nav-calc-btn {
    max-width: 120px;
    padding: 7px 12px;
    gap: 5px;
  }
}

/* ============================================================
   DESKTOP EXPAND â€” TABBED SECTIONS
   ============================================================ */

/* Tab navigation strip inside expand panel */
.desktop-detail-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  flex-wrap: wrap;
  overflow-x: auto;
  scrollbar-width: none;
}
.desktop-detail-tabs::-webkit-scrollbar { display: none; }

.desktop-detail-tab {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 6px 14px; border-radius: var(--radius-pill);
  border: 1.5px solid var(--color-border);
  background: var(--color-surface);
  font-size: .78rem; font-weight: 600;
  color: var(--color-text-secondary);
  cursor: pointer; transition: all var(--transition-fast);
  font-family: var(--font-family);
  white-space: nowrap;
}
.desktop-detail-tab:hover { border-color: var(--color-highlight); color: var(--color-highlight); }
.desktop-detail-tab.active { background: var(--color-text-primary); border-color: var(--color-text-primary); color: #fff; }

/* Panels */
.desktop-detail-panel { display: none; }
.desktop-detail-panel.active { display: block; }

/* Expand max-height when has tabs */
.result-card-details.tabbed.open { max-height: 2200px; }

/* â”€â”€ Detail blocks inside expand â”€â”€ */
.detail-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}
.detail-stat-block {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 10px 12px;
  text-align: center;
}
.detail-stat-block-value { font-size: .95rem; font-weight: 700; color: var(--color-text-primary); }
.detail-stat-block-label { font-size: .6rem; text-transform: uppercase; letter-spacing: .07em; color: var(--color-text-muted); font-weight: 600; margin-top: 2px; }

/* Transfer option inside desktop expand */
.desktop-transfer-option {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 11px 14px; margin-bottom: 7px;
  transition: all var(--transition-fast); cursor: pointer;
}
.desktop-transfer-option:hover { border-color: rgba(var(--color-highlight-rgb), .35); }
.desktop-transfer-option.selected { border-color: var(--color-highlight); background: var(--color-highlight-soft); }
.desktop-transfer-option-name { font-weight: 700; font-size: .875rem; color: var(--color-text-primary); margin-bottom: 2px; }
.desktop-transfer-option-meta { font-size: .7rem; color: var(--color-text-muted); display: flex; gap: 8px; }
.desktop-transfer-option-amount { font-size: 1rem; font-weight: 700; color: var(--color-text-primary); white-space: nowrap; }
.desktop-transfer-option-diff { font-size: .68rem; font-weight: 700; text-align: right; }

/* About tab inside expand */
.desktop-about-desc { font-size: .875rem; color: var(--color-text-secondary); line-height: 1.6; margin-bottom: 12px; }
.desktop-feature-item {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: .82rem; color: var(--color-text-secondary);
  margin-bottom: 5px;
}
.desktop-feature-check { width: 14px; height: 14px; flex-shrink: 0; color: var(--color-success-text); }

/* Bonus tab */
.desktop-bonus-card {
  background: var(--gradient-brand);
  border-radius: var(--radius-md);
  padding: 16px 18px; color: #fff; margin-bottom: 10px;
  position: relative; overflow: hidden;
}
.desktop-bonus-card::before {
  content: ''; position: absolute; top: -20px; right: -20px;
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(255,255,255,.12);
}
.desktop-bonus-title { font-size: .9rem; font-weight: 800; margin-bottom: 5px; position: relative; z-index: 1; }
.desktop-bonus-desc { font-size: .8rem; color: rgba(255,255,255,.85); line-height: 1.5; position: relative; z-index: 1; }

/* Expand detail CTA row */
.desktop-detail-cta {
  display: flex; gap: 8px; align-items: center;
  margin-top: 14px; padding-top: 14px;
  border-top: 1px solid var(--color-border);
  flex-wrap: wrap;
}

/* Dark mode overrides for drawer and new components */
[data-theme="dark"] .results-nav-calc-btn { background: var(--color-surface-2) !important; border-color: var(--color-border) !important; }
[data-theme="dark"] .results-nav-calc-chip { background: var(--color-surface-3) !important; border-color: var(--color-border) !important; }
[data-theme="dark"] .desktop-detail-tab { background: var(--color-surface) !important; border-color: var(--color-border) !important; }
[data-theme="dark"] .desktop-detail-tab.active { background: var(--color-text-primary) !important; }
[data-theme="dark"] .desktop-transfer-option { background: var(--color-surface) !important; border-color: var(--color-border) !important; }
[data-theme="binance"] .desktop-detail-tab.active { background: var(--color-highlight) !important; border-color: var(--color-highlight) !important; color: #000 !important; }
[data-theme="binance"] .results-nav-search-icon { background: var(--color-highlight) !important; color: #000 !important; }
@media (max-width: 900px) {
  main,
  .results-content,
  .results-content .container,
  #results,
  #tracking,
  #methods {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  #results .card,
  #tracking .card {
    overflow: hidden;
  }
}







.desktop-detail-panel .video-card {
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 12px;
  background: var(--color-surface);
}
.desktop-detail-panel .drawer-cta { margin-top: 18px; }

/* Global no-shadow buttons */
button,
a.btn,
.btn,
input[type="button"],
input[type="submit"],
input[type="reset"] {
  box-shadow: none !important;
}

button:hover,
a.btn:hover,
.btn:hover,
button:focus-visible,
a.btn:focus-visible,
.btn:focus-visible {
  box-shadow: none !important;
}

.compare-btn,
#searchBtn,
.btn-search {
  background: #111111 !important;
  background-image: none !important;
  color: #ffffff !important;
  box-shadow: none !important;
  border-color: #111111 !important;
  filter: none !important;
}

.compare-btn:hover,
#searchBtn:hover,
.btn-search:hover {
  background: #000000 !important;
  background-image: none !important;
  color: #ffffff !important;
  box-shadow: none !important;
  filter: none !important;
}

/* PAYTOUA 0.3.175: /proba responsive card and SmartPay parity */
body.page-results:not(.page-proba) #methods,
body.page-results:not(.page-proba) #results,
body.page-results:not(.page-proba) #methods .method,
body.page-results:not(.page-proba) #results .card,
body.page-results:not(.page-proba) #results .row,
body.page-results:not(.page-proba) #results .proba-result-main,
body.page-results:not(.page-proba) #results .proba-result-value,
body.page-results:not(.page-proba) #results .proba-result-actions,
body.page-results:not(.page-proba) #results .proba-result-more-btn {
  transition: none !important;
}
body.page-results:not(.page-proba) #methods {
  overflow-y: visible !important;
  scrollbar-width: none !important;
}
body.page-results:not(.page-proba) #methods::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
  display: none !important;
}
body.page-results:not(.page-proba) #methods .method.active::before {
  content: none !important;
  display: none !important;
}
body.page-results:not(.page-proba) #methods .method.active::after {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  bottom: -6px !important;
  width: 10px !important;
  height: 10px !important;
  display: block !important;
  background: #fff !important;
  border-right: 1.5px solid #5d8dff !important;
  border-bottom: 1.5px solid #5d8dff !important;
  border-left: 0 !important;
  border-top: 0 !important;
  transform: translateX(-50%) rotate(45deg) !important;
  z-index: 7 !important;
}
body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row {
  border-bottom: 0 !important;
}
body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-value {
  border-left: 0 !important;
}
body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row::before,
body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row::after,
body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-value::before,
body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-value::after {
  content: none !important;
  display: none !important;
}
body.page-results:not(.page-proba) #calcBar #smartPayRow {
  display: inline-flex !important;
  justify-self: center !important;
  align-self: center !important;
  width: fit-content !important;
  min-width: 0 !important;
  max-width: calc(100% - 24px) !important;
  min-height: 48px !important;
  margin: 18px auto 0 !important;
  padding: 5px !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  border: 1px solid rgba(255, 255, 255, 0.32) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.16) !important;
  box-shadow: 0 14px 28px rgba(0, 19, 107, 0.13) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  overflow: visible !important;
  box-sizing: border-box !important;
}
body.page-results:not(.page-proba) #calcBar #smartPayRow .smartpay-toggle {
  position: relative !important;
  flex: 0 0 124px !important;
  width: auto !important;
  min-width: 124px !important;
  height: 38px !important;
  min-height: 38px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: stretch !important;
  gap: 0 !important;
  padding: 0 0 0 40px !important;
  border: 1px solid rgba(226, 232, 240, 0.82) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.96) !important;
  color: #1e3a8a !important;
  box-shadow: inset 0 0 0 1px rgba(226, 232, 240, 0.26) !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}
body.page-results:not(.page-proba) #calcBar #smartPayRow .smartpay-toggle input {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
body.page-results:not(.page-proba) #calcBar #smartPayRow .smartpay-toggle span {
  position: relative !important;
  z-index: 2 !important;
  flex: 1 1 auto !important;
  min-width: 0 !important;
  text-align: center !important;
  transform: none !important;
}
body.page-results:not(.page-proba) #calcBar #smartPayRow .smartpay-toggle::before,
body.page-results:not(.page-proba) #calcBar #smartPayRow .smartpay-toggle::after {
  content: "" !important;
  position: absolute !important;
  top: 50% !important;
  display: block !important;
  border-radius: 999px !important;
  z-index: 1 !important;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease !important;
}
body.page-results:not(.page-proba) #calcBar #smartPayRow .smartpay-toggle::before {
  left: 10px !important;
  width: 30px !important;
  height: 16px !important;
  transform: translateY(-50%) !important;
  background: #cbd5e1 !important;
  box-shadow: none !important;
}
body.page-results:not(.page-proba) #calcBar #smartPayRow .smartpay-toggle::after {
  left: 12px !important;
  width: 12px !important;
  height: 12px !important;
  transform: translateY(-50%) !important;
  background: #fff !important;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.18) !important;
}
body.page-results:not(.page-proba) #calcBar #smartPayRow .smartpay-toggle:has(input:checked) {
  border-color: rgba(255, 184, 0, 0.95) !important;
  background: rgba(255, 255, 255, 0.98) !important;
  color: #1e3a8a !important;
  box-shadow: 0 0 0 2px rgba(255, 184, 0, 0.22) !important;
}
body.page-results:not(.page-proba) #calcBar #smartPayRow .smartpay-toggle:has(input:checked)::before {
  background: #2563eb !important;
}
body.page-results:not(.page-proba) #calcBar #smartPayRow .smartpay-toggle:has(input:checked)::after {
  transform: translate(14px, -50%) !important;
}
body.page-results:not(.page-proba) #calcBar #smartPayRow .smartpay-bank-wrap {
  flex: 0 0 auto !important;
  min-width: 0 !important;
  width: auto !important;
  height: 38px !important;
  min-height: 38px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  overflow: visible !important;
}
body.page-results:not(.page-proba) #calcBar #smartPayRow .smartpay-bank-label {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  margin: 0 !important;
}
body.page-results:not(.page-proba) #calcBar #smartPayBankTrigger,
body.page-results:not(.page-proba) #calcBar #smartPayRow .smartpay-bank-trigger {
  display: grid !important;
  grid-template-columns: max-content 34px !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  width: max-content !important;
  max-width: 100% !important;
  min-width: 0 !important;
  height: 38px !important;
  min-height: 38px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #1e3a8a !important;
  box-shadow: none !important;
  opacity: 1 !important;
  overflow: visible !important;
}
body.page-results:not(.page-proba) #calcBar #smartPayRow .proba-smartpay-bank-display {
  width: max-content !important;
  min-height: 38px !important;
  min-width: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  overflow: visible !important;
}
body.page-results:not(.page-proba) #calcBar #smartPayRow .proba-smartpay-bank-display.is-empty {
  padding: 0 13px !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.94) !important;
  box-shadow: inset 0 0 0 1px rgba(226, 232, 240, 0.48) !important;
}
body.page-results:not(.page-proba) #calcBar #smartPayRow .proba-smartpay-bank-display.is-icons {
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
body.page-results:not(.page-proba) #calcBar #smartPayRow .proba-smartpay-bank-text {
  min-width: 0 !important;
  color: #1e3a8a !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}
body.page-results:not(.page-proba) #calcBar #smartPayRow .proba-smartpay-bank-text.is-visual-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}
body.page-results:not(.page-proba) #calcBar #smartPayRow .proba-smartpay-bank-icons {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  min-width: 0 !important;
  overflow: visible !important;
}
body.page-results:not(.page-proba) #calcBar #smartPayRow .proba-smartpay-bank-icon,
body.page-results:not(.page-proba) #calcBar #smartPayRow .proba-smartpay-bank-display.is-icons .proba-smartpay-bank-icon {
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.94) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 0 0 1px rgba(226, 232, 240, 0.78), 0 8px 16px rgba(15, 23, 42, 0.12) !important;
  opacity: 0.38 !important;
  filter: grayscale(0.75) saturate(0.55) !important;
  transform: none !important;
  overflow: hidden !important;
}
body.page-results:not(.page-proba) #calcBar #smartPayRow .proba-smartpay-bank-icon img,
body.page-results:not(.page-proba) #calcBar #smartPayRow .proba-smartpay-bank-display.is-icons .proba-smartpay-bank-icon img {
  display: block !important;
  width: 26px !important;
  height: 26px !important;
  object-fit: contain !important;
  border-radius: 999px !important;
}
body.page-results:not(.page-proba) #calcBar #smartPayRow .proba-smartpay-bank-icon.is-selected,
body.page-results:not(.page-proba) #calcBar #smartPayRow .proba-smartpay-bank-display.is-icons .proba-smartpay-bank-icon.is-selected {
  opacity: 1 !important;
  filter: none !important;
}
body.page-results:not(.page-proba) #calcBar #smartPayRow .proba-smartpay-menu-button {
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  border-radius: 999px !important;
  background: #fff !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: inset 0 0 0 1px rgba(226, 232, 240, 0.72), 0 5px 10px rgba(15, 23, 42, 0.07) !important;
}
body.page-results:not(.page-proba) #calcBar #smartPayRow .smartpay-bank-trigger-arrow {
  display: none !important;
}
@media (min-width: 460px) and (max-width: 640px) {
  body.page-results:not(.page-proba) #methods {
    justify-content: center !important;
  }
}
@media (max-width: 720px) {
  body.page-results:not(.page-proba) #calcBar #smartPayRow {
    grid-column: 1 / -1 !important;
    width: fit-content !important;
    min-width: 0 !important;
    max-width: min(90%, 322px) !important;
    min-height: 46px !important;
    margin: 10px auto 0 !important;
    padding: 5px !important;
    justify-content: flex-start !important;
    gap: 7px !important;
  }
  body.page-results:not(.page-proba) #calcBar #smartPayRow .smartpay-toggle {
    flex-basis: 118px !important;
    min-width: 118px !important;
    height: 36px !important;
    min-height: 36px !important;
    padding: 0 10px 0 40px !important;
    font-size: 10px !important;
  }
  body.page-results:not(.page-proba) #calcBar #smartPayRow .smartpay-bank-wrap {
    flex: 1 1 auto !important;
    height: 36px !important;
    min-height: 36px !important;
    max-width: 190px !important;
  }
  body.page-results:not(.page-proba) #calcBar #smartPayBankTrigger,
  body.page-results:not(.page-proba) #calcBar #smartPayRow .smartpay-bank-trigger {
    grid-template-columns: minmax(0, max-content) 34px !important;
    height: 36px !important;
    min-height: 36px !important;
  }
  body.page-results:not(.page-proba) #calcBar #smartPayRow .proba-smartpay-bank-display.is-icons {
    padding-left: 5px !important;
    padding-right: 2px !important;
    gap: 9px !important;
    overflow: visible !important;
  }
}
@media (min-width: 641px) and (max-width: 720px) {
  body.page-results:not(.page-proba) #methods {
    justify-content: center !important;
    overflow-y: visible !important;
  }
  body.page-results:not(.page-proba) #results {
    width: min(calc(100vw - 20px), 414px) !important;
    max-width: 414px !important;
    gap: 12px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    overflow: visible !important;
  }
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card.best {
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 224px !important;
    height: 224px !important;
    max-height: 224px !important;
    padding: 0 !important;
    overflow: hidden !important;
    border-radius: 14px !important;
    box-sizing: border-box !important;
  }
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row {
    position: absolute !important;
    left: 14px !important;
    right: 14px !important;
    top: 13px !important;
    width: auto !important;
    max-width: none !important;
    display: grid !important;
    grid-template-columns: minmax(0, 206px) minmax(112px, 128px) !important;
    justify-content: space-between !important;
    align-items: start !important;
    gap: 10px !important;
    min-height: 58px !important;
    padding: 0 !important;
    border: 0 !important;
    box-sizing: border-box !important;
  }
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-main,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row > div:first-child {
    min-height: 0 !important;
    max-width: 206px !important;
    min-width: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
  }
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line {
    display: flex !important;
    height: 52px !important;
    min-height: 52px !important;
    max-width: 206px !important;
    align-items: center !important;
    gap: 10px !important;
    flex-wrap: nowrap !important;
    overflow: visible !important;
  }
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-logo-stack {
    flex: 0 0 34px !important;
    width: 34px !important;
    height: 34px !important;
  }
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-provider-logo {
    width: 34px !important;
    height: 34px !important;
    border-radius: 9px !important;
    padding: 4px !important;
  }
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-service-copy,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-mobile-provider-title {
    min-height: 52px !important;
    max-width: 162px !important;
    min-width: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    overflow: visible !important;
  }
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service {
    display: block !important;
    max-width: 100% !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    font-size: 20px !important;
    line-height: 1.05 !important;
    font-weight: 900 !important;
  }
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .result-smartpay-subtitle {
    display: block !important;
    max-width: 100% !important;
    margin-top: 3px !important;
    font-size: 11.5px !important;
    line-height: 1.12 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-value,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row > div:last-child {
    min-width: 112px !important;
    max-width: 128px !important;
    width: auto !important;
    align-self: start !important;
    justify-self: end !important;
    padding: 7px 0 0 !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    justify-content: flex-start !important;
    border-left: 0 !important;
    text-align: right !important;
    overflow: visible !important;
  }
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .price {
    width: 100% !important;
    max-width: 128px !important;
    min-height: 42px !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    font-size: 22px !important;
    line-height: 1.02 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: clip !important;
    letter-spacing: 0 !important;
  }
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-diff {
    display: block !important;
    max-width: 128px !important;
    margin: 2px 0 0 !important;
    padding: 0 !important;
    font-size: 10.5px !important;
    line-height: 1.12 !important;
    font-weight: 900 !important;
    text-align: right !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-meta-line,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card > .proba-result-meta-line {
    position: absolute !important;
    top: 86px !important;
    left: 22px !important;
    right: 146px !important;
    bottom: auto !important;
    z-index: 2 !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 4px !important;
    width: auto !important;
    max-width: none !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: 60px !important;
    margin: 0 !important;
    overflow: hidden !important;
  }
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line .proba-result-meta-item,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line span {
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
    min-height: 14px !important;
    min-width: 0 !important;
    color: #566176 !important;
    font-size: 10.5px !important;
    line-height: 1.12 !important;
    font-weight: 740 !important;
    white-space: nowrap !important;
  }
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line strong {
    min-width: 0 !important;
    color: #566176 !important;
    font-size: 10.5px !important;
    line-height: 1.12 !important;
    font-weight: 740 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line span + span::before {
    display: none !important;
  }
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-actions,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-actions {
    position: absolute !important;
    left: 22px !important;
    bottom: 22px !important;
    z-index: 3 !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    align-items: center !important;
    width: 206px !important;
    max-width: calc(100% - 152px) !important;
    height: 42px !important;
    min-height: 42px !important;
    margin: 0 !important;
    overflow: visible !important;
  }
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-cta,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .results-card-go-btn.proba-result-cta {
    width: 206px !important;
    max-width: 100% !important;
    min-height: 42px !important;
    height: 42px !important;
    padding: 0 16px !important;
    border-radius: 10px !important;
    font-size: 12.5px !important;
    line-height: 1 !important;
  }
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-more-btn {
    position: absolute !important;
    right: 16px !important;
    bottom: 30px !important;
    z-index: 3 !important;
    display: inline-flex !important;
    justify-content: flex-end !important;
    width: auto !important;
    max-width: 98px !important;
    min-height: 28px !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #64748b !important;
    box-shadow: none !important;
    font-size: 11px !important;
    line-height: 1 !important;
    font-weight: 760 !important;
    opacity: 0.64 !important;
    white-space: nowrap !important;
  }
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .rate-timestamp,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-updated,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .card-service-updated-at {
    display: none !important;
  }
}
@media (min-width: 721px) {
  body.page-results:not(.page-proba) #results {
    width: min(780px, calc(100vw - 48px)) !important;
    max-width: 780px !important;
    overflow: visible !important;
  }
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card.best {
    position: relative !important;
    min-height: 286px !important;
    height: auto !important;
    padding: 0 !important;
    overflow: hidden !important;
    border-radius: 12px !important;
    box-sizing: border-box !important;
  }
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row {
    display: flex !important;
    align-items: stretch !important;
    gap: 0 !important;
    min-height: 284px !important;
    padding: 0 !important;
    border-bottom: 0 !important;
    box-sizing: border-box !important;
  }
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-main {
    flex: 1 1 auto !important;
    width: auto !important;
    min-width: 0 !important;
    padding: 28px 24px 22px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    overflow: visible !important;
  }
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line {
    display: flex !important;
    align-items: flex-start !important;
    gap: 16px !important;
    flex-wrap: nowrap !important;
    min-width: 0 !important;
    overflow: visible !important;
  }
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-service-copy {
    min-height: 232px !important;
    min-width: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: visible !important;
  }
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-value {
    position: relative !important;
    flex: 0 0 270px !important;
    min-width: 270px !important;
    padding: 28px 20px 22px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    text-align: right !important;
    border-left: 0 !important;
    overflow: visible !important;
    box-sizing: border-box !important;
  }
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .price {
    max-width: 100% !important;
    min-height: 36px !important;
    margin: 0 !important;
    line-height: 1 !important;
    overflow: visible !important;
    white-space: nowrap !important;
    text-overflow: clip !important;
  }
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-meta-line {
    position: static !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 6px !important;
    width: calc(100% + 56px) !important;
    max-width: calc(100% + 56px) !important;
    height: auto !important;
    min-height: 58px !important;
    max-height: none !important;
    margin: 28px 0 0 -56px !important;
    overflow: visible !important;
    font-size: 12px !important;
    line-height: 1.25 !important;
  }
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line .proba-result-meta-item,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line span {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    min-height: 16px !important;
    min-width: 0 !important;
    color: #566176 !important;
    font-size: 12px !important;
    line-height: 1.2 !important;
    font-weight: 740 !important;
    white-space: nowrap !important;
  }
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line strong {
    min-width: 0 !important;
    color: #566176 !important;
    font-size: 12px !important;
    line-height: 1.2 !important;
    font-weight: 740 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line span + span::before {
    display: none !important;
  }
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-actions,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-actions {
    position: static !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    align-items: center !important;
    gap: 10px !important;
    width: 202px !important;
    height: 43px !important;
    min-height: 43px !important;
    margin: auto 0 0 -56px !important;
    overflow: visible !important;
  }
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-cta,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .results-card-go-btn.proba-result-cta {
    width: 202px !important;
    height: 43px !important;
    min-height: 43px !important;
    padding: 0 14px !important;
    border-radius: 9px !important;
    font-size: 13px !important;
    line-height: 1 !important;
  }
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-more-btn {
    position: static !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    min-height: 28px !important;
    height: auto !important;
    margin: auto 0 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #64748b !important;
    box-shadow: none !important;
    font-size: 13px !important;
    line-height: 1.15 !important;
    font-weight: 760 !important;
    white-space: nowrap !important;
  }
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .rate-timestamp,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-updated,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .card-service-updated-at {
    position: static !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: auto !important;
    max-width: 210px !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 12px 0 0 !important;
    color: rgba(71, 85, 105, 0.62) !important;
    font-size: 9px !important;
    line-height: 1.15 !important;
    font-weight: 700 !important;
    text-align: right !important;
  }
}
@media (min-width: 721px) and (max-width: 900px) {
  body.page-results:not(.page-proba) #methods {
    justify-content: center !important;
  }
  body.page-results:not(.page-proba) #results {
    width: min(720px, calc(100vw - 48px)) !important;
    max-width: 720px !important;
  }
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card.best {
    min-height: 292px !important;
  }
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row {
    min-height: 290px !important;
  }
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-main {
    padding: 28px 22px 22px !important;
  }
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-service-copy {
    min-height: 238px !important;
  }
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-value {
    flex: 0 0 232px !important;
    min-width: 232px !important;
    padding: 28px 18px 22px !important;
  }
  body.page-results:not(.page-proba) #senderPickerBtn,
  body.page-results:not(.page-proba) #recipientPickerBtn {
    height: 62px !important;
    min-height: 62px !important;
  }
}
@media (min-width: 901px) {
  body.page-results:not(.page-proba) #senderPickerBtn,
  body.page-results:not(.page-proba) #recipientPickerBtn {
    height: 62px !important;
    min-height: 62px !important;
  }
}
/* PAYTOUA 0.3.175b: final breakpoint guard for result cards */
@media (min-width: 641px) and (max-width: 720px) {
  body.page-results:not(.page-proba) .results-content > .container #results,
  body.page-results:not(.page-proba) .proba-results #results,
  body.page-results:not(.page-proba) #results {
    width: min(calc(100vw - 20px), 414px) !important;
    max-width: 414px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
  }
  body.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card,
  body.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card.best {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 230px !important;
    height: 230px !important;
    max-height: 230px !important;
    padding: 0 !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }
  body.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .row,
  body.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card .row,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row {
    position: absolute !important;
    left: 14px !important;
    right: 14px !important;
    top: 13px !important;
    width: auto !important;
    max-width: none !important;
    display: grid !important;
    grid-template-columns: minmax(0, 206px) minmax(112px, 128px) !important;
    justify-content: space-between !important;
    align-items: start !important;
    gap: 10px !important;
    min-height: 58px !important;
    padding: 0 !important;
    border: 0 !important;
    box-sizing: border-box !important;
  }
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-meta-line,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card > .proba-result-meta-line {
    top: 86px !important;
    left: 22px !important;
    right: 146px !important;
    max-height: 62px !important;
  }
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-actions,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-actions {
    left: 22px !important;
    bottom: 24px !important;
  }
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-more-btn {
    right: 16px !important;
    bottom: 32px !important;
  }
}
@media (min-width: 721px) {
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card.best {
    min-height: 324px !important;
  }
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row {
    min-height: 322px !important;
  }
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-main {
    position: relative !important;
    padding-bottom: 92px !important;
  }
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-service-copy {
    min-height: 260px !important;
    position: static !important;
  }
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-meta-line {
    margin-top: 28px !important;
    max-height: 126px !important;
    overflow: visible !important;
  }
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-actions,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-actions {
    position: absolute !important;
    left: 24px !important;
    bottom: 30px !important;
    margin: 0 !important;
    z-index: 3 !important;
  }
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-value {
    padding-bottom: 26px !important;
  }
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-more-btn {
    margin-top: auto !important;
  }
}
@media (min-width: 721px) and (max-width: 900px) {
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card.best {
    min-height: 330px !important;
  }
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row {
    min-height: 328px !important;
  }
}
/* PAYTOUA 0.3.175c: medium-mobile card anchoring */
@media (min-width: 641px) and (max-width: 720px) {
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card {
    position: relative !important;
  }
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-main,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-service-copy,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-value {
    position: static !important;
  }
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-actions,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-actions {
    position: absolute !important;
    left: 22px !important;
    right: auto !important;
    top: auto !important;
    bottom: 24px !important;
    margin: 0 !important;
    transform: none !important;
    z-index: 4 !important;
  }
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-more-btn {
    position: absolute !important;
    right: 16px !important;
    left: auto !important;
    top: auto !important;
    bottom: 32px !important;
    margin: 0 !important;
    transform: none !important;
    z-index: 4 !important;
  }
}

/* PAYTOUA 0.3.175d: anchor medium-mobile actions below meta */
@media (min-width: 641px) and (max-width: 720px) {
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row {
    overflow: visible !important;
  }
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-actions,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-actions {
    top: 154px !important;
    bottom: auto !important;
  }
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-more-btn {
    top: 160px !important;
    bottom: auto !important;
  }
}

/* PAYTOUA 0.3.176: main/proba responsive cleanup, flag crop and compact cards */
.country-picker-flag,
#senderPickerFlag,
#recipientPickerFlag,
.country-option-flag,
.bar-picker-flag {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

body.page-results #results-h1 .country-highlight {
  color: #ffb800 !important;
}

body.page-results #results-h1 .proba-hero-title-line {
  display: inline !important;
}

body.page-results:not(.page-proba) #methods .method.active::after {
  content: "" !important;
  display: block !important;
}

body.page-results:not(.page-proba) #methods,
body.page-results:not(.page-proba) #results,
body.page-results:not(.page-proba) #methods .method,
body.page-results:not(.page-proba) #results .card[data-service],
body.page-results:not(.page-proba) #results .card[data-service] .row,
body.page-results:not(.page-proba) #results .card[data-service] .proba-result-main,
body.page-results:not(.page-proba) #results .card[data-service] .proba-result-value,
body.page-results:not(.page-proba) #results .card[data-service] .proba-result-actions,
body.page-results:not(.page-proba) #results .card[data-service] .proba-result-more-btn {
  transition: none !important;
}

@media (max-width: 720px) {
  body.page-results:not(.page-proba) #results {
    box-sizing: border-box !important;
    width: min(calc(100vw - 28px), 414px) !important;
    max-width: 414px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    overflow: visible !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card.best {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 190px !important;
    height: 190px !important;
    max-height: 190px !important;
    padding: 0 !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row {
    position: absolute !important;
    left: 14px !important;
    right: 14px !important;
    top: 13px !important;
    width: auto !important;
    max-width: none !important;
    min-height: 58px !important;
    display: grid !important;
    grid-template-columns: minmax(0, 206px) minmax(112px, 128px) !important;
    justify-content: space-between !important;
    align-items: start !important;
    gap: 10px !important;
    padding: 0 !important;
    border: 0 !important;
    box-sizing: border-box !important;
    overflow: visible !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-main,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row > div:first-child {
    min-width: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line {
    height: 52px !important;
    min-height: 52px !important;
    align-items: center !important;
    overflow: visible !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-service-copy {
    min-height: 52px !important;
    justify-content: center !important;
    min-width: 0 !important;
    overflow: visible !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service {
    max-width: 100% !important;
    font-size: 20px !important;
    line-height: 1.05 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-value,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row > div:last-child {
    min-width: 112px !important;
    max-width: 128px !important;
    padding: 7px 0 0 !important;
    align-items: flex-end !important;
    text-align: right !important;
    overflow: visible !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .price {
    max-width: 128px !important;
    min-height: 42px !important;
    font-size: 22px !important;
    line-height: 1.02 !important;
    white-space: nowrap !important;
    overflow: visible !important;
    text-overflow: clip !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-meta-line,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card > .proba-result-meta-line {
    position: absolute !important;
    display: flex !important;
    flex-direction: column !important;
    top: 86px !important;
    left: 22px !important;
    right: 146px !important;
    width: auto !important;
    max-width: none !important;
    max-height: 38px !important;
    min-height: 0 !important;
    margin: 0 !important;
    gap: 5px !important;
    overflow: hidden !important;
    font-size: 11px !important;
    line-height: 1.15 !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-actions,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-actions {
    position: absolute !important;
    left: 22px !important;
    right: auto !important;
    top: auto !important;
    bottom: 14px !important;
    width: 206px !important;
    height: 42px !important;
    min-height: 42px !important;
    margin: 0 !important;
    transform: none !important;
    z-index: 4 !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-cta,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .results-card-go-btn.proba-result-cta {
    width: 206px !important;
    height: 42px !important;
    min-height: 42px !important;
    padding: 0 14px !important;
    border-radius: 9px !important;
    font-size: 13px !important;
    line-height: 1 !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-more-btn {
    position: absolute !important;
    right: 16px !important;
    left: auto !important;
    top: auto !important;
    bottom: 17px !important;
    min-height: 28px !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
    z-index: 4 !important;
  }
}

@media (min-width: 721px) {
  body.page-results:not(.page-proba) #results {
    width: min(780px, calc(100vw - 48px)) !important;
    max-width: 780px !important;
    overflow: visible !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card.best {
    min-height: 281px !important;
    height: auto !important;
    max-height: none !important;
    padding: 0 !important;
    overflow: hidden !important;
    border-radius: 12px !important;
    box-sizing: border-box !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row {
    position: static !important;
    display: flex !important;
    align-items: stretch !important;
    justify-content: stretch !important;
    gap: 0 !important;
    min-height: 279px !important;
    padding: 0 !important;
    border: 0 !important;
    box-sizing: border-box !important;
    overflow: visible !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-main {
    display: flex !important;
    flex: 1 1 auto !important;
    flex-direction: row !important;
    min-width: 0 !important;
    align-items: stretch !important;
    justify-content: normal !important;
    gap: 16px !important;
    padding: 28px 24px !important;
    margin: 0 !important;
    overflow: visible !important;
    position: static !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line {
    display: flex !important;
    min-width: 0 !important;
    min-height: 221px !important;
    align-items: flex-start !important;
    gap: 16px !important;
    flex: 1 1 auto !important;
    flex-wrap: nowrap !important;
    margin: 0 !important;
    overflow: visible !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-service-copy {
    display: flex !important;
    min-height: 221px !important;
    flex: 1 1 auto !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: normal !important;
    gap: 0 !important;
    min-width: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    position: static !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-meta-line,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line {
    position: static !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    flex-wrap: nowrap !important;
    gap: 5px !important;
    width: auto !important;
    max-width: none !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    margin: 34px 0 0 -56px !important;
    overflow: visible !important;
    color: #555d6d !important;
    font-size: 12px !important;
    line-height: 1.2 !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line .proba-result-meta-item,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line span {
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
    min-height: 0 !important;
    color: #555d6d !important;
    font-size: 12px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line b {
    display: none !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line strong {
    min-width: 0 !important;
    color: #555d6d !important;
    font-size: 12px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line span + span::before {
    display: none !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-actions,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-actions {
    position: static !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-direction: row !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 10px !important;
    width: auto !important;
    height: auto !important;
    min-height: 0 !important;
    margin: auto 0 0 -56px !important;
    padding: 0 !important;
    border: 0 !important;
    box-shadow: none !important;
    transform: none !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-cta,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .results-card-go-btn.proba-result-cta {
    width: 202px !important;
    height: 43px !important;
    min-height: 43px !important;
    padding: 0 14px !important;
    border-radius: 9px !important;
    font-size: 13px !important;
    line-height: 1 !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-value {
    position: relative !important;
    display: flex !important;
    flex: 0 0 270px !important;
    min-width: 270px !important;
    align-self: stretch !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    justify-content: flex-start !important;
    padding: 28px 20px 18px !important;
    border-left: 1px solid #eef0f3 !important;
    text-align: right !important;
    overflow: visible !important;
    box-sizing: border-box !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .price {
    max-width: 100% !important;
    min-height: 36px !important;
    margin: 0 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    overflow: visible !important;
    text-overflow: clip !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-more-btn {
    position: static !important;
    right: auto !important;
    bottom: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 5px !important;
    width: auto !important;
    max-width: none !important;
    min-height: 28px !important;
    height: auto !important;
    margin-top: auto !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #475569 !important;
    box-shadow: none !important;
    font-size: 13px !important;
    line-height: 1.15 !important;
    font-weight: 760 !important;
    text-align: right !important;
    white-space: nowrap !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .rate-timestamp,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-updated,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .card-service-updated-at {
    position: static !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: auto !important;
    max-width: 210px !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 12px 0 0 !important;
    color: rgba(71, 85, 105, 0.62) !important;
    font-size: 9px !important;
    line-height: 1.15 !important;
    font-weight: 700 !important;
    text-align: right !important;
  }
}

@media (min-width: 721px) and (max-width: 900px) {
  body.page-results:not(.page-proba) #results {
    width: min(720px, calc(100vw - 48px)) !important;
    max-width: 720px !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card.best {
    min-height: 277px !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row {
    min-height: 275px !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-service-copy {
    min-height: 217px !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-value {
    flex-basis: 232px !important;
    min-width: 232px !important;
  }

  body.page-results:not(.page-proba) #senderPickerBtn,
  body.page-results:not(.page-proba) #recipientPickerBtn {
    height: 62px !important;
    min-height: 62px !important;
    transform: none !important;
  }
}

@media (min-width: 901px) and (max-width: 1099px) {
  body.page-results:not(.page-proba) #results {
    width: min(720px, calc(100vw - 48px)) !important;
    max-width: 720px !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-value {
    flex-basis: 232px !important;
    min-width: 232px !important;
  }
}

/* PAYTOUA 0.3.176a: specific 641-720px override after inline 175b/175d */
@media (min-width: 641px) and (max-width: 720px) {
  body.page-results:not(.page-proba) #methods {
    justify-content: center !important;
    min-height: 122px !important;
    padding-bottom: 18px !important;
    gap: 10px !important;
  }

  body.page-results:not(.page-proba) #methods .method {
    flex: 0 0 132px !important;
    width: 132px !important;
    max-width: 132px !important;
    height: 104px !important;
    min-height: 104px !important;
    max-height: 104px !important;
    padding: 9px 8px 8px !important;
  }

  body.page-results:not(.page-proba) .results-content > .container #results,
  body.page-results:not(.page-proba) .proba-results #results,
  body.page-results:not(.page-proba) #results {
    box-sizing: border-box !important;
    width: min(calc(100vw - 28px), 414px) !important;
    max-width: 414px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    overflow: visible !important;
  }

  body.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card,
  body.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card.best {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 190px !important;
    height: 190px !important;
    max-height: 190px !important;
    padding: 0 !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }

  body.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .row,
  body.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card .row,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row {
    position: absolute !important;
    left: 14px !important;
    right: 14px !important;
    top: 13px !important;
    width: auto !important;
    max-width: none !important;
    min-height: 58px !important;
    height: auto !important;
    max-height: none !important;
    display: grid !important;
    grid-template-columns: minmax(0, 206px) minmax(112px, 128px) !important;
    justify-content: space-between !important;
    align-items: start !important;
    gap: 10px !important;
    padding: 0 !important;
    border: 0 !important;
    box-sizing: border-box !important;
    overflow: visible !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-main,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row > div:first-child {
    position: static !important;
    min-width: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line {
    height: 52px !important;
    min-height: 52px !important;
    align-items: center !important;
    overflow: visible !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-service-copy {
    position: static !important;
    min-height: 52px !important;
    justify-content: center !important;
    min-width: 0 !important;
    overflow: visible !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service {
    max-width: 100% !important;
    font-size: 20px !important;
    line-height: 1.05 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-value,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row > div:last-child {
    position: static !important;
    min-width: 112px !important;
    max-width: 128px !important;
    padding: 7px 0 0 !important;
    align-items: flex-end !important;
    text-align: right !important;
    overflow: visible !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .price {
    max-width: 128px !important;
    min-height: 42px !important;
    font-size: 22px !important;
    line-height: 1.02 !important;
    white-space: nowrap !important;
    overflow: visible !important;
    text-overflow: clip !important;
  }

  body.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .proba-result-meta-line,
  body.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card .proba-result-meta-line,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-meta-line,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card > .proba-result-meta-line {
    position: absolute !important;
    display: flex !important;
    flex-direction: column !important;
    top: 86px !important;
    left: 22px !important;
    right: 146px !important;
    width: auto !important;
    max-width: none !important;
    max-height: 38px !important;
    min-height: 0 !important;
    margin: 0 !important;
    gap: 5px !important;
    overflow: hidden !important;
    font-size: 11px !important;
    line-height: 1.15 !important;
  }

  body.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .proba-result-actions,
  body.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card .proba-result-actions,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-actions,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-actions {
    position: absolute !important;
    left: 22px !important;
    right: auto !important;
    top: auto !important;
    bottom: 14px !important;
    width: 206px !important;
    height: 42px !important;
    min-height: 42px !important;
    margin: 0 !important;
    transform: none !important;
    z-index: 4 !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-more-btn {
    position: absolute !important;
    right: 16px !important;
    left: auto !important;
    top: auto !important;
    bottom: 17px !important;
    min-height: 28px !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
    z-index: 4 !important;
  }
}

/* PAYTOUA 0.3.176b: place 641-720px actions relative to the absolute row containing block */
@media (min-width: 641px) and (max-width: 720px) {
  body.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .proba-result-actions,
  body.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card .proba-result-actions,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-actions,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-actions {
    top: 120px !important;
    bottom: auto !important;
  }

  body.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .proba-result-more-btn,
  body.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card .proba-result-more-btn,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-more-btn {
    top: 126px !important;
    bottom: auto !important;
  }
}

/* PAYTOUA 0.3.176c: tablet method-card parity and service-card content alignment */
@media (min-width: 641px) and (max-width: 720px) {
  body.page-results:not(.page-proba) #methods .method,
  body.page-results:not(.page-proba) #methods .method.active {
    flex: 0 0 132px !important;
    width: 132px !important;
    max-width: 132px !important;
    min-width: 132px !important;
    height: 104px !important;
    min-height: 104px !important;
    max-height: 104px !important;
    padding: 12px 9px 11px !important;
    box-sizing: border-box !important;
    transform: none !important;
  }

  body.page-results:not(.page-proba) #methods .method-icon,
  body.page-results:not(.page-proba) #methods .proba-method-icon {
    width: 24px !important;
    height: 24px !important;
    margin: 2px 0 6px !important;
  }

  body.page-results:not(.page-proba) #methods .method-name {
    min-height: 30px !important;
    margin-bottom: 6px !important;
    font-size: 14px !important;
    line-height: 1.16 !important;
  }

  body.page-results:not(.page-proba) #methods .method-value {
    margin-top: auto !important;
    font-size: 20px !important;
    line-height: 1.08 !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-meta-line,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card > .proba-result-meta-line {
    top: 72px !important;
    left: 7px !important;
    right: 131px !important;
    max-height: 38px !important;
    min-height: 0 !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-actions,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-actions {
    left: 7px !important;
    width: 214px !important;
    top: 120px !important;
    bottom: auto !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-cta,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .results-card-go-btn.proba-result-cta {
    width: 214px !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-more-btn {
    right: 1px !important;
    width: 76px !important;
    top: 129px !important;
    bottom: auto !important;
  }
}

@media (min-width: 721px) and (max-width: 900px) {
  body.page-results:not(.page-proba) #methods .method,
  body.page-results:not(.page-proba) #methods .method.active {
    height: 104px !important;
    min-height: 104px !important;
    max-height: 104px !important;
    padding: 12px 8px 10px !important;
    box-sizing: border-box !important;
    transform: none !important;
  }

  body.page-results:not(.page-proba) #results {
    width: min(720px, calc(100vw - 100px)) !important;
    max-width: 720px !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card.best {
    min-height: 277px !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row {
    min-height: 275px !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-service-copy {
    min-height: 217px !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-meta-line,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line {
    width: 152px !important;
    max-width: 152px !important;
    min-height: 66px !important;
    max-height: 66px !important;
    margin-top: 34px !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-actions,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-actions {
    margin-top: 18px !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-more-btn {
    margin-top: 107px !important;
  }
}

@media (min-width: 901px) and (max-width: 1099px) {
  body.page-results:not(.page-proba) #methods .method,
  body.page-results:not(.page-proba) #methods .method.active {
    height: 104px !important;
    min-height: 104px !important;
    max-height: 104px !important;
    padding: 12px 8px 10px !important;
    box-sizing: border-box !important;
    transform: none !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card.best {
    min-height: 277px !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row {
    min-height: 275px !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-service-copy {
    min-height: 217px !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-meta-line,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line {
    width: 152px !important;
    max-width: 152px !important;
    min-height: 66px !important;
    max-height: 66px !important;
    margin-top: 34px !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-actions,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-actions {
    margin-top: 18px !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-more-btn {
    margin-top: 107px !important;
  }
}
/* PAYTOUA 0.3.176d: copy /proba tablet method-card internals */
@media (min-width: 721px) and (max-width: 1099px) {
  body.page-results:not(.page-proba) #methods .method,
  body.page-results:not(.page-proba) #methods .method.active {
    justify-content: center !important;
    gap: 6px !important;
  }

  body.page-results:not(.page-proba) #methods .method-icon,
  body.page-results:not(.page-proba) #methods .proba-method-icon {
    margin: 0 !important;
  }

  body.page-results:not(.page-proba) #methods .method-name {
    margin: 0 !important;
    min-height: 0 !important;
    font-size: 12.5px !important;
    line-height: 14px !important;
  }

  body.page-results:not(.page-proba) #methods .method-value {
    margin: 0 !important;
    min-height: 0 !important;
    height: auto !important;
    font-size: 15.5px !important;
    line-height: 1.08 !important;
  }
}
/* PAYTOUA 0.3.176e: let tablet result-card meta fit long fee/status text like /proba */
@media (min-width: 721px) and (max-width: 1099px) {
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-meta-line,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line {
    width: max-content !important;
    max-width: 382px !important;
    min-width: 0 !important;
    gap: 6px !important;
  }
}

/* PAYTOUA 0.3.176f: responsive method rail and service-card parity with /proba */
@media (min-width: 641px) and (max-width: 720px) {
  body.page-results:not(.page-proba) #methods {
    justify-content: center !important;
    min-height: 122px !important;
    padding: 0 14px 18px !important;
    gap: 10px !important;
  }
  body.page-results:not(.page-proba) #methods .method,
  body.page-results:not(.page-proba) #methods .method.active {
    flex: 0 0 132px !important;
    width: 132px !important;
    min-width: 132px !important;
    max-width: 132px !important;
    height: 104px !important;
    min-height: 104px !important;
    max-height: 104px !important;
    padding: 10px 8px 9px !important;
    justify-content: center !important;
    gap: 5px !important;
    transform: none !important;
    box-sizing: border-box !important;
    overflow: visible !important;
  }
  body.page-results:not(.page-proba) #methods .method-icon,
  body.page-results:not(.page-proba) #methods .proba-method-icon {
    width: 24px !important;
    height: 24px !important;
    margin: 0 !important;
    flex: 0 0 24px !important;
  }
  body.page-results:not(.page-proba) #methods .method-name {
    margin: 0 !important;
    min-height: 0 !important;
    max-height: none !important;
    font-size: 13px !important;
    line-height: 1.12 !important;
    white-space: normal !important;
    overflow: visible !important;
  }
  body.page-results:not(.page-proba) #methods .method-value,
  body.page-results:not(.page-proba) #methods .method.active .method-value {
    margin: 0 !important;
    min-height: 0 !important;
    height: auto !important;
    max-width: 100% !important;
    font-size: 18px !important;
    line-height: 1.04 !important;
    white-space: nowrap !important;
    overflow: visible !important;
    text-overflow: clip !important;
    transform: none !important;
  }
}

@media (min-width: 721px) and (max-width: 900px) {
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card.best {
    min-height: 277px !important;
    height: 277px !important;
    max-height: 277px !important;
    overflow: hidden !important;
  }
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row {
    min-height: 275px !important;
    height: 275px !important;
    max-height: 275px !important;
  }
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-service-copy {
    min-height: 217px !important;
    height: 217px !important;
    max-height: 217px !important;
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  body.page-results:not(.page-proba) #methods .method,
  body.page-results:not(.page-proba) #methods .method.active {
    height: 112px !important;
    min-height: 112px !important;
    max-height: 112px !important;
    padding: 12px 10px 10px !important;
    transform: none !important;
  }
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card.best {
    min-height: 281px !important;
    height: 281px !important;
    max-height: 281px !important;
    overflow: hidden !important;
  }
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row {
    min-height: 279px !important;
    height: 279px !important;
    max-height: 279px !important;
  }
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-service-copy {
    min-height: 221px !important;
    height: 221px !important;
    max-height: 221px !important;
  }
}

@media (min-width: 721px) and (max-width: 1100px) {
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-actions,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-actions {
    margin-top: 18px !important;
  }
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-more-btn {
    margin-top: 107px !important;
  }
}
/* PAYTOUA 0.3.176g: compact method rail values and tablet parity cleanup */
@media (min-width: 641px) and (max-width: 720px) {
  body.page-results:not(.page-proba) #methods {
    justify-content: center !important;
    align-items: stretch !important;
    gap: 10px !important;
    min-height: 122px !important;
    padding: 0 14px 18px !important;
    overflow-y: visible !important;
  }

  body.page-results:not(.page-proba) #methods .method,
  body.page-results:not(.page-proba) #methods .method.active {
    flex: 0 0 132px !important;
    width: 132px !important;
    min-width: 132px !important;
    max-width: 132px !important;
    height: 104px !important;
    min-height: 104px !important;
    max-height: 104px !important;
    padding: 12px 9px 11px !important;
    box-sizing: border-box !important;
    transform: none !important;
    overflow: visible !important;
  }

  body.page-results:not(.page-proba) #methods .method.active::after {
    display: block !important;
  }

  body.page-results:not(.page-proba) #methods .method-name {
    margin: 0 0 6px !important;
    min-height: 15px !important;
    height: auto !important;
    max-height: none !important;
    font-size: 13px !important;
    line-height: 15px !important;
    letter-spacing: 0 !important;
    white-space: nowrap !important;
    overflow: visible !important;
    text-overflow: clip !important;
  }

  body.page-results:not(.page-proba) #methods .method-value,
  body.page-results:not(.page-proba) #methods .method.active .method-value {
    margin: 0 !important;
    width: auto !important;
    max-width: 112px !important;
    min-height: 0 !important;
    height: auto !important;
    font-size: 22px !important;
    line-height: 1.08 !important;
    letter-spacing: 0 !important;
    white-space: nowrap !important;
    overflow: visible !important;
    text-overflow: clip !important;
    transform: none !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-meta-line,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card > .proba-result-meta-line {
    right: 128px !important;
    max-height: 44px !important;
    overflow: hidden !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line span,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line strong {
    min-width: 0 !important;
    max-width: 100% !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }
}

@media (min-width: 641px) and (max-width: 1099px) {
  body.page-results:not(.page-proba) #methods .method,
  body.page-results:not(.page-proba) #methods .method.active {
    box-sizing: border-box !important;
    transform: none !important;
  }
}

@media (min-width: 721px) and (max-width: 1099px) {
  body.page-results:not(.page-proba) #methods .method,
  body.page-results:not(.page-proba) #methods .method.active {
    height: 104px !important;
    min-height: 104px !important;
    max-height: 104px !important;
  }
}

@media (min-width: 721px) {
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-value {
    border-left: 0 !important;
  }
}
/* PAYTOUA 0.3.176h: remove final 641-720px method/meta overflow */
@media (min-width: 641px) and (max-width: 720px) {
  body.page-results:not(.page-proba) #methods .method-value,
  body.page-results:not(.page-proba) #methods .method.active .method-value {
    flex: 0 0 22px !important;
    max-width: 112px !important;
    height: 22px !important;
    min-height: 22px !important;
    max-height: 22px !important;
    font-size: 18px !important;
    line-height: 22px !important;
    overflow: visible !important;
    white-space: nowrap !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-meta-line,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card > .proba-result-meta-line {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 3px !important;
    max-height: 44px !important;
    overflow: hidden !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line span {
    display: grid !important;
    grid-template-columns: 54px minmax(0, 1fr) !important;
    gap: 5px !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow: hidden !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line span + span::before {
    display: none !important;
  }
}
/* PAYTOUA 0.3.176i: fit 3 compact meta rows inside 641-720px cards */
@media (min-width: 641px) and (max-width: 720px) {
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-meta-line,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card > .proba-result-meta-line {
    gap: 1px !important;
    max-height: 44px !important;
  }
}
/* PAYTOUA 0.3.176j: final action-row and mobile meta alignment with /proba */
@media (min-width: 721px) {
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-actions,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-actions {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-more-btn,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-actions .proba-result-more-btn {
    margin-top: 0 !important;
    align-self: center !important;
  }
}

@media (max-width: 640px) {
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-meta-line,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card > .proba-result-meta-line {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 3px !important;
    max-height: 46px !important;
    overflow: hidden !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line .proba-result-meta-item,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line span {
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line span + span::before {
    display: none !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line strong,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line b {
    min-width: 0 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }
}
/* PAYTOUA 0.3.176k: exact /proba action link placement and compact 3-line mobile meta */
@media (min-width: 721px) {
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-more-btn {
    position: absolute !important;
    right: 20px !important;
    bottom: 60px !important;
    margin: 0 !important;
    align-self: auto !important;
    transform: none !important;
    z-index: 8 !important;
  }
}

@media (max-width: 640px) {
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-meta-line,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card > .proba-result-meta-line {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 1px !important;
    max-height: 42px !important;
    overflow: hidden !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line .proba-result-meta-item,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line span {
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    min-width: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 13px !important;
    min-height: 13px !important;
    max-height: 13px !important;
    font-size: 10.2px !important;
    line-height: 13px !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line svg,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line .card-detail-icon {
    width: 12px !important;
    height: 12px !important;
    min-width: 12px !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line strong,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line b {
    min-width: 0 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }
}

/* PAYTOUA 0.3.176l: tablet method parity and compact service-card rhythm */
@media (min-width: 641px) {
  body.page-results:not(.page-proba) #methods {
    align-items: stretch !important;
  }

  body.page-results:not(.page-proba) #methods .method,
  body.page-results:not(.page-proba) #methods .method.active {
    align-self: stretch !important;
    box-sizing: border-box !important;
    transform: none !important;
  }
}

@media (min-width: 641px) and (max-width: 720px) {
  body.page-results:not(.page-proba) #methods .method,
  body.page-results:not(.page-proba) #methods .method.active {
    border-radius: 13px !important;
  }
}

@media (min-width: 721px) and (max-width: 1100px) {
  body.page-results:not(.page-proba) #methods .method,
  body.page-results:not(.page-proba) #methods .method.active {
    border-radius: 15px !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card.best {
    min-height: 246px !important;
    height: 246px !important;
    max-height: 246px !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row {
    min-height: 244px !important;
    height: 244px !important;
    max-height: 244px !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-service-copy {
    min-height: 188px !important;
    height: 188px !important;
    max-height: 188px !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-meta-line,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line {
    width: max-content !important;
    max-width: min(382px, calc(100vw - 260px)) !important;
    min-height: 0 !important;
    height: auto !important;
    max-height: 58px !important;
    margin-top: 24px !important;
    gap: 5px !important;
    overflow: hidden !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line .proba-result-meta-item,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line span {
    min-height: 14px !important;
    font-size: 11.5px !important;
    line-height: 14px !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-actions,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-actions {
    margin-top: 14px !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .rate-timestamp,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-updated,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .card-service-updated-at {
    margin-top: 6px !important;
    max-width: 210px !important;
    font-size: 9.5px !important;
    line-height: 1.15 !important;
  }
}

@media (max-width: 640px) {
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-meta-line,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card > .proba-result-meta-line {
    gap: 0 !important;
    max-height: 39px !important;
  }
}

/* PAYTOUA 0.3.176m: hide compact-card timestamp on 641-720px */
@media (min-width: 641px) and (max-width: 720px) {
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .rate-timestamp,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-updated,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .card-service-updated-at {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    max-width: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
  }
}

/* PAYTOUA 0.3.176n: restore proba-like tablet service-card breathing room */
@media (min-width: 721px) and (max-width: 1100px) {
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card.best {
    min-height: 276px !important;
    height: auto !important;
    max-height: none !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row {
    min-height: 274px !important;
    height: auto !important;
    max-height: none !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-service-copy {
    min-height: 216px !important;
    height: auto !important;
    max-height: none !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-meta-line,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line {
    max-height: none !important;
    overflow: visible !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .rate-timestamp,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-updated,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .card-service-updated-at {
    margin-top: 8px !important;
    line-height: 1.15 !important;
  }
}
/* PAYTOUA 0.3.176o: tablet method/result card rhythm parity with /proba */
@media (min-width: 721px) and (max-width: 1100px) {
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-service-copy {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-actions,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-actions {
    margin-top: auto !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .rate-timestamp,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-updated,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .card-service-updated-at {
    margin-top: 8px !important;
    line-height: 1.15 !important;
  }
}

@media (min-width: 1041px) and (max-width: 1100px) {
  body.page-results:not(.page-proba) #methods {
    width: min(960px, calc(100% - 32px)) !important;
    max-width: 960px !important;
    gap: 12px !important;
  }

  body.page-results:not(.page-proba) #methods .method,
  body.page-results:not(.page-proba) #methods .method.active {
    height: auto !important;
    min-height: 112px !important;
    max-height: none !important;
    padding: 13px 12px 12px !important;
    border-radius: 12px !important;
  }

  body.page-results:not(.page-proba) #methods .method-icon,
  body.page-results:not(.page-proba) #methods .proba-method-icon {
    width: 34px !important;
    height: 34px !important;
  }

  body.page-results:not(.page-proba) #methods .method-name {
    font-size: 12.5px !important;
    line-height: 1.12 !important;
  }

  body.page-results:not(.page-proba) #methods .method-value,
  body.page-results:not(.page-proba) #methods .method.active .method-value {
    font-size: 17px !important;
    line-height: 1.08 !important;
  }

  body.page-results:not(.page-proba) #results {
    width: min(780px, calc(100% - 52px)) !important;
    max-width: 780px !important;
  }
}

/* PAYTOUA 0.3.176p: proba parity for medium mobile, early tablet, and nav encoding */
@media (min-width: 480px) and (max-width: 640px) {
  body.page-results:not(.page-proba) #results {
    width: min(430px, calc(100% - 32px)) !important;
    max-width: 430px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card.best {
    width: calc(100% - 16px) !important;
    max-width: 414px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media (min-width: 721px) and (max-width: 1040px) {
  body.page-results:not(.page-proba) #methods {
    width: min(625px, calc(100% - 96px)) !important;
    max-width: 625px !important;
    gap: 12px !important;
    justify-content: center !important;
  }

  body.page-results:not(.page-proba) #methods .method,
  body.page-results:not(.page-proba) #methods .method.active {
    flex: 0 0 178px !important;
    width: 178px !important;
    min-width: 178px !important;
    max-width: 178px !important;
  }
}

/* PAYTOUA 0.3.176q: final tablet parity for method cards and compact service cards */
@media (min-width: 641px) and (max-width: 720px) {
  body.page-results:not(.page-proba) #methods {
    align-items: stretch !important;
    justify-content: center !important;
  }

  body.page-results:not(.page-proba) #methods .method,
  body.page-results:not(.page-proba) #methods .method.active {
    flex: 0 0 132px !important;
    width: 132px !important;
    min-width: 132px !important;
    max-width: 132px !important;
    height: 104px !important;
    min-height: 104px !important;
    max-height: 104px !important;
    align-self: stretch !important;
    transform: none !important;
  }
}

@media (min-width: 721px) and (max-width: 1040px) {
  body.page-results:not(.page-proba) #methods {
    width: min(625px, calc(100% - 96px)) !important;
    max-width: 625px !important;
    align-items: stretch !important;
    justify-content: center !important;
    gap: 12px !important;
  }

  body.page-results:not(.page-proba) #methods .method,
  body.page-results:not(.page-proba) #methods .method.active {
    flex: 0 0 178px !important;
    width: 178px !important;
    min-width: 178px !important;
    max-width: 178px !important;
    height: 108px !important;
    min-height: 108px !important;
    max-height: 108px !important;
    padding: 12px 10px 11px !important;
    align-self: stretch !important;
    transform: none !important;
  }
}

@media (min-width: 1041px) and (max-width: 1100px) {
  body.page-results:not(.page-proba) #methods .method,
  body.page-results:not(.page-proba) #methods .method.active {
    flex: 0 0 194px !important;
    width: 194px !important;
    min-width: 194px !important;
    max-width: 194px !important;
    height: 112px !important;
    min-height: 112px !important;
    max-height: 112px !important;
    align-self: stretch !important;
    transform: none !important;
  }
}

@media (min-width: 721px) and (max-width: 1100px) {
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card.best {
    min-height: 236px !important;
    height: auto !important;
    max-height: none !important;
    overflow: hidden !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row {
    min-height: 234px !important;
    height: auto !important;
    max-height: none !important;
    align-items: stretch !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-main {
    padding-top: 22px !important;
    padding-bottom: 18px !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-service-copy {
    min-height: 192px !important;
    height: auto !important;
    max-height: none !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-value {
    padding-top: 22px !important;
    padding-bottom: 18px !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-meta-line {
    margin-top: 20px !important;
    min-height: 46px !important;
    max-height: 60px !important;
    overflow: hidden !important;
    gap: 5px !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-actions,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-actions {
    margin-top: auto !important;
    min-height: 42px !important;
    flex-shrink: 0 !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-more-btn {
    bottom: 48px !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .rate-timestamp,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-updated,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .card-service-updated-at {
    margin-top: 7px !important;
    max-width: 220px !important;
  }
}
/* PAYTOUA 0.3.178: normalize tablet method tiles and service-card rhythm */
@media (min-width: 641px) and (max-width: 1100px) {
  body.page-results:not(.page-proba) #methods {
    align-items: stretch !important;
    justify-content: center !important;
    overflow-y: visible !important;
  }

  body.page-results:not(.page-proba) #methods .method,
  body.page-results:not(.page-proba) #methods .method.active {
    align-self: stretch !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    transform: none !important;
    transform-origin: center bottom !important;
    overflow: visible !important;
  }

  body.page-results:not(.page-proba) #methods .method.active::after {
    display: block !important;
    bottom: -6px !important;
  }

  body.page-results:not(.page-proba) #methods .method-icon,
  body.page-results:not(.page-proba) #methods .proba-method-icon {
    flex: 0 0 auto !important;
    margin: 0 !important;
  }

  body.page-results:not(.page-proba) #methods .method-name {
    min-height: 0 !important;
    height: auto !important;
    margin: 0 !important;
    letter-spacing: 0 !important;
    overflow: visible !important;
    text-overflow: clip !important;
  }

  body.page-results:not(.page-proba) #methods .method-value,
  body.page-results:not(.page-proba) #methods .method.active .method-value {
    min-height: 0 !important;
    height: auto !important;
    margin: 0 !important;
    letter-spacing: 0 !important;
    white-space: nowrap !important;
    overflow: visible !important;
    text-overflow: clip !important;
    transform: none !important;
  }
}

@media (min-width: 641px) and (max-width: 720px) {
  body.page-results:not(.page-proba) #methods {
    width: 100vw !important;
    max-width: 100vw !important;
    min-height: 126px !important;
    gap: 10px !important;
    padding: 0 14px 22px !important;
  }

  body.page-results:not(.page-proba) #methods .method,
  body.page-results:not(.page-proba) #methods .method.active {
    flex: 0 0 132px !important;
    width: 132px !important;
    min-width: 132px !important;
    max-width: 132px !important;
    height: 104px !important;
    min-height: 104px !important;
    max-height: 104px !important;
    gap: 5px !important;
    padding: 10px 8px 9px !important;
    border-radius: 13px !important;
  }

  body.page-results:not(.page-proba) #methods .method-name {
    font-size: 13px !important;
    line-height: 15px !important;
    white-space: nowrap !important;
  }

  body.page-results:not(.page-proba) #methods .method-value,
  body.page-results:not(.page-proba) #methods .method.active .method-value {
    max-width: 116px !important;
    font-size: 18px !important;
    line-height: 22px !important;
  }
}

@media (min-width: 721px) and (max-width: 1040px) {
  body.page-results:not(.page-proba) #methods {
    width: min(625px, calc(100% - 96px)) !important;
    max-width: 625px !important;
    min-height: 126px !important;
    gap: 12px !important;
    padding-bottom: 18px !important;
  }

  body.page-results:not(.page-proba) #methods .method,
  body.page-results:not(.page-proba) #methods .method.active {
    flex: 0 0 178px !important;
    width: 178px !important;
    min-width: 178px !important;
    max-width: 178px !important;
    height: 108px !important;
    min-height: 108px !important;
    max-height: 108px !important;
    gap: 6px !important;
    padding: 12px 10px 11px !important;
    border-radius: 15px !important;
  }

  body.page-results:not(.page-proba) #methods .method-name {
    font-size: 12.5px !important;
    line-height: 14px !important;
    white-space: nowrap !important;
  }

  body.page-results:not(.page-proba) #methods .method-value,
  body.page-results:not(.page-proba) #methods .method.active .method-value {
    font-size: 15.5px !important;
    line-height: 1.08 !important;
  }
}

@media (min-width: 1041px) and (max-width: 1100px) {
  body.page-results:not(.page-proba) #methods {
    width: min(960px, calc(100% - 32px)) !important;
    max-width: 960px !important;
    min-height: 132px !important;
    gap: 12px !important;
    padding-bottom: 20px !important;
  }

  body.page-results:not(.page-proba) #methods .method,
  body.page-results:not(.page-proba) #methods .method.active {
    flex: 0 0 194px !important;
    width: 194px !important;
    min-width: 194px !important;
    max-width: 194px !important;
    height: 112px !important;
    min-height: 112px !important;
    max-height: 112px !important;
    gap: 6px !important;
    padding: 13px 12px 12px !important;
    border-radius: 15px !important;
  }
}

@media (min-width: 721px) and (max-width: 1100px) {
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card.best {
    min-height: 236px !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row {
    min-height: 234px !important;
    height: auto !important;
    max-height: none !important;
    align-items: stretch !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-main,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-value {
    padding-top: 22px !important;
    padding-bottom: 18px !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line {
    min-height: 192px !important;
    height: auto !important;
    max-height: none !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-service-copy {
    min-height: 192px !important;
    height: auto !important;
    max-height: none !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-meta-line {
    margin-top: 18px !important;
    min-height: 46px !important;
    max-height: 64px !important;
    overflow: visible !important;
    gap: 5px !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-actions,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-actions {
    margin-top: auto !important;
    min-height: 42px !important;
    flex-shrink: 0 !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-more-btn {
    bottom: 48px !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .rate-timestamp,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-updated,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .card-service-updated-at {
    margin-top: 7px !important;
    max-width: 220px !important;
  }
}
/* PAYTOUA 0.3.179: prevent tablet result amount overflow */
@media (min-width: 721px) and (max-width: 1100px) {
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-value,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row > div:last-child {
    flex: 0 0 232px !important;
    width: 232px !important;
    min-width: 232px !important;
    max-width: 232px !important;
    box-sizing: border-box !important;
    overflow: visible !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .price {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    font-size: 25px !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;
    white-space: nowrap !important;
    text-wrap: nowrap !important;
    overflow: visible !important;
  }
}
/* PAYTOUA 0.3.180: smooth compact-to-tablet result-card width */
@media (min-width: 520px) and (max-width: 720px) {
  body.page-results:not(.page-proba) #results {
    width: clamp(414px, calc(100vw - 124px), 596px) !important;
    max-width: calc(100vw - 28px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    overflow: visible !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card,
  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card.best {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row {
    left: 14px !important;
    right: 14px !important;
    width: auto !important;
    max-width: none !important;
  }

  body.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service {
    max-width: 100% !important;
  }
}
/* PAYTOUA 0.3.181: stable tablet method tiles and compact result-card grid */
@media (min-width: 641px) and (max-width: 720px) {
  html body.page-results.page-results:not(.page-proba) #methods .method,
  html body.page-results.page-results:not(.page-proba) #methods .method.active {
    flex: 0 0 132px !important;
    width: 132px !important;
    min-width: 132px !important;
    max-width: 132px !important;
    height: 104px !important;
    min-height: 104px !important;
    max-height: 104px !important;
    transform: none !important;
    align-self: stretch !important;
    box-sizing: border-box !important;
  }

  html body.page-results.page-results:not(.page-proba) #results,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results,
  html body.page-results.page-results:not(.page-proba) .proba-results #results {
    box-sizing: border-box !important;
    width: clamp(414px, calc(100vw - 124px), 596px) !important;
    max-width: calc(100vw - 28px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    overflow: visible !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card.best {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row {
    left: 14px !important;
    right: 14px !important;
    width: auto !important;
    max-width: none !important;
    grid-template-columns: minmax(0, 1fr) minmax(124px, 144px) !important;
    justify-content: stretch !important;
    gap: 14px !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-value,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row > div:last-child {
    min-width: 124px !important;
    max-width: 144px !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service {
    max-width: 100% !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .price {
    max-width: 144px !important;
  }
}

@media (min-width: 721px) and (max-width: 1100px) {
  html body.page-results.page-results:not(.page-proba) #methods .method.active {
    transform: none !important;
    align-self: stretch !important;
  }
}

/* PAYTOUA 0.3.182: ui-ux-pro-max responsive stability pass */
html body.page-results.page-results:not(.page-proba) {
  overflow-x: hidden !important;
}

html body.page-results.page-results:not(.page-proba) #methods,
html body.page-results.page-results:not(.page-proba) #results,
html body.page-results.page-results:not(.page-proba) #methods .method,
html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card,
html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row,
html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-main,
html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-value,
html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-actions,
html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-more-btn {
  transition: none !important;
}

html body.page-results.page-results:not(.page-proba) #methods .method,
html body.page-results.page-results:not(.page-proba) #methods .method.active {
  transform: none !important;
  box-sizing: border-box !important;
}

html body.page-results.page-results:not(.page-proba) #methods .method.active::after {
  content: "" !important;
  display: block !important;
}

html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-value,
html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row > div:last-child {
  border-left: 0 !important;
}

@media (max-width: 720px) {
  html body.page-results.page-results:not(.page-proba) #results,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results,
  html body.page-results.page-results:not(.page-proba) .proba-results #results {
    box-sizing: border-box !important;
    width: min(calc(100vw - 28px), 596px) !important;
    max-width: min(calc(100vw - 28px), 596px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    overflow: visible !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card.best {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 0 !important;
    height: auto !important;
    max-height: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 15px 14px 16px !important;
    overflow: hidden !important;
    border-radius: 14px !important;
    box-sizing: border-box !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row {
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 0 !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(108px, min(38vw, 146px)) !important;
    justify-content: stretch !important;
    align-items: start !important;
    gap: 12px !important;
    padding: 0 !important;
    border: 0 !important;
    box-sizing: border-box !important;
    overflow: visible !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-main,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row > div:first-child {
    position: static !important;
    display: block !important;
    min-width: 0 !important;
    max-width: none !important;
    min-height: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line {
    display: flex !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    gap: 10px !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 48px !important;
    overflow: visible !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-service-copy,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-mobile-provider-title {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    min-width: 0 !important;
    max-width: 100% !important;
    min-height: 48px !important;
    height: auto !important;
    overflow: visible !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service {
    display: block !important;
    max-width: 100% !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    font-size: clamp(16px, 4.1vw, 20px) !important;
    line-height: 1.08 !important;
    font-weight: 900 !important;
    letter-spacing: 0 !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .result-smartpay-subtitle {
    display: block !important;
    max-width: 100% !important;
    margin-top: 3px !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    font-size: 11.5px !important;
    line-height: 1.15 !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-value,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row > div:last-child {
    position: static !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    justify-content: flex-start !important;
    width: auto !important;
    min-width: 108px !important;
    max-width: 146px !important;
    min-height: 0 !important;
    padding: 3px 0 0 !important;
    text-align: right !important;
    overflow: visible !important;
    box-sizing: border-box !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .price {
    display: block !important;
    width: 100% !important;
    max-width: 146px !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    text-overflow: clip !important;
    white-space: normal !important;
    text-wrap: balance !important;
    font-size: clamp(18px, 5vw, 23px) !important;
    line-height: 1.06 !important;
    font-weight: 900 !important;
    letter-spacing: 0 !important;
    font-variant-numeric: tabular-nums !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-diff {
    display: block !important;
    max-width: 146px !important;
    margin: 4px 0 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    font-size: 10.5px !important;
    line-height: 1.12 !important;
    text-align: right !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-meta-line,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card > .proba-result-meta-line {
    position: static !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 5px !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    margin: 13px 0 0 !important;
    overflow: visible !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line .proba-result-meta-item,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line span {
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
    min-width: 0 !important;
    min-height: 15px !important;
    overflow: hidden !important;
    color: #566176 !important;
    font-size: 11px !important;
    line-height: 1.18 !important;
    font-weight: 740 !important;
    white-space: nowrap !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line strong,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line b {
    min-width: 0 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-actions,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-actions {
    position: static !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: min(206px, 100%) !important;
    height: auto !important;
    min-height: 42px !important;
    margin: 13px 0 0 !important;
    overflow: visible !important;
    transform: none !important;
    z-index: 3 !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-cta,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .results-card-go-btn.proba-result-cta {
    width: min(206px, 100%) !important;
    min-height: 42px !important;
    height: 42px !important;
    padding: 0 14px !important;
    border-radius: 9px !important;
    font-size: 13px !important;
    line-height: 1 !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-more-btn {
    position: static !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    top: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    min-height: 28px !important;
    height: auto !important;
    margin: 10px 0 0 auto !important;
    padding: 0 !important;
    transform: none !important;
    z-index: 4 !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .rate-timestamp,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-updated,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .card-service-updated-at {
    display: none !important;
  }
}

@media (min-width: 641px) and (max-width: 720px) {
  html body.page-results.page-results:not(.page-proba) #methods {
    width: 100vw !important;
    max-width: 100vw !important;
    min-height: 126px !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    padding: 0 14px 22px !important;
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    justify-content: center !important;
    gap: 10px !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    scrollbar-width: none !important;
  }

  html body.page-results.page-results:not(.page-proba) #methods .method,
  html body.page-results.page-results:not(.page-proba) #methods .method.active {
    flex: 0 0 132px !important;
    width: 132px !important;
    min-width: 132px !important;
    max-width: 132px !important;
    height: 104px !important;
    min-height: 104px !important;
    max-height: 104px !important;
    padding: 10px 8px 9px !important;
    gap: 5px !important;
    align-self: stretch !important;
    justify-content: center !important;
    overflow: visible !important;
  }
}

@media (min-width: 721px) and (max-width: 1100px) {
  html body.page-results.page-results:not(.page-proba) #methods {
    width: min(625px, calc(100% - 64px)) !important;
    max-width: 625px !important;
    min-height: 128px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-bottom: 20px !important;
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    justify-content: center !important;
    gap: 12px !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    scrollbar-width: none !important;
  }

  html body.page-results.page-results:not(.page-proba) #methods .method,
  html body.page-results.page-results:not(.page-proba) #methods .method.active {
    flex: 0 0 178px !important;
    width: 178px !important;
    min-width: 178px !important;
    max-width: 178px !important;
    height: 108px !important;
    min-height: 108px !important;
    max-height: 108px !important;
    padding: 12px 10px 11px !important;
    gap: 6px !important;
    align-self: stretch !important;
    justify-content: center !important;
    overflow: visible !important;
  }
}

@media (min-width: 721px) {
  html body.page-results.page-results:not(.page-proba) #results,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results,
  html body.page-results.page-results:not(.page-proba) .proba-results #results {
    width: min(780px, calc(100vw - 48px)) !important;
    max-width: 780px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    overflow: visible !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card.best {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 0 !important;
    height: auto !important;
    max-height: none !important;
    padding: 18px 20px !important;
    overflow: hidden !important;
    border-radius: 12px !important;
    box-sizing: border-box !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row {
    position: static !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(202px, 232px) !important;
    align-items: stretch !important;
    justify-content: stretch !important;
    gap: 18px !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 0 !important;
    height: auto !important;
    padding: 0 !important;
    border: 0 !important;
    overflow: visible !important;
    box-sizing: border-box !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-main {
    position: static !important;
    display: block !important;
    min-width: 0 !important;
    min-height: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line {
    display: flex !important;
    align-items: flex-start !important;
    gap: 14px !important;
    flex-wrap: nowrap !important;
    min-width: 0 !important;
    min-height: 0 !important;
    height: auto !important;
    overflow: visible !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-service-copy {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    min-width: 0 !important;
    min-height: 0 !important;
    height: auto !important;
    overflow: visible !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service {
    display: block !important;
    max-width: 100% !important;
    font-size: 18px !important;
    line-height: 1.12 !important;
    font-weight: 900 !important;
    letter-spacing: 0 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .result-smartpay-subtitle {
    margin-top: 4px !important;
    max-width: 100% !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-meta-line {
    position: static !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 5px !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 0 !important;
    height: auto !important;
    max-height: none !important;
    margin: 14px 0 0 !important;
    overflow: visible !important;
    font-size: 12px !important;
    line-height: 1.2 !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line .proba-result-meta-item,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line span {
    min-height: 16px !important;
    overflow: hidden !important;
    white-space: nowrap !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-actions,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-actions {
    position: static !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    width: auto !important;
    height: auto !important;
    min-height: 43px !important;
    margin: 16px 0 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    transform: none !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-cta,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .results-card-go-btn.proba-result-cta {
    width: 202px !important;
    min-height: 43px !important;
    height: 43px !important;
    padding: 0 14px !important;
    border-radius: 9px !important;
    font-size: 13px !important;
    line-height: 1 !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-value,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row > div:last-child {
    position: static !important;
    display: flex !important;
    flex: none !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    justify-content: flex-start !important;
    width: auto !important;
    min-width: 202px !important;
    max-width: 232px !important;
    min-height: 0 !important;
    height: 100% !important;
    padding: 0 !important;
    text-align: right !important;
    overflow: visible !important;
    box-sizing: border-box !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .price {
    width: 100% !important;
    max-width: 232px !important;
    min-height: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    white-space: nowrap !important;
    font-size: clamp(24px, 3.2vw, 28px) !important;
    line-height: 1.02 !important;
    font-weight: 900 !important;
    letter-spacing: 0 !important;
    font-variant-numeric: tabular-nums !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-diff {
    width: 100% !important;
    max-width: 232px !important;
    margin: 5px 0 0 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-more-btn {
    position: static !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    width: auto !important;
    min-height: 28px !important;
    height: auto !important;
    margin: auto 0 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
    text-align: right !important;
    white-space: nowrap !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .rate-timestamp,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-updated,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .card-service-updated-at {
    position: static !important;
    display: block !important;
    margin: 10px 0 0 !important;
    max-width: 232px !important;
    text-align: right !important;
  }
}

@media (min-width: 721px) and (max-width: 900px) {
  html body.page-results.page-results:not(.page-proba) #results,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results,
  html body.page-results.page-results:not(.page-proba) .proba-results #results {
    width: min(720px, calc(100vw - 40px)) !important;
    max-width: 720px !important;
  }
}
/* PAYTOUA 0.3.183: ui-ux-pro-max method rail and transition-width stability */
html body.page-results.page-results:not(.page-proba) {
  overflow-x: clip !important;
}

@supports not (overflow: clip) {
  html body.page-results.page-results:not(.page-proba) {
    overflow-x: hidden !important;
  }
}

html body.page-results.page-results:not(.page-proba) #methods {
  scroll-snap-type: none !important;
  scroll-behavior: auto !important;
  overscroll-behavior-x: none !important;
}

html body.page-results.page-results:not(.page-proba) #methods .method,
html body.page-results.page-results:not(.page-proba) #methods .method.active {
  scroll-snap-align: none !important;
  transform: none !important;
  box-sizing: border-box !important;
}

@media (max-width: 720px) {
  html body.page-results.page-results:not(.page-proba) #methods {
    width: min(calc(100vw - 28px), 596px) !important;
    max-width: min(calc(100vw - 28px), 596px) !important;
    min-height: 122px !important;
    margin: 0 auto 18px !important;
    padding: 0 0 18px !important;
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    justify-content: center !important;
    gap: 8px !important;
    overflow-x: visible !important;
    overflow-y: visible !important;
    transform: none !important;
  }

  html body.page-results.page-results:not(.page-proba) #methods .method,
  html body.page-results.page-results:not(.page-proba) #methods .method.active {
    flex: 1 1 0 !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: 132px !important;
    height: 104px !important;
    min-height: 104px !important;
    max-height: 104px !important;
    padding: 9px 6px 8px !important;
    gap: 4px !important;
    align-self: stretch !important;
    justify-content: center !important;
    overflow: visible !important;
  }

  html body.page-results.page-results:not(.page-proba) #methods .method-icon,
  html body.page-results.page-results:not(.page-proba) #methods .proba-method-icon {
    flex: 0 0 auto !important;
    width: 24px !important;
    height: 24px !important;
    margin: 0 0 6px !important;
  }

  html body.page-results.page-results:not(.page-proba) #methods .method-icon svg,
  html body.page-results.page-results:not(.page-proba) #methods .proba-method-icon svg {
    width: 24px !important;
    height: 24px !important;
  }

  html body.page-results.page-results:not(.page-proba) #methods .method-name {
    min-height: 30px !important;
    max-width: 100% !important;
    margin: 0 0 4px !important;
    font-size: clamp(11px, 2.6vw, 13px) !important;
    line-height: 1.12 !important;
    letter-spacing: 0 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  html body.page-results.page-results:not(.page-proba) #methods .method-value,
  html body.page-results.page-results:not(.page-proba) #methods .method.active .method-value {
    width: 100% !important;
    max-width: 100% !important;
    margin-top: auto !important;
    font-size: clamp(14px, 4.1vw, 18px) !important;
    line-height: 1.06 !important;
    letter-spacing: 0 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: clip !important;
    font-variant-numeric: tabular-nums !important;
    transform: none !important;
  }

  html body.page-results.page-results:not(.page-proba) #methods .method.active::after {
    bottom: -6px !important;
  }

  html body.page-results.page-results:not(.page-proba) #results,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results,
  html body.page-results.page-results:not(.page-proba) .proba-results #results {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    display: grid !important;
    gap: 14px !important;
    width: min(calc(100vw - 28px), 596px) !important;
    max-width: min(calc(100vw - 28px), 596px) !important;
    margin: 0 auto 52px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    overflow: visible !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card.best {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 176px !important;
    height: auto !important;
    max-height: none !important;
    padding: 15px 14px 16px !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row {
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(112px, min(38vw, 152px)) !important;
    align-items: start !important;
    gap: 12px !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 0 !important;
    height: auto !important;
    padding: 0 !important;
    overflow: visible !important;
    box-sizing: border-box !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-actions,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-actions {
    position: static !important;
    min-height: 40px !important;
    margin: 12px 0 0 !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-more-btn {
    position: static !important;
    min-height: 28px !important;
    margin: 10px 0 0 auto !important;
    transform: none !important;
  }
}

@media (max-width: 430px) {
  html body.page-results.page-results:not(.page-proba) #methods {
    width: min(calc(100vw - 24px), 408px) !important;
    max-width: min(calc(100vw - 24px), 408px) !important;
    gap: 6px !important;
  }

  html body.page-results.page-results:not(.page-proba) #methods .method,
  html body.page-results.page-results:not(.page-proba) #methods .method.active {
    max-width: 128px !important;
    padding-left: 5px !important;
    padding-right: 5px !important;
  }

  html body.page-results.page-results:not(.page-proba) #methods .method-name {
    font-size: clamp(10.5px, 2.8vw, 12px) !important;
  }

  html body.page-results.page-results:not(.page-proba) #methods .method-value,
  html body.page-results.page-results:not(.page-proba) #methods .method.active .method-value {
    font-size: clamp(14px, 3.9vw, 16.5px) !important;
  }
}

@media (min-width: 641px) and (max-width: 720px) {
  html body.page-results.page-results:not(.page-proba) #methods {
    width: min(calc(100vw - 28px), 596px) !important;
    max-width: min(calc(100vw - 28px), 596px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    gap: 10px !important;
    overflow: visible !important;
  }

  html body.page-results.page-results:not(.page-proba) #methods .method,
  html body.page-results.page-results:not(.page-proba) #methods .method.active {
    flex: 0 1 132px !important;
    width: 132px !important;
    min-width: 0 !important;
    max-width: 132px !important;
  }
}
/* PAYTOUA 0.3.184: reset legacy relative offsets on mobile method rail */
@media (max-width: 720px) {
  html body.page-results.page-results:not(.page-proba) #methods {
    position: relative !important;
    left: 0 !important;
    right: auto !important;
    inset-inline-start: auto !important;
    inset-inline-end: auto !important;
    width: 100% !important;
    max-width: 596px !important;
    min-width: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
    transform: none !important;
  }
}

@media (max-width: 430px) {
  html body.page-results.page-results:not(.page-proba) #methods {
    width: 100% !important;
    max-width: 408px !important;
    left: 0 !important;
    right: auto !important;
  }
}

@media (min-width: 641px) and (max-width: 720px) {
  html body.page-results.page-results:not(.page-proba) #methods {
    width: 100% !important;
    max-width: 596px !important;
    left: 0 !important;
    right: auto !important;
  }
}
/* PAYTOUA 0.3.185: compact card normal-flow fallback before polish class lands */
@media (max-width: 720px) {
  html body.page-results.page-results:not(.page-proba) #results .card[data-service] {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: none !important;
    min-height: 176px !important;
    padding: 15px 14px 16px !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service] .row {
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(112px, min(38vw, 152px)) !important;
    align-items: start !important;
    justify-content: stretch !important;
    gap: 12px !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    overflow: visible !important;
    box-sizing: border-box !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service] .service-line,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service] .proba-result-main,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service] .row > div:first-child {
    position: static !important;
    min-width: 0 !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service] .proba-result-value,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service] .row > div:last-child {
    position: static !important;
    width: auto !important;
    min-width: 112px !important;
    max-width: 152px !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    padding: 3px 0 0 !important;
    overflow: visible !important;
    box-sizing: border-box !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service] .proba-result-meta-line,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service] .service-line .proba-service-copy > .proba-result-meta-line,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service] > .proba-result-meta-line {
    position: static !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 5px !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    margin: 13px 0 0 !important;
    overflow: visible !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service] .proba-result-actions,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service] .service-line .proba-service-copy > .proba-result-actions {
    position: static !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: min(206px, 100%) !important;
    height: auto !important;
    min-height: 40px !important;
    margin: 12px 0 0 !important;
    overflow: visible !important;
    transform: none !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service] .proba-result-cta,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service] .results-card-go-btn.proba-result-cta {
    position: static !important;
    width: min(206px, 100%) !important;
    min-height: 42px !important;
    height: 42px !important;
    margin: 0 !important;
    transform: none !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service] .proba-result-more-btn {
    position: static !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    top: auto !important;
    display: inline-flex !important;
    min-height: 28px !important;
    height: auto !important;
    margin: 10px 0 0 auto !important;
    transform: none !important;
  }
}
/* PAYTOUA 0.3.186: high-specificity compact card flow override */
@media (max-width: 720px) {
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card,
  html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card.best {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 176px !important;
    height: auto !important;
    max-height: none !important;
    padding: 15px 14px 16px !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }

  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .row,
  html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card .row,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card.best .row,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row {
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    inset: auto !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(112px, min(38vw, 152px)) !important;
    align-items: start !important;
    justify-content: stretch !important;
    gap: 12px !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    overflow: visible !important;
    box-sizing: border-box !important;
  }

  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-actions,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .proba-result-actions,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-actions,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-actions {
    position: static !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: min(206px, 100%) !important;
    height: auto !important;
    min-height: 40px !important;
    margin: 12px 0 0 !important;
    overflow: visible !important;
    transform: none !important;
  }

  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .proba-result-cta,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-cta,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .results-card-go-btn.proba-result-cta {
    position: static !important;
    width: min(206px, 100%) !important;
    min-height: 42px !important;
    height: 42px !important;
    margin: 0 !important;
    transform: none !important;
  }
}

/* PAYTOUA 0.3.187: mobile result-card density parity with /proba */
@media (max-width: 640px) {
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card,
  html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card.best {
    padding-bottom: 17px !important;
  }

  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-actions,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .proba-result-actions,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-actions,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-actions {
    position: static !important;
    width: min(206px, calc(100% - 100px)) !important;
    min-width: 156px !important;
    min-height: 40px !important;
    height: 42px !important;
    margin: 10px 0 0 !important;
    z-index: 4 !important;
  }

  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .proba-result-cta,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-cta,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .results-card-go-btn.proba-result-cta {
    width: 100% !important;
    min-height: 42px !important;
    height: 42px !important;
    padding: 0 12px !important;
    white-space: nowrap !important;
  }

  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .proba-result-more-btn,
  html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card .proba-result-more-btn,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-more-btn {
    position: absolute !important;
    right: 15px !important;
    left: auto !important;
    top: auto !important;
    bottom: 24px !important;
    display: inline-flex !important;
    width: auto !important;
    max-width: 84px !important;
    min-height: 28px !important;
    height: 28px !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
    z-index: 4 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
  }
}

/* PAYTOUA 0.3.190: upper-tablet method/result rhythm parity with /proba */
@media (min-width: 901px) and (max-width: 1040px) {
  html body.page-results.page-results:not(.page-proba) #results,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results,
  html body.page-results.page-results:not(.page-proba) .proba-results #results {
    width: min(720px, calc(100vw - 40px)) !important;
    max-width: 720px !important;
  }
}

@media (min-width: 1041px) and (max-width: 1179px) {
  html body.page-results.page-results:not(.page-proba) #methods {
    width: min(650px, calc(100% - 64px)) !important;
    max-width: 650px !important;
    min-height: 132px !important;
    gap: 14px !important;
    padding-bottom: 20px !important;
  }

  html body.page-results.page-results:not(.page-proba) #methods .method,
  html body.page-results.page-results:not(.page-proba) #methods .method.active {
    flex: 0 0 194px !important;
    width: 194px !important;
    min-width: 194px !important;
    max-width: 194px !important;
    height: 112px !important;
    min-height: 112px !important;
    max-height: 112px !important;
    padding: 12px 11px 11px !important;
  }

  html body.page-results.page-results:not(.page-proba) #results,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results,
  html body.page-results.page-results:not(.page-proba) .proba-results #results {
    width: min(780px, calc(100vw - 48px)) !important;
    max-width: 780px !important;
  }
}

/* PAYTOUA 0.3.191: mobile result-card first-paint height reservation */
@media (max-width: 640px) {
  html body.page-results.page-results:not(.page-proba) #results .card[data-service],
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service],
  html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service],
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card,
  html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card.best {
    min-height: 240px !important;
  }
}

/* PAYTOUA 0.3.192: smallest-mobile result-card first-paint exactness */
@media (max-width: 380px) {
  html body.page-results.page-results:not(.page-proba) #results .card[data-service],
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service],
  html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service],
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card,
  html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card.best {
    min-height: 242px !important;
  }
}
/* PAYTOUA 0.3.193: compact hero rhythm for 641-720px main results */
@media (min-width: 641px) and (max-width: 720px) {
  html body.page-results.page-results:not(.page-proba) #results-h1 {
    width: min(calc(100vw - 40px), 520px) !important;
    max-width: 520px !important;
    margin: 0 auto 8px !important;
    font-size: 31px !important;
    line-height: 1.06 !important;
  }

  html body.page-results.page-results:not(.page-proba) #results-desc {
    max-width: 510px !important;
    margin: 0 auto !important;
    font-size: 14.5px !important;
    line-height: 1.34 !important;
  }

  html body.page-results.page-results:not(.page-proba) .results-calc-wrap {
    margin-top: 16px !important;
  }

  html body.page-results.page-results:not(.page-proba) #methods {
    margin-top: -38px !important;
  }
}
/* PAYTOUA 0.3.194: align sender/recipient picker row on 901-1023px results */
@media (min-width: 901px) and (max-width: 1023px) {
  html body.page-results.page-results:not(.page-proba) #senderCountryWrap {
    margin-bottom: 20px !important;
  }
}
/* PAYTOUA 0.3.195: mobile method amounts and compact SmartPay result-card rhythm */
@media (max-width: 720px) {
  html body.page-results.page-results:not(.page-proba) #methods .method,
  html body.page-results.page-results:not(.page-proba) #methods .method.active {
    display: flex !important;
    flex-direction: column !important;
    overflow: visible !important;
  }

  html body.page-results.page-results:not(.page-proba) #methods .method-value,
  html body.page-results.page-results:not(.page-proba) #methods .method.active .method-value {
    display: block !important;
    flex: 0 0 20px !important;
    width: 100% !important;
    height: 20px !important;
    min-height: 20px !important;
    max-height: 20px !important;
    margin-top: auto !important;
    line-height: 20px !important;
    overflow: visible !important;
    white-space: nowrap !important;
    text-align: center !important;
    text-overflow: clip !important;
    font-variant-numeric: tabular-nums !important;
  }
}

@media (max-width: 640px) {
  html body.page-results.page-results:not(.page-proba) #results .card[data-service],
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service],
  html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service],
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card,
  html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card.best {
    min-height: 198px !important;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row {
    align-items: start !important;
    gap: 11px !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line {
    align-items: flex-start !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service {
    max-width: 100% !important;
    line-height: 1.12 !important;
    letter-spacing: 0 !important;
    overflow-wrap: anywhere !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .result-smartpay-subtitle {
    margin-top: 3px !important;
    line-height: 1.14 !important;
    letter-spacing: 0 !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-value,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row > div:last-child {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    justify-content: flex-start !important;
    padding-top: 2px !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .price {
    line-height: 1.04 !important;
    margin-top: 0 !important;
    font-variant-numeric: tabular-nums !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-meta-line,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card > .proba-result-meta-line {
    margin-top: 6px !important;
    gap: 3px !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-actions,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-actions {
    min-height: 38px !important;
    height: 38px !important;
    margin-top: 7px !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-cta,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .results-card-go-btn.proba-result-cta {
    min-height: 38px !important;
    height: 38px !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-more-btn {
    margin-top: 6px !important;
  }

  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .proba-result-actions,
  html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card .proba-result-actions,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-actions,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-actions {
    min-height: 38px !important;
    height: 38px !important;
    margin-top: 7px !important;
  }

  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .proba-result-cta,
  html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card .proba-result-cta,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .results-card-go-btn.proba-result-cta,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-cta {
    min-height: 38px !important;
    height: 38px !important;
  }
}

@media (max-width: 380px) {
  html body.page-results.page-results:not(.page-proba) #methods .method-value,
  html body.page-results.page-results:not(.page-proba) #methods .method.active .method-value {
    flex-basis: 19px !important;
    height: 19px !important;
    min-height: 19px !important;
    max-height: 19px !important;
    line-height: 19px !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service],
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service],
  html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service],
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card,
  html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card.best {
    min-height: 202px !important;
  }
}
/* PAYTOUA 0.3.196: proba method rail rhythm and result-card bottom alignment */
@media (max-width: 720px) {
  html body.page-results.page-results:not(.page-proba) #methods {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    width: min(calc(100vw - 14px), 640px) !important;
    max-width: 640px !important;
    min-width: 0 !important;
    min-height: 122px !important;
    margin-top: 2px !important;
    margin-right: calc(50% - 50vw + 7px) !important;
    margin-bottom: 16px !important;
    margin-left: calc(50% - 50vw + 7px) !important;
    padding: 0 7px 18px !important;
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x proximity !important;
    scroll-padding: 7px !important;
    scrollbar-width: none !important;
    -webkit-overflow-scrolling: touch !important;
    box-sizing: border-box !important;
    transform: none !important;
  }

  html body.page-results.page-results:not(.page-proba) #methods::-webkit-scrollbar {
    display: none !important;
  }

  html body.page-results.page-results:not(.page-proba) #methods .method,
  html body.page-results.page-results:not(.page-proba) #methods > button.method,
  html body.page-results.page-results:not(.page-proba) #methods .method.active {
    flex: 0 0 138px !important;
    width: 138px !important;
    min-width: 138px !important;
    max-width: 138px !important;
    min-height: 104px !important;
    height: 104px !important;
    max-height: 104px !important;
    padding: 12px 9px 11px !important;
    border-radius: 12px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    text-align: center !important;
    overflow: visible !important;
    scroll-snap-align: start !important;
    align-self: stretch !important;
    transform: none !important;
    box-sizing: border-box !important;
  }

  html body.page-results.page-results:not(.page-proba) #methods .method-icon,
  html body.page-results.page-results:not(.page-proba) #methods .proba-method-icon {
    flex: 0 0 34px !important;
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    min-height: 34px !important;
    margin: 0 !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #eef4ff !important;
  }

  html body.page-results.page-results:not(.page-proba) #methods .method-icon svg,
  html body.page-results.page-results:not(.page-proba) #methods .proba-method-icon svg {
    width: 21px !important;
    height: 21px !important;
  }

  html body.page-results.page-results:not(.page-proba) #methods .method-name {
    display: block !important;
    flex: 0 0 auto !important;
    width: 100% !important;
    min-height: 0 !important;
    max-height: none !important;
    margin: 0 !important;
    color: #64748b !important;
    font-size: 12px !important;
    line-height: 1.1 !important;
    font-weight: 760 !important;
    letter-spacing: 0 !important;
    text-align: center !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  html body.page-results.page-results:not(.page-proba) #methods .method-value,
  html body.page-results.page-results:not(.page-proba) #methods .method.active .method-value {
    display: block !important;
    flex: 0 0 auto !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    margin: 0 !important;
    color: #0f172a !important;
    font-size: 14px !important;
    line-height: 1.08 !important;
    font-weight: 880 !important;
    letter-spacing: 0 !important;
    text-align: center !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    font-variant-numeric: tabular-nums !important;
    transform: none !important;
  }

  html body.page-results.page-results:not(.page-proba) #methods .method.active::before {
    left: 50% !important;
    right: auto !important;
    top: auto !important;
    bottom: -7px !important;
    width: 13px !important;
    height: 13px !important;
    transform: translateX(-50%) rotate(45deg) !important;
  }

  html body.page-results.page-results:not(.page-proba) #methods .method.active::after {
    right: 10px !important;
    top: 10px !important;
    bottom: auto !important;
    left: auto !important;
    width: 7px !important;
    height: 7px !important;
    transform: none !important;
  }
}

@media (min-width: 480px) and (max-width: 720px) {
  html body.page-results.page-results:not(.page-proba) #methods {
    justify-content: center !important;
  }
}

@media (min-width: 641px) and (max-width: 720px) {
  html body.page-results.page-results:not(.page-proba) #methods {
    margin-top: 32px !important;
  }
}

@media (max-width: 640px) {
  html body.page-results.page-results:not(.page-proba) #results .card[data-service],
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service],
  html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service],
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card,
  html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card.best {
    position: relative !important;
    min-height: 204px !important;
    height: auto !important;
    padding: 12px 14px 58px !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row {
    height: 78px !important;
    min-height: 78px !important;
    max-height: 78px !important;
    align-items: start !important;
    gap: 11px !important;
    overflow: visible !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line {
    min-height: 44px !important;
    height: auto !important;
    align-items: flex-start !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-service-copy,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-mobile-provider-title {
    min-height: 44px !important;
    justify-content: flex-start !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-meta-line,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card > .proba-result-meta-line {
    margin-top: 4px !important;
    gap: 3px !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line .proba-result-meta-item,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line span {
    min-height: 13px !important;
    font-size: 10.8px !important;
    line-height: 1.12 !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-actions,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-actions,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .proba-result-actions,
  html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card .proba-result-actions {
    position: absolute !important;
    left: 14px !important;
    right: auto !important;
    top: auto !important;
    bottom: 12px !important;
    width: min(206px, calc(100% - 128px)) !important;
    min-height: 38px !important;
    height: 38px !important;
    margin: 0 !important;
    z-index: 3 !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-cta,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .results-card-go-btn.proba-result-cta,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .proba-result-cta,
  html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card .proba-result-cta {
    width: 100% !important;
    min-height: 38px !important;
    height: 38px !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-more-btn {
    position: absolute !important;
    right: 14px !important;
    bottom: 17px !important;
    left: auto !important;
    top: auto !important;
    margin: 0 !important;
    min-height: 28px !important;
    height: 28px !important;
    z-index: 4 !important;
  }
}

@media (min-width: 721px) {
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card,
  html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card.best {
    position: relative !important;
    min-height: 280px !important;
    height: 280px !important;
    padding: 18px 20px !important;
    overflow: hidden !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .row,
  html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card .row {
    position: static !important;
    height: 244px !important;
    min-height: 244px !important;
    max-height: 244px !important;
    overflow: visible !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line {
    height: auto !important;
    min-height: 54px !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-service-copy {
    position: static !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-meta-line,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card > .proba-result-meta-line {
    position: absolute !important;
    left: 20px !important;
    right: auto !important;
    bottom: 118px !important;
    width: min(460px, calc(100% - 300px)) !important;
    max-width: min(460px, calc(100% - 300px)) !important;
    margin: 0 !important;
    z-index: 2 !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-actions,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-actions,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .proba-result-actions,
  html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card .proba-result-actions {
    position: absolute !important;
    left: 20px !important;
    right: auto !important;
    top: auto !important;
    bottom: 52px !important;
    width: 202px !important;
    min-height: 43px !important;
    height: 43px !important;
    margin: 0 !important;
    z-index: 3 !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-value,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row > div:last-child {
    position: absolute !important;
    right: 20px !important;
    top: 18px !important;
    width: min(232px, calc(100% - 320px)) !important;
    min-width: 202px !important;
    max-width: 232px !important;
    height: 244px !important;
    max-height: 244px !important;
    padding: 0 !important;
    z-index: 2 !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-more-btn {
    position: absolute !important;
    right: 0 !important;
    top: auto !important;
    bottom: 34px !important;
    left: auto !important;
    min-height: 28px !important;
    height: 28px !important;
    margin: 0 !important;
    z-index: 4 !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .rate-timestamp,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-updated,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .card-service-updated-at {
    position: absolute !important;
    left: 20px !important;
    right: auto !important;
    bottom: 18px !important;
    margin: 0 !important;
    max-width: 260px !important;
    z-index: 2 !important;
  }
}
/* PAYTOUA 0.3.196a: keep three method cards visible on small mobile widths */
@media (max-width: 479px) {
  html body.page-results.page-results:not(.page-proba) #methods {
    width: calc(100vw - 14px) !important;
    max-width: calc(100vw - 14px) !important;
    justify-content: center !important;
    overflow-x: hidden !important;
  }

  html body.page-results.page-results:not(.page-proba) #methods .method,
  html body.page-results.page-results:not(.page-proba) #methods > button.method,
  html body.page-results.page-results:not(.page-proba) #methods .method.active {
    flex: 0 0 clamp(104px, calc((100vw - 48px) / 3), 127px) !important;
    width: clamp(104px, calc((100vw - 48px) / 3), 127px) !important;
    min-width: clamp(104px, calc((100vw - 48px) / 3), 127px) !important;
    max-width: clamp(104px, calc((100vw - 48px) / 3), 127px) !important;
    padding: 12px 6px 11px !important;
  }

  html body.page-results.page-results:not(.page-proba) #methods .method-icon,
  html body.page-results.page-results:not(.page-proba) #methods .proba-method-icon {
    flex-basis: 30px !important;
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    min-height: 30px !important;
  }

  html body.page-results.page-results:not(.page-proba) #methods .method-icon svg,
  html body.page-results.page-results:not(.page-proba) #methods .proba-method-icon svg {
    width: 19px !important;
    height: 19px !important;
  }

  html body.page-results.page-results:not(.page-proba) #methods .method-name {
    font-size: 11.5px !important;
  }

  html body.page-results.page-results:not(.page-proba) #methods .method-value,
  html body.page-results.page-results:not(.page-proba) #methods .method.active .method-value {
    font-size: 13px !important;
  }
}
/* PAYTOUA 0.3.196b: pin desktop quote timestamp below CTA */
@media (min-width: 721px) {
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy .rate-timestamp,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy .proba-result-updated,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy .card-service-updated-at,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .service-line .proba-service-copy .rate-timestamp,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .service-line .proba-service-copy .proba-result-updated,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .service-line .proba-service-copy .card-service-updated-at {
    position: absolute !important;
    display: block !important;
    left: 20px !important;
    right: auto !important;
    top: auto !important;
    bottom: 18px !important;
    width: auto !important;
    max-width: 260px !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
    z-index: 2 !important;
  }
}
/* PAYTOUA 0.3.197: mobile card copy fit, 4-method rail scroll, and picker layers */
html body.page-home .nav-lang-dropdown,
html body.page-results.page-results:not(.page-proba) .nav-lang-dropdown {
  position: relative !important;
  z-index: 9800 !important;
}

html body.page-home .nav-lang-list,
html body.page-results.page-results:not(.page-proba) .nav-lang-list {
  z-index: 9801 !important;
}

html body.page-home .smartpay-bank-backdrop,
html body.page-results.page-results:not(.page-proba) .smartpay-bank-backdrop {
  z-index: 9500 !important;
}

html body.page-home .smartpay-bank-popup,
html body.page-results.page-results:not(.page-proba) .smartpay-bank-popup {
  z-index: 9501 !important;
}

html body.page-home .country-panel,
html body.page-results.page-results:not(.page-proba) .country-panel {
  z-index: 9600 !important;
}

html body.page-home.country-sheet-open::before,
html body.page-results.page-results:not(.page-proba).country-sheet-open::before,
html.country-sheet-open body.page-home::before,
html.country-sheet-open body.page-results.page-results:not(.page-proba)::before {
  z-index: 9590 !important;
}

@media (min-width: 641px) {
  html body.page-home .hero,
  html body.page-home .calc-container,
  html body.page-home .calc-mockup,
  html body.page-home .country-picker-wrap,
  html body.page-results.page-results:not(.page-proba) .results-top-bg,
  html body.page-results.page-results:not(.page-proba) .results-hero,
  html body.page-results.page-results:not(.page-proba) .results-calc-wrap,
  html body.page-results.page-results:not(.page-proba) #calcBar,
  html body.page-results.page-results:not(.page-proba) #calcBar .calc-mockup,
  html body.page-results.page-results:not(.page-proba) #calcBar .country-picker-wrap {
    overflow: visible !important;
  }
}

@media (min-width: 641px) and (max-width: 900px) {
  html body.page-home .country-panel:not([hidden]),
  html body.page-results.page-results:not(.page-proba) .country-panel:not([hidden]) {
    position: fixed !important;
    left: 50% !important;
    right: auto !important;
    top: max(72px, calc(12px + env(safe-area-inset-top, 0px))) !important;
    width: min(520px, calc(100vw - 32px)) !important;
    max-width: min(520px, calc(100vw - 32px)) !important;
    max-height: calc(100dvh - 96px) !important;
    transform: translateX(-50%) !important;
    border-radius: 20px !important;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.26) !important;
    overflow: hidden !important;
  }

  html body.page-home .country-panel:not([hidden]) .country-list,
  html body.page-results.page-results:not(.page-proba) .country-panel:not([hidden]) .country-list {
    max-height: calc(100dvh - 206px) !important;
  }
}

@media (max-width: 640px) {
  html body.page-home .calc-mockup,
  html body.page-results.page-results:not(.page-proba) #calcBar .calc-mockup,
  html body.page-home .amount-row,
  html body.page-results.page-results:not(.page-proba) #calcBar .amount-row,
  html body.page-home .amount-row > div:first-child,
  html body.page-results.page-results:not(.page-proba) #calcBar .amount-row > div:first-child,
  html body.page-home .amount-field-send,
  html body.page-results.page-results:not(.page-proba) #calcBar .amount-field-send {
    overflow: visible !important;
  }

  html body.page-home .amount-row > div:first-child,
  html body.page-results.page-results:not(.page-proba) #calcBar .amount-row > div:first-child {
    position: relative !important;
    padding-top: 0 !important;
  }

  html body.page-home .amount-mode-switch,
  html body.page-results.page-results:not(.page-proba) #calcBar .amount-mode-switch {
    position: absolute !important;
    left: 12px !important;
    top: 0 !important;
    transform: translateY(-50%) !important;
    z-index: 80 !important;
    height: 30px !important;
    min-height: 30px !important;
    margin: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 2px !important;
    padding: 2px !important;
    border-radius: 999px !important;
  }

  html body.page-home .amount-mode-btn,
  html body.page-results.page-results:not(.page-proba) #calcBar .amount-mode-btn {
    height: 26px !important;
    min-height: 26px !important;
    line-height: 1 !important;
  }

  html body.page-home .amount-field-send,
  html body.page-results.page-results:not(.page-proba) #calcBar .amount-field-send {
    position: relative !important;
    padding-top: 12px !important;
  }

  html body.page-home #smartPayRow.smartpay-row,
  html body.page-results.page-results:not(.page-proba) #calcBar #smartPayRow {
    justify-self: center !important;
    align-self: center !important;
    margin-top: 10px !important;
    margin-bottom: 0 !important;
  }
}

@media (max-width: 720px) {
  html body.page-results.page-results:not(.page-proba) #methods:has(.method:nth-child(4)) {
    justify-content: flex-start !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding-left: 7px !important;
    padding-right: 7px !important;
    scroll-snap-type: x proximity !important;
    scroll-padding-left: 7px !important;
    touch-action: pan-x pan-y !important;
  }

  html body.page-results.page-results:not(.page-proba) #methods:has(.method:nth-child(4)) .method,
  html body.page-results.page-results:not(.page-proba) #methods:has(.method:nth-child(4)) > button.method,
  html body.page-results.page-results:not(.page-proba) #methods:has(.method:nth-child(4)) .method.active {
    flex: 0 0 114px !important;
    width: 114px !important;
    min-width: 114px !important;
    max-width: 114px !important;
    scroll-snap-align: start !important;
  }
}

@media (max-width: 479px) {
  html body.page-results.page-results:not(.page-proba) #methods:has(.method:nth-child(4)) {
    width: calc(100vw - 14px) !important;
    max-width: calc(100vw - 14px) !important;
    margin-left: calc(50% - 50vw + 7px) !important;
    margin-right: calc(50% - 50vw + 7px) !important;
  }
}

@media (max-width: 640px) {
  html body.page-results.page-results:not(.page-proba) #results .card[data-service],
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service],
  html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service],
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card,
  html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card.best {
    min-height: 184px !important;
    padding: 10px 12px 50px !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row {
    grid-template-columns: minmax(0, 1fr) minmax(138px, min(43vw, 156px)) !important;
    gap: 8px !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    align-items: start !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line {
    min-height: 0 !important;
    height: auto !important;
    margin: 0 !important;
    gap: 8px !important;
    align-items: flex-start !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-logo-stack {
    flex: 0 0 34px !important;
    width: 34px !important;
    min-width: 34px !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-service-copy,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-mobile-provider-title {
    min-height: 0 !important;
    max-width: 100% !important;
    justify-content: flex-start !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: baseline !important;
    gap: 0 3px !important;
    max-width: 100% !important;
    font-size: 15px !important;
    line-height: 1.08 !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    overflow-wrap: normal !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service .proba-provider-name {
    flex: 0 1 auto !important;
    min-width: 0 !important;
    max-width: 100% !important;
    font-size: inherit !important;
    line-height: inherit !important;
    white-space: nowrap !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service .proba-provider-bank {
    flex: 0 1 auto !important;
    min-width: 0 !important;
    max-width: 100% !important;
    color: #475569 !important;
    font-size: 10.25px !important;
    line-height: 1.05 !important;
    font-weight: 850 !important;
    white-space: nowrap !important;
    overflow: visible !important;
    text-overflow: clip !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .result-smartpay-subtitle {
    max-width: 100% !important;
    margin-top: 2px !important;
    color: #64748b !important;
    font-size: 9.2px !important;
    line-height: 1.06 !important;
    font-weight: 820 !important;
    white-space: nowrap !important;
    overflow: visible !important;
    text-overflow: clip !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-value,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row > div:last-child {
    min-width: 138px !important;
    max-width: 156px !important;
    padding-top: 0 !important;
    align-items: flex-end !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .price {
    width: auto !important;
    max-width: 156px !important;
    margin: 0 !important;
    font-size: clamp(17px, 4.55vw, 19.5px) !important;
    line-height: 1.02 !important;
    letter-spacing: 0 !important;
    white-space: nowrap !important;
    overflow: visible !important;
    text-overflow: clip !important;
    text-align: right !important;
    font-variant-numeric: tabular-nums !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-diff {
    max-width: 156px !important;
    margin-top: 3px !important;
    font-size: 10px !important;
    line-height: 1.05 !important;
    white-space: nowrap !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-meta-line,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card > .proba-result-meta-line {
    margin-top: 5px !important;
    gap: 2px !important;
    max-height: 40px !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line .proba-result-meta-item,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line span {
    min-height: 12px !important;
    height: 12px !important;
    font-size: 10px !important;
    line-height: 1.05 !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-icon,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-icon svg {
    width: 11px !important;
    height: 11px !important;
    min-width: 11px !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-actions,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-actions,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .proba-result-actions,
  html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card .proba-result-actions {
    left: 12px !important;
    bottom: 8px !important;
    width: min(196px, calc(100% - 118px)) !important;
    min-height: 36px !important;
    height: 36px !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-cta,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .results-card-go-btn.proba-result-cta,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .proba-result-cta,
  html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card .proba-result-cta {
    min-height: 36px !important;
    height: 36px !important;
    padding: 0 10px !important;
    font-size: 11px !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-more-btn {
    right: 12px !important;
    bottom: 12px !important;
    min-height: 26px !important;
    height: 26px !important;
    font-size: 11px !important;
  }
}

@media (max-width: 380px) {
  html body.page-results.page-results:not(.page-proba) #results .card[data-service],
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service],
  html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service],
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card,
  html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card.best {
    min-height: 188px !important;
  }
}
/* PAYTOUA 0.3.197 END */
/* PAYTOUA 0.3.197a: readable 4-method rail labels on medium mobile/tablet */
@media (max-width: 720px) {
  html body.page-results.page-results:not(.page-proba) #methods:has(.method:nth-child(4)) .method-name {
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    line-height: 1.08 !important;
  }
}

@media (min-width: 480px) and (max-width: 640px) {
  html body.page-results.page-results:not(.page-proba) #methods:has(.method:nth-child(4)) .method,
  html body.page-results.page-results:not(.page-proba) #methods:has(.method:nth-child(4)) > button.method,
  html body.page-results.page-results:not(.page-proba) #methods:has(.method:nth-child(4)) .method.active {
    flex-basis: 124px !important;
    width: 124px !important;
    min-width: 124px !important;
    max-width: 124px !important;
  }
}

@media (min-width: 641px) and (max-width: 720px) {
  html body.page-results.page-results:not(.page-proba) #methods:has(.method:nth-child(4)) {
    justify-content: center !important;
    overflow-x: visible !important;
  }

  html body.page-results.page-results:not(.page-proba) #methods:has(.method:nth-child(4)) .method,
  html body.page-results.page-results:not(.page-proba) #methods:has(.method:nth-child(4)) > button.method,
  html body.page-results.page-results:not(.page-proba) #methods:has(.method:nth-child(4)) .method.active {
    flex-basis: 132px !important;
    width: 132px !important;
    min-width: 132px !important;
    max-width: 132px !important;
  }
}
/* PAYTOUA 0.3.197a END */
/* PAYTOUA 0.3.197b: mobile SmartPay pill visual centering */
@media (max-width: 640px) {
  html body.page-home #smartPayRow.smartpay-row,
  html body.page-results.page-results:not(.page-proba) #calcBar #smartPayRow {
    transform: translateY(-12px) !important;
  }
}
/* PAYTOUA 0.3.197b END */
/* PAYTOUA 0.3.198: mobile card balance, SmartPay logos, and home glass calculator */
html body.page-home #smartPayRow[hidden],
html body.page-results.page-results:not(.page-proba) #calcBar #smartPayRow[hidden] {
  display: none !important;
}

html body.page-home #smartPayRow .smartpay-toggle:has(input:checked),
html body.page-results.page-results:not(.page-proba) #calcBar #smartPayRow .smartpay-toggle:has(input:checked) {
  border-color: rgba(49, 91, 220, 0.96) !important;
  background: #315bdc !important;
  color: #fff !important;
  box-shadow: 0 0 0 2px rgba(49, 91, 220, 0.18) !important;
}
html body.page-home #smartPayRow .smartpay-toggle:has(input:checked)::before,
html body.page-results.page-results:not(.page-proba) #calcBar #smartPayRow .smartpay-toggle:has(input:checked)::before {
  background: #fff !important;
}
html body.page-home #smartPayRow .smartpay-toggle:has(input:checked)::after,
html body.page-results.page-results:not(.page-proba) #calcBar #smartPayRow .smartpay-toggle:has(input:checked)::after {
  background: #315bdc !important;
  box-shadow: inset 0 0 0 2px #fff !important;
}

html body.page-home #smartPayRow.smartpay-row,
html body.page-results.page-results:not(.page-proba) #calcBar #smartPayRow {
  width: fit-content !important;
  max-width: min(calc(100vw - 28px), 430px) !important;
  justify-content: center !important;
  overflow: visible !important;
}
html body.page-home #smartPayRow .smartpay-bank-wrap,
html body.page-results.page-results:not(.page-proba) #calcBar #smartPayRow .smartpay-bank-wrap {
  flex: 0 1 auto !important;
  max-width: none !important;
  overflow: visible !important;
}
html body.page-home #smartPayBankTrigger.proba-smartpay-icon-trigger,
html body.page-results.page-results:not(.page-proba) #calcBar #smartPayBankTrigger.proba-smartpay-icon-trigger,
html body.page-results.page-results:not(.page-proba) #calcBar .smartpay-bank-trigger.proba-smartpay-icon-trigger {
  width: auto !important;
  min-width: 76px !important;
  max-width: min(230px, calc(100vw - 178px)) !important;
  grid-template-columns: minmax(0, max-content) 34px !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  border: 0 !important;
  overflow: visible !important;
}
html body.page-home .proba-smartpay-bank-icons,
html body.page-results.page-results:not(.page-proba) .proba-smartpay-bank-icons {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  min-width: 0 !important;
}
html body.page-home .proba-smartpay-bank-icon,
html body.page-results.page-results:not(.page-proba) .proba-smartpay-bank-icon,
html body.page-home .proba-smartpay-bank-icon.is-selected,
html body.page-results.page-results:not(.page-proba) .proba-smartpay-bank-icon.is-selected {
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  min-height: 28px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}
html body.page-home .proba-smartpay-bank-icon img,
html body.page-results.page-results:not(.page-proba) .proba-smartpay-bank-icon img {
  width: 28px !important;
  height: 28px !important;
  aspect-ratio: 1 / 1 !important;
  object-fit: contain !important;
  display: block !important;
  border-radius: 999px !important;
}

@media (min-width: 769px) {
  html body.page-home .calc-mockup {
    border: 1px solid rgba(255, 255, 255, 0.34) !important;
    background: rgba(255, 255, 255, 0.14) !important;
    box-shadow: 0 26px 70px rgba(0, 19, 107, 0.22) !important;
    backdrop-filter: blur(18px) !important;
    -webkit-backdrop-filter: blur(18px) !important;
  }
  html body.page-home #smartPayRow.smartpay-row {
    margin-left: auto !important;
    margin-right: auto !important;
    align-self: center !important;
    justify-self: center !important;
  }
}

@media (max-width: 640px) {
  html body.page-results.page-results:not(.page-proba) #methods:not(:has(.method:nth-child(4))) {
    width: min(calc(100vw - 28px), 404px) !important;
    max-width: min(calc(100vw - 28px), 404px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    justify-content: center !important;
    overflow-x: visible !important;
    overflow-y: visible !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    gap: 10px !important;
  }
  html body.page-results.page-results:not(.page-proba) #methods:not(:has(.method:nth-child(4))) .method,
  html body.page-results.page-results:not(.page-proba) #methods:not(:has(.method:nth-child(4))) > button.method,
  html body.page-results.page-results:not(.page-proba) #methods:not(:has(.method:nth-child(4))) .method.active {
    flex: 0 0 clamp(104px, calc((100vw - 54px) / 3), 128px) !important;
    width: clamp(104px, calc((100vw - 54px) / 3), 128px) !important;
    min-width: clamp(104px, calc((100vw - 54px) / 3), 128px) !important;
    max-width: clamp(104px, calc((100vw - 54px) / 3), 128px) !important;
  }
  html body.page-results.page-results:not(.page-proba) #methods:has(.method:nth-child(4)) {
    justify-content: flex-start !important;
    overflow-x: auto !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service],
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service],
  html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service],
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card,
  html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card.best {
    min-height: 168px !important;
    padding: 10px 12px 48px !important;
  }
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row {
    grid-template-columns: minmax(0, 1fr) minmax(128px, min(41vw, 148px)) !important;
    gap: 8px !important;
    height: auto !important;
    min-height: 42px !important;
    max-height: none !important;
    align-items: start !important;
  }
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line {
    min-height: 40px !important;
    height: 40px !important;
    align-items: center !important;
    gap: 8px !important;
    overflow: visible !important;
  }
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-logo-stack {
    position: relative !important;
    flex: 0 0 38px !important;
    width: 38px !important;
    min-width: 38px !important;
    height: 38px !important;
    min-height: 38px !important;
    aspect-ratio: 1 / 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: visible !important;
  }
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-provider-logo {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    min-height: 38px !important;
    aspect-ratio: 1 / 1 !important;
    object-fit: contain !important;
    display: block !important;
  }
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-bank-logo-mini {
    position: absolute !important;
    right: -4px !important;
    bottom: -4px !important;
    width: 17px !important;
    height: 17px !important;
    min-width: 17px !important;
    min-height: 17px !important;
    aspect-ratio: 1 / 1 !important;
    object-fit: contain !important;
    border-radius: 999px !important;
    border: 1.5px solid #fff !important;
    background: #fff !important;
    box-shadow: 0 3px 8px rgba(15, 23, 42, 0.18) !important;
  }
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-service-copy,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-mobile-provider-title {
    min-height: 38px !important;
    height: 38px !important;
    justify-content: center !important;
    align-self: center !important;
    overflow: visible !important;
  }
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service {
    align-items: baseline !important;
    flex-wrap: nowrap !important;
    gap: 0 2px !important;
    font-size: 16.5px !important;
    line-height: 1.02 !important;
    white-space: nowrap !important;
    overflow: visible !important;
    max-width: 100% !important;
  }
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service .proba-provider-name {
    font-size: inherit !important;
    line-height: inherit !important;
    min-width: 0 !important;
    max-width: calc(100% - 42px) !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service .proba-provider-bank {
    display: inline-block !important;
    max-width: 76px !important;
    color: #475569 !important;
    font-size: 10.25px !important;
    line-height: 1 !important;
    font-weight: 760 !important;
    transform: translateY(-0.55em) !important;
    transform-origin: left center !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .result-smartpay-subtitle {
    margin-top: 1px !important;
    font-size: 9.4px !important;
    line-height: 1 !important;
    font-weight: 650 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-value,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row > div:last-child {
    min-width: 128px !important;
    max-width: 148px !important;
    padding-top: 1px !important;
    align-items: flex-end !important;
  }
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .price {
    max-width: 148px !important;
    font-size: clamp(16px, 4.2vw, 18.5px) !important;
    line-height: 1.02 !important;
    white-space: nowrap !important;
  }
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-meta-line,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card > .proba-result-meta-line {
    margin-top: 6px !important;
    gap: 5px !important;
    max-height: 48px !important;
    transform: translateY(-2px) !important;
  }
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line .proba-result-meta-item,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line span {
    min-height: 13px !important;
    height: 13px !important;
    font-size: 10.4px !important;
    line-height: 1.1 !important;
    font-weight: 400 !important;
  }
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line strong {
    font-weight: 400 !important;
  }
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-actions,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-actions,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .proba-result-actions,
  html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card .proba-result-actions {
    bottom: 9px !important;
    width: min(198px, calc(100% - 124px)) !important;
    height: 36px !important;
    min-height: 36px !important;
  }
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-more-btn {
    bottom: 8px !important;
    height: 28px !important;
    min-height: 28px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
}

@media (max-width: 380px) {
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card.best {
    min-height: 172px !important;
  }
}
/* PAYTOUA 0.3.198 END */
/* PAYTOUA 0.3.198a: mobile more-info vertical alignment with CTA */
@media (max-width: 640px) {
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-more-btn,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .proba-result-more-btn,
  html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card .proba-result-more-btn {
    position: absolute !important;
    right: 12px !important;
    bottom: 8px !important;
    height: 28px !important;
    min-height: 28px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
}
/* PAYTOUA 0.3.198a END */
/* PAYTOUA 0.3.199: square provider logos and tablet card action alignment */
html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-logo-stack,
html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .proba-logo-stack,
html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card .proba-logo-stack {
  box-sizing: border-box !important;
  aspect-ratio: 1 / 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: visible !important;
}
html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-provider-logo,
html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .proba-provider-logo,
html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card .proba-provider-logo {
  box-sizing: border-box !important;
  width: 48px !important;
  height: 48px !important;
  min-width: 48px !important;
  min-height: 48px !important;
  max-width: 48px !important;
  max-height: 48px !important;
  aspect-ratio: 1 / 1 !important;
  object-fit: contain !important;
  display: block !important;
}
@media (max-width: 640px) {
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-logo-stack,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .proba-logo-stack,
  html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card .proba-logo-stack {
    flex: 0 0 38px !important;
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    min-height: 38px !important;
    max-width: 38px !important;
    max-height: 38px !important;
  }
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-provider-logo,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .proba-provider-logo,
  html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card .proba-provider-logo {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    min-height: 38px !important;
    max-width: 38px !important;
    max-height: 38px !important;
  }
}
@media (min-width: 641px) and (max-width: 767px) {
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .service-line,
  html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card .service-line {
    min-height: 44px !important;
    height: 44px !important;
    align-items: center !important;
  }
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-logo-stack,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .proba-logo-stack,
  html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card .proba-logo-stack,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-provider-logo,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .proba-provider-logo,
  html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card .proba-provider-logo {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    min-height: 42px !important;
    max-width: 42px !important;
    max-height: 42px !important;
  }
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-service-copy,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .proba-service-copy,
  html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card .proba-service-copy {
    min-height: 42px !important;
    height: 42px !important;
    justify-content: center !important;
  }
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-actions,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .proba-result-actions,
  html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card .proba-result-actions,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-actions {
    bottom: 12px !important;
    height: 36px !important;
    min-height: 36px !important;
  }
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-more-btn,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .proba-result-more-btn,
  html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card .proba-result-more-btn {
    bottom: 16px !important;
    height: 28px !important;
    min-height: 28px !important;
  }
}
/* PAYTOUA 0.3.199 END */
/* PAYTOUA 0.3.200: SmartPay bank logo and result-card responsive stability */
html body.page-results.page-results:not(.page-proba) #results,
html body.page-results.page-results:not(.page-proba) .results-content > .container #results,
html body.page-results.page-results:not(.page-proba) .proba-results #results {
  box-sizing: border-box !important;
}
html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card,
html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card,
html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card {
  box-sizing: border-box !important;
  overflow: visible !important;
}
html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-logo-stack,
html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .proba-logo-stack,
html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card .proba-logo-stack {
  overflow: visible !important;
  z-index: 1 !important;
}
html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-bank-logo-mini,
html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .proba-bank-logo-mini,
html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card .proba-bank-logo-mini {
  width: 24px !important;
  height: 24px !important;
  min-width: 24px !important;
  min-height: 24px !important;
  max-width: 24px !important;
  max-height: 24px !important;
  right: -9px !important;
  bottom: -9px !important;
  transform: translate(2px, 2px) !important;
  z-index: 3 !important;
  border: 2px solid #fff !important;
  background: #fff !important;
  box-shadow: 0 7px 14px rgba(15, 23, 42, 0.24), 0 2px 5px rgba(15, 23, 42, 0.18) !important;
  filter: drop-shadow(0 2px 2px rgba(15, 23, 42, 0.12)) !important;
}
html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row {
  align-items: start !important;
}
html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-value,
html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row > div:last-child {
  justify-content: flex-start !important;
  padding-top: 2px !important;
}
html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .price {
  line-height: 1.02 !important;
  text-align: right !important;
  white-space: nowrap !important;
}
@media (max-width: 640px) {
  html body.page-results.page-results:not(.page-proba) .results-content,
  html body.page-results.page-results:not(.page-proba) .proba-results {
    overflow-x: clip !important;
  }
  html body.page-results.page-results:not(.page-proba) #results,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results,
  html body.page-results.page-results:not(.page-proba) .proba-results #results {
    width: min(100%, calc(100vw - 28px)) !important;
    max-width: 596px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card,
  html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card.best {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    min-height: 158px !important;
    padding: 10px 12px 46px !important;
  }
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row {
    grid-template-columns: minmax(0, 1fr) minmax(118px, min(36vw, 140px)) !important;
    gap: 8px !important;
    align-items: start !important;
    min-height: 40px !important;
    overflow: visible !important;
  }
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line {
    min-height: 40px !important;
    height: 40px !important;
    align-items: center !important;
    gap: 8px !important;
    overflow: visible !important;
  }
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-logo-stack,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .proba-logo-stack,
  html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card .proba-logo-stack,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-provider-logo,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .proba-provider-logo,
  html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card .proba-provider-logo {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    min-height: 38px !important;
    max-width: 38px !important;
    max-height: 38px !important;
  }
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-bank-logo-mini,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .proba-bank-logo-mini,
  html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card .proba-bank-logo-mini {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    min-height: 20px !important;
    max-width: 20px !important;
    max-height: 20px !important;
    right: -6px !important;
    bottom: -6px !important;
    transform: translate(1px, 1px) !important;
    border-width: 1.75px !important;
    box-shadow: 0 6px 12px rgba(15, 23, 42, 0.24), 0 1px 4px rgba(15, 23, 42, 0.18) !important;
  }
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-service-copy,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-mobile-provider-title {
    min-width: 0 !important;
    min-height: 38px !important;
    height: 38px !important;
    justify-content: center !important;
    overflow: visible !important;
  }
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service {
    display: flex !important;
    align-items: baseline !important;
    flex-wrap: nowrap !important;
    gap: 0 2px !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow: visible !important;
    text-overflow: clip !important;
    white-space: nowrap !important;
    font-size: clamp(17.2px, 4.55vw, 18.2px) !important;
    line-height: 1.02 !important;
  }
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service .proba-provider-name {
    flex: 0 0 auto !important;
    width: auto !important;
    min-width: max-content !important;
    max-width: none !important;
    overflow: visible !important;
    text-overflow: clip !important;
    white-space: nowrap !important;
    font-size: inherit !important;
    line-height: inherit !important;
  }
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service .proba-provider-bank {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    max-width: min(20vw, 72px) !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    font-size: 10.25px !important;
    line-height: 1 !important;
    font-weight: 760 !important;
    transform: translateY(-0.58em) !important;
  }
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .result-smartpay-subtitle {
    max-width: 100% !important;
    margin-top: 1px !important;
    overflow: visible !important;
    text-overflow: clip !important;
    white-space: nowrap !important;
    font-size: 9.4px !important;
    line-height: 1 !important;
  }
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-value,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row > div:last-child {
    min-width: 118px !important;
    max-width: 140px !important;
    padding-top: 0 !important;
    align-items: flex-end !important;
  }
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .price {
    max-width: 140px !important;
    font-size: clamp(15.6px, 4.15vw, 17.6px) !important;
    line-height: 1.02 !important;
    white-space: nowrap !important;
    letter-spacing: 0 !important;
  }
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-meta-line,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card > .proba-result-meta-line {
    margin-top: 5px !important;
    gap: 6px !important;
    max-height: none !important;
    transform: none !important;
  }
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line .proba-result-meta-item,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line span {
    min-height: 14px !important;
    height: 14px !important;
    font-size: 10.4px !important;
    line-height: 1.18 !important;
    font-weight: 400 !important;
    align-items: center !important;
  }
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-actions,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .proba-result-actions,
  html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card .proba-result-actions,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-actions {
    bottom: 10px !important;
    height: 34px !important;
    min-height: 34px !important;
  }
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-more-btn,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .proba-result-more-btn,
  html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card .proba-result-more-btn {
    bottom: 12px !important;
    height: 26px !important;
    min-height: 26px !important;
  }
}
@media (max-width: 380px) {
  html body.page-results.page-results:not(.page-proba) #results,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results,
  html body.page-results.page-results:not(.page-proba) .proba-results #results {
    width: min(100%, calc(100vw - 24px)) !important;
  }
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row {
    grid-template-columns: minmax(0, 1fr) minmax(114px, 126px) !important;
    gap: 7px !important;
  }
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service {
    font-size: clamp(16.6px, 4.65vw, 17.4px) !important;
  }
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service .proba-provider-bank {
    max-width: 54px !important;
    font-size: 9.8px !important;
  }
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .price {
    font-size: clamp(15px, 4.35vw, 16.6px) !important;
  }
}
@media (min-width: 641px) and (max-width: 767px) {
  html body.page-results.page-results:not(.page-proba) #results,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results,
  html body.page-results.page-results:not(.page-proba) .proba-results #results {
    width: min(100%, calc(100vw - 36px)) !important;
    max-width: 596px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card,
  html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card.best {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 166px !important;
    padding: 12px 16px 50px !important;
  }
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row {
    grid-template-columns: minmax(0, 1fr) minmax(146px, 168px) !important;
    gap: 12px !important;
    align-items: start !important;
    overflow: visible !important;
  }
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-bank-logo-mini,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .proba-bank-logo-mini,
  html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card .proba-bank-logo-mini {
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    min-height: 22px !important;
    max-width: 22px !important;
    max-height: 22px !important;
    right: -7px !important;
    bottom: -7px !important;
    transform: translate(1.5px, 1.5px) !important;
    border-width: 2px !important;
    box-shadow: 0 7px 13px rgba(15, 23, 42, 0.24), 0 2px 5px rgba(15, 23, 42, 0.16) !important;
  }
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service .proba-provider-name {
    max-width: none !important;
    overflow: visible !important;
    text-overflow: clip !important;
    white-space: nowrap !important;
  }
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service .proba-provider-bank {
    max-width: 112px !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-value,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row > div:last-child {
    padding-top: 1px !important;
    align-items: flex-end !important;
  }
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .price {
    max-width: 168px !important;
    font-size: clamp(20px, 3.35vw, 23px) !important;
    line-height: 1.02 !important;
  }
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-meta-line,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card > .proba-result-meta-line {
    transform: none !important;
  }
}
@media (min-width: 768px) {
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .service-line,
  html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card .service-line {
    align-items: center !important;
  }
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service .proba-provider-name {
    max-width: none !important;
    overflow: visible !important;
    text-overflow: clip !important;
    white-space: nowrap !important;
  }
}
/* PAYTOUA 0.3.200 END */
/* PAYTOUA 0.3.200a: result-card micro-alignment after responsive audit */
html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-bank-logo-mini,
html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .proba-bank-logo-mini,
html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card .proba-bank-logo-mini {
  top: auto !important;
  left: auto !important;
}
html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-value,
html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row > div:last-child,
html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .proba-result-value,
html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card .proba-result-value {
  align-self: start !important;
  margin-top: 0 !important;
  transform: none !important;
}
html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .price,
html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .price,
html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card .price {
  margin-top: 0 !important;
  transform: none !important;
}
@media (max-width: 640px) {
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-service-copy,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-mobile-provider-title {
    transform: translateY(2px) !important;
  }
}
@media (min-width: 641px) and (max-width: 767px) {
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-value,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row > div:last-child {
    align-self: start !important;
    padding-top: 0 !important;
  }
}
/* PAYTOUA 0.3.200a END */
/* PAYTOUA 0.3.200b: compact-tablet result-card flow reset */
@media (min-width: 641px) and (max-width: 767px) {
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .row,
  html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card .row {
    position: static !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    display: grid !important;
    align-items: start !important;
    padding: 0 !important;
  }
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-main,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row > div:first-child,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-service-copy,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-mobile-provider-title,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service {
    position: static !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    margin-top: 0 !important;
    transform: none !important;
  }
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line {
    min-height: 44px !important;
    height: 44px !important;
    align-items: center !important;
  }
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-bank-logo-mini,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .proba-bank-logo-mini,
  html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card .proba-bank-logo-mini {
    top: 24px !important;
    bottom: auto !important;
    right: -9px !important;
    left: auto !important;
    transform: translate(2px, 2px) !important;
  }
}
/* PAYTOUA 0.3.200b END */
/* PAYTOUA 0.3.200c: compact-tablet title and bank-logo visual offset */
@media (min-width: 641px) and (max-width: 767px) {
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .result-smartpay-subtitle {
    position: relative !important;
    top: 24px !important;
  }
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-bank-logo-mini,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .proba-bank-logo-mini,
  html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card .proba-bank-logo-mini {
    top: 36px !important;
    bottom: auto !important;
  }
}
/* PAYTOUA 0.3.200c END */
/* PAYTOUA 0.3.200d: compact-tablet bank-logo lower overlay */
@media (min-width: 641px) and (max-width: 767px) {
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-bank-logo-mini,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .proba-bank-logo-mini,
  html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card .proba-bank-logo-mini {
    transform: translate(2px, 8px) !important;
  }
}
/* PAYTOUA 0.3.200d END */
/* PAYTOUA 0.3.201: home calculator 20 percent compact pass */
html body.page-home .calc-container {
  width: min(314px, calc(100vw - 32px)) !important;
  max-width: 314px !important;
}

html body.page-home .calc-mockup {
  padding: 13px !important;
  border-radius: 26px !important;
}

html body.page-home #senderCountryWrap,
html body.page-home #recipientCountryWrap,
html body.page-home .country-picker-wrap {
  margin-bottom: 0 !important;
}

html body.page-home .swap-wrap + .country-picker-wrap {
  margin-top: 14px !important;
}

html body.page-home #senderPickerBtn,
html body.page-home #recipientPickerBtn,
html body.page-home .hero-calc-field,
html body.page-home .amount-field-send,
html body.page-home .amount-field-receive {
  height: 56px !important;
  min-height: 56px !important;
  padding: 0 11px !important;
  gap: 8px !important;
  border-radius: 16px !important;
}

html body.page-home .calc-label {
  margin-bottom: 5px !important;
  font-size: 0.65rem !important;
  line-height: 1.1 !important;
}

html body.page-home #senderPickerFlag,
html body.page-home #recipientPickerFlag {
  font-size: 1.2rem !important;
}

html body.page-home #senderPickerName,
html body.page-home #recipientPickerName {
  font-size: 0.86rem !important;
}

html body.page-home .amount-row {
  gap: 8px !important;
  margin-bottom: 12px !important;
}

html body.page-home .amount-row > div:first-child {
  padding-top: 14px !important;
}

html body.page-home .amount-mode-switch {
  top: 14px !important;
  padding: 2px !important;
  gap: 2px !important;
}

html body.page-home .amount-mode-btn {
  min-width: 56px !important;
  height: 22px !important;
  min-height: 22px !important;
  padding: 0 8px !important;
  font-size: 9.5px !important;
}

html body.page-home #amount {
  height: 50px !important;
  font-size: 19px !important;
}

html body.page-home .currency-select-wrap {
  flex-basis: 58px !important;
  min-width: 58px !important;
  max-width: 60px !important;
  margin-left: 3px !important;
}

html body.page-home .currency-picker-trigger {
  min-height: 34px !important;
  padding-right: 14px !important;
  font-size: 11px !important;
}

html body.page-home #toCurrencyBtn {
  padding-right: 12px !important;
}

html body.page-home #smartPayRow.smartpay-row {
  width: min(176px, calc(100% - 20px)) !important;
  max-width: calc(100% - 20px) !important;
  min-width: min(176px, calc(100% - 20px)) !important;
  height: 44px !important;
  min-height: 44px !important;
  max-height: 44px !important;
  margin-top: 13px !important;
  margin-bottom: 8px !important;
  padding: 4px !important;
  gap: 6px !important;
}

html body.page-home #smartPayRow .smartpay-toggle {
  flex-basis: 100px !important;
  width: 100px !important;
  min-width: 100px !important;
  height: 34px !important;
  min-height: 34px !important;
  max-height: 34px !important;
  padding-left: 34px !important;
  font-size: 9.5px !important;
}

html body.page-home #smartPayRow .smartpay-toggle::before {
  left: 7px !important;
  width: 22px !important;
  height: 22px !important;
}

html body.page-home #smartPayRow .smartpay-toggle::after {
  left: 10px !important;
  width: 16px !important;
  height: 16px !important;
}

html body.page-home #smartPayRow .smartpay-toggle:has(input:checked)::after {
  left: 13px !important;
}

html body.page-home #smartPayRow .smartpay-bank-wrap,
html body.page-home #smartPayBankTrigger,
html body.page-home #smartPayBankTrigger.proba-smartpay-icon-trigger {
  height: 34px !important;
  min-height: 34px !important;
  max-height: 34px !important;
}

html body.page-home #smartPayBankTrigger,
html body.page-home #smartPayBankTrigger.proba-smartpay-icon-trigger {
  grid-template-columns: minmax(0, max-content) 28px !important;
  gap: 6px !important;
}

html body.page-home .proba-smartpay-bank-icon,
html body.page-home .proba-smartpay-bank-icon.is-selected,
html body.page-home .proba-smartpay-bank-icon img {
  width: 22px !important;
  height: 22px !important;
  min-width: 22px !important;
  min-height: 22px !important;
}

html body.page-home #searchBtn {
  min-height: 46px !important;
  height: 46px !important;
  padding: 11px 14px !important;
  font-size: 0.82rem !important;
  gap: 7px !important;
}

html body.page-home #searchBtn svg {
  width: 15px !important;
  height: 15px !important;
}

@media (min-width: 721px) and (max-width: 900px) {
  html body.page-home .calc-container {
    width: min(576px, calc(100vw - 48px)) !important;
    max-width: 576px !important;
  }

  html body.page-home .calc-mockup {
    gap: 8px !important;
  }

  html body.page-home #senderPickerBtn,
  html body.page-home #recipientPickerBtn,
  html body.page-home .amount-field-send,
  html body.page-home .amount-field-receive {
    height: 50px !important;
    min-height: 50px !important;
    border-radius: 13px !important;
  }

  html body.page-home #searchBtn {
    height: 46px !important;
    min-height: 46px !important;
    border-radius: 12px !important;
  }
}

@media (max-width: 720px) {
  html body.page-home .calc-container {
    width: min(calc(100vw - 112px), 269px) !important;
    max-width: 269px !important;
  }

  html body.page-home .calc-mockup {
    row-gap: 8px !important;
    column-gap: 7px !important;
  }

  html body.page-home #senderPickerBtn,
  html body.page-home #recipientPickerBtn,
  html body.page-home .hero-calc-field,
  html body.page-home .amount-field-send,
  html body.page-home .amount-field-receive {
    height: 50px !important;
    min-height: 50px !important;
    border-radius: 13px !important;
  }

  html body.page-home .amount-row {
    grid-template-columns: minmax(0, 1fr) 66px !important;
    gap: 7px !important;
  }

  html body.page-home .amount-field-send,
  html body.page-home .amount-field-receive {
    padding-top: 6px !important;
  }

  html body.page-home #amount {
    height: 44px !important;
    font-size: 18px !important;
  }

  html body.page-home .currency-select-wrap {
    flex-basis: 52px !important;
    min-width: 52px !important;
    max-width: 54px !important;
  }

  html body.page-home .currency-picker-trigger {
    min-height: 32px !important;
    font-size: 10.5px !important;
  }

  html body.page-home #smartPayRow.smartpay-row {
    width: min(86%, 234px) !important;
    min-width: 0 !important;
    height: 44px !important;
    min-height: 44px !important;
    max-height: 44px !important;
    margin-top: 6px !important;
    margin-bottom: 0 !important;
  }

  html body.page-home #searchBtn {
    height: 46px !important;
    min-height: 46px !important;
    margin-top: 7px !important;
  }
}

@media (max-width: 380px) {
  html body.page-home .calc-container {
    width: min(calc(100vw - 64px), 269px) !important;
    max-width: 269px !important;
  }
}
/* PAYTOUA 0.3.201 END */
/* PAYTOUA 0.3.201a: home compact calculator border-box guard */
html body.page-home .calc-container,
html body.page-home .calc-mockup,
html body.page-home #senderPickerBtn,
html body.page-home #recipientPickerBtn,
html body.page-home .hero-calc-field,
html body.page-home .amount-field-send,
html body.page-home .amount-field-receive,
html body.page-home #smartPayRow.smartpay-row,
html body.page-home #searchBtn {
  box-sizing: border-box !important;
}

html body.page-home .calc-mockup {
  width: 100% !important;
  max-width: 100% !important;
}
/* PAYTOUA 0.3.201a END */
/* PAYTOUA 0.3.202: desktop-only home calculator scale correction */
@media (min-width: 901px) {
  html body.page-home .calc-container {
    width: min(345px, calc(100vw - 32px)) !important;
    max-width: 345px !important;
  }

  html body.page-home .calc-mockup {
    width: 100% !important;
    max-width: 100% !important;
    padding: 14px !important;
    border-radius: 29px !important;
  }

  html body.page-home #senderPickerBtn,
  html body.page-home #recipientPickerBtn,
  html body.page-home .hero-calc-field,
  html body.page-home .amount-field-send,
  html body.page-home .amount-field-receive {
    height: 62px !important;
    min-height: 62px !important;
    padding: 0 12px !important;
    gap: 9px !important;
    border-radius: 18px !important;
  }

  html body.page-home .calc-label {
    margin-bottom: 5px !important;
    font-size: 0.7rem !important;
    line-height: 1.12 !important;
  }

  html body.page-home #senderPickerFlag,
  html body.page-home #recipientPickerFlag {
    font-size: 1.32rem !important;
  }

  html body.page-home #senderPickerName,
  html body.page-home #recipientPickerName {
    font-size: 0.95rem !important;
  }

  html body.page-home .amount-row {
    gap: 9px !important;
    margin-bottom: 13px !important;
  }

  html body.page-home .amount-row > div:first-child {
    padding-top: 15px !important;
  }

  html body.page-home .amount-mode-switch {
    top: 15px !important;
    gap: 2px !important;
    padding: 2px !important;
  }

  html body.page-home .amount-mode-btn {
    min-width: 62px !important;
    height: 24px !important;
    min-height: 24px !important;
    padding: 0 9px !important;
    font-size: 10.5px !important;
  }

  html body.page-home #amount {
    height: 55px !important;
    font-size: 21px !important;
  }

  html body.page-home .currency-select-wrap {
    flex-basis: 64px !important;
    min-width: 64px !important;
    max-width: 66px !important;
    margin-left: 4px !important;
  }

  html body.page-home .currency-picker-trigger {
    min-height: 38px !important;
    padding-right: 15px !important;
    font-size: 12px !important;
  }

  html body.page-home #smartPayRow.smartpay-row {
    width: min(194px, calc(100% - 20px)) !important;
    min-width: min(194px, calc(100% - 20px)) !important;
    max-width: calc(100% - 20px) !important;
    height: 48px !important;
    min-height: 48px !important;
    max-height: 48px !important;
    margin-top: 14px !important;
    margin-bottom: 9px !important;
    padding: 5px !important;
    gap: 7px !important;
  }

  html body.page-home #smartPayRow .smartpay-toggle {
    flex-basis: 110px !important;
    width: 110px !important;
    min-width: 110px !important;
    height: 37px !important;
    min-height: 37px !important;
    max-height: 37px !important;
    padding-left: 37px !important;
    font-size: 10.3px !important;
  }

  html body.page-home #smartPayRow .smartpay-toggle::before {
    left: 8px !important;
    width: 24px !important;
    height: 24px !important;
  }

  html body.page-home #smartPayRow .smartpay-toggle::after {
    left: 11px !important;
    width: 18px !important;
    height: 18px !important;
  }

  html body.page-home #smartPayRow .smartpay-toggle:has(input:checked)::after {
    left: 14px !important;
  }

  html body.page-home #smartPayRow .smartpay-bank-wrap,
  html body.page-home #smartPayBankTrigger,
  html body.page-home #smartPayBankTrigger.proba-smartpay-icon-trigger {
    height: 37px !important;
    min-height: 37px !important;
    max-height: 37px !important;
  }

  html body.page-home #smartPayBankTrigger,
  html body.page-home #smartPayBankTrigger.proba-smartpay-icon-trigger {
    grid-template-columns: minmax(0, max-content) 30px !important;
    gap: 7px !important;
  }

  html body.page-home .proba-smartpay-bank-icon,
  html body.page-home .proba-smartpay-bank-icon.is-selected,
  html body.page-home .proba-smartpay-bank-icon img {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    min-height: 24px !important;
  }

  html body.page-home #searchBtn {
    min-height: 51px !important;
    height: 51px !important;
    padding: 12px 15px !important;
    font-size: 0.9rem !important;
    gap: 8px !important;
  }
}

@media (min-width: 721px) and (max-width: 900px) {
  html body.page-home .calc-container {
    width: min(720px, calc(100vw - 48px)) !important;
    max-width: 720px !important;
  }

  html body.page-home .calc-mockup {
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  html body.page-home #senderPickerBtn,
  html body.page-home #recipientPickerBtn {
    height: 62px !important;
    min-height: 62px !important;
    border-radius: 15px !important;
  }

  html body.page-home .amount-field-send,
  html body.page-home .amount-field-receive {
    height: 70px !important;
    min-height: 70px !important;
    border-radius: 16px !important;
  }

  html body.page-home #amount {
    height: 62px !important;
    font-size: 24px !important;
  }

  html body.page-home .currency-select-wrap {
    flex-basis: 70px !important;
    min-width: 70px !important;
    max-width: 72px !important;
  }

  html body.page-home .currency-picker-trigger {
    min-height: 42px !important;
    font-size: 13px !important;
  }

  html body.page-home #smartPayRow.smartpay-row {
    width: fit-content !important;
    max-width: calc(100% - 24px) !important;
    min-width: 0 !important;
    min-height: 48px !important;
    height: 48px !important;
    max-height: 48px !important;
    margin: 8px auto 0 !important;
  }

  html body.page-home #smartPayRow .smartpay-toggle {
    flex-basis: 124px !important;
    min-width: 124px !important;
    height: 38px !important;
    min-height: 38px !important;
    max-height: 38px !important;
    font-size: 11px !important;
  }

  html body.page-home #searchBtn {
    height: 58px !important;
    min-height: 58px !important;
    border-radius: 14px !important;
  }
}

@media (max-width: 720px) {
  html body.page-home .calc-container {
    width: min(calc(100vw - 68px), 336px) !important;
    max-width: 336px !important;
  }

  html body.page-home .calc-mockup {
    row-gap: 10px !important;
    column-gap: 8px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  html body.page-home #senderPickerBtn,
  html body.page-home #recipientPickerBtn,
  html body.page-home .hero-calc-field {
    height: 62px !important;
    min-height: 62px !important;
    border-radius: 15px !important;
  }

  html body.page-home .amount-row {
    grid-template-columns: minmax(0, 1fr) 82px !important;
    gap: 8px !important;
  }

  html body.page-home .amount-field-send,
  html body.page-home .amount-field-receive {
    height: 70px !important;
    min-height: 70px !important;
    padding-top: 8px !important;
    border-radius: 16px !important;
  }

  html body.page-home #amount {
    height: 62px !important;
    font-size: 24px !important;
  }

  html body.page-home .currency-select-wrap {
    flex-basis: 70px !important;
    min-width: 70px !important;
    max-width: 72px !important;
  }

  html body.page-home .currency-picker-trigger {
    min-height: 42px !important;
    font-size: 13px !important;
  }

  html body.page-home #smartPayRow.smartpay-row {
    width: min(86%, 292px) !important;
    max-width: 292px !important;
    min-width: 0 !important;
    min-height: 46px !important;
    height: 46px !important;
    max-height: 46px !important;
    margin-top: 8px !important;
    margin-bottom: 0 !important;
  }

  html body.page-home #searchBtn {
    height: 58px !important;
    min-height: 58px !important;
    margin-top: 9px !important;
  }
}

@media (max-width: 430px) {
  html body.page-home .calc-container {
    width: min(calc(100vw - 68px), 330px) !important;
    max-width: 330px !important;
  }
}
/* PAYTOUA 0.3.202 HOME END */
/* PAYTOUA 0.3.202: stable proba-like result cards for main results */
html body.page-results.page-results:not(.page-proba) #methods,
html body.page-results.page-results:not(.page-proba) #results,
html body.page-results.page-results:not(.page-proba) #results .card[data-service],
html body.page-results.page-results:not(.page-proba) #results .card[data-service] .row,
html body.page-results.page-results:not(.page-proba) #results .card[data-service] .proba-result-main,
html body.page-results.page-results:not(.page-proba) #results .card[data-service] .proba-result-value,
html body.page-results.page-results:not(.page-proba) #results .card[data-service] .proba-result-actions {
  transition: none !important;
}

@media (min-width: 641px) and (max-width: 720px) {
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-main,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row > div:first-child,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-service-copy,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-mobile-provider-title,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .result-smartpay-subtitle,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-value,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row > div:last-child {
    position: static !important;
    inset: auto !important;
    transform: none !important;
    margin-top: 0 !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card {
    min-height: 166px !important;
    padding: 12px 16px 50px !important;
    overflow: hidden !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(146px, 168px) !important;
    align-items: start !important;
    gap: 12px !important;
    width: 100% !important;
    min-height: 48px !important;
    padding: 0 !important;
    border: 0 !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line {
    min-height: 44px !important;
    height: 44px !important;
    align-items: center !important;
    gap: 9px !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line {
    margin-top: 7px !important;
    transform: none !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-bank-logo-mini {
    top: auto !important;
    left: auto !important;
    right: -7px !important;
    bottom: -7px !important;
    transform: translate(1.5px, 1.5px) !important;
  }
}

@media (min-width: 721px) {
  html body.page-results.page-results:not(.page-proba) #results,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results,
  html body.page-results.page-results:not(.page-proba) .proba-results #results {
    width: min(780px, calc(100vw - 48px)) !important;
    max-width: 780px !important;
    display: grid !important;
    gap: 13px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    overflow: visible !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card,
  html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card.best {
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 228px !important;
    height: auto !important;
    padding: 20px 22px 66px !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    transform: none !important;
    box-sizing: border-box !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card.best::before {
    top: -1px !important;
    left: 18px !important;
    transform: translateY(-50%) !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .row,
  html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card .row {
    position: static !important;
    inset: auto !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(158px, 220px) !important;
    align-items: start !important;
    justify-content: stretch !important;
    gap: 18px !important;
    width: 100% !important;
    min-height: 112px !important;
    max-height: none !important;
    padding: 0 !important;
    border: 0 !important;
    overflow: visible !important;
    transform: none !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-main,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row > div:first-child,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-service-copy,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-mobile-provider-title,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .result-smartpay-subtitle {
    position: static !important;
    inset: auto !important;
    margin-top: 0 !important;
    transform: none !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .service-line,
  html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card .service-line {
    display: flex !important;
    align-items: flex-start !important;
    flex-wrap: nowrap !important;
    gap: 12px !important;
    min-height: 54px !important;
    height: auto !important;
    max-width: 100% !important;
    overflow: visible !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-logo-stack,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .proba-logo-stack,
  html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card .proba-logo-stack {
    position: relative !important;
    flex: 0 0 50px !important;
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important;
    min-height: 50px !important;
    margin: -5px 0 0 -6px !important;
    overflow: visible !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-provider-logo,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .proba-provider-logo,
  html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card .proba-provider-logo {
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important;
    min-height: 50px !important;
    max-width: 50px !important;
    max-height: 50px !important;
    padding: 6px !important;
    object-fit: contain !important;
    border-radius: 10px !important;
    background: #fff !important;
    box-shadow: 0 0 0 3px #fff, 0 0 0 4px rgba(226, 232, 240, 0.95), 0 10px 20px rgba(15, 23, 42, 0.1) !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-bank-logo-mini,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .proba-bank-logo-mini,
  html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card .proba-bank-logo-mini {
    position: absolute !important;
    top: auto !important;
    left: auto !important;
    right: -5px !important;
    bottom: -5px !important;
    width: 29px !important;
    height: 29px !important;
    min-width: 29px !important;
    min-height: 29px !important;
    max-width: 29px !important;
    max-height: 29px !important;
    padding: 3px !important;
    border: 0 !important;
    border-radius: 7px !important;
    background: #fff !important;
    object-fit: contain !important;
    transform: none !important;
    box-shadow: 0 0 0 3px #fff, 0 5px 12px rgba(15, 23, 42, 0.18) !important;
    filter: none !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-service-copy,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-mobile-provider-title {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    min-height: 0 !important;
    height: auto !important;
    padding-top: 0 !important;
    overflow: visible !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service {
    display: flex !important;
    align-items: baseline !important;
    flex-wrap: nowrap !important;
    gap: 0 4px !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    color: #0f172a !important;
    font-size: 18px !important;
    line-height: 1.12 !important;
    font-weight: 900 !important;
    letter-spacing: 0 !important;
    white-space: nowrap !important;
    overflow: visible !important;
    text-overflow: clip !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service .proba-provider-name {
    flex: 0 0 auto !important;
    max-width: none !important;
    min-width: max-content !important;
    overflow: visible !important;
    text-overflow: clip !important;
    white-space: nowrap !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service .proba-provider-bank {
    flex: 1 1 auto !important;
    max-width: 170px !important;
    min-width: 0 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    font-size: 11px !important;
    line-height: 1 !important;
    font-weight: 760 !important;
    transform: translateY(-0.52em) !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .result-smartpay-subtitle {
    display: block !important;
    max-width: 100% !important;
    min-height: 0 !important;
    margin: 4px 0 0 !important;
    color: #64748b !important;
    font-size: 12px !important;
    line-height: 1.2 !important;
    font-weight: 720 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-meta-line,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card > .proba-result-meta-line {
    position: static !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 6px !important;
    width: auto !important;
    max-width: 340px !important;
    max-height: none !important;
    margin: 12px 0 0 !important;
    overflow: visible !important;
    transform: none !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line .proba-result-meta-item,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line span {
    display: grid !important;
    grid-template-columns: 28px minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 9px !important;
    min-height: 28px !important;
    height: auto !important;
    color: #566176 !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
    font-weight: 850 !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-icon {
    width: 26px !important;
    height: 26px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 999px !important;
    background: #eef4ff !important;
    color: #315bdc !important;
    box-shadow: inset 0 0 0 1px rgba(49, 91, 220, 0.1) !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line b {
    display: none !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line strong {
    min-width: 0 !important;
    color: #334155 !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
    font-weight: 850 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-value,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row > div:last-child {
    position: static !important;
    inset: auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    justify-content: flex-start !important;
    align-self: start !important;
    width: auto !important;
    min-width: 158px !important;
    max-width: 220px !important;
    height: auto !important;
    max-height: none !important;
    padding: 0 !important;
    border: 0 !important;
    text-align: right !important;
    overflow: visible !important;
    transform: none !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .price {
    display: block !important;
    width: 100% !important;
    max-width: 220px !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #020617 !important;
    font-size: clamp(24px, 2.1vw, 27px) !important;
    line-height: 1.02 !important;
    font-weight: 950 !important;
    letter-spacing: 0 !important;
    text-align: right !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: clip !important;
    font-variant-numeric: tabular-nums !important;
    transform: none !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-diff,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .good,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .bad {
    white-space: nowrap !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-actions,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .proba-result-actions,
  html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card .proba-result-actions,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-actions {
    position: absolute !important;
    left: 102px !important;
    right: auto !important;
    top: auto !important;
    bottom: 18px !important;
    display: flex !important;
    align-items: center !important;
    width: auto !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    z-index: 3 !important;
    transform: none !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-cta,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .results-card-go-btn.proba-result-cta {
    min-width: 214px !important;
    min-height: 42px !important;
    height: 42px !important;
    padding: 0 16px !important;
    border-radius: 10px !important;
    font-size: 12.5px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    white-space: nowrap !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-more-btn,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .proba-result-more-btn,
  html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card .proba-result-more-btn {
    position: absolute !important;
    right: 22px !important;
    left: auto !important;
    top: auto !important;
    bottom: 40px !important;
    max-width: 118px !important;
    min-height: 28px !important;
    height: 28px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: #64748b !important;
    font-size: 11px !important;
    line-height: 1 !important;
    font-weight: 760 !important;
    opacity: 0.64 !important;
    white-space: nowrap !important;
    z-index: 3 !important;
    transform: none !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .rate-timestamp,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-updated,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .card-service-updated-at {
    position: absolute !important;
    left: 102px !important;
    right: auto !important;
    top: auto !important;
    bottom: 8px !important;
    width: auto !important;
    max-width: 260px !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    color: rgba(71, 85, 105, 0.62) !important;
    font-size: 9px !important;
    line-height: 1.15 !important;
    font-weight: 700 !important;
    text-align: left !important;
    z-index: 2 !important;
    transform: none !important;
  }
}

@media (min-width: 721px) and (max-width: 1040px) {
  html body.page-results.page-results:not(.page-proba) #results,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results,
  html body.page-results.page-results:not(.page-proba) .proba-results #results {
    width: min(720px, calc(100vw - 40px)) !important;
    max-width: 720px !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row {
    grid-template-columns: minmax(0, 1fr) minmax(148px, 192px) !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .price {
    font-size: clamp(22px, 3vw, 25px) !important;
  }
}
/* PAYTOUA 0.3.202 RESULTS END */
/* PAYTOUA 0.3.202a: reduce wide card height and prevent transition price clipping */
@media (min-width: 641px) and (max-width: 720px) {
  html body.page-results.page-results:not(.page-proba) #results,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results,
  html body.page-results.page-results:not(.page-proba) .proba-results #results {
    width: min(596px, calc(100vw - 36px)) !important;
    max-width: 596px !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row {
    grid-template-columns: minmax(0, 1fr) minmax(176px, 194px) !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-value,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row > div:last-child {
    min-width: 176px !important;
    max-width: 194px !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .price {
    max-width: 194px !important;
    font-size: clamp(19px, 3.1vw, 22px) !important;
    overflow: visible !important;
  }
}

@media (min-width: 721px) {
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card,
  html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card.best {
    height: 236px !important;
    min-height: 236px !important;
    max-height: 236px !important;
    padding: 20px 22px 66px !important;
    overflow: hidden !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .row,
  html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card .row {
    min-height: 62px !important;
    height: auto !important;
    max-height: 70px !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .service-line,
  html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card .service-line {
    min-height: 54px !important;
    max-height: 60px !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-meta-line,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card > .proba-result-meta-line {
    position: absolute !important;
    left: 102px !important;
    right: 250px !important;
    top: 88px !important;
    bottom: auto !important;
    width: auto !important;
    max-width: none !important;
    max-height: 86px !important;
    margin: 0 !important;
    overflow: hidden !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line .proba-result-meta-item,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line span {
    grid-template-columns: 24px minmax(0, 1fr) !important;
    gap: 8px !important;
    min-height: 24px !important;
    font-size: 12.5px !important;
    line-height: 1.14 !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-icon {
    width: 22px !important;
    height: 22px !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-actions,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .proba-result-actions,
  html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card .proba-result-actions,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-actions {
    left: 102px !important;
    bottom: 22px !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-more-btn,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .proba-result-more-btn,
  html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card .proba-result-more-btn {
    right: 22px !important;
    bottom: 44px !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .rate-timestamp,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-updated,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .card-service-updated-at {
    left: 102px !important;
    bottom: 8px !important;
  }
}

@media (min-width: 721px) and (max-width: 1040px) {
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card,
  html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card.best {
    height: 244px !important;
    min-height: 244px !important;
    max-height: 244px !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-meta-line,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card > .proba-result-meta-line {
    right: 218px !important;
    top: 92px !important;
  }
}
/* PAYTOUA 0.3.202a RESULTS END */
/* PAYTOUA 0.3.203: mobile SmartPay and result-card detail polish */
@media (max-width: 640px) {
  html body.page-results.page-results:not(.page-proba) #calcBar #smartPayRow {
    position: relative !important;
    width: fit-content !important;
    max-width: min(calc(100vw - 28px), 430px) !important;
    min-height: 50px !important;
    height: 50px !important;
    margin-top: 8px !important;
    padding: 0 !important;
    gap: 8px !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    transform: none !important;
    overflow: visible !important;
  }

  html body.page-results.page-results:not(.page-proba) #calcBar #smartPayRow .smartpay-toggle,
  html body.page-results.page-results:not(.page-proba) #calcBar #smartPayRow .smartpay-toggle:has(input:checked) {
    flex: 0 0 118px !important;
    width: 118px !important;
    min-width: 118px !important;
    min-height: 38px !important;
    height: 38px !important;
    max-height: 38px !important;
    padding: 0 0 0 40px !important;
    color: #1e3a8a !important;
    background: rgba(255, 255, 255, 0.98) !important;
    border: 1px solid rgba(255, 184, 0, 0.95) !important;
    box-shadow: 0 0 0 2px rgba(255, 184, 0, 0.22) !important;
    overflow: visible !important;
  }

  html body.page-results.page-results:not(.page-proba) #calcBar #smartPayRow .smartpay-toggle span {
    color: #1e3a8a !important;
  }

  html body.page-results.page-results:not(.page-proba) #calcBar #smartPayRow .smartpay-toggle::before,
  /* baseline off SmartPay track reset */
  html body.page-results.page-results:not(.page-proba) #calcBar #smartPayRow .smartpay-toggle::before {
    background: #cbd5e1 !important;
    box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.22) !important;
  }
  html body.page-results.page-results:not(.page-proba) #calcBar #smartPayRow .smartpay-toggle:has(input:checked)::before {
    background: #2563eb !important;
    box-shadow: none !important;
  }

  html body.page-results.page-results:not(.page-proba) #calcBar #smartPayRow .smartpay-toggle::after,
  html body.page-results.page-results:not(.page-proba) #calcBar #smartPayRow .smartpay-toggle:has(input:checked)::after {
    background: #fff !important;
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.18) !important;
  }

  html body.page-results.page-results:not(.page-proba) #calcBar #smartPayBankTrigger,
  html body.page-results.page-results:not(.page-proba) #calcBar #smartPayBankTrigger.proba-smartpay-icon-trigger,
  html body.page-results.page-results:not(.page-proba) #calcBar .smartpay-bank-trigger.proba-smartpay-icon-trigger {
    width: auto !important;
    min-width: 81px !important;
    min-height: 38px !important;
    height: 38px !important;
    max-height: 38px !important;
    grid-template-columns: minmax(0, max-content) 34px !important;
    gap: 8px !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
  }

  html body.page-results.page-results:not(.page-proba) #calcBar #smartPayBankTrigger .proba-smartpay-bank-display {
    padding: 0 2px 0 5px !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
  }

  html body.page-results.page-results:not(.page-proba) #calcBar #smartPayBankTrigger .proba-smartpay-menu-button {
    width: 34px !important;
    min-width: 34px !important;
    height: 34px !important;
    min-height: 34px !important;
    background: #fff !important;
    border-radius: 999px !important;
    box-shadow: inset 0 0 0 1px rgba(226, 232, 240, 0.72), 0 5px 10px rgba(15, 23, 42, 0.07) !important;
  }

  html body.page-results.page-results:not(.page-proba) #calcBar #smartPayBankTrigger .proba-smartpay-bank-icon,
  html body.page-results.page-results:not(.page-proba) #calcBar #smartPayBankTrigger .proba-smartpay-bank-icon.is-selected {
    width: 32px !important;
    min-width: 32px !important;
    height: 32px !important;
    min-height: 32px !important;
    padding: 4px !important;
    background: #fff !important;
    border: 0 !important;
    border-radius: 999px !important;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.98), 0 0 0 3px rgba(226, 232, 240, 0.92), 0 10px 22px rgba(15, 23, 42, 0.18) !important;
    overflow: visible !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line {
    gap: 14px !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-service-copy,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-mobile-provider-title {
    padding-left: 2px !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service .proba-provider-name {
    max-width: none !important;
    overflow: visible !important;
    text-overflow: clip !important;
    white-space: nowrap !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-bank-logo-mini,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .proba-bank-logo-mini,
  html body.page-results.page-results:not(.page-proba) .proba-results #results .card[data-service].main-proba-result-card .proba-bank-logo-mini {
    width: 20px !important;
    min-width: 20px !important;
    height: 18px !important;
    min-height: 18px !important;
    max-width: 20px !important;
    max-height: 18px !important;
    right: -7px !important;
    bottom: -6px !important;
    padding: 2px !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 6px !important;
    background: #fff !important;
    object-fit: contain !important;
    box-shadow: 0 0 0 2px #fff, 0 6px 13px rgba(15, 23, 42, 0.2) !important;
    transform: translate(1px, 1px) !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-value,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row > div:last-child {
    padding-top: 6px !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card:not(:has(.result-smartpay-subtitle:not([hidden]))) .proba-result-value,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card:not(:has(.result-smartpay-subtitle:not([hidden]))) .row > div:last-child {
    padding-top: 10px !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-diff,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .good,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .bad {
    font-size: 12px !important;
    line-height: 12.6px !important;
    min-height: 12.6px !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-meta-line,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-meta-line,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card > .proba-result-meta-line {
    margin-top: 2px !important;
    transform: translateY(-8px) !important;
  }
}
/* PAYTOUA 0.3.203 RESULTS END */
/* PAYTOUA 0.3.203a: mobile SmartPay trigger specificity fix */
@media (max-width: 640px) {
  html body.page-results.page-results:not(.page-proba) #calcBar #smartPayRow #smartPayBankTrigger,
  html body.page-results.page-results:not(.page-proba) #calcBar #smartPayRow #smartPayBankTrigger.proba-smartpay-icon-trigger,
  html body.page-results.page-results:not(.page-proba) #calcBar #smartPayRow .smartpay-bank-trigger.proba-smartpay-icon-trigger {
    display: grid !important;
    grid-template-columns: minmax(0, max-content) 34px !important;
    align-items: center !important;
    width: auto !important;
    min-width: 81px !important;
    max-width: min(230px, calc(100vw - 178px)) !important;
    min-height: 38px !important;
    height: 38px !important;
    max-height: 38px !important;
    gap: 8px !important;
    padding: 0 !important;
    color: #1e3a8a !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    opacity: 1 !important;
    overflow: visible !important;
  }

  html body.page-results.page-results:not(.page-proba) #calcBar #smartPayRow #smartPayBankTrigger .proba-smartpay-bank-display,
  html body.page-results.page-results:not(.page-proba) #calcBar #smartPayRow #smartPayBankTrigger .proba-smartpay-bank-display.is-icons {
    min-width: 0 !important;
    min-height: 38px !important;
    height: 38px !important;
    padding: 0 2px 0 5px !important;
    gap: 8px !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
  }
}
/* PAYTOUA 0.3.203a RESULTS END */
/* PAYTOUA 0.3.204: mobile SmartPay glass shell and title/amount baseline tuning */
@media (max-width: 640px) {
  html body.page-results.page-results:not(.page-proba) #results-desc {
    margin-bottom: 18px !important;
  }

  html body.page-results.page-results:not(.page-proba) .results-calc-wrap {
    margin-top: 26px !important;
  }

  html body.page-results.page-results:not(.page-proba) #calcBar #smartPayRow {
    min-height: 50px !important;
    height: 50px !important;
    margin: 12px auto 11px !important;
    padding: 5px !important;
    gap: 8px !important;
    background: rgba(255, 255, 255, 0.16) !important;
    border: 1px solid rgba(255, 255, 255, 0.34) !important;
    border-radius: 999px !important;
    box-shadow: 0 14px 28px rgba(0, 19, 107, 0.13) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
  }

  html body.page-results.page-results:not(.page-proba) #calcBar #smartPayRow .smartpay-toggle:not(:has(input:checked)) {
    color: #475569 !important;
    background: rgba(255, 255, 255, 0.96) !important;
    border-color: rgba(226, 232, 240, 0.98) !important;
    box-shadow: 0 0 0 2px rgba(255, 184, 0, 0.1) !important;
  }

  html body.page-results.page-results:not(.page-proba) #calcBar #smartPayRow .smartpay-toggle:not(:has(input:checked)) span {
    color: #475569 !important;
  }

  html body.page-results.page-results:not(.page-proba) #calcBar #smartPayRow .smartpay-toggle:not(:has(input:checked))::before {
    background: #cbd5e1 !important;
    box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.22) !important;
  }

  html body.page-results.page-results:not(.page-proba) #calcBar #smartPayRow .smartpay-toggle:not(:has(input:checked))::after {
    background: #fff !important;
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.2) !important;
  }

  /* baseline off SmartPay track reset */
  html body.page-results.page-results:not(.page-proba) #calcBar #smartPayRow .smartpay-toggle::before {
    background: #cbd5e1 !important;
    box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.22) !important;
  }
  html body.page-results.page-results:not(.page-proba) #calcBar #smartPayRow .smartpay-toggle:has(input:checked)::before {
    background: #2563eb !important;
    box-shadow: none !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row {
    align-items: start !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .proba-result-value,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .row > div:last-child {
    padding-top: 7px !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card:not(:has(.result-smartpay-subtitle:not([hidden]))) .proba-result-value,
  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card:not(:has(.result-smartpay-subtitle:not([hidden]))) .row > div:last-child {
    padding-top: 11px !important;
  }

  html body.page-results.page-results:not(.page-proba) #results .card[data-service].main-proba-result-card .price {
    line-height: 1.02 !important;
  }
}
/* PAYTOUA 0.3.204a: mobile amount/title center alignment micro-adjust */
/* PAYTOUA 0.3.204 RESULTS END */
/* PAYTOUA 0.3.207: exact mobile SmartPay parity and responsive card controls */
html body.page-home #smartPayRow.smartpay-row,
html body.page-results.page-results:not(.page-proba) #calcBar #smartPayRow {
  grid-column: 1 / -1 !important;
  justify-self: center !important;
  align-self: center !important;
  position: relative !important;
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  min-width: 0 !important;
  max-width: min(100%, calc(100vw - 28px), 430px) !important;
  min-height: 50px !important;
  height: 50px !important;
  max-height: none !important;
  margin: 12px auto 11px !important;
  padding: 5px !important;
  gap: 8px !important;
  color: #1e3a8a !important;
  background: rgba(255, 255, 255, 0.16) !important;
  border: 1px solid rgba(255, 255, 255, 0.34) !important;
  border-radius: 999px !important;
  box-shadow: 0 14px 28px rgba(0, 19, 107, 0.13) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  overflow: visible !important;
  transform: none !important;
  box-sizing: border-box !important;
}
html body.page-home #smartPayRow[hidden],
html body.page-results.page-results:not(.page-proba) #calcBar #smartPayRow[hidden] { display: none !important; }
html body.page-home #smartPayRow .smartpay-toggle,
html body.page-home #smartPayRow .smartpay-toggle:has(input:checked),
html body.page-results.page-results:not(.page-proba) #calcBar #smartPayRow .smartpay-toggle,
html body.page-results.page-results:not(.page-proba) #calcBar #smartPayRow .smartpay-toggle:has(input:checked) {
  position: relative !important;
  flex: 0 0 118px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 118px !important;
  min-width: 118px !important;
  max-width: 118px !important;
  min-height: 38px !important;
  height: 38px !important;
  max-height: 38px !important;
  margin: 0 !important;
  padding: 0 11px 0 40px !important;
  color: #1e3a8a !important;
  background: rgba(255, 255, 255, 0.98) !important;
  border: 1px solid rgba(255, 184, 0, 0.95) !important;
  border-radius: 999px !important;
  box-shadow: 0 0 0 2px rgba(255, 184, 0, 0.22) !important;
  font-size: 11px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  white-space: nowrap !important;
  overflow: visible !important;
  transform: none !important;
  box-sizing: border-box !important;
}
html body.page-home #smartPayRow .smartpay-toggle span,
html body.page-results.page-results:not(.page-proba) #calcBar #smartPayRow .smartpay-toggle span { color: inherit !important; font-size: inherit !important; line-height: 1 !important; font-weight: 900 !important; }
html body.page-home #smartPayRow .smartpay-toggle:not(:has(input:checked)),
html body.page-results.page-results:not(.page-proba) #calcBar #smartPayRow .smartpay-toggle:not(:has(input:checked)) { color: #475569 !important; background: rgba(255,255,255,.96) !important; border-color: rgba(226,232,240,.98) !important; box-shadow: 0 0 0 2px rgba(255,184,0,.1) !important; }
html body.page-home #smartPayRow .smartpay-toggle input,
html body.page-results.page-results:not(.page-proba) #calcBar #smartPayRow .smartpay-toggle input { position: absolute !important; opacity: 0 !important; pointer-events: none !important; }
html body.page-home #smartPayRow .smartpay-toggle::before,
html body.page-results.page-results:not(.page-proba) #calcBar #smartPayRow .smartpay-toggle::before { content: "" !important; position: absolute !important; left: 8px !important; top: 50% !important; width: 25px !important; height: 16px !important; border-radius: 999px !important; background: #cbd5e1 !important; box-shadow: inset 0 0 0 1px rgba(148,163,184,.22) !important; transform: translateY(-50%) !important; }
html body.page-home #smartPayRow .smartpay-toggle:has(input:checked)::before,
html body.page-results.page-results:not(.page-proba) #calcBar #smartPayRow .smartpay-toggle:has(input:checked)::before { background: #2563eb !important; box-shadow: none !important; }
html body.page-home #smartPayRow .smartpay-toggle::after,
html body.page-results.page-results:not(.page-proba) #calcBar #smartPayRow .smartpay-toggle::after { content: "" !important; position: absolute !important; left: 10px !important; top: 50% !important; width: 12px !important; height: 12px !important; border-radius: 999px !important; background: #fff !important; box-shadow: 0 1px 4px rgba(15,23,42,.2) !important; transform: translateY(-50%) !important; }
html body.page-home #smartPayRow .smartpay-toggle:has(input:checked)::after,
html body.page-results.page-results:not(.page-proba) #calcBar #smartPayRow .smartpay-toggle:has(input:checked)::after { left: 19px !important; }
html body.page-home #smartPayRow .smartpay-bank-wrap,
html body.page-results.page-results:not(.page-proba) #calcBar #smartPayRow .smartpay-bank-wrap { display: inline-flex !important; align-items: center !important; min-width: 0 !important; min-height: 38px !important; height: 38px !important; margin: 0 !important; padding: 0 !important; gap: 0 !important; background: transparent !important; border: 0 !important; box-shadow: none !important; overflow: visible !important; }
html body.page-home #smartPayRow .smartpay-bank-label,
html body.page-results.page-results:not(.page-proba) #calcBar #smartPayRow .smartpay-bank-label { display: none !important; }
html body.page-home #smartPayBankTrigger,
html body.page-home #smartPayBankTrigger.proba-smartpay-icon-trigger,
html body.page-home #smartPayRow .smartpay-bank-trigger,
html body.page-results.page-results:not(.page-proba) #calcBar #smartPayBankTrigger,
html body.page-results.page-results:not(.page-proba) #calcBar #smartPayBankTrigger.proba-smartpay-icon-trigger,
html body.page-results.page-results:not(.page-proba) #calcBar #smartPayRow .smartpay-bank-trigger,
html body.page-results.page-results:not(.page-proba) #calcBar #smartPayRow .smartpay-bank-trigger.proba-smartpay-icon-trigger { display: grid !important; grid-template-columns: minmax(0, max-content) 34px !important; align-items: center !important; width: auto !important; min-width: 81px !important; max-width: min(230px, calc(100vw - 178px)) !important; min-height: 38px !important; height: 38px !important; max-height: 38px !important; margin: 0 !important; padding: 0 !important; gap: 8px !important; color: #1e3a8a !important; background: transparent !important; border: 0 !important; border-radius: 0 !important; box-shadow: none !important; opacity: 1 !important; overflow: visible !important; transform: none !important; }
html body.page-home #smartPayBankTrigger .proba-smartpay-bank-display,
html body.page-home #smartPayBankTrigger .proba-smartpay-bank-display.is-icons,
html body.page-results.page-results:not(.page-proba) #calcBar #smartPayBankTrigger .proba-smartpay-bank-display,
html body.page-results.page-results:not(.page-proba) #calcBar #smartPayBankTrigger .proba-smartpay-bank-display.is-icons { display: inline-flex !important; align-items: center !important; justify-content: flex-start !important; min-width: 0 !important; min-height: 38px !important; height: 38px !important; margin: 0 !important; padding: 0 2px 0 5px !important; gap: 8px !important; background: transparent !important; background-color: transparent !important; background-image: none !important; border: 0 !important; border-radius: 0 !important; box-shadow: none !important; overflow: visible !important; }
html body.page-home #smartPayBankTrigger .proba-smartpay-bank-text,
html body.page-results.page-results:not(.page-proba) #calcBar #smartPayBankTrigger .proba-smartpay-bank-text { max-width: 126px !important; overflow: hidden !important; text-overflow: ellipsis !important; white-space: nowrap !important; color: #1e3a8a !important; font-size: 11px !important; font-weight: 850 !important; }
html body.page-home #smartPayBankTrigger .proba-smartpay-menu-button,
html body.page-results.page-results:not(.page-proba) #calcBar #smartPayBankTrigger .proba-smartpay-menu-button { display: inline-flex !important; align-items: center !important; justify-content: center !important; width: 34px !important; min-width: 34px !important; height: 34px !important; min-height: 34px !important; margin: 0 !important; background: #fff !important; border-radius: 999px !important; box-shadow: inset 0 0 0 1px rgba(226,232,240,.72), 0 5px 10px rgba(15,23,42,.07) !important; }
html body.page-home #smartPayBankTrigger .proba-smartpay-bank-icon,
html body.page-home #smartPayBankTrigger .proba-smartpay-bank-icon.is-selected,
html body.page-results.page-results:not(.page-proba) #calcBar #smartPayBankTrigger .proba-smartpay-bank-icon,
html body.page-results.page-results:not(.page-proba) #calcBar #smartPayBankTrigger .proba-smartpay-bank-icon.is-selected { width: 32px !important; min-width: 32px !important; height: 32px !important; min-height: 32px !important; padding: 4px !important; background: #fff !important; border: 0 !important; border-radius: 999px !important; box-shadow: 0 0 0 2px rgba(255,255,255,.98), 0 0 0 3px rgba(226,232,240,.92), 0 10px 22px rgba(15,23,42,.18) !important; overflow: visible !important; box-sizing: border-box !important; }
html body.page-home #smartPayBankTrigger .proba-smartpay-bank-icon img,
html body.page-results.page-results:not(.page-proba) #calcBar #smartPayBankTrigger .proba-smartpay-bank-icon img { width: 100% !important; height: 100% !important; object-fit: contain !important; }
html body.page-home #smartPayBankTrigger .smartpay-bank-trigger-arrow,
html body.page-results.page-results:not(.page-proba) #calcBar #smartPayBankTrigger .smartpay-bank-trigger-arrow { display: none !important; }
/* SmartPay uses the accepted mobile component at every viewport width. */
html body.page-home #smartPayRow .smartpay-toggle:has(input:checked)::after,
html body.page-results.page-results:not(.page-proba) #calcBar #smartPayRow .smartpay-toggle:has(input:checked)::after {
  left: 19px !important;
  background: #fff !important;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.18) !important;
}
html body.page-home #smartPayRow #smartPayBankTrigger,
html body.page-home #smartPayRow #smartPayBankTrigger.proba-smartpay-icon-trigger,
html body.page-home #smartPayRow .smartpay-bank-trigger.proba-smartpay-icon-trigger,
html body.page-results.page-results:not(.page-proba) #calcBar #smartPayRow #smartPayBankTrigger,
html body.page-results.page-results:not(.page-proba) #calcBar #smartPayRow #smartPayBankTrigger.proba-smartpay-icon-trigger,
html body.page-results.page-results:not(.page-proba) #calcBar #smartPayRow .smartpay-bank-trigger.proba-smartpay-icon-trigger {
  position: static !important;
  display: grid !important;
  grid-template-columns: minmax(0, max-content) 34px !important;
  align-items: center !important;
  width: auto !important;
  min-width: 81px !important;
  max-width: min(230px, calc(100vw - 178px)) !important;
  min-height: 38px !important;
  height: 38px !important;
  max-height: 38px !important;
  margin: 0 !important;
  padding: 0 !important;
  gap: 8px !important;
  color: #1e3a8a !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-size: 10.5px !important;
  font-weight: 850 !important;
  opacity: 1 !important;
  overflow: visible !important;
  transform: none !important;
}
html body.page-home #smartPayRow #smartPayBankTrigger .proba-smartpay-bank-display,
html body.page-home #smartPayRow #smartPayBankTrigger .proba-smartpay-bank-display.is-icons,
html body.page-results.page-results:not(.page-proba) #calcBar #smartPayRow #smartPayBankTrigger .proba-smartpay-bank-display,
html body.page-results.page-results:not(.page-proba) #calcBar #smartPayRow #smartPayBankTrigger .proba-smartpay-bank-display.is-icons {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  min-width: 0 !important;
  min-height: 38px !important;
  height: 38px !important;
  margin: 0 !important;
  padding: 0 2px 0 5px !important;
  gap: 8px !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}
html body.page-home #smartPayRow #smartPayBankTrigger .proba-smartpay-bank-icons,
html body.page-results.page-results:not(.page-proba) #calcBar #smartPayRow #smartPayBankTrigger .proba-smartpay-bank-icons {
  display: inline-flex !important;
  align-items: center !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  gap: 8px !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}
html body.page-home #smartPayRow #smartPayBankTrigger .proba-smartpay-bank-icon,
html body.page-home #smartPayRow #smartPayBankTrigger .proba-smartpay-bank-icon.is-selected,
html body.page-results.page-results:not(.page-proba) #calcBar #smartPayRow #smartPayBankTrigger .proba-smartpay-bank-icon,
html body.page-results.page-results:not(.page-proba) #calcBar #smartPayRow #smartPayBankTrigger .proba-smartpay-bank-icon.is-selected {
  display: inline-flex !important;
  width: 32px !important;
  min-width: 32px !important;
  max-width: 32px !important;
  height: 32px !important;
  min-height: 32px !important;
  max-height: 32px !important;
  margin: 0 !important;
  padding: 4px !important;
  background: #fff !important;
  border: 0 !important;
  border-radius: 999px !important;
  box-shadow: 0 0 0 2px rgba(255,255,255,.98), 0 0 0 3px rgba(226,232,240,.92), 0 10px 22px rgba(15,23,42,.18) !important;
  overflow: visible !important;
  box-sizing: border-box !important;
}
html body.page-home #smartPayRow #smartPayBankTrigger .proba-smartpay-menu-button,
html body.page-results.page-results:not(.page-proba) #calcBar #smartPayRow #smartPayBankTrigger .proba-smartpay-menu-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 34px !important;
  min-width: 34px !important;
  max-width: 34px !important;
  height: 34px !important;
  min-height: 34px !important;
  max-height: 34px !important;
  margin: 0 !important;
  padding: 0 !important;
  background: #fff !important;
  border: 0 !important;
  border-radius: 999px !important;
  box-shadow: inset 0 0 0 1px rgba(226,232,240,.72), 0 5px 10px rgba(15,23,42,.07) !important;
  font-size: 10.5px !important;
  font-weight: 850 !important;
}
html body.page-home #smartPayRow #smartPayBankTrigger .proba-smartpay-bank-icon img,
html body.page-results.page-results:not(.page-proba) #calcBar #smartPayRow #smartPayBankTrigger .proba-smartpay-bank-icon img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}
@media (min-width: 641px) {
  html body.page-results.page-results:not(.page-proba) #methods,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service],
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service] .row,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service] .proba-result-main,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service] .proba-result-value,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service] .proba-result-actions {
    transition: none !important;
  }

  html body.page-results.page-results:not(.page-proba) .results-content > .container #results {
    width: min(780px, calc(100vw - 36px)) !important;
    max-width: 780px !important;
    display: grid !important;
    gap: clamp(11px, 1.5vw, 14px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    overflow: visible !important;
  }

  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card.best {
    --ptu-card-pad-x: clamp(16px, 2.25vw, 24px);
    --ptu-card-pad-top: clamp(12px, 1.8vw, 20px);
    --ptu-card-bottom: clamp(10px, 1.55vw, 18px);
    --ptu-card-height: clamp(190px, calc(16vw + 88px), 236px);
    --ptu-logo-size: clamp(38px, 5vw, 52px);
    --ptu-gap: clamp(9px, 1.4vw, 15px);
    --ptu-price-col: clamp(170px, 25vw, 226px);
    --ptu-action-w: clamp(156px, 21vw, 202px);
    --ptu-action-h: clamp(39px, 4.2vw, 43px);
    --ptu-meta-bottom: calc(var(--ptu-card-bottom) + var(--ptu-action-h) + clamp(10px, 1.35vw, 15px));
    position: relative !important;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: var(--ptu-card-height) !important;
    height: var(--ptu-card-height) !important;
    max-height: var(--ptu-card-height) !important;
    padding: var(--ptu-card-pad-top) var(--ptu-card-pad-x) calc(var(--ptu-card-bottom) + var(--ptu-action-h) + 10px) !important;
    border-radius: clamp(10px, 1.25vw, 12px) !important;
    overflow: hidden !important;
    transform: none !important;
    box-sizing: border-box !important;
  }

  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card.best::before {
    top: -1px !important;
    left: var(--ptu-card-pad-x) !important;
    transform: translateY(-50%) !important;
  }

  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .row {
    position: static !important;
    inset: auto !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(160px, var(--ptu-price-col)) !important;
    align-items: start !important;
    justify-content: stretch !important;
    gap: clamp(12px, 2.35vw, 28px) !important;
    width: 100% !important;
    min-height: 0 !important;
    height: auto !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    overflow: visible !important;
    transform: none !important;
  }

  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card :is(.proba-result-main, .row > div:first-child, .service-line, .proba-service-copy, .proba-mobile-provider-title, .service, .result-smartpay-subtitle) {
    position: static !important;
    inset: auto !important;
    min-height: 0 !important;
    height: auto !important;
    max-height: none !important;
    margin: 0 !important;
    transform: none !important;
  }

  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .proba-result-main,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .row > div:first-child {
    display: block !important;
    min-width: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .service-line {
    display: flex !important;
    align-items: flex-start !important;
    flex-wrap: nowrap !important;
    gap: var(--ptu-gap) !important;
    max-width: 100% !important;
    overflow: visible !important;
  }

  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card:not(:has(.result-smartpay-subtitle:not([hidden]))) .service-line {
    align-items: center !important;
  }

  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .proba-logo-stack {
    position: relative !important;
    flex: 0 0 var(--ptu-logo-size) !important;
    width: var(--ptu-logo-size) !important;
    height: var(--ptu-logo-size) !important;
    min-width: var(--ptu-logo-size) !important;
    min-height: var(--ptu-logo-size) !important;
    margin: 0 !important;
    overflow: visible !important;
  }

  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .proba-provider-logo {
    width: var(--ptu-logo-size) !important;
    height: var(--ptu-logo-size) !important;
    min-width: var(--ptu-logo-size) !important;
    min-height: var(--ptu-logo-size) !important;
    max-width: var(--ptu-logo-size) !important;
    max-height: var(--ptu-logo-size) !important;
    padding: clamp(5px, .8vw, 6px) !important;
    object-fit: contain !important;
    border-radius: clamp(8px, 1vw, 10px) !important;
    background: #fff !important;
    box-shadow: 0 0 0 3px #fff, 0 0 0 4px rgba(226,232,240,.95), 0 10px 20px rgba(15,23,42,.1) !important;
    box-sizing: border-box !important;
  }

  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .proba-bank-logo-mini {
    position: absolute !important;
    top: auto !important;
    left: auto !important;
    right: calc(var(--ptu-logo-size) * -0.1) !important;
    bottom: calc(var(--ptu-logo-size) * -0.1) !important;
    width: clamp(22px, 2.8vw, 29px) !important;
    height: clamp(20px, 2.65vw, 27px) !important;
    min-width: clamp(22px, 2.8vw, 29px) !important;
    min-height: clamp(20px, 2.65vw, 27px) !important;
    max-width: 29px !important;
    max-height: 27px !important;
    padding: 3px !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 7px !important;
    background: #fff !important;
    object-fit: contain !important;
    transform: translate(2px, 2px) !important;
    box-shadow: 0 0 0 2px #fff, 0 7px 15px rgba(15,23,42,.21) !important;
    filter: none !important;
    box-sizing: border-box !important;
  }
}
@media (min-width: 641px) {
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .proba-service-copy,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .proba-mobile-provider-title {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .service {
    display: flex !important;
    align-items: baseline !important;
    flex-wrap: nowrap !important;
    gap: 0 4px !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    color: #0f172a !important;
    font-size: clamp(15.5px, calc(1.65vw + 5px), 22px) !important;
    line-height: 1.08 !important;
    font-weight: 900 !important;
    letter-spacing: 0 !important;
    white-space: nowrap !important;
    overflow: visible !important;
    text-overflow: clip !important;
  }

  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .service .proba-provider-name {
    flex: 0 0 auto !important;
    max-width: none !important;
    min-width: max-content !important;
    overflow: visible !important;
    text-overflow: clip !important;
    white-space: nowrap !important;
  }

  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .service .proba-provider-bank {
    flex: 1 1 auto !important;
    max-width: clamp(96px, 19vw, 174px) !important;
    min-width: 0 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    color: #475569 !important;
    font-size: clamp(10px, 1vw, 11.5px) !important;
    line-height: 1 !important;
    font-weight: 760 !important;
    transform: translateY(-.52em) !important;
  }

  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .result-smartpay-subtitle {
    display: block !important;
    max-width: min(100%, 360px) !important;
    margin: clamp(2px, .45vw, 5px) 0 0 !important;
    color: #64748b !important;
    font-size: clamp(9.5px, 1.05vw, 12px) !important;
    line-height: 1.16 !important;
    font-weight: 760 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .proba-result-value,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .row > div:last-child {
    position: static !important;
    inset: auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    justify-content: flex-start !important;
    align-self: start !important;
    width: auto !important;
    min-width: 160px !important;
    max-width: var(--ptu-price-col) !important;
    height: auto !important;
    max-height: none !important;
    padding: clamp(2px, .45vw, 5px) 0 0 !important;
    border: 0 !important;
    text-align: right !important;
    overflow: visible !important;
    transform: none !important;
    box-sizing: border-box !important;
  }

  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card:not(:has(.result-smartpay-subtitle:not([hidden]))) .proba-result-value,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card:not(:has(.result-smartpay-subtitle:not([hidden]))) .row > div:last-child {
    padding-top: calc((var(--ptu-logo-size) - 1.08em) / 2) !important;
  }

  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .price {
    display: block !important;
    width: 100% !important;
    max-width: var(--ptu-price-col) !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #020617 !important;
    font-size: clamp(19px, calc(2vw + 6px), 29px) !important;
    line-height: 1.02 !important;
    font-weight: 950 !important;
    letter-spacing: 0 !important;
    text-align: right !important;
    white-space: nowrap !important;
    overflow: visible !important;
    text-overflow: clip !important;
    font-variant-numeric: tabular-nums !important;
    transform: none !important;
  }

  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .proba-result-diff,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .good,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .bad {
    display: block !important;
    margin: 3px 0 0 !important;
    color: #16a34a !important;
    font-size: clamp(10.5px, 1.1vw, 13px) !important;
    line-height: 1.12 !important;
    font-weight: 800 !important;
    text-align: right !important;
    white-space: nowrap !important;
    overflow: visible !important;
    text-overflow: clip !important;
  }

  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .bad {
    color: #ef4444 !important;
  }
}
@media (min-width: 641px) {
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .proba-result-meta-line,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-meta-line,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card > .proba-result-meta-line {
    position: absolute !important;
    left: var(--ptu-card-pad-x) !important;
    right: calc(var(--ptu-card-pad-x) + var(--ptu-price-col) + clamp(16px, 2.4vw, 26px)) !important;
    bottom: var(--ptu-meta-bottom) !important;
    display: grid !important;
    grid-auto-flow: row !important;
    grid-template-columns: minmax(0, 1fr) !important;
    align-items: start !important;
    justify-content: start !important;
    justify-items: start !important;
    gap: clamp(4px, .75vw, 7px) !important;
    width: auto !important;
    max-width: none !important;
    min-height: 0 !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #555d6d !important;
    font-size: clamp(10.5px, 1.05vw, 12px) !important;
    line-height: 1.16 !important;
    font-weight: 500 !important;
    white-space: nowrap !important;
    overflow: visible !important;
    transform: none !important;
    z-index: 3 !important;
  }

  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .proba-result-meta-line .proba-result-meta-item,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .proba-result-meta-line span {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 5px !important;
    min-width: 0 !important;
    min-height: 0 !important;
    color: #555d6d !important;
    font-size: inherit !important;
    line-height: inherit !important;
    font-weight: 500 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .proba-result-meta-icon {
    width: 13px !important;
    min-width: 13px !important;
    height: 13px !important;
    min-height: 13px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #64748b !important;
    box-shadow: none !important;
    opacity: .86 !important;
  }

  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .proba-result-meta-line b {
    display: none !important;
  }

  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .proba-result-meta-line strong {
    min-width: 0 !important;
    color: #555d6d !important;
    font-size: inherit !important;
    line-height: inherit !important;
    font-weight: 500 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .proba-result-meta-line span + span::before {
    display: none !important;
  }

  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .proba-result-actions,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-actions {
    position: absolute !important;
    right: auto !important;
    bottom: var(--ptu-card-bottom) !important;
    left: var(--ptu-card-pad-x) !important;
    top: auto !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-direction: row !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 10px !important;
    width: var(--ptu-action-w) !important;
    height: var(--ptu-action-h) !important;
    min-height: var(--ptu-action-h) !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    box-shadow: none !important;
    transform: none !important;
    z-index: 4 !important;
  }

  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .proba-result-cta,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .results-card-go-btn.proba-result-cta {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: var(--ptu-action-w) !important;
    min-width: var(--ptu-action-w) !important;
    max-width: var(--ptu-action-w) !important;
    height: var(--ptu-action-h) !important;
    min-height: var(--ptu-action-h) !important;
    margin: 0 !important;
    padding: 0 14px !important;
    border-radius: 9px !important;
    font-size: clamp(12px, 1.1vw, 13px) !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    transform: none !important;
    box-sizing: border-box !important;
  }

  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .proba-result-more-btn {
    position: absolute !important;
    right: var(--ptu-card-pad-x) !important;
    bottom: calc(var(--ptu-card-bottom) + (var(--ptu-action-h) - 18px) / 2) !important;
    left: auto !important;
    top: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 5px !important;
    width: auto !important;
    max-width: clamp(104px, 19vw, 154px) !important;
    min-height: 18px !important;
    height: 18px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #475569 !important;
    box-shadow: none !important;
    font-size: clamp(11px, 1.05vw, 13px) !important;
    line-height: 1 !important;
    font-weight: 760 !important;
    text-align: right !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    transform: none !important;
    z-index: 4 !important;
  }

  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .rate-timestamp,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .proba-result-updated,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .card-service-updated-at {
    position: static !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: auto !important;
    max-width: var(--ptu-price-col) !important;
    min-height: 0 !important;
    height: auto !important;
    margin: 7px 0 0 !important;
    color: rgba(71,85,105,.62) !important;
    font-size: clamp(8.5px, .85vw, 9.5px) !important;
    line-height: 1.15 !important;
    font-weight: 700 !important;
    text-align: right !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    transform: none !important;
  }
}

@media (min-width: 641px) and (max-width: 720px) {
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results {
    width: min(780px, calc(100vw - 36px)) !important;
    max-width: 780px !important;
  }

  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card.best {
    --ptu-card-pad-x: clamp(14px, 2.3vw, 17px);
    --ptu-card-pad-top: clamp(12px, 1.9vw, 14px);
    --ptu-card-bottom: 10px;
    --ptu-card-height: clamp(190px, calc(16vw + 88px), 203px);
    --ptu-logo-size: clamp(38px, 5vw, 42px);
    --ptu-gap: clamp(9px, 1.4vw, 13px);
    --ptu-price-col: clamp(160px, 26vw, 176px);
    --ptu-action-w: clamp(146px, 24vw, 160px);
    --ptu-action-h: 39px;
  }

  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .row {
    grid-template-columns: minmax(0, 1fr) minmax(154px, var(--ptu-price-col)) !important;
    gap: clamp(10px, 2vw, 15px) !important;
  }

  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .service {
    font-size: clamp(15px, 2.2vw, 16.8px) !important;
  }

  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .price {
    font-size: clamp(18.5px, 3vw, 21px) !important;
  }

  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .proba-result-meta-line,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card .service-line .proba-service-copy > .proba-result-meta-line,
  html body.page-results.page-results:not(.page-proba) .results-content > .container #results .card[data-service].main-proba-result-card > .proba-result-meta-line {
    right: calc(var(--ptu-card-pad-x) + var(--ptu-price-col) + 12px) !important;
    gap: 4px !important;
  }
}
/* PAYTOUA 0.3.207 END */

