/* =========================================
   STYLE PAGE PANIER
   ========================================= */
   .cart-page {
    min-height: 100vh;
    padding: 120px 20px 80px;
    background-color: #0a0a0a;
    color: #fff;
    display: flex;
    justify-content: center;
}

.cart-container {
    max-width: 1000px;
    width: 100%;
}

h1 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    text-transform: uppercase;
}

/* LISTE DES ARTICLES */
.cart-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.item-details {
    flex-grow: 1;
}

.item-details h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.item-price {
    color: #ccc;
}

/* CONTROLE QUANTITÉ */
.qty-selector {
    display: flex;
    align-items: center;
    border: 1px solid #555;
    border-radius: 4px;
    overflow: hidden;
    margin-right: 15px;
}

.qty-selector button {
    background: #333;
    color: #fff;
    border: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.qty-selector span {
    padding: 0 10px;
    font-weight: bold;
}

.item-actions {
    display: flex;
    align-items: center;
}

.btn-remove {
    background: transparent;
    color: #999;
    border: none;
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.9rem;
}
.btn-remove:hover { color: #ff5555; }

/* RÉSUMÉ COMMANDE */
.cart-summary {
    max-width: 400px;
    margin-left: auto;
    padding: 30px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: #ccc;
}

.summary-row.total {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    margin-top: 15px;
}

hr { border-color: #333; margin: 20px 0; }

.btn-checkout {
    width: 100%;
    padding: 15px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 50px;
    font-weight: 800;
    cursor: pointer;
    margin-top: 20px;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-checkout:hover { background: #ddd; }

.continue-shopping {
    display: block;
    text-align: center;
    margin-top: 15px;
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
}
.continue-shopping:hover { text-decoration: underline; }

.empty-msg { text-align: center; color: #888; font-size: 1.2rem; }

/* RESPONSIVE */
@media (max-width: 600px) {
    .cart-item { flex-direction: column; text-align: center; }
    .item-actions { justify-content: center; margin-top: 15px; }
    .cart-summary { margin: 0 auto; }
}