/* ============================================
   Panier latéral – design unifié (Mon Panier)
   ============================================ */

#cart-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 8000;
}
#cart-overlay.show {
    display: block !important;
}

#cart-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    max-width: 95vw;
    height: 100vh;
    background: #fff;
    z-index: 9000;
    transition: right 0.35s ease;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
}
#cart-drawer.open {
    right: 0 !important;
}

/* Header */
.cart-drawer .cart-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}
.cart-drawer .cart-header h3 {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 700;
    color: #2d2d2d;
    display: flex;
    align-items: center;
    gap: 8px;
}
.cart-drawer .cart-header h3::after {
    content: "🧶";
    font-size: 1.1rem;
}
.cart-drawer .cart-header button {
    background: none;
    border: none;
    font-size: 1.75rem;
    cursor: pointer;
    color: #666;
    line-height: 1;
    padding: 0 4px;
}
.cart-drawer .cart-header button:hover {
    color: #442b7b;
}

/* Zone liste des articles */
.cart-drawer #cart-items,
.cart-drawer .cart-content,
.cart-drawer .cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    min-height: 0;
}

/* Carte produit (style image) */
.cart-item-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    margin-bottom: 12px;
    background: #f5f5f5;
    border-radius: 12px;
    border: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
.cart-item-card .cart-item-img {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}
.cart-item-card .cart-item-info {
    flex: 1;
    min-width: 0;
}
.cart-item-card .cart-item-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: #2d2d2d;
    margin-bottom: 2px;
}
.cart-item-card .cart-item-price-line {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 8px;
}
.cart-item-card .cart-qty-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}
.cart-item-card .cart-qty-btn {
    width: 28px;
    height: 28px;
    border: none;
    background: #e8e8e8;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: #444;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cart-item-card .cart-qty-btn:hover {
    background: #ddd;
    color: #442b7b;
}
.cart-item-card .cart-qty-value {
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}
.cart-item-card .cart-item-remove {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    color: #888;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.cart-item-card .cart-item-remove:hover {
    color: #c62828;
}

/* Footer récap */
.cart-drawer .cart-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    background: #fff;
    flex-shrink: 0;
}
.cart-drawer .cart-summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    color: #666;
    font-size: 0.9rem;
}
.cart-drawer .cart-summary-total {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 1.15rem;
    color: #442b7b;
    border-top: 1px dashed #eee;
    padding-top: 12px;
    margin-top: 10px;
    margin-bottom: 16px;
}
.cart-drawer .cart-footer label.cart-label-delivery {
    font-weight: 600;
    color: #442b7b;
    display: block;
    margin-bottom: 6px;
    font-size: 0.9rem;
}
.cart-drawer .cart-footer #type-livraison {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 16px;
    border-radius: 10px;
    border: 2px solid #AD94CA;
    background: #fff;
    font-size: 0.9rem;
    color: #333;
}
.cart-drawer .btn-checkout {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #AD94CA 0%, #9b7fc9 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(173, 148, 202, 0.35);
    margin-bottom: 12px;
}
.cart-drawer .btn-checkout:hover {
    opacity: 0.95;
    transform: translateY(-1px);
}
.cart-drawer .cart-empty-link {
    display: block;
    text-align: center;
    color: #999;
    cursor: pointer;
    font-size: 0.9rem;
    text-decoration: underline;
    background: none;
    border: none;
    width: 100%;
    padding: 8px;
}
.cart-drawer .cart-empty-link:hover {
    color: #666;
}

/* Message panier vide */
.cart-drawer .cart-empty-msg {
    text-align: center;
    color: #999;
    padding: 40px 20px;
    font-size: 0.95rem;
}
