.dcm-footer-wrapper {
    width: 100%;
}

.new-product-info-box {
    display: flex;
    align-items: center;
    border: 1px solid #dddddd;
    background: #FBFBFB;
    border-radius: 10px;
    width: 75%;
    column-gap: 15px;
    padding-right: 20px;
}

.highlighted-product-info {
    width: 140px;
    max-width: none;
    display: block;
    transform: translate(-5px, 20px);
}

.btn-go-marketplace {
    font-size: 12px;
    color: white !important;
    padding: 6px 8px;
    border-radius: 4px;
    background: #AF2226;
    text-decoration: none;
    display: inline-block;
    width: fit-content;
}

.price-product-footer {
    display: flex;
    flex-direction: row;
    column-gap: 10px;
}

.product-name-footer strong,
.price-product-footer strong {
    color: #BD080D;
    font-weight: bold;
    font-size: 20px;
}

.price-product-footer strong {
    color: #BD080D;
    font-weight: bold;
    font-size: 20px;
}

.product-name-footer {
    margin-bottom: 10px;
}

.price-product-footer small {
    display: block;
    margin-top: 5px;
}

.all-infos-products {
    padding: 15px 0;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.all-infos-products p,
.all-infos-products a {
    margin: 0px;
}

@media(max-width:768px) {

    .new-product-info-box {
        width: 100%;
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }

    .highlighted-product-info {
        transform: none;
    }

}