.cart-page {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.cart-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    text-align: center;
    color: #2D3135;
    margin-bottom: 50px;
}

.cart-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Liste des produits */
.cart-item {
    display: flex;
    background: white;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease;
}

.cart-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.cart-item-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    background: #F8F6F2;
    border-radius: 10px;
    padding: 10px;
}

.cart-item-details {
    flex: 1;
    padding: 0 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cart-item-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: #2D3135;
    margin: 0 0 8px;
    font-weight: 600;
}

.cart-item-price {
    color: #8A949D;
    font-size: 0.95rem;
    margin: 0;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 15px;
    min-width: 140px;
}

.qty-controls {
    display: flex;
    align-items: center;
    background: #F8F6F2;
    border-radius: 30px;
    padding: 5px;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: white;
    color: #2D3135;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.qty-btn:hover {
    background: #C7A97B;
    color: white;
}

.qty-value {
    padding: 0 15px;
    font-weight: 600;
    color: #2D3135;
    font-size: 1.1rem;
}

.cart-item-total {
    font-weight: bold;
    color: #A88B60;
    font-size: 1.2rem;
}

.remove-btn {
    color: #dc3545;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.2s;
}

.remove-btn:hover {
    color: #a71d2a;
    text-decoration: underline;
}

/* Résumé de commande */
.cart-summary {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
    position: sticky;
    top: 20px;
}

.summary-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: #2D3135;
    margin-bottom: 25px;
    text-align: center;
    border-bottom: 1px solid #E5E7EA;
    padding-bottom: 15px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: #555;
    font-size: 1rem;
}

.summary-row.total {
    font-size: 1.4rem;
    font-weight: bold;
    color: #2D3135;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #C7A97B;
}

.summary-row.total span:last-child {
    color: #A88B60;
}

.btn-checkout {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #C7A97B, #A88B60);
    color: white;
    text-align: center;
    padding: 16px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 25px;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}

.btn-checkout:hover {
    background: #2D3135;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(45, 49, 53, 0.2);
}

.btn-continue {
    display: inline-block;
    margin-top: 15px;
    color: #8A949D;
    text-decoration: none;
    font-size: 0.95rem;
    text-align: center;
    width: 100%;
}

.btn-continue:hover {
    color: #C7A97B;
}

/* Panier vide */
.empty-cart {
    text-align: center;
    background: white;
    padding: 80px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    max-width: 600px;
    margin: 0 auto;
}

.empty-cart h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: #2D3135;
    margin-bottom: 15px;
}

.empty-cart p {
    color: #666;
    margin-bottom: 30px;
}

@media (max-width: 900px) {
    .cart-layout {
        grid-template-columns: 1fr;
    }
    .cart-summary {
        position: static;
    }
}

@media (max-width: 600px) {
    .cart-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .cart-item-details {
        padding: 20px 0;
        align-items: center;
    }
    .cart-item-actions {
        align-items: center;
    }
}
