.coffee-products-widget-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px;
    border-radius: 32px;
    box-shadow: 0px 4px 30px #EEEEEE;
    gap: 40px;
}
.coffee-products-widget-wrapper .coffee-products-image{
    width: 50%;
}
.coffee-products-widget-wrapper .coffee-products-content{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center ;
}
.coffee-products-widget{
    padding-bottom: 80px;
}
.coffee-products-widget-wrapper .coffee-products-content .coffee-products-categories{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.coffee-products-widget-wrapper .coffee-products-content .coffee-products-categories .category-button-icon svg{
    fill: white;
}
@media screen and (max-width:1100px) {
    .coffee-products-widget-wrapper .coffee-products-content .coffee-products-categories{
        grid-template-columns: 1fr;
    }   
}
@media screen and (max-width:700px) {
    .coffee-products-widget-wrapper .coffee-products-title{
        font-size: 24px !important;
    }
    .coffee-products-widget-wrapper .coffee-products-description{
        font-size: 14px !important;
    }
    .coffee-products-widget-wrapper .coffee-products-subtitle{
        font-size: 18px !important;
    }
    .coffee-products-widget-wrapper{
        flex-direction: column;
        padding: 0;
    }
    .coffee-products-widget-wrapper .coffee-products-image{
        width: 100%;
    }
    .coffee-products-widget-wrapper .coffee-products-image img{
        height: auto !important;
    }
    .coffee-products-widget-wrapper .coffee-products-content{
        width: 100%;
    } 
}
@media screen and (max-width:500px) {
    .coffee-products-widget-wrapper .coffee-products-image{
        max-width: 200px;
    }
    
}