/* Conteneur général */
.woocommerce-cart .woocommerce {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.wp-block-woocommerce-cart, .wp-block-woocommerce-checkout {
    padding:2rem;
}

/* Titre */
.woocommerce-cart h1 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

/* Tableau panier */
.woocommerce-cart table.shop_table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.woocommerce-cart table.shop_table th,
.woocommerce-cart table.shop_table td {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    text-align: left;
    font-size: 0.95rem;
}

.woocommerce-cart table.shop_table th {
    background-color: #f9f9f9;
    font-weight: 600;
}

/* Image produit */
.woocommerce-cart .product-thumbnail img {
    max-width: 60px;
    border-radius: 4px;
}

/* Champ quantité */
.woocommerce-cart .quantity input.qty {
    width: 60px;
    padding: 0.4rem;
    text-align: center;
    font-size: 0.9rem;
    border-radius: 4px;
    border: 1px solid #ccc;
}

/* Boutons */
.woocommerce .button,
.woocommerce button.button {
    background-color: #2B364A;
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.woocommerce .button:hover,
.woocommerce button.button:hover {
    background-color: #005e8a;
}

/* Total panier */
.cart_totals {
    margin-top: 2rem;
    border: 1px solid #eee;
    padding: 1rem;
    border-radius: 10px;
    background: #fdfdfd;
}

/* Procéder au paiement */
.woocommerce .checkout-button {
    width: 100%;
    text-align: center;
    font-size: 1rem;
    margin-top: 1rem;
}

/* Message vide */
.woocommerce-cart .cart-empty {
    text-align: center;
    font-size: 1.2rem;
    padding: 2rem 0;
}


