.panier {
    max-width: 900px;
    margin: 30px auto;
    font-family: Arial, sans-serif;
}

.panier-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.panier-image img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 10px;
    background: #f5f5f5;
}

.panier-info {
    flex: 1;
    margin-left: 15px;
}

.panier-info h3 {
    margin: 0 0 5px 0;
    font-size: 18px;
}

.panier-info p {
    margin: 4px 0;
    color: #444;
}

.quantite {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 8px 0;
}

.quantite a {
    display: inline-block;
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    background: #f0f0f0;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.quantite a:hover {
    background: #ddd;
}

.panier-actions a {
    text-decoration: none;
    font-size: 20px;
    color: #c00;
}

.panier-total {
    max-width: 900px;
    margin: 20px auto;
    text-align: right;
    font-size: 20px;
    font-weight: bold;
}