#footer-bar {
    visibility: hidden;
}

/* ---- Ringkasan nominal ---- */
.pay-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, #d62d2d 0%, #a01a1a 100%);
    color: #fff;
    box-shadow: 0 8px 20px -8px rgba(200, 38, 38, .55);
}
.pay-summary .label {
    font-size: 11px;
    letter-spacing: .3px;
    text-transform: uppercase;
    opacity: .8;
    margin-bottom: 2px;
}
.pay-summary .amount {
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
}
.pay-summary .badge-secure {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 10.5px;
    font-weight: 600;
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .18);
}

/* ---- Header grup (label saja, tanpa dot warna) ---- */
.pay-head {
    margin: 20px 2px 8px;
}
.pay-head .t {
    font-size: 13px;
    font-weight: 700;
    color: var(--pay-fg, #2b2b2b);
}
.pay-head .s {
    font-size: 10.5px;
    font-weight: 500;
    opacity: .5;
    margin-top: 1px;
}
.theme-dark .pay-head .t {
    color: #f1f1f1;
}

/* ---- Panel grup: satu kartu, divider inset antar item ---- */
.pay-panel {
    border: 1px solid rgba(0, 0, 0, .07);
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
}
.theme-dark .pay-panel {
    background: #23262b;
    border-color: rgba(255, 255, 255, .08);
}

/* ---- Item metode ---- */
.pay-item {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 11px 14px;
    border: 0;
    background: transparent;
    text-align: left;
    color: inherit;
    cursor: pointer;
    transition: background .12s ease;
    text-decoration: none;
}
.pay-item + .pay-item {
    border-top: 1px solid rgba(0, 0, 0, .06);
}
.theme-dark .pay-item + .pay-item {
    border-top-color: rgba(255, 255, 255, .07);
}
.pay-item:active {
    background: rgba(200, 38, 38, .06);
}
.pay-item:disabled {
    opacity: .45;
    cursor: not-allowed;
}

/* ---- Tile logo seragam ---- */
.pay-logo {
    width: 60px;
    min-width: 60px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 8px;
}
.pay-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* ---- Nama + subteks ---- */
.pay-name {
    flex: 1;
    min-width: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.25;
}
.pay-name small {
    display: block;
    font-size: 11px;
    font-weight: 500;
    margin-top: 1px;
}
.pay-item .chev {
    font-size: 14px;
    opacity: .35;
    flex-shrink: 0;
}
