#mini-cart-wrapper {
    position: relative;
}

#mini-cart-content {
  /*   display: none; Le mini-panier est caché par défaut */
    /* position: absolute;
    top: 81px;
    right: -160px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    width: 320px;
    padding: 10px;
    z-index: 1000;
    height: 100vh; */

}

.header:hover + #mini-cart-content {
    display: block;
}


.product-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.product-info {
    margin-left: 10px;
}

.cart-total {
    margin-top: 10px;
}
