/* --- Liens et hover --- */
.my-cart:hover {
    text-decoration: none;
    color: black;
    cursor: pointer;
}
#close-cart,
#close-offmenu {
    background: transparent;
    border: none;
}
#close-cart { color: #2F57A3; }
#close-offmenu { color: black; }

/* --- Clearfix --- */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* --- Hamburger mobile --- */
.hamburger-mobile {
    display: none;
    cursor: pointer;
    width: 30px;
    margin-left: 25px;
}
@media (max-width: 1024px) {
    .hamburger-mobile { display: inline-block!important; }
    header .fl-photo-img-png{
        display: flex;
    }
}

/* --- Offmenu --- */
#offmenu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 10px rgba(0,0,0,0.2);
    -webkit-box-shadow: -2px 0 10px rgba(0,0,0,0.2);
    -moz-box-shadow: -2px 0 10px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: right 0.3s ease;
    overflow-y: auto;
}
#offmenu.open { right: 0; }
.offmenu-header {
    padding: 1em;
}
.offmenu-header button {
    background: none;
    border: none;
    font-size: 1.5em;
    cursor: pointer;
}
#menu-header-1 { padding: 30px; list-style: none; }
.offmenu-nav { padding: 1em; }
.offmenu-nav li { padding: 15px; }

/* --- Mini cart général --- */
.woocommerce-mini-cart {
    list-style: none!important;
    padding-left: 0;
}
.woocommerce-mini-cart-item,.my-cart{
    position: relative;
}
.woocommerce-mini-cart-item {
    margin-top: 25px!important;
    padding: 20px;
    background: rgba(245,245,245,0.3);
    box-shadow: 26px 13px 5px rgba(242,242,242,0.24);
    -webkit-box-shadow:  26px 13px 5px rgba(242,242,242,0.24);
    -moz-box-shadow:  26px 13px 5px rgba(242,242,242,0.24);
}
.woocommerce-mini-cart-item img { width: 70px; float: left; }
.woocommerce-mini-cart-item a { color: #0A246A!important; }
.woocommerce-mini-cart-item .woocommerce-Price-amount { color: #EA5A1B!important; }

/* --- Quantité et variations --- */
.woocommerce-mini-cart .quantity { display: block; margin-top: 5px; }
.mini-cart-right .quantity { font-size: 1.2em; margin-top: 15px; }


/* --- Offcanvas cart --- */
#offcanvas-cart {
    position: fixed;
    top: 0;
    right: -400px;
    width: 350px;
    height: 100%;
    padding: 15px 25px 0 25px;
    background: #fff;
    box-shadow: -2px 0 8px rgba(0,0,0,0.2);
    -webkit-box-shadow:  -2px 0 8px rgba(0,0,0,0.2);
    -moz-box-shadow:  -2px 0 8px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: right 0.3s ease;
    overflow-y: auto;
}
#offcanvas-cart.open { right: 0; }

/* --- Cart content --- */
.mini-cart-product { max-width: 100%; height: 60px; text-decoration: none; }
.mini-cart-product img { float: left; max-width: 20%!important; }
.mini-cart-right { float: right; width: 70%; }
.mini-cart-title { margin: 0; font-weight: 700; }
.cart-total { position: absolute; right: -10px; top: -10px; font-size: 1.4rem; text-align: center; background: #2F57A3;
    padding: 5px;
    border-radius: 50%;
    min-height: 20px;
    min-width: 20px;
    line-height: 15px;
    aspect-ratio: 1;
    color: white;
    display: flex;
    vertical-align: middle;
    align-items: center;
    justify-content: center;}


/* --- Buttons --- */

.woocommerce-mini-cart__buttons a { margin-right: 25px!important; }
.woocommerce-mini-cart__buttons a:last-child {
    width: 40%!important;
    text-align: center;
    background: #0A246A!important;
    color: #fff!important;
    border-radius: 0!important;
    border: none!important;
}
.woocommerce-mini-cart__buttons a:first-child,.woocommerce-mini-cart__buttons .checkout {
    text-decoration: none!important;
    text-transform: uppercase!important;
}
.woocommerce-mini-cart__buttons a:first-child {
    width: 40%!important;
    text-align: center;
    height: 40px;
    line-height: 40px!important; padding:0!important;
    display: inline-block;
    color: #EA5A1B!important;
    background: transparent!important;
    border: none!important;
}
.my-cart:hover{
    border-bottom:2px solid #2F57A3!important;
}
.menu-button{
    display: flex
;
    justify-content: flex-end;
    margin-right: 50px;
}

.woocommerce-mini-cart__buttons .checkout { float: right; height: 40px; line-height: 40px!important; padding:0!important;}

/* --- Totals --- */
.woocommerce-mini-cart__total {
    text-align: center;
    width: 300px;
}
.woocommerce-mini-cart__total .woocommerce-Price-amount { font-weight: 700; font-size: 1.4em; }

/* --- Empty cart --- */
.woocommerce-mini-cart__empty-message { text-align: center; margin-top: 50px; }

/* --- Offcanvas toggle --- */
.cart-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #2e7d32;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
