.panierarsene-cart-drawer {
    position: fixed;
    right: -400px;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 80vh;
    background: #fff;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 9999;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    font-size: 12px;
}

.panierarsene-cart-drawer.open {
    right: 20px; /* Adjust this value to position the drawer as needed */
}

/* Personnalisation de la barre de défilement pour le panier */
.panierarsene-cart-drawer::-webkit-scrollbar {
    width: 10px;
}

.panierarsene-cart-drawer::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.panierarsene-cart-drawer::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.panierarsene-cart-drawer::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.panierarsene-cart-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.panierarsene-cart-toggle {
    position: fixed;
    right: 100px;
    bottom: 20px;
    z-index: 9998;
    color: green;
}

.panierarsene-cart-toggle .panierarsene-cart-button {
    background: #333;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 20px;
}

.lottie-topm {
    display: none;
}

.panierarsene-cart-drawer-content {
    overflow-y: auto;
    flex-grow: 1;
}

/* Styles pour les articles organisés dans le panier */
.cart-item-organized {
    margin-bottom: 10px;
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.cart-item-title {
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 14px;
}

.cart-item-variant {
    display: flex;
    justify-content: space-between;
    margin-left: 10px;
    font-size: 12px;
    color: #666;
}

.cart-item-variant-details {
    flex: 1;
}

.cart-item-variant-quantity {
    flex: 0;
    text-align: right;
    min-width: 80px;
}
