.productfinder--widget {
    margin: 0 auto;
    width: 100%;
    max-width: 1280px;
    background: #F4F4F4;
    border-radius: 9px;
    padding: 40px 20px;
    color: #000;
}

.productfinder--widget .content {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.productfinder--widget .image {
    max-width: 80px;
}

.productfinder--widget .title {
    flex: 1 1 0%;
    display: flex;
    flex-direction: column;
}

.productfinder--widget .title h3 {
    font-weight: 900;
    margin-bottom: 5px;
}

.productfinder--widget .title p {
    font-weight: 400;
}

.productfinder--widget .btn {
    background: #1A67FF;
    border-radius: 27px;
    max-width: none;
    font-weight: 600;
    font-family: 'Vitesse';
    color: #fff;
    text-transform: uppercase;
    display: block;
    padding: 14px 22px;
    font-size: 14px;
}

@media (max-width: 767px) {
    .productfinder--widget {
        padding: 30px 20px;
    }
    .productfinder--widget .content {
        flex-direction: column;
        gap: 20px;
    }
    .productfinder--widget .title {
        text-align: center;
    }
}
