/* Style général du widget */
.clpac-sidebar-cart-widget {
    border-radius: 4px;
    background-color: #fff;
    position: relative;
    height: auto;
    min-height: auto;
}

/* Titre du panier */
.clpac-sidebar-cart-title {
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Message panier vide */
.clpac-sidebar-cart-empty {
    text-align: center;
    padding: 15px 0;
    color: #777;
}

/* Liste des produits - s'adapte automatiquement en hauteur */
.clpac-sidebar-cart-items {
    list-style: none;
    margin: 0;
    padding: 0;
    height: auto;
    min-height: auto;
    max-height:100%;
}

/* Style d'un produit dans le panier */
.clpac-sidebar-cart-item {
    display: flex;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
    position: relative;
}

.clpac-sidebar-cart-item:last-child {
    border-bottom: none;
}

/* Image du produit */
.clpac-sidebar-cart-item-image {
    width: 90px;
    height: 90px;
    flex-shrink: 0;
    margin-right: 10px;
}

.clpac-sidebar-cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 3px;
}

/* Informations du produit */
.clpac-sidebar-cart-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.clpac-sidebar-cart-item-title a {
    color: inherit;
    text-decoration: none;
}

.clpac-sidebar-cart-item-variation {
    font-size: 12px;
    color: #777;
    margin-bottom: 5px;
}

.clpac-sidebar-cart-item-details {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.clpac-sidebar-cart-item-quantity {
    margin-right: 5px;
    color: #777;
}

.clpac-sidebar-cart-item-price {
    font-weight: 500;
    color: #a96d4a;
}

 .product-remove a {
     width: 45px !important;
     height: 45px !important;
     display: flex !important;
     justify-content: center !important;
     align-items: center !important;
 }

/* Bouton de suppression */
.clpac-sidebar-cart-item-remove {
    position: absolute;
    top: 10px;
    right: 0;
}

.clpac-sidebar-cart-item-remove a {
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 18px;
    text-align: center;
    border-radius: 50%;
    background-color: #f5f5f5 !important;
    color: #777;
    text-decoration: none;
    font-size: 16px;
}

.clpac-sidebar-cart-item-remove a:hover {
    background-color: #e5e5e5;
    color: #333;
}

/* Sous-total */
.clpac-sidebar-cart-subtotal-wrapper {
    padding: 10px 0;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.clpac-sidebar-cart-subtotal-label {
    font-weight: 500;
}

.clpac-sidebar-cart-subtotal {
    font-weight: 600;
    color: #a96d4a;
}

.clpac-sidebar-cart-button {
    display: inline-block;
    flex: 1;
    padding: 10px 15px;
    text-align: center;
    background-color: #a96d4a;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer !important;
}

.clpac-sidebar-cart-button:hover {
    background-color: #8a5836;
    color: white;
}

.clpac-sidebar-cart-view {
    display: none !important; /* Masquer le bouton généré automatiquement */
    background-color: #a96d4a;
    border: none;
    color: white;
    font-family:'Lato';
    font-size:18px;
    cursor: pointer !important;
}

.clpac-sidebar-cart-content .clpac-sidebar-cart-buttons{
    display: none !important;    
}

.clpac-sidebar-cart-view:hover {
    background-color: #8a5836;
    color: white;
}

/* Bouton avec ID show-cart */
#show-cart {
    cursor: pointer !important;
}

/* Bouton "Continuer mes achats" */
.clpac-sidebar-cart-continue {
    background-color: transparent !important;
    border: 1px solid #a96d4a !important;
    color: #a96d4a !important;
    font-family: 'Lato' !important;
    font-size: 18px !important;
    cursor: pointer;
}

.clpac-sidebar-cart-continue:hover {
    background-color: rgba(169, 109, 74, 0.1) !important;
    color: #a96d4a !important;
}

/* Bloquer le scroll de la page quand le sidebar est ouvert */
body.open-sidebar {
    overflow: hidden !important;
}



/* Repositionner les boutons en haut du sidebar cart */
.clpac-sidebar-cart-content {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: auto;
}

/* S'assurer que le popup Elementor utilise aussi flexbox */
.elementor-popup-modal .elementor-widget-container {
    display: flex;
    flex-direction: column;
}

/* Le sous-total apparaît en premier (après les boutons) */
.clpac-sidebar-cart-subtotal-wrapper {
    order: 0;
}

/* La liste des produits vient après le sous-total */
.clpac-sidebar-cart-items {
    order: 1;
}