/* PayNearMe — payment method segmented tab switcher */
.pnm-tabs {
    display: flex;
    background: #f1f3f5;
    border-radius: 0.875rem;
    padding: 4px;
    margin: 1.25rem 0 0.75rem;
    gap: 3px;
}

.pnm-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.55rem 0.5rem;
    border: none;
    background: transparent;
    border-radius: 0.65rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
    outline: none;
    white-space: nowrap;
    font-family: inherit;
}

.pnm-tab:focus {
    outline: none;
    box-shadow: none;
}

.pnm-tab.pnm-tab--active {
    background: var(--secondary);
    color: #1a1a2e;
    box-shadow: var(--secondary-box-shadow);
}

.pnm-tab i {
    font-size: 0.8rem;
}

/* ── Store card (cash description + logo strip) ─────────────────────────── */
.pnm-store-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #d4edda 0%, #e9f7ec 60%, #f0faf2 100%);
    border: 1px solid #b7dfbf;
    border-radius: 0.875rem;
    padding: 1rem 1rem 0.875rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.pnm-store-card-bg-icon {
    position: absolute;
    right: -0.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 5.5rem;
    color: rgba(72, 160, 94, 0.10);
    pointer-events: none;
    line-height: 1;
}

.pnm-store-headline {
    font-size: 0.8rem;
    color: #2d6a3f;
    font-weight: 600;
    margin-bottom: 0.75rem;
    position: relative;
}

/* ── Logo strip ─────────────────────────────────────────────────────────── */
.pnm-logo-strip {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    position: relative;
}

.pnm-store-logo {
    height: 28px;
    width: auto;
    object-fit: contain;
    background: #ffffff;
    border-radius: 0.4rem;
    padding: 3px 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

/* +20k stores chip */
.pnm-logo--more {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(45, 106, 63, 0.12);
    border: 1px dashed #48a05e;
    border-radius: 0.4rem;
    color: #2d6a3f;
    padding: 3px 7px;
    line-height: 1.1;
}

.pnm-logo-more-num {
    font-size: 0.65rem;
    font-weight: 900;
    text-transform: uppercase;
}

.pnm-logo-more-label {
    font-size: 0.38rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ── Convenience fee summary (pre-button + modal) ───────────────────────── */
.pnm-fee-summary {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 0.5rem;
    padding: 0.6rem 0.85rem;
}

.pnm-fee-total-row {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 0.35rem;
    margin-top: 0.25rem;
}
