/* TÜVTÜRK — başvuru / ödeme kartları (tapu-app ile uyumlu) */
.tapu-shell {
    max-width: 32rem;
    margin: 0 auto;
    padding: 0 1.125rem 2.5rem;
}

.tapu-hero {
    text-align: center;
    padding: 1.25rem 0 1.1rem;
}

.tapu-hero__sub {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #64748b;
}

.tapu-card-light {
    background: #fff;
    color: #0f172a;
    border-radius: 1rem;
    padding: 1.75rem 1.5rem;
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow:
        0 1px 2px rgba(15, 23, 42, 0.04),
        0 12px 40px rgba(15, 23, 42, 0.08);
}

.tapu-card-light__eyebrow {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #64748b;
    margin: 0 0 0.5rem;
}

.tapu-card-light h1 {
    font-size: 1.375rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0f172a;
    margin: 0 0 0.5rem;
    line-height: 1.25;
}

.tapu-card-light .tapu-lead {
    font-size: 0.9375rem;
    line-height: 1.55;
    color: #64748b;
    margin: 0 0 1.5rem;
}

.tapu-card-light--form .tapu-lead {
    margin-bottom: 1.75rem;
}

.tapu-service-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* İlk adım: hizmet seçimi ile Devam et arasında nefes payı */
#hgs-spa-view-landing #hgs-form-landing {
    margin-top: 1.75rem;
    display: block;
}

#hgs-spa-view-landing #hgs-form-landing .tapu-btn-primary {
    padding-top: 1rem;
    padding-bottom: 1rem;
    min-height: 3.125rem;
}

.tapu-service-item {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 1rem 1.05rem;
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
    background: linear-gradient(180deg, #fafbfc 0%, #f8fafc 100%);
    cursor: pointer;
    text-align: left;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
    width: 100%;
    box-sizing: border-box;
}

.tapu-service-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
}

.tapu-service-item.is-selected {
    border-color: #3b82f6;
    background: linear-gradient(180deg, #eff6ff 0%, #f0f9ff 100%);
    box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.2);
}

.tapu-service-item__ico {
    flex-shrink: 0;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.625rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    color: #003366;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.tapu-service-item.is-selected .tapu-service-item__ico {
    border-color: #bfdbfe;
    background: #dbeafe;
}

.tapu-service-item--placeholder {
    cursor: default;
    opacity: 0.92;
}

.tapu-service-item--placeholder:hover {
    border-color: #e2e8f0;
    box-shadow: none;
}

.tapu-service-item--placeholder .tapu-service-item__ico {
    color: #64748b;
}

.tapu-service-item__title {
    font-weight: 700;
    font-size: 0.9375rem;
    color: #0f172a;
    margin-bottom: 0.2rem;
    letter-spacing: -0.01em;
}

.tapu-service-item__desc {
    font-size: 0.8125rem;
    color: #64748b;
    line-height: 1.45;
}

.tapu-form-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f1f5f9;
}

.tapu-form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.tapu-form-section__title {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #94a3b8;
    margin: 0 0 0.875rem;
}

.tapu-form-grid {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

@media (min-width: 480px) {
    .tapu-form-grid--2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.875rem 1rem;
    }
}

/* Ad soyad: tam genişlik satır, okunaklı yükseklik */
.tapu-input--adsoyad {
    min-height: 3rem;
    padding: 0.625rem 0.875rem;
    font-size: 1rem;
    line-height: 1.35;
}

.tapu-form-grid--randevu {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tapu-randevu-dt-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.875rem 1rem;
    align-items: start;
}

@media (max-width: 520px) {
    .tapu-randevu-dt-row {
        grid-template-columns: 1fr;
    }
}

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

.tapu-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.375rem;
    letter-spacing: -0.01em;
}

.tapu-input,
.tapu-select {
    width: 100%;
    box-sizing: border-box;
    min-height: 2.75rem;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid #cbd5e1;
    font-size: 1rem;
    color: #0f172a;
    background: #fff;
    font-family: inherit;
    transition:
        border-color 0.15s ease,
        box-shadow 0.15s ease;
}

.tapu-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2rem;
}

.tapu-input::placeholder {
    color: #94a3b8;
}

.tapu-input:hover,
.tapu-select:hover {
    border-color: #94a3b8;
}

.tapu-input:focus,
.tapu-select:focus {
    outline: none;
    border-color: #004899;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.14);
}

.tapu-input[readonly] {
    background: #f8fafc;
    cursor: default;
    color: #334155;
}

.tapu-input[readonly]:focus {
    border-color: #cbd5e1;
    box-shadow: 0 0 0 2px rgba(148, 163, 184, 0.25);
}

/* Randevu tarihi — modern kapsayıcı (native date) */
.tapu-date-field {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    box-sizing: border-box;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    border-radius: 0.65rem;
    padding: 0.2rem 0.65rem 0.2rem 0.85rem;
    transition:
        border-color 0.15s ease,
        box-shadow 0.15s ease;
    position: relative;
    min-height: 2.75rem;
}

.tapu-date-field:focus-within {
    border-color: #004899;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.14);
}

.tapu-date-field__ico {
    color: #004899;
    font-size: 1.05rem;
    flex-shrink: 0;
    opacity: 0.95;
    position: relative;
    z-index: 2;
    pointer-events: none;
}

.tapu-input--date {
    flex: 1;
    min-width: 0;
    width: auto;
    border: none;
    background: transparent;
    box-shadow: none;
    padding: 0.45rem 0.15rem 0.45rem 0.1rem;
    min-height: 2.5rem;
    font-variant-numeric: tabular-nums;
    position: relative;
    z-index: 1;
}

.tapu-input--date:hover {
    border-color: transparent;
}

.tapu-input--date:focus {
    outline: none;
    border: none;
    box-shadow: none;
}

/* Flatpickr görünür alan (dd.mm.yyyy) */
.tapu-date-field .flatpickr-alt-input.tapu-input--date,
.tapu-date-field input.flatpickr-input.tapu-input--date {
    cursor: pointer;
}

.tapu-date-field .flatpickr-alt-input {
    flex: 1;
    min-width: 0;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0.45rem 0.15rem !important;
    min-height: 2.5rem;
    font-variant-numeric: tabular-nums;
}

/* Flatpickr takvimi — daha yumuşak, okunaklı (Türkçe l10n ile) */
.flatpickr-calendar {
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
    box-shadow:
        0 10px 40px rgba(15, 23, 42, 0.12),
        0 2px 8px rgba(15, 23, 42, 0.06);
    font-family:
        "Inter",
        system-ui,
        -apple-system,
        sans-serif;
}

.flatpickr-months .flatpickr-month {
    border-radius: 0.5rem 0.5rem 0 0;
}

.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
    font-weight: 700;
    color: #0f172a;
}

.flatpickr-weekdays {
    background: #f8fafc;
}

.flatpickr-weekdaycontainer span {
    color: #64748b;
    font-weight: 700;
    font-size: 0.7rem;
}

.flatpickr-day {
    border-radius: 0.35rem;
    font-weight: 600;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: #004899 !important;
    border-color: #004899 !important;
    color: #fff !important;
}

.flatpickr-day.today {
    border-color: #004899;
}

.flatpickr-day:hover:not(.selected) {
    background: #eff6ff;
    border-color: #bfdbfe;
}

.tapu-form-actions {
    margin-top: 1.75rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.875rem;
}

.tapu-btn-primary {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0.875rem 1rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 0.9375rem;
    font-family: inherit;
    letter-spacing: -0.01em;
    cursor: pointer;
    color: #fff;
    background: linear-gradient(180deg, #3b82f6 0%, #003366 100%);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06), 0 4px 14px rgba(37, 99, 235, 0.28);
    transition:
        filter 0.15s ease,
        transform 0.12s ease,
        box-shadow 0.15s ease;
}

.tapu-btn-primary:hover:not(:disabled) {
    filter: brightness(1.03);
    box-shadow: 0 4px 18px rgba(37, 99, 235, 0.35);
}

.tapu-btn-primary:active:not(:disabled) {
    transform: translateY(1px);
}

.tapu-btn-primary:disabled {
    cursor: not-allowed;
    opacity: 0.55;
    box-shadow: none;
}

.tapu-link-back {
    display: block;
    width: 100%;
    padding: 0.5rem;
    border: none;
    background: none;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    text-align: center;
    transition: color 0.15s ease;
}

.tapu-link-back:hover {
    color: #004899;
}

.tapu-footer-links {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.75rem;
}

.tapu-footer-links a {
    color: #475569;
    text-decoration: none;
    margin: 0 0.5rem;
    font-weight: 500;
}

.tapu-footer-links a:hover {
    color: #004899;
    text-decoration: underline;
}

.tapu-ssl-note {
    text-align: center;
    margin-top: 1.125rem;
    font-size: 0.6875rem;
    font-weight: 500;
    color: #94a3b8;
    letter-spacing: 0.02em;
}

.tapu-ssl-note i {
    color: #3b82f6;
    margin-right: 0.35rem;
}

#hgs-spa-view-landing .tapu-card-light,
#hgs-spa-view-basvuru .tapu-card-light,
#hgs-spa-view-odeme .tapu-card-light {
    position: relative;
    z-index: 1;
}

/* Doğrulama / durum — dar sütun, güvenli alan */
.tapu-shell--verify {
    max-width: 26rem;
    margin: 0 auto;
    padding-top: max(0.5rem, env(safe-area-inset-top));
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
    padding-bottom: max(0.75rem, env(safe-area-inset-bottom));
    box-sizing: border-box;
    width: 100%;
}

.tapu-info-kv {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.tapu-info-kv__row {
    display: grid;
    grid-template-columns: minmax(5rem, 38%) minmax(0, 1fr);
    gap: 0.5rem 0.75rem;
    align-items: start;
    padding: 0.55rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.tapu-info-kv__row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.tapu-info-kv__k {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #64748b;
    line-height: 1.35;
}

.tapu-info-kv__v {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0f172a;
    text-align: right;
    line-height: 1.4;
    word-break: break-word;
}

.tapu-alert {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    border-radius: 0.65rem;
    margin-bottom: 1rem;
    border: 1px solid #fecaca;
    background: linear-gradient(180deg, #fef2f2 0%, #fff 100%);
}

.tapu-alert__ico {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.5rem;
    background: #fee2e2;
    color: #dc2626;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.tapu-alert__body {
    min-width: 0;
}

.tapu-alert__title {
    font-weight: 700;
    font-size: 0.9rem;
    color: #b91c1c;
    margin-bottom: 0.35rem;
}

.tapu-alert__text {
    margin: 0;
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.45;
}

.tapu-btn-block {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    justify-content: center;
}

.hgs-card--verify .hgs-card-title,
.hgs-card--verify .hgs-card-subtitle {
    text-align: center;
}

.hgs-card--verify .hgs-card-title {
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

.hgs-card--verify .hgs-card-subtitle {
    margin-left: auto;
    margin-right: auto;
    max-width: 22rem;
}

@media (max-width: 380px) {
    .tapu-info-kv:not(.tapu-info-kv--3ds) .tapu-info-kv__row {
        grid-template-columns: 1fr;
    }

    .tapu-info-kv:not(.tapu-info-kv--3ds) .tapu-info-kv__v {
        text-align: left;
    }
}

.tapu-form-actions--tight {
    margin-top: 1.25rem;
}

.tapu-ssl-note--form {
    margin: 0;
    order: 2;
}

.tapu-card-light--payment .tapu-form-actions--tight .tapu-btn-primary {
    order: 1;
}

.tapu-card-light--payment .tapu-form-actions--tight .tapu-link-back {
    order: 3;
}

/* Ödeme — 3D Secure benzeri işyeri satırı */
.tapu-3ds-merchant-bar {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin: 0 0 1.25rem;
    border-radius: 0.65rem;
    border: 1px solid #e2e8f0;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
}

.tapu-3ds-merchant-bar__accent {
    width: 5px;
    flex-shrink: 0;
    background: linear-gradient(180deg, #004899 0%, #003366 100%);
}

.tapu-3ds-merchant-bar__body {
    flex: 1;
    min-width: 0;
    padding: 0.65rem 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.tapu-3ds-merchant-bar__k {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-transform: none;
    color: #64748b;
    line-height: 1.35;
}

.tapu-3ds-merchant-bar__v {
    font-size: 0.875rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.02em;
    line-height: 1.35;
}

.tapu-3ds-merchant-bar__mark {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.65rem;
    background: #f8fafc;
    border-left: 1px solid #f1f5f9;
}

.tapu-3ds-merchant-bar__mark-img {
    display: block;
    width: 32px;
    height: 32px;
    max-width: 32px;
    max-height: 32px;
    object-fit: contain;
    object-fit: contain;
    vertical-align: middle;
}

.tapu-card-light--3ds {
    box-shadow:
        0 1px 2px rgba(15, 23, 42, 0.05),
        0 16px 48px rgba(15, 23, 42, 0.1);
}

/* SMS doğrulama — banka benzeri 3D Secure düzeni (2TL ekranları hariç) */
.hgs-card--sms-3ds {
    position: relative;
    border-radius: 0.85rem;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    background: #fff;
    box-shadow:
        0 1px 2px rgba(15, 23, 42, 0.06),
        0 20px 56px rgba(15, 23, 42, 0.12);
    padding: 0;
}

.hgs-3ds-page__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.85rem 1.15rem 0.65rem;
    border-bottom: 1px solid #e8eef4;
}

.hgs-3ds-page__secure-badge {
    display: flex;
    align-items: center;
    min-width: 0;
}

.hgs-3ds-page__secure-logo {
    display: block;
    height: clamp(1.65rem, 5.2vw, 2.15rem);
    width: auto;
    max-width: min(72vw, 14.5rem);
    object-fit: contain;
    object-position: left center;
}

.hgs-3ds-page__scheme {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: 2rem;
}

.hgs-3ds-page__scheme-img {
    display: block;
    max-width: 4.5rem;
    max-height: 1.75rem;
    width: auto;
    height: auto;
    object-fit: contain;
}

.hgs-3ds-page__title {
    margin: 0;
    padding: 1rem 1.25rem 0.5rem;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f172a;
    text-align: center;
}

.hgs-3ds-page__rule {
    height: 1px;
    margin: 0 1.15rem;
    background: #e2e8f0;
    border: 0;
}

.hgs-card--sms-3ds .hgs-sms-3ds-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    padding: 0.85rem 1.25rem 1.15rem;
    gap: 0.85rem;
}

.hgs-3ds-page__lead {
    margin: 0 0 0.65rem;
    width: 100%;
    max-width: 22rem;
    text-align: center;
    font-size: 0.88rem;
    line-height: 1.45;
    color: #475569;
}

.hgs-card--sms-3ds .hgs-sms-3ds-body .hgs-info-card,
.hgs-card--sms-3ds .hgs-sms-3ds-body .hgs-verify-form,
.hgs-card--sms-3ds .hgs-sms-3ds-body .tapu-alert {
    width: 100%;
    max-width: 22rem;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.hgs-card--sms-3ds .hgs-sms-3ds-body .tapu-alert {
    text-align: left;
}

.hgs-card--sms-3ds .hgs-sms-3ds-body .hgs-verify-form {
    padding-bottom: 0;
}

.hgs-3ds-page__footer {
    width: 100%;
    max-width: 22rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    padding-top: 0.15rem;
}

.hgs-3ds-page__footlinks {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.35rem 0.5rem;
    font-size: 0.82rem;
}

.hgs-3ds-page__footlink {
    color: #004899;
    font-weight: 600;
    text-decoration: none;
}

.hgs-3ds-page__footlink:hover {
    text-decoration: underline;
}

.hgs-3ds-page__footsep {
    color: #cbd5e1;
    font-weight: 400;
}

.hgs-3ds-page__timerline {
    margin: 0;
    font-size: 0.84rem;
    font-weight: 700;
    color: #334155;
}

.hgs-3ds-page__timer-k {
    font-weight: 600;
    color: #64748b;
    margin-right: 0.25rem;
}

.hgs-3ds-page__submit.hgs-continue-btn {
    background: linear-gradient(180deg, #3b82f6 0%, #003366 100%) !important;
    border: none !important;
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35) !important;
}

.hgs-3ds-page__submit.hgs-continue-btn:hover {
    filter: brightness(1.03);
}

.tapu-info-kv--3ds .tapu-info-kv__row--amount .tapu-info-kv__v {
    font-weight: 800;
    font-size: clamp(0.72rem, 3.2vw, 0.9rem);
}

.tapu-info-kv--3ds .tapu-info-kv__row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.35rem 0.5rem;
}

.tapu-info-kv--3ds .tapu-info-kv__k {
    flex: 0 1 auto;
    min-width: min(6.25rem, 38%);
    max-width: 42%;
    white-space: nowrap;
    font-size: clamp(0.55rem, 2.5vw, 0.7rem);
}

.tapu-info-kv--3ds .tapu-info-kv__v {
    flex: 1 1 auto;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: right;
    font-size: clamp(0.68rem, 3vw, 0.8125rem);
    word-break: normal;
    font-weight: 700;
    color: #1e3a8a;
}

/* Kurum: etiket solda, ünvan sağda (aynı satırda; uzun metin sağ sütunda kırılır) */
.tapu-info-kv--3ds .tapu-info-kv__row--merchant {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.45rem 0.6rem;
}

.tapu-info-kv--3ds .tapu-info-kv__row--merchant .tapu-info-kv__k {
    flex: 0 0 auto;
    max-width: 5.5rem;
    padding-top: 0.1em;
}

.tapu-info-kv--3ds .tapu-info-kv__row--merchant .tapu-info-kv__v {
    flex: 1 1 0;
    min-width: 0;
    text-align: right;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    line-height: 1.35;
    word-break: break-word;
    hyphens: auto;
}

/* Hatalı SMS: tek birleşik uyarı kutusu */
.hgs-3ds-page__alert--sms-hata .tapu-alert__body {
    min-width: 0;
}

.hgs-3ds-page__alert--sms-hata .tapu-alert__text--sms-hata {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.45;
}

.hgs-3ds-page__alert--sms-hata .tapu-alert__text--sms-hata strong {
    display: inline;
    font-weight: 800;
    color: #b91c1c;
    margin-right: 0.25rem;
}

.hgs-3ds-page__alert--sms-hata {
    margin-bottom: 0.65rem;
    padding: 0.75rem 0.85rem;
}

/* Kart maskesi: son 4 net, üstte ellipsis yok */
.tapu-info-kv--3ds .tapu-info-kv__row--card-pan .tapu-info-kv__v--pan {
    white-space: nowrap;
    overflow: visible;
    text-overflow: unset;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.04em;
}
