/* --- ID 152: woo - clean moyens de paiement --- */
/* --- PAGE MON COMPTE WOO — MOYENS DE PAIEMENT --- */

/* Cacher la bannière "Mon compte" de HivePress sur les pages WooCommerce */
body.woocommerce-account .header-hero.header-hero--title,
body.woocommerce-account .header-hero {
    display: none !important;
}

/* 2) Forcer le recentrage du contenu WooCommerce */
body.woocommerce-account .woocommerce-MyAccount-content {
    max-width: 680px;       /* largeur idéale */
    margin: 40px auto;      /* centrage + petit espace */
    float: none !important; /* évite un alignement à gauche résiduel */
    padding: 0 20px;        /* confort sur mobile */
}

/* 3) Supprimer tout padding latéral additionnel */
body.woocommerce-account .container,
body.woocommerce-account .site-content .container {
    max-width: 900px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* 4) Cacher la navigation WooCommerce partout */
body.woocommerce-account .woocommerce-MyAccount-navigation {
    display: none !important;
}

/* 5) Beautifier le bouton pour qu’il match ton style HomerentAI */
body.woocommerce-account .woocommerce-MyAccount-content .button {
    background: #e5e8ec !important;
    color: #333 !important;
    padding: 10px 24px !important;
    border-radius: 12px !important;
    font-weight: 500;
    transition: 0.2s;
}

body.woocommerce-account .woocommerce-MyAccount-content .button:hover {
    background: #d2d6db !important;
}

