.consumables,
.flex-column.with-gap{
    gap: 30px;
}
.consumables .container{
    background-color: #f1f3f5;
    padding: 30px;
    gap: 30px;
}
.consumable{
    padding: 20px;
    background-color: #ffffff;
    border: 1px solid #d9e3ec;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    transition: box-shadow .3s ease-in-out;
}
.consumable:hover{
    box-shadow: 0 0 10px 0 rgba(16,33,139,.25);
}
.consumable .image{
    width: 25%;
}
.consumable img{
    width: unset;
    max-width: 100%;
    max-height: 200px;
    /* height: auto; */
}
.consumable .details{
    width: 74%;
    border-left: 1px solid #d9e3ec;
    padding-left: 20px;
}

.consumables .consumable__product-name{
    padding: 0;
}
.consumable .product-highlights,
.consumable p,
.consumable .consumable__product-name{
    margin-bottom: 10px;
}
.consumable .consumable__product-name{
    margin-bottom: 30px;
}
.consumable__product-name h3{
    font-size: 20px;
}

@media screen and (max-width: 991px) {
    .consumable .image{
        width: 100%;
        text-align: center;
    }
    .consumable .details{
        border-left: none;
        width: 100%;
        padding-left: 0;
    }
}

@media screen and (min-width: 1024px) {
    .consumable .actions{
        width: 20%;
        border-left: 1px solid #90949c;
        padding-left: 20px;
    }
    .consumable .image{
        width: 25%;
        text-align: center;
    }
    .consumable .details{
        width: 45%;
    }
    .consumable .actions .btn{
        width: fit-content;
    }
}

/* COMPATIBILITY GRID */
.compatible-printers{
    padding-top: 70px;
    padding-inline: 10px;
}
.compatibility-grid{
    display: grid;
    grid-template-columns: 1fr;
}
.compatible-product > a,
.compatible-product .product-name{
    color: #353535;
    font-size: 16px;
    text-decoration: none;
}
.compatible-product > a:hover{
    text-decoration: underline;
}
.compatible-product .product-name{
    padding: 0!important;
    margin: 0!important;
}
.compatible-product {
    /* border: 1px solid #d9e3ec; */
    padding: 10px 5px;
}
.compatible-product > a{
    display: flex;
    align-items: center;
    height: 100%;
    gap: 10px;
}
.compatible-product .product-image{
    max-width: 100px;
    max-height: fit-content;
}

@media screen and (min-width: 1024px){
    .compatibility-grid{
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .compatible-product .product-image{
        max-width: 60px;
        max-height: fit-content;
    }
}

@media screen and (min-width: 1400px) {
    .compatibility-grid{
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
    }
}

/* CARTRIDGE RECYCLING */
.cartridge-recycling{
    display: flex;
    gap: 20px;
    padding-top: 40px;
    flex-direction: column;
    padding-inline: 22.4px;
}

@media screen and (min-width: 1200px) {
    .cartridge-recycling{
        flex-direction: row;
        align-items: center;
    }
    .cartridge-recycling-image{
        width: 25%;
        text-align: center;
    }

    .cartridge-recycling-caption{
        width: 45%;
        padding-left: 20px;
    }

    .cartridge-recycling-button{
        width: 20%;
        padding-left: 20px;
    }
}

.product-info-container > * {
    padding: 5px;
}

.info-title {
    border-right: 1px solid #f5fafd;
}

.product-info-container {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 2fr;
    column-gap: 10px;
    background-color: #fff;
}

.product-info-container:not(:last-of-type) {
    border-bottom: 1px solid #f1f3f5;
}

.custom-properties{
    padding: 20px;
    background-color: #fff;
}