.payment-method-picker {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
}

.payment-method-option {
    display: grid;
    grid-template-columns: 34px 1fr;
    grid-template-rows: auto auto;
    gap: 0 9px;
    align-items: center;
    min-height: 64px;
    padding: 9px 11px;
    border: 1px solid #d2d2d7;
    border-radius: 13px;
    background: #fff;
    color: #1d1d1f;
    text-align: left;
    transition: .16s ease;
}

.payment-method-option:hover {
    border-color: #7bb5ee;
    background: #f5faff;
}

.payment-method-option.is-selected {
    border-color: #0071e3;
    background: #e8f3ff;
    box-shadow: 0 0 0 3px rgba(0, 113, 227, .12);
}

.payment-method-icon {
    grid-row: 1 / 3;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: #e8e8ed;
    color: #424245;
    font-size: 17px;
    font-weight: 750;
}

.payment-method-icon svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.payment-method-option.is-selected .payment-method-icon {
    background: #0071e3;
    color: #fff;
}

.payment-method-option > span:nth-child(2) { font-weight: 700; }
.payment-method-option small { color: #6e6e73; font-size: 11px; }

.selected-payment-panel {
    margin-top: 12px;
    padding: 13px;
    border: 1px solid #d6e9ff;
    border-radius: 14px;
    background: #f5faff;
}

.selected-payment-panel[hidden] { display: none; }
.selected-payment-panel label {
    display: block;
    margin-bottom: 7px;
    color: #424245;
    font-size: 14px;
    font-weight: 700;
}

.selected-payment-panel input { background: #fff; font-size: 20px; font-weight: 700; }
.selected-payment-actions { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; margin-top: 8px; }
.selected-payment-actions button {
    min-height: 36px;
    border: 1px solid #c6ddf7;
    border-radius: 9px;
    background: #fff;
    color: #0066cc;
    font-size: 12px;
    font-weight: 700;
}
.selected-payment-actions button:hover { background: #e8f3ff; }

@media (max-width: 575.98px) {
    .payment-method-picker { grid-template-columns: 1fr; }
}
