    /* Bouton panier */
    .btn-cart {
      background: #28a745;
      color: #fff;
      padding: 10px 15px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      margin: 20px;
    }

    /* Overlay foncé */
    .overlay {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.5);
      z-index: 999;
    }

    /* Panier latéral */
    .cart-sidebar {
      font-family: var(--ztc-family-font1);
      position: fixed;
      top: 0;
      right: -400px; /* caché au départ */
      width: 400px;
      max-width: 90%;
      height: 100%;
      background: #F3FADD;
      box-shadow: -2px 0 8px rgba(0,0,0,0.2);
      transition: right 0.3s ease;
      z-index: 1000;
      display: flex;
      flex-direction: column;
    }

    .cart-sidebar i.fa-trash-can{
        font-size: 14px;
        color: red;
    }

    .cart-sidebar img.img-cart{
        width: 40px;
    }
    .cart-sidebar input{
        width: 50px;
    }

    .cart-sidebar .div-total{
        font-size: 22px;
        padding: 15px;
        font-weight: bold;
    }

    .cart-sidebar .quantity{
        width: 40px;
        height: 30px;
        border-radius: 3px;
        border: 1px dashed #ddd;
        background: #fff;
        display: block;
        text-align: center;
    }

    .div-total{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    a.btn-mini-cart{
        font-size: 20px;
        text-transform: uppercase;
        background-color: #290428;
        width: 93%;
        display: inline-block;
        text-align: center;
        padding: 10px 0px;
        color: #fff;
        margin: 20px 15px 0px 15px;
    }
    a.btn-mini-cart:hover{
        background-color: #90B614;
        color: #290428;
    }

    /* Quand le panier est actif */
    .cart-sidebar.active {
      right: 0;
    }

    /* Header */
    .cart-header {
      padding: 15px;
      background: #b4e419;
      color: #000;
      font-size: 18px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .close-cart {
      cursor: pointer;
      font-size: 22px;
      font-weight: bold;
      width: 30px;
      height: 30px;
    }


    /* Contenu du panier */
    .cart-items{
      /*flex: 1;*/
      overflow-y: auto;
      padding: 15px;
    }

    .cart-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 10px;
      border-bottom: 1px solid #c1c1c1;
      padding-bottom: 5px;
      font-size: 18px;
      font-weight: 600;
    }

    /* Footer */
    .cart-footer {
      padding: 15px;
      border-top: 1px solid #c1c1c1;
      text-align: right;
      font-weight: bold;
    }


.cart-vide{
  text-align: center;
  padding-top: 50%;
}
.cart-vide h3{
    font-size: 40px;
    font-weight: 100;
    text-align: center;
    letter-spacing: 0px;
    padding: 30px 0px 10px 0px;
}

