.cb-connected-products{
    width:100%;
    margin:24px 0 0;
}

.cb-connected-products-title{
    margin:0 0 14px;
    color:#fff;
    font-family:Inter,sans-serif;
    font-size:16px;
    font-weight:600;
    line-height:1.4;
}

.cb-connected-products-buttons{
    display:grid;
    grid-template-columns:repeat(3,180px);
    gap:14px;
    width:100%;
    margin-bottom: 15px;
}

.cb-connected-product-button{
    width:180px;
    min-height:184px;
    padding:10px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:flex-start;
    box-sizing:border-box;
    background:#fff;
    border:1px solid #ddd;
    border-radius:9px;
    text-decoration:none!important;
    overflow:hidden;
    transition:all .25s ease;
}

.cb-connected-product-button:hover{
    border-color:#d9a52b;
    box-shadow:0 5px 18px rgba(217,165,43,.18);
    transform:translateY(-2px);
}

.cb-connected-product-image-wrap{
    width:150px!important;
    height:150px!important;
    min-width:150px!important;
    min-height:150px!important;
    max-width:150px!important;
    max-height:150px!important;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    overflow:hidden;
    border-radius:6px;
}

.cb-connected-product-image{
    display:block!important;
    width:150px!important;
    height:150px!important;
    min-width:150px!important;
    min-height:150px!important;
    max-width:150px!important;
    max-height:150px!important;
    margin:0!important;
    padding:0!important;
    object-fit:contain!important;
    object-position:center!important;
}

.cb-connected-product-label{
    display:block;
    width:100%;
    margin:9px 0 2px;
    padding:0 3px;
    color:#222!important;
    font-family:Inter,sans-serif;
    font-size:14px;
    font-weight:600;
    line-height:1.25;
    text-align:center;
    white-space:normal;
}

@media(max-width:1199px){
    .cb-connected-products-buttons{
        grid-template-columns:repeat(2,180px);
    }
}

@media(max-width:767px){
    .cb-connected-products{
        margin-top:20px;
    }

    .cb-connected-products-buttons{
        grid-template-columns:repeat(2,minmax(0,1fr));
        gap:10px;
    }

    .cb-connected-product-button{
        width:100%;
        min-height:174px;
        padding:8px;
    }

    .cb-connected-product-image-wrap{
        width:150px!important;
        height:150px!important;
        min-width:150px!important;
        min-height:150px!important;
        max-width:150px!important;
        max-height:150px!important;
    }

    .cb-connected-product-image{
        width:150px!important;
        height:150px!important;
        min-width:150px!important;
        min-height:150px!important;
        max-width:150px!important;
        max-height:150px!important;
    }

    .cb-connected-product-label{
        font-size:13px;
    }
}