/*
|--------------------------------------------------------------------------
Product Finder
|--------------------------------------------------------------------------
*/

.product-finder{

    background:#F8FBF7;

}

.finder-box{

    max-width:900px;

    margin:0 auto;

    padding:60px;

    background:#FFF;

    border-radius:32px;

    text-align:center;

    box-shadow:0 20px 60px rgba(0,0,0,.06);

}

.finder-box h3{

    margin-bottom:36px;

    font-size:32px;

}

.finder-options{

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:16px;

}

.finder-chip{

    border:none;

    background:#F2F8F2;

    color:var(--color-primary);

    padding:14px 22px;

    border-radius:999px;

    cursor:pointer;

    font-weight:600;

    transition:.25s;

}

.finder-chip:hover{

    background:var(--color-primary);

    color:#FFF;

}