/* WooCommerce Cart - Custom Styles for Checkout Button */

/* Bouton "Procéder au paiement" - Amélioration de visibilité */
.wc-block-cart__submit-button {
    background-color: #E49D22 !important;
    color: white !important;
    font-size: 1.1rem !important;
    padding: 1rem 2.5rem !important;
    border-radius: 0.5rem !important;
    box-shadow: 0 4px 12px rgba(228, 157, 34, 0.3) !important;
    transition: all 0.3s ease !important;
    border: none !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    min-height: 50px !important;
}

.wc-block-cart__submit-button:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 24px rgba(228, 157, 34, 0.5) !important;
    background-color: #d68a1a !important;
}

.wc-block-cart__submit-button:active {
    transform: translateY(-1px) !important;
}

.wc-block-cart__submit-button:focus {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(228, 157, 34, 0.3) !important;
}

/* Conteneur du bouton pour le mettre en valeur */
.wc-block-cart__submit-container {
    margin-top: 2rem !important;
    padding-top: 1.5rem !important;
    border-top: 2px solid rgba(0, 0, 0, 0.1) !important;
}

/* Version responsive pour mobile */
@media screen and (max-width: 768px) {
    .wc-block-cart__submit-button {
        width: 100% !important;
        font-size: 1rem !important;
        padding: 0.9rem 2rem !important;
        justify-content: center !important;
    }

    .wc-block-cart__submit-container {
        text-align: center !important;
    }
}

/* Amélioration du texte du bouton */
.wc-block-components-button__text {
    color: white !important;
    font-weight: inherit !important;
}

/* Style pour le résumé de commande */
.wp-block-woocommerce-cart-order-summary-block {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-top: 2rem;
}

.wp-block-woocommerce-cart-order-summary-heading-block {
    font-size: 1.5rem !important;
    color: #00193B !important;
    margin-bottom: 1.5rem !important;
}

/* Style pour les éléments de totaux */
.wc-block-components-totals-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
    padding: 0.75rem 0 !important;
}

.wc-block-components-totals-item:last-child {
    border-bottom: none !important;
}

.wc-block-components-totals-item__label {
    font-weight: 400 !important;
    color: #575760 !important;
}

.wc-block-components-totals-item__value {
    font-weight: 600 !important;
    color: #00193B !important;
}

.wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
.wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
    font-size: 1.25rem !important;
    color: #E49D22 !important;
    border-top: 2px solid rgba(0, 0, 0, 0.1) !important;
    padding-top: 1rem !important;
    margin-top: 0.5rem !important;
}