.paymentMethodsContainer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.25rem auto;
    width: 95%;
}

.title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.methods {
    display: flex;
    gap: 1rem;
}

.method {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    padding: 0.5rem;
    cursor: pointer;
    border: 2px solid var(--color-neutral-gray-silver);
    transition: border-color 0.3s, transform 0.3s;
}

.method:hover {
    transform: scale(1.05);
}

.selected {
    border-color: var(--color-primary-red);
}

.icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
}