/*
Theme Name: LumiBoost
Theme URI: https://lumiboost.fr
Author: LumiBoost
Author URI: https://lumiboost.fr
Description: Thème WordPress personnalisé pour centre de photobiomodulation. Design doux et apaisant inspiré par la nature, avec palette de couleurs vert sauge et beige. Parfait pour activités bien-être et thérapies naturelles.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lumivie
Tags: wellness, spa, health, therapy, photobiomodulation, custom-colors, responsive-layout, one-column, custom-menu, featured-images
*/

/* ==================== VARIABLES CSS ==================== */
:root {
    --primary-color: #7A9B7F;      /* Vert sauge principal (apaisant) */
    --secondary-color: #A8BEAA;    /* Vert sauge clair */
    --accent-color: #C1876B;       /* Terracotta doux (chaleur subtile) */
    --beige-cream: #F5F1EB;        /* Beige crème (très doux) */
    --beige-light: #FAF8F5;        /* Beige ultra clair */
    --white-natural: #FFFFFF;      /* Blanc pur */
    --text-dark: #4A5240;          /* Vert foncé (plus doux que noir) */
    --text-light: #7D8B7A;         /* Vert gris clair */
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    
    --transition: all 0.4s ease;
    --shadow: 0 6px 25px rgba(122, 155, 127, 0.08);
    --shadow-hover: 0 10px 35px rgba(122, 155, 127, 0.15);
}

/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--beige-light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==================== UTILITY CLASSES ==================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #6B8A70);
    color: white;
    box-shadow: 0 4px 15px rgba(122, 155, 127, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(122, 155, 127, 0.35);
    background: linear-gradient(135deg, #6B8A70, var(--primary-color));
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.section-title {
    font-size: 42px;
    margin-bottom: 20px;
    text-align: center;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    font-weight: 300;
}

/* ==================== HEADER & NAVIGATION ==================== */
.header {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 15px rgba(122, 155, 127, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.logo span {
    color: var(--accent-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    font-size: 15px;
    color: var(--text-dark);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary-color);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
}

.nav-cta:hover {
    background: #6B8A70;
    transform: scale(1.05);
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.burger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ==================== HERO SECTION ==================== */
.hero {
    background: white;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.hero-image-container {
    width: 100%;
    height: 70vh;
    position: relative;
    overflow: hidden;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(74, 82, 64, 0.4));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    text-align: center;
    max-width: 900px;
    padding: 40px 20px;
    color: white;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 56px;
    margin-bottom: 25px;
    line-height: 1.2;
    color: white;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-text h1 .highlight {
    color: var(--beige-light);
    font-weight: 700;
}

.hero-text p {
    font-size: 22px;
    color: rgba(255,255,255,0.95);
    margin-bottom: 40px;
    font-weight: 300;
    text-shadow: 0 1px 10px rgba(0,0,0,0.3);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-intro {
    background: var(--beige-light);
    padding: 80px 20px;
    text-align: center;
}

.hero-intro h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.hero-intro p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ==================== FEATURES SECTION ==================== */
.features {
    padding: 100px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-top: 70px;
}

.feature-card {
    text-align: center;
    padding: 50px 20px;
    border-radius: 20px;
    background: var(--beige-light);
    transition: var(--transition);
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary-color);
}

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 36px;
    box-shadow: 0 4px 15px rgba(122, 155, 127, 0.15);
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

/* ==================== ABOUT SECTION ==================== */
.about {
    padding: 100px 0;
    background: var(--beige-cream);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-text h2 {
    font-size: 42px;
    margin-bottom: 30px;
}

.about-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.9;
}

.about-list {
    list-style: none;
    margin: 40px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    text-align: left;
}

.about-list li {
    position: relative;
    font-size: 16px;
    background: white;
    border-radius: 10px;
    padding: 20px 20px 20px 50px;
}

.about-list li::before {
    content: '✓';
    position: absolute;
    left: 20px;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 22px;
}

.about-text .btn {
    margin-top: 30px;
}

/* ==================== TREATMENTS SECTION ==================== */
.treatments {
    padding: 100px 0;
    background: white;
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 70px;
}

.treatment-card {
    background: var(--beige-light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    text-align: center;
}

.treatment-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.treatment-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.treatment-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(74, 82, 64, 0.3));
}

.treatment-content {
    padding: 30px 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.treatment-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.treatment-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
    font-size: 14px;
    line-height: 1.7;
}

.treatment-card .btn {
    align-self: center;
    padding: 10px 25px;
    font-size: 12px;
}

/* ==================== PRICING SECTION ==================== */
.pricing {
    padding: 100px 0;
    background: var(--beige-cream);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 70px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 3px solid var(--primary-color);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.pricing-card .price {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0;
}

.pricing-card .price span {
    font-size: 18px;
    color: var(--text-light);
}

.pricing-card .economy {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.pricing-features {
    list-style: none;
    margin: 25px 0;
    text-align: left;
}

.pricing-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 15px;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials {
    padding: 100px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--beige-light);
    padding: 35px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-quote {
    font-size: 48px;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: 20px;
    left: 30px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    margin: 30px 0 20px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 18px;
}

.testimonial-info h4 {
    font-size: 16px;
    margin-bottom: 3px;
}

.testimonial-info p {
    font-size: 13px;
    color: var(--text-light);
}

.testimonials-placeholder {
    text-align: center;
    padding: 60px 20px;
    background: var(--beige-cream);
    border-radius: 15px;
    grid-column: 1 / -1;
}

.testimonials-placeholder i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* ==================== FAQ SECTION ==================== */
.faq {
    padding: 100px 0;
    background: var(--beige-cream);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 17px;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--beige-light);
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 0 30px 25px;
    color: var(--text-light);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* ==================== CTA SECTION ==================== */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), #6B8A70);
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 46px;
    color: white;
    margin-bottom: 25px;
    font-weight: 600;
}

.cta p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta .btn {
    background: white;
    color: var(--primary-color);
    font-size: 16px;
}

.cta .btn:hover {
    background: var(--beige-light);
    transform: translateY(-2px);
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about h3 {
    color: white;
    margin-bottom: 20px;
}

.footer-about p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

/* ==================== ELEMENTOR COMPATIBILITY ==================== */
/* Support des conteneurs Elementor */
.elementor-section {
    position: relative;
}

.elementor-full-width {
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.elementor-canvas-content {
    width: 100%;
}

/* Garder les couleurs du thème dans Elementor */
.elementor-widget-heading h1,
.elementor-widget-heading h2,
.elementor-widget-heading h3,
.elementor-widget-heading h4,
.elementor-widget-heading h5,
.elementor-widget-heading h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
}

.elementor-widget-text-editor {
    font-family: var(--font-body);
    color: var(--text-dark);
}

/* Boutons Elementor avec style du thème */
.elementor-button {
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: var(--transition);
    padding: 15px 40px;
}

.elementor-button.elementor-button-primary {
    background: linear-gradient(135deg, var(--primary-color), #6B8A70);
    border: none;
}

.elementor-button.elementor-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(122, 155, 127, 0.35);
}

/* Fix pour que les sections Elementor s'affichent correctement */
.elementor-editor-active .elementor-element {
    outline: none;
}

/* ==================== PAGE & SINGLE TEMPLATES ==================== */
/* Styles pour les pages standards */
.site-main {
    min-height: 400px;
}

.entry-header {
    text-align: center;
    padding: 60px 20px 40px;
    background: var(--beige-light);
}

.entry-title {
    font-size: 48px;
    color: var(--text-dark);
    margin: 0;
    font-family: var(--font-heading);
}

.entry-content {
    padding: 0;
}

/* Si la page n'utilise pas Elementor, ajouter un container */
.entry-content:not(.elementor) {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
    line-height: 1.8;
}

.entry-content:not(.elementor) p {
    margin-bottom: 1.5em;
}

.entry-content:not(.elementor) h2 {
    font-size: 32px;
    margin-top: 2em;
    margin-bottom: 0.5em;
    color: var(--primary-color);
}

.entry-content:not(.elementor) h3 {
    font-size: 24px;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    color: var(--text-dark);
}

/* Styles pour les articles (single.php) */
.entry-meta {
    margin-top: 15px;
    color: var(--text-light);
    font-size: 14px;
}

.entry-meta span {
    margin-right: 20px;
}

.post-thumbnail {
    margin: 40px 0;
    text-align: center;
}

.post-thumbnail img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.entry-footer {
    padding: 40px 20px;
    border-top: 1px solid var(--beige-cream);
    margin-top: 40px;
    text-align: center;
    color: var(--text-light);
}

.tags-links {
    font-size: 14px;
}

/* Navigation entre articles */
.post-navigation {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.post-navigation a {
    text-decoration: none;
    color: var(--text-dark);
    padding: 20px;
    border: 2px solid var(--beige-cream);
    border-radius: 10px;
    transition: var(--transition);
    max-width: 45%;
}

.post-navigation a:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-subtitle {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.nav-title {
    display: block;
    font-family: var(--font-heading);
    font-size: 18px;
}

/* Responsive Elementor */
@media (max-width: 1024px) {
    .elementor-section {
        padding: 60px 20px;
    }
    
    .entry-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .elementor-section {
        padding: 40px 20px;
    }
    
    .entry-header {
        padding: 40px 20px 30px;
    }
    
    .entry-title {
        font-size: 28px;
    }
    
    .post-navigation {
        flex-direction: column;
        gap: 20px;
    }
    
    .post-navigation a {
        max-width: 100%;
    }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 42px;
    }
    
    .hero-text p {
        font-size: 18px;
    }
    
    .hero-image-container {
        height: 60vh;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-list {
        grid-template-columns: 1fr;
    }
    
    .treatments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 30px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .burger {
        display: flex;
    }
    
    .hero {
    }
    
    .hero-image-container {
        height: 50vh;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .hero-text p {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-intro {
        padding: 60px 20px;
    }
    
    .hero-intro h2 {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .treatments-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* ==================== BOUTON CTA DANS LE MENU ==================== */
/* Style pour le dernier item du menu qui est un CTA */
.nav-menu .menu-item-cta > a,
.nav-menu li.menu-item-cta > a,
.nav-menu > li:last-child > a,
.nav-menu li.menu-item-cta a,
.nav-menu > li:last-child a,
ul.nav-menu > li:last-child > a,
ul.nav-menu li.menu-item-cta > a {
    background: linear-gradient(135deg, var(--primary-color), #6B8A70) !important;
    color: #FFFFFF !important;
    padding: 12px 24px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(122,155,127,0.3) !important;
    margin-left: 15px !important;
}

.nav-menu .menu-item-cta > a:hover,
.nav-menu li.menu-item-cta > a:hover,
.nav-menu > li:last-child > a:hover,
.nav-menu li.menu-item-cta a:hover,
.nav-menu > li:last-child a:hover,
ul.nav-menu > li:last-child > a:hover,
ul.nav-menu li.menu-item-cta > a:hover {
    background: linear-gradient(135deg, #6B8A70, var(--primary-color)) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(122,155,127,0.4) !important;
    color: #FFFFFF !important;
}

.nav-menu .menu-item-cta > a i,
.nav-menu li.menu-item-cta > a i,
.nav-menu > li:last-child > a i,
.nav-menu li.menu-item-cta a i,
ul.nav-menu > li:last-child > a i {
    font-size: 14px !important;
}

/* Annuler le hover classique pour le CTA */
.nav-menu .menu-item-cta > a::after,
.nav-menu li.menu-item-cta > a::after,
.nav-menu > li:last-child > a::after,
.nav-menu li.menu-item-cta a::after,
.nav-menu > li:last-child a::after,
ul.nav-menu > li:last-child > a::after,
ul.nav-menu li.menu-item-cta > a::after {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

@media (max-width: 768px) {
    .nav-menu .menu-item-cta > a,
    .nav-menu li.menu-item-cta > a,
    .nav-menu > li:last-child > a,
    ul.nav-menu > li:last-child > a {
        margin-left: 0 !important;
        margin-top: 15px !important;
        width: 100% !important;
        justify-content: center !important;
    }
}
