.dwwof-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.dwwof-products {
    flex: 1;
    min-width: 300px;
}

.dwwof-product {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 5px 10px;
    border: 1px solid #eee;
    border-radius: 8px;
}

.dwwof-product-image img {
    max-width: 80px;
    margin-right: 20px;
}

.dwwof-product-details {
    flex: 1;
}

.dwwof-product-details h3{
    font-size:1.1rem;
}

.dwwof-price{
    font-size:.8rem;
}

.dwwof-mini-cart h3{
    font-size:.9rem;
}

.dwwof-mini-cart{
    font-size:.9rem;
}

.dwwof-margin,
.dwwof-total-ttc{
    font-size:.7rem;
    line-height: 1rem;
}

.dwwof-mini-cart p{
    padding-bottom:0;
}

.dwwof-product-quantity {
    display: flex;
    align-items: center;
}

.dwwof-quantity {
    height:40px;
    width: 60px;
    text-align: center;
    margin: 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    border-left: none;
    border-right: none;
}

.dwwof-minus, .dwwof-plus, .dwwof-submit-order {
    height:40px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    padding: 5px 10px;
    cursor: pointer;
}
.dwwof-minus{
    border-radius: 8px 0 0 8px;
}

.dwwof-plus{
    border-radius: 0 8px 8px 0;
}

.dwwof-mini-cart {
    width: 280px;
    padding: 20px;
    background: #fff;
    border: none;
    border-radius: 5px;
    position: sticky;
    top: 20px;
}

.dwwof-total {
    font-weight: bold;
    margin-top: 20px;
}

.dwwof-submit-order {
    width: 100%;
    background: #FF6347;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size:.9rem;
    margin-top:20px;
}

@media (max-width: 980px) {
    /* .dwwof-container {
        flex-direction: column;
    } */

    .dwwof-mini-cart {
        width: 100%;
        position: relative;
        bottom: 0;
        left: 0;
        border-radius: 0;
        box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
    }
}

@media (max-width: 767px) {
    /* .dwwof-product {
        flex-direction: column;
        align-items: flex-start;
    } */

    .dwwof-product-image img {
        margin-bottom: 10px;
    }
}