.mf-panier {
    max-width: 850px;
    margin: 0 auto;
    padding: 2rem 0rem;
    font-family: inherit;

    min-height: 80vh;
}

.mf-panier-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #241411;
}

.mf-panier-empty {
    text-align: center;
    padding: 2rem;
    font-size: 1.2rem;
    color: #7e6c60;
}

.mf-panier-item {
    display: grid;
    grid-template-columns: 120px 1fr 90px;
    gap: 1.5rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid #eadbd5;
    align-items: center;
}

.mf-panier-item-img img {
    width: 100%;
    border-radius: 10px;
}

.mf-panier-item-info h3 {
    margin: 0 0 0.3rem;
    font-size: 1rem !important;
    color: #241411;
}

.mf-panier-price {
    font-size: 1rem;
    color: #784e3f;
    margin-bottom: .5rem;
}

.mf-panier-qty {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin: .5rem 0;
}

.qty-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: #f0e4dd;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
}

.qty-value {
    min-width: 24px;
    text-align: center;
    font-weight: 600;
}

.mf-panier-remove {
    background: none;
    border: none;
    color: #d9534f;
    cursor: pointer;
    font-size: .9rem;
}

.mf-panier-item-subtotal {
    font-weight: 600;
    text-align: right;
    font-size: 1rem;
}

.mf-panier-total {
    margin-top: 2rem;
    padding: 1rem;
    background: #f8ece6;
    border-radius: 12px;
    font-size: 1.2rem;
    text-align: right;
}

.mf-panier-total-line {
    font-size: 1.4rem;
    font-weight: 600;
    color: #241411;
}

.mf-panier-cta {
    display: block;
    margin: 2rem auto 0;
    width: fit-content;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    background: linear-gradient(180deg, #000000, #333333 60%, #000000);
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}

.mf-panier-cta:hover {
    background: #000;
}


/*==========*/
#mf-cart-icon {
  position: relative;
  display: inline-block;
 
}

.mf-cart-header-icon {
  width: 28px;
  height: auto;
}

.mf-cart-counter {
  position: absolute;
  top: -32px;
  color: #000000;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0;
  border-radius: 50%;
  display: none; /* caché par défaut */
}