/* =========================
   TYPO – GLOBAL ECO PREMIUM
========================= */

:root {
    --font-title: "Oswald", system-ui, -apple-system, "Segoe UI", sans-serif;
    --font-body: "Proxima Nova", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

    --primary-green: #2E5D4C;
    --light-green: #4A8B6D;
    --sand: #F5F1E6;
    --clay: #C97D5A;
    --soft-blue: #8BB9C2;
    --white: #FAF9F7;
    --gray: #5A6D7E;
    --dark-green: #1E3D32;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

body {
    background-color: var(--white);
    color: #333;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-main {
    flex: 1;
}

p {
    font-size: 1.1rem;
    line-height: 1.7;
}


/* =========================
   TYPOGRAPHIE – FINAL
========================= */

@font-face {
    font-family: "Proxima Nova";
    src: url("../fonts/proxima-nova/ProximaNova-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Proxima Nova";
    src: url("../fonts/proxima-nova/ProximaNova-Semibold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}


/* =========================
   HOME – 
========================= */

/* Hero Section - Conservé tel quel */
.home-refonte .hero {
    background: linear-gradient(135deg, rgba(46, 93, 76, 0.88) 0%, rgba(30, 61, 50, 0.92) 100%),
        url('../images/home/hero-main.webp') center/cover no-repeat;
    color: white;
    padding: 110px 20px 80px;
    text-align: center;
}

.home-refonte h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.home-refonte p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

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

.home-refonte .btn {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.home-refonte .btn-primary {
    background-color: var(--clay);
    color: white;
}

.home-refonte .btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.home-refonte .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Section Titre Moderne */
.home-refonte .section-header {
    text-align: center;
    margin: 80px 0 50px;
}

.home-refonte .section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.home-refonte .section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--clay);
}

.home-refonte .section-header p {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* =========================
   HEADER – NAVBAR
========================= */
.site-header .navbar {
    padding: .65rem 0;
}

.site-header .navbar-brand img {
    height: 42px;
    width: auto;
    height: auto;
}

.navbar-nav .nav-link {
    color: #0f172a;
    font-weight: 600;
    padding: .5rem 1rem;
    border-radius: 999px;
    transition: color .2s ease, background-color .2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: var(--primary-green);
    background-color: rgba(74, 139, 109, .12);
}

.navbar-nav .nav-link.active {
    color: #fff;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
}

/* Hamburger rond */
.navbar-toggler {
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    /* bleu foncé type modèle */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-toggler i {
    font-size: 20px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 .2rem rgba(47, 181, 154, .25);
}

/* Menu déroulé sur mobile : bloc blanc, arrondi, ombre */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: #fff;
        border-radius: 12px;
        padding: 12px;
        margin-top: .75rem;
        box-shadow: 0 10px 22px rgba(15, 23, 42, .12);
    }

    .navbar-nav .nav-link {
        padding: .6rem 1rem;
    }
}

/* Logo header */
.custom-logo {
    max-height: 68px;
    width: auto;
    height: auto;
}

.custom-logo-link {
    display: inline-flex;
    align-items: center;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.site-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1;
    white-space: nowrap;
}

.site-tagline {
    display: flex;
    align-items: center;
    gap: .3rem;
    font-size: .7rem;
    font-weight: 500;
    color: var(--light-green);
    text-transform: uppercase;
    letter-spacing: .04em;
    white-space: nowrap;
}

.site-tagline i {
    font-size: .65rem;
}

@media (max-width: 575.98px) {
    .site-tagline {
        display: none;
    }
}

/* Navbar fixed-top */
body.admin-bar .site-header .navbar {
    top: 32px;
}

/* si barre admin */
.logo {
    display: flex;
    align-items: center;
}

.logo h1 {
    color: var(--primary);
    font-size: 1.8rem;
}

.logo i {
    color: var(--secondary);
    font-size: 2rem;
    margin-right: 10px;
}

.language-select {
    display: flex;
    align-items: center;
    margin-left: 2rem;
}

.language-select select {
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.navbar .btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.navbar .btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.navbar .btn-accent {
    background: var(--accent);
}

.navbar .btn-accent:hover {
    background: #c0392b;
}

/* =========================
   HOME – SERVICES
========================= */

/* Services Modernes */
.home-refonte .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.service-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.coverage-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-refonte .service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.home-refonte .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.home-refonte .service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--light-green);
}

.home-refonte .service-icon {
    font-size: 3rem;
    color: var(--light-green);
    margin: 30px 0 20px;
}

.home-refonte .service-content {
    padding: 30px;
}

.home-refonte .service-content h3 {
    color: var(--primary-green);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.home-refonte .service-content p {
    color: var(--gray);
    margin-bottom: 20px;
}

.home-refonte .service-link {
    color: var(--clay);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.home-refonte .service-link:hover {
    gap: 12px;
}

/* =========================
   HOME – PROCESS
========================= */

/* Processus Moderne */
.home-refonte .process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 80px 0;
    flex-wrap: wrap;
}

.home-refonte .process-timeline:before {
    content: '';
    position: absolute;
    top: 40px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--light-green), var(--soft-blue));
    z-index: 1;
}

.home-refonte .process-step {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.home-refonte .step-number {
    width: 80px;
    height: 80px;
    background: white;
    border: 3px solid var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-green);
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.home-refonte .process-step:hover .step-number {
    background: var(--light-green);
    color: white;
    transform: scale(1.1);
}

.home-refonte .step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: block;
    object-fit: contain;
}

.home-refonte .process-step h4 {
    color: var(--primary-green);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

/* =========================
   HOME – CTA
========================= */

/* CTA Section Moderne */
.home-refonte .cta-modern {
    background: linear-gradient(135deg, var(--sand) 0%, #E8DFCA 100%);
    border-radius: 30px;
    padding: 60px;
    margin: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.home-refonte .cta-modern:before {
    content: '🍃';
    position: absolute;
    font-size: 200px;
    opacity: 0.1;
    right: -50px;
    top: -50px;
    transform: rotate(45deg);
}

.home-refonte .cta-modern h3 {
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.home-refonte .cta-modern p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 30px;
}

/* =========================
   PAGE - CONCEPT
========================= */

/* Hero Section Concept */
.concept-hero {
    background: linear-gradient(135deg, rgba(30, 61, 50, 0.88) 0%, rgba(46, 93, 76, 0.85) 100%),
        url('../images/concept/hero-concept.webp') center/cover no-repeat;
    color: white;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.concept-hero:before {
    content: '♻️';
    position: absolute;
    font-size: 300px;
    opacity: 0.05;
    right: -100px;
    top: -100px;
    transform: rotate(25deg);
}

.concept-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 300;
    position: relative;
}

.concept-hero .tagline-hero {
    font-size: 1.8rem;
    font-weight: 300;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.4;
}

.tagline {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 25px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1.1rem;
    margin-top: 20px;
}

/* Section Introduction */
.concept-page .intro-section {
    padding: 100px 0;
    background: var(--sand);
    position: relative;
}

.concept-page .intro-section:before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--sand);
    transform: skewY(-2deg);
}

.concept-page .intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.concept-page .intro-text h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 30px;
    line-height: 1.2;
}

.concept-page .intro-text p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.concept-page .intro-highlights {
    display: flex;
    flex-direction: column;
    gap: 25px;
    height: 100%;
    justify-content: center;
    background: linear-gradient(135deg, rgba(46, 93, 76, 0.88) 0%, rgba(30, 61, 50, 0.92) 100%),
        url('../images/concept/concept-intro.webp') center/cover no-repeat;
    border-radius: 20px;
    padding: 40px;
    color: white;
}

.concept-page .intro-highlight {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.concept-page .intro-highlight i {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--sand);
}

.concept-page .intro-highlight h3 {
    font-size: 1.15rem;
    margin-bottom: 5px;
}

.concept-page .intro-highlight p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Services Grid */
.concept-page .services-section {
    padding: 100px 0;
}

.concept-page .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.concept-page .section-header h2 {
    font-size: 2.8rem;
    color: var(--primary-green);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.concept-page .section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--clay);
}

.concept-page .section-header p {
    color: var(--gray);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.concept-page .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.concept-page .service-feature {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.concept-page .service-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.concept-page .service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--light-green), var(--soft-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: white;
}

.concept-page .service-feature h3 {
    font-size: 1.4rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.concept-page .service-feature p {
    color: var(--gray);
    margin-bottom: 20px;
}

.concept-page .service-link {
    color: var(--clay);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.concept-page .service-link:hover {
    gap: 12px;
}

/* Swiss Coverage */
.concept-page .coverage-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--sand) 0%, #E8DFCA 100%);
    position: relative;
    overflow: hidden;
}

.concept-page .coverage-section:before {
    content: '🇨🇭';
    position: absolute;
    font-size: 400px;
    opacity: 0.03;
    right: -100px;
    top: -100px;
}

.concept-page .coverage-header {
    text-align: center;
    margin-bottom: 40px;
}

.concept-page .coverage-header h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.concept-page .coverage-note {
    text-align: center;
    margin-top: 30px;
    color: var(--primary-green);
    font-weight: 500;
}

.concept-page .cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
}

.concept-page .city-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    color: var(--gray);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.concept-page .city-item:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Sustainable Section */
.concept-page .sustainable-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(30, 61, 50, 0.90) 0%, rgba(46, 93, 76, 0.88) 100%),
        url('../images/concept/engagement-durable.webp') center/cover no-repeat;
    color: white;
    position: relative;
}

.concept-page .sustainable-section:before {
    content: '🌿';
    position: absolute;
    font-size: 300px;
    opacity: 0.05;
    left: -100px;
    top: -100px;
}

.concept-page .sustainable-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.concept-page .sustainable-content h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.concept-page .sustainable-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 40px;
}

.concept-page .eco-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.concept-page .eco-feature {
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.concept-page .eco-feature i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--clay);
}

.concept-page .eco-feature h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* Contact CTA */
.concept-page .contact-cta {
    padding: 80px 0;
    text-align: center;
}

.concept-page .contact-cta h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.concept-page .contact-cta p {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 40px;
}

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

.concept-page .btn {
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
}

.concept-page .btn-whatsapp {
    background: var(--primary-green);
    color: white;
}

.concept-page .btn-email {
    background: var(--clay);
    color: white;
}

.concept-page .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* =========================
   PAGE - SERVICES
========================= */

/* Hero Section */
.premium .services-hero {
    background: linear-gradient(135deg, rgba(30, 61, 50, 0.88) 0%, rgba(46, 93, 76, 0.85) 100%),
        url('../images/services/services-hero.webp') center/cover no-repeat;
    color: white;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.premium .services-hero:before {
    content: '👔';
    position: absolute;
    font-size: 300px;
    opacity: 0.05;
    right: -100px;
    top: -100px;
    transform: rotate(15deg);
}

.premium .services-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 300;
    position: relative;
}

.premium .services-hero .tagline {
    font-size: 1.8rem;
    font-weight: 300;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.4;
    font-style: italic;
}

.premium .hero-cta {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 20px 40px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 1.2rem;
    margin-top: 30px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.premium .hero-cta:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Introduction */
.premium .intro-section {
    padding: 100px 0;
    background: var(--sand);
    position: relative;
}

.premium .intro-section:before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--sand);
    transform: skewY(-2deg);
}

.premium .intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.premium .intro-content h2 {
    font-size: 2.8rem;
    color: var(--primary-green);
    margin-bottom: 30px;
    line-height: 1.2;
}

.premium .intro-content p {
    font-size: 1.2rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Services Grid */
.premium .services-section {
    padding: 100px 0;
}

.premium .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.premium .section-header h2 {
    font-size: 2.8rem;
    color: var(--primary-green);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.premium .section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--clay);
}

.premium .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.premium .service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.premium .service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.premium .service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--light-green), var(--clay));
}

.premium .service-icon {
    font-size: 3.5rem;
    color: var(--light-green);
    margin: 40px 0 25px;
}

.premium .service-content {
    padding: 40px;
}

.premium .service-content h3 {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 20px;
    min-height: 60px;
}

.premium .service-features {
    list-style: none;
    margin: 25px 0;
}

.premium .service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--gray);
}

.premium .service-features li:before {
    content: '✓';
    color: var(--light-green);
    font-weight: bold;
}

.premium .service-price {
    font-size: 1.3rem;
    color: var(--clay);
    font-weight: 600;
    margin: 25px 0;
    padding: 15px;
    background: rgba(201, 125, 90, 0.1);
    border-radius: 10px;
    text-align: center;
}

.premium .service-cta {
    display: inline-block;
    width: 100%;
    padding: 16px;
    background: var(--primary-green);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.premium .service-cta:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
}

/* Process Timeline */
.premium .process-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--sand) 0%, #E8DFCA 100%);
    position: relative;
    overflow: hidden;
}

.premium .process-section:before {
    content: '⏱️';
    position: absolute;
    font-size: 300px;
    opacity: 0.05;
    right: -100px;
    top: -100px;
}

.premium .process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    counter-reset: process-step;
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
}

.premium .process-timeline:before {
    content: '';
    position: absolute;
    top: 60px;
    left: 50px;
    right: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--light-green), var(--soft-blue), var(--clay));
    z-index: 1;
}

@media (max-width: 992px) {
    .premium .process-timeline:before {
        display: none;
    }
}

.premium .process-step {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.premium .process-step:before {
    counter-increment: process-step;
    content: counter(process-step);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: white;
    border: 3px solid var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-green);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.premium .process-content {
    background: white;
    padding: 90px 30px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.premium .process-content h3,
.premium .process-content h4 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 15px;
    min-height: 45px;
}

.premium .process-content p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Coverage Section */
.premium .coverage-section {
    padding: 100px 0;
}

.premium .coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: start;
}

.premium .coverage-map {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
}

.coverage-highlights {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
    height: 100%;
    width: 100%;
    padding: 40px;
    color: white;
}

.coverage-highlight {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.coverage-highlight i {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
}

.coverage-highlight h3 {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 5px;
}

.coverage-highlight p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
}

.premium .coverage-info {
    padding: 40px;
}

.premium .coverage-info h3 {
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 30px;
}

.premium .coverage-list {
    list-style: none;
    margin-bottom: 30px;
}

.premium .coverage-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--primary-green);
    font-size: 1.1rem;
}

.premium .coverage-list li:before {
    content: '📍';
    font-size: 1.5rem;
}

.premium .check-zone {
    background: var(--sand);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid var(--clay);
}

.premium .check-zone h4 {
    color: var(--primary-green);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.premium .check-zone select {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    margin-bottom: 15px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%232E5D4C' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

/* CTA Section */
.premium .cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: white;
    text-align: center;
}

.premium .cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.premium .cta-content h3 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.premium .cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.8;
}

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

.premium .btn {
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
}

.premium .btn-primary {
    background: var(--clay);
    color: white;
}

.premium .btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.premium .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.premium .check-zone {
    background: #F5F1E6;
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #C97D5A;
}

.premium #coverageZone {
    padding: 12px 20px;
    border: 2px solid #E8E8E8;
    border-radius: 10px;
    font-size: 1rem;
    width: 100%;
    margin-bottom: 15px;
}

.premium #coverageDay {
    padding: 32px;
    text-align: center;
    background: linear-gradient(135deg, #fdfcfb 0%, #f6f4f0 100%);
}

.premium .coverageDay-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 12px;
}


.premium #covDay {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 8px;
    background: var(--primary-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.premium .coverageDay-frequency {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

.check-zone .btn-planifier {
    background: var(--clay);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.check-zone .btn-planifier:hover {
    background-color: var(--primary-green);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.check-zone #coverageCta {
    display: inline-block;
    width: 100%;
    text-align: center;
    color: white;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
}

/* Animation subtile */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 600px) {

    #coverageDay,
    #coverageCta {
        padding: 24px;
    }

    .zone-communes {
        font-size: 18px;
    }

    .premium #covDay {
        font-size: 28px;
    }

    .btn-planifier {
        padding: 16px;
    }
}

@media (max-width: 400px) {
    .zone-communes {
        font-size: 17px;
    }

    .premium #covDay {
        font-size: 24px;
    }
}

/* =========================
   PAGE - Tarifs
========================= */

/* Hero Section */
.tarifs .pricing-hero {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tarifs .pricing-hero:before {
    content: '💰';
    position: absolute;
    font-size: 300px;
    opacity: 0.05;
    right: -100px;
    top: -100px;
    transform: rotate(15deg);
}

.tarifs .pricing-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.tarifs .pricing-hero .tagline {
    font-size: 2rem;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 30px;
}

.tarifs .pricing-card:not(.category-vetements) {
    display: none;
}

.tarifs .pricing-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.8;
}

/* Introduction */
.tarifs .intro-section {
    padding: 100px 0;
    background: var(--sand);
    position: relative;
}

.tarifs .intro-section:before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--sand);
    transform: skewY(-2deg);
}

.tarifs .intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tarifs .intro-text h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 25px;
    line-height: 1.2;
}

.tarifs .intro-text p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.tarifs .service-feature {
    background: var(--primary-green);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(46, 93, 76, 0.25);
    text-align: center;
    color: var(--white);
}

.tarifs .service-feature i {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
}

.tarifs .service-feature h3 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.tarifs .service-feature p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
}

/* Search Section */
.tarifs .search-section {
    padding: 60px 0;
    background: white;
}

.tarifs .search-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.tarifs .search-container h2 {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.tarifs .search-box {
    position: relative;
    margin-bottom: 40px;
}

.tarifs .search-box input {
    width: 100%;
    padding: 20px 60px 20px 30px;
    border: 2px solid var(--light-gray);
    border-radius: 50px;
    font-size: 1.1rem;
    font-family: inherit;
    background: var(--sand);
    transition: all 0.3s ease;
}

.tarifs .search-box input:focus {
    outline: none;
    border-color: var(--light-green);
    box-shadow: 0 0 0 4px rgba(74, 139, 109, 0.15);
    background: white;
}

.tarifs .search-box i {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    font-size: 1.2rem;
}

.tarifs .search-example {
    color: var(--gray);
    font-size: 0.95rem;
    font-style: italic;
}

/* Pricing Tables */
.tarifs .pricing-section {
    padding: 80px 0;
}

.tarifs .pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.tarifs .pricing-header h2 {
    font-size: 2.8rem;
    color: var(--primary-green);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.tarifs .pricing-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--clay);
}

.tarifs .pricing-notice {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 700px;
    margin: 0 auto 40px;
    padding: 16px 24px;
    background: var(--sand);
    border-left: 4px solid var(--clay, #c97d5a);
    border-radius: 8px;
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

.tarifs .pricing-notice i {
    color: var(--clay, #c97d5a);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.tarifs .category-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tarifs .category-tab {
    padding: 15px 30px;
    background: var(--sand);
    border: 2px solid transparent;
    border-radius: 10px;
    font-family: inherit;
    font-size: inherit;
    font-weight: 600;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tarifs .category-tab.active {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
}

.tarifs .category-tab:hover:not(.active) {
    border-color: var(--light-green);
    color: var(--primary-green);
}

.tarifs .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    align-items: start;
}

.tarifs .pricing-card {
    background: white;
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    max-width: 560px;
    width: 100%;
    margin: 0 auto;
}

.tarifs .pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.tarifs .pricing-card-header {
    background: linear-gradient(135deg, var(--light-green) 0%, #5CA07F 100%);
    color: white;
    padding: 30px;
    text-align: center;
    border-radius: 20px 20px 0 0;
}

.tarifs .pricing-card-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.tarifs .pricing-card-header p {
    opacity: 0.9;
    font-size: 0.95rem;
}

.tarifs .pricing-card-note {
    font-size: 0.8rem;
    color: #999;
    padding: 0 30px 20px;
    margin: 0;
}

.tarifs .pricing-asterisk {
    color: var(--clay, #c97d5a);
    font-weight: 700;
}

.tarifs .pricing-items {
    padding: 30px;
}

.tarifs .pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.tarifs .pricing-item:last-child {
    border-bottom: none;
}

.tarifs .item-name {
    font-weight: 500;
    color: var(--primary-green);
    font-size: 1.1rem;
}

.tarifs .item-price {
    font-weight: 600;
    color: var(--clay);
    font-size: 1.3rem;
}

.tarifs .item-note {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 5px;
    font-style: italic;
}

/* Notes Section */
.tarifs .notes-section {
    padding: 60px 0;
    background: var(--sand);
    border-radius: 20px;
    margin: 60px 0;
}

.tarifs .notes-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.tarifs .notes-container h2 {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 30px;
}

.tarifs .important-note {
    background: white;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--clay);
    margin-bottom: 30px;
    text-align: left;
}

.tarifs .important-note h4 {
    color: var(--primary-green);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tarifs .important-note ul {
    list-style: none;
    padding-left: 0;
}

.tarifs .important-note li {
    margin-bottom: 10px;
    color: var(--gray);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.tarifs .important-note li:before {
    content: '•';
    color: var(--clay);
    font-weight: bold;
    font-size: 1.2rem;
}

.tarifs .price-disclaimer {
    color: var(--gray);
    font-size: 0.9rem;
    font-style: italic;
    background: rgba(255, 255, 255, 0.7);
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
}

/* CTA Section */
.tarifs .cta-section {
    padding: 100px 0;
    text-align: center;
}

.tarifs .cta-section h3 {
    font-size: 2.8rem;
    color: var(--primary-green);
    margin-bottom: 30px;
}

.tarifs .cta-section p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

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

.tarifs .btn {
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
}

.tarifs .btn-primary {
    background: linear-gradient(135deg, var(--clay) 0%, #D48966 100%);
    color: white;
}

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

.tarifs .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.tarifs .btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
}

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

/* Responsive */
@media (max-width: 992px) {
    .tarifs .intro-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tarifs .pricing-hero h1 {
        font-size: 2.8rem;
    }

    .tarifs .pricing-hero .tagline {
        font-size: 1.8rem;
    }

    .tarifs .pricing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .pricing-hero,
    .intro-section,
    .pricing-section,
    .cta-section {
        padding: 70px 0;
    }

    .pricing-header h2 {
        font-size: 2.2rem;
    }

    .category-tabs {
        flex-direction: column;
        align-items: center;
    }

    .category-tab {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    /* text-align: center ne centre pas les conteneurs flex :
       on centre explicitement leur contenu */
    .footer-brand h3,
    .social-links,
    .footer-links li.footer-phone {
        justify-content: center;
    }
}

@keyframes highlight {
    0% {
        background-color: rgba(201, 125, 90, 0);
    }

    50% {
        background-color: rgba(201, 125, 90, 0.2);
    }

    100% {
        background-color: rgba(201, 125, 90, 0.05);
    }
}

/* =========================
   PAGE - COMMANDE
========================= */

/* Hero Section */
.commande-page .booking-hero {
    background: linear-gradient(135deg, rgba(30, 61, 50, 0.88) 0%, rgba(46, 93, 76, 0.85) 100%),
        url('../images/commande/hero-commande.webp') center/cover no-repeat;
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.commande-page .booking-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.commande-page .booking-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Main Layout */
/* ============================================
   STYLES POUR LA GRILLE D'ARTICLES AVEC SCROLL
   ============================================ */

.articles-section {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.category-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 10px 20px;
    background: var(--sand);
    border: none;
    border-radius: 8px;
    color: var(--gray);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn.active {
    background: var(--primary-green);
    color: white;
}

.category-btn:hover:not(.active) {
    background: #E8DFCA;
}

/* Grille avec scroll */
.articles-grid {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 15px;
    margin-bottom: 20px;

    /* Scrollbar styling */
    scrollbar-width: thin;
    scrollbar-color: var(--light-green) var(--sand);
}

/* Scrollbar pour Chrome/Safari */
.articles-grid::-webkit-scrollbar {
    width: 8px;
}

.articles-grid::-webkit-scrollbar-track {
    background: var(--sand);
    border-radius: 10px;
}

.articles-grid::-webkit-scrollbar-thumb {
    background: var(--light-green);
    border-radius: 10px;
}

.articles-grid::-webkit-scrollbar-thumb:hover {
    background: var(--primary-green);
}

/* Cartes d'articles */
.article-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border: 2px solid #E8E8E8;
    border-radius: 10px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    background: white;
}

.article-card:hover {
    border-color: var(--light-green);
    box-shadow: 0 5px 15px rgba(74, 139, 109, 0.1);
}

.article-info {
    flex: 1;
}

.article-info h5 {
    color: var(--primary-green);
    margin-bottom: 5px;
    font-size: 1rem;
}

.article-info .price {
    color: var(--clay);
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 5px;
}

.article-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-btn {
    width: 30px;
    height: 30px;
    border: 2px solid var(--light-green);
    background: white;
    color: var(--light-green);
    border-radius: 50%;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: var(--light-green);
    color: white;
}

.qty-display {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
    color: var(--primary-green);
}

/* Total estimation */
.total-estimation {
    background: linear-gradient(135deg, var(--sand), #E8DFCA);
    border: 2px solid var(--clay);
    border-radius: 10px;
    padding: 20px;
}

.total-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
}

/* ============================================
   STYLES POUR LES BOUTONS RADIO HORIZONTAUX
   ============================================ */

.radio-group-horizontal {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    margin: 15px 0;
    padding: 10px 0;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.radio-option input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--light-green);
    margin: 0;
    cursor: pointer;
}

.radio-text {
    font-size: 1rem;
    color: var(--gray);
    cursor: pointer;
}

.radio-option:hover .radio-text {
    color: var(--primary-green);
}

/* Neutralise les styles CF7 sur les radios inline (layout Civilité) */
.form-check.form-check-inline .wpcf7-form-control-wrap,
.form-check.form-check-inline .wpcf7-form-control.wpcf7-radio {
    display: inline;
}

.form-check.form-check-inline .wpcf7-list-item {
    display: inline-flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.form-check.form-check-inline .wpcf7-list-item label {
    display: inline-flex;
    align-items: center;
    margin: 0;
}

.form-check.form-check-inline .wpcf7-list-item-label {
    display: none;
    /* label vide CF7 — le vrai label est dans .radio-text */
}


/* ============================================
   STYLES POUR LES OPTIONS DE PAIEMENT
   ============================================ */

.payment-options {
    margin: 20px 0;
}

.payment-option {
    margin-bottom: 15px;
    border: 2px solid #E8E8E8;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.payment-option:hover {
    border-color: var(--light-green);
}

.payment-radio {
    display: none;
}

.payment-radio:checked+.payment-label {
    background: rgba(74, 139, 109, 0.05);
    border-color: var(--primary-green);
}

.payment-label {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    cursor: pointer;
    border-radius: 12px;
}

.payment-icon {
    font-size: 1.5rem;
    color: var(--primary-green);
    min-width: 30px;
}

.payment-info {
    flex: 1;
}

.payment-info h5 {
    color: var(--primary-green);
    margin-bottom: 5px;
}

.payment-methods-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.payment-method-icon {
    background: var(--sand);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--gray);
}

.secure-payment-section {
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .radio-group-horizontal {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .radio-option {
        width: 100%;
    }

    .payment-label {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .payment-methods-icons {
        justify-content: center;
    }

    .article-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .article-quantity {
        align-self: flex-end;
    }

    .articles-grid {
        max-height: 350px;
    }
}

/* ---- Stepper ---- */
.form-steps {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem 1.25rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.form-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    flex-shrink: 0;
}

.form-step .step-num {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary-green, #2d6a4f);
    color: #fff;
    font-weight: 700;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-step span {
    font-size: 0.7rem;
    color: #666;
    white-space: nowrap;
}

.step-sep {
    flex: 1;
    height: 2px;
    background: #dee2e6;
    margin: 0 0.4rem 1.3rem;
}

/* ---- Erreurs inline ---- */
.order-errors {
    background: #fff2f2;
    color: #c0392b;
    border-left: 3px solid #c0392b;
    border-radius: 6px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.order-errors ul {
    padding-left: 1.25rem;
    margin: 0;
}

.commande-page .booking-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    padding: 80px 0;
    align-items: start;
}

/* Process Sidebar */
.commande-page .process-sidebar {
    position: sticky;
    top: 30px;
}

.commande-page .process-sidebar h2 {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.commande-page .process-sidebar h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--clay);
}

.commande-page .process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.commande-page .process-step {
    position: relative;
    padding-left: 70px;
}

.commande-page .step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background: var(--sand);
    border: 2px solid var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--primary-green);
    font-size: 1.2rem;
}

.commande-page .process-step h3 {
    font-size: 1.3rem;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.commande-page .process-step p {
    color: var(--gray);
    font-size: 0.95rem;
}

.commande-page .privacy-note {
    margin-top: 50px;
    padding: 20px;
    background: var(--sand);
    border-radius: 10px;
    border-left: 4px solid var(--light-green);
}

.commande-page .privacy-note h4 {
    color: var(--primary-green);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Form Container */
.commande-page .form-container {
    background: white;
    padding: 10px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.commande-page .form-header,
.section-header {
    margin-bottom: 40px;
}

.commande-page .form-header h2,
.commande-page .form-header h3,
.commande-page .section-header h3,
.section-header h2 {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.commande-page .form-header p {
    color: var(--gray);
    font-size: 0.95rem;
}

.commande-page .required-note {
    color: var(--clay);
    font-size: 0.9rem;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Form Styles compatible avec CF7 */
.commande-page .cf7-form-wrapper {
    margin-top: 30px;
}


/* Responsive pour mobile */
@media (max-width: 768px) {
    .radio-group-horizontal {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .radio-option {
        width: 100%;
    }
}

/* Simuler le style des champs CF7 pour la cohérence */
.commande-page .wpcf7-form-control {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.commande-page .wpcf7-form-control:focus {
    outline: none;
    border-color: var(--light-green);
    box-shadow: 0 0 0 3px rgba(74, 139, 109, 0.1);
}

.commande-page .wpcf7-select,
.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%232E5D4C' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.commande-page .wpcf7-text,
.commande-page .wpcf7-email,
.commande-page .wpcf7-tel,
.commande-page .wpcf7-textarea {
    background: var(--white);
}

.commande-page .wpcf7-text::placeholder,
.commande-page .wpcf7-email::placeholder {
    color: #999;
}

.commande-page .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.commande-page .form-group {
    margin-bottom: 25px;
}

.commande-page .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary-green);
    font-size: 0.95rem;
}

.commande-page .form-group label .required {
    color: var(--clay);
    margin-left: 3px;
}

.commande-page .form-check-cgv {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.commande-page .form-check-cgv .form-check-input {
    flex-shrink: 0;
    width: 1.2em;
    height: 1.2em;
    margin-top: 0.2em;
    accent-color: var(--primary-green);
    cursor: pointer;
}

.commande-page .form-check-cgv .form-check-label {
    margin-bottom: 0;
    font-weight: 400;
    color: var(--gray);
    font-size: 0.95rem;
    cursor: pointer;
}

.commande-page .form-check-cgv .form-check-label a {
    color: var(--primary-green);
    font-weight: 500;
    text-decoration: underline;
}

.commande-page .radio-group {
    display: flex;
    gap: 30px;
    margin-top: 10px;
}

.commande-page .radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.commande-page .radio-option input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--light-green);
}

.commande-page .calendar-note {
    background: var(--sand);
    padding: 15px;
    border-radius: 10px;
    margin-top: 30px;
    font-size: 0.9rem;
    color: var(--gray);
    text-align: center;
}

.commande-page .calendar-note i {
    color: var(--clay);
    margin-right: 8px;
}

/* Submit Button */
.commande-page .submit-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--light-gray);
    text-align: center;
}

.commande-page .submit-section .btn {
    background: var(--clay);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.commande-page .submit-section .btn:hover {
    background: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(201, 125, 90, 0.3);
}

.commande-page .submit-note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--gray);
}

/* Contact Info Sidebar */
.commande-page .contact-sidebar {
    background: linear-gradient(135deg, var(--sand) 0%, #E8DFCA 100%);
    border-radius: 20px;
    padding: 40px;
    margin-top: 60px;
    margin-bottom: 60px;
}

.commande-page .contact-sidebar h3 {
    color: var(--primary-green);
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.commande-page .contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.commande-page .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.commande-page .contact-item i {
    color: var(--clay);
    font-size: 1.2rem;
    margin-top: 3px;
}

.commande-page .contact-item div p:first-child {
    font-weight: 500;
    color: var(--primary-green);
    margin-bottom: 5px;
}

.commande-page .contact-item div p:last-child {
    color: var(--gray);
}

/* Responsive */
@media (max-width: 992px) {
    .commande-page .booking-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .commande-page .process-sidebar {
        position: static;
    }

    .commande-page .form-container {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .commande-page .booking-hero {
        padding: 60px 20px;
    }

    .commande-page .booking-hero h1 {
        font-size: 2.2rem;
    }

    .commande-page .form-row {
        grid-template-columns: 1fr;
    }

    .commande-page .radio-group {
        flex-direction: column;
        gap: 15px;
    }

    .commande-page .contact-sidebar {
        padding: 30px;
    }
}

/* =========================
   PAGE - CONTACT
========================= */

/* Hero Section */
.ct .contact-hero {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ct .contact-hero:before {
    content: '✉️';
    position: absolute;
    font-size: 300px;
    opacity: 0.05;
    right: -100px;
    top: -100px;
    transform: rotate(15deg);
}

.ct .contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 300;
    position: relative;
}

.ct .contact-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Layout */
.ct .contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 100px 0;
    align-items: start;
}

/* Contact Info Sidebar */
.ct .contact-sidebar {
    position: sticky;
    top: 30px;
}

.ct .contact-sidebar h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.ct .contact-sidebar h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--clay);
}

.ct .contact-info-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.ct .contact-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.ct .contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.ct .contact-card i {
    font-size: 2.5rem;
    color: var(--light-green);
    margin-bottom: 20px;
}

.ct .contact-card h3 {
    font-size: 1.4rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.ct .contact-card p {
    color: var(--gray);
    line-height: 1.7;
}

.ct .contact-card a {
    color: var(--clay);
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    margin-top: 10px;
    transition: color 0.3s ease;
}

.ct .contact-card a:hover {
    color: var(--primary-green);
}

.ct .address-map {
    height: 200px;
    background: linear-gradient(135deg, var(--soft-blue) 0%, #A3D0D9 100%);
    border-radius: 10px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 500;
    text-decoration: none;
}

.ct .address-map:before {
    content: '📍';
    margin-right: 10px;
    font-size: 1.5rem;
}

/* Form Container */
.ct .form-container {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.ct .form-header {
    margin-bottom: 40px;
}

.ct .form-header h2 {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.ct .form-header p {
    color: var(--gray);
    font-size: 1rem;
}

/* Form Styles pour CF7 */
.ct .cf7-form-wrapper {
    margin-top: 20px;
}

/* Styles pour le formulaire CF7 */
.ct .wpcf7-form {
    margin-top: 20px;
}

.ct .wpcf7-form .form-group {
    margin-bottom: 25px;
}

.ct .wpcf7-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-green);
    font-size: 0.95rem;
}

.ct .wpcf7-form .wpcf7-form-control {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #E8E8E8;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--gray);
    background-color: var(--sand);
    transition: all 0.3s ease;
}

.ct .wpcf7-form .wpcf7-form-control:focus {
    outline: none;
    border-color: var(--light-green);
    box-shadow: 0 0 0 4px rgba(74, 139, 109, 0.15);
    background-color: white;
}

.ct .wpcf7-form .wpcf7-textarea {
    min-height: 150px;
    resize: vertical;
}

.ct .wpcf7-submit {
    background: linear-gradient(135deg, var(--clay) 0%, #D48966 100%);
    color: white !important;
    border: none !important;
    padding: 18px 45px !important;
    border-radius: 50px !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    cursor: pointer;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    margin-top: 20px;
}

.ct .wpcf7-submit:hover {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(201, 125, 90, 0.25);
}

.ct .wpcf7-response-output {
    margin-top: 25px !important;
    border-radius: 12px;
    transition: opacity 0.6s ease;
}

.ct .wpcf7-response-output.is-hiding {
    opacity: 0;
}

/* Services Grid */
.ct .services-section {
    padding: 80px 0;
    background: var(--sand);
    border-radius: 30px;
    margin: 60px 0;
}

.ct .services-section .container {
    max-width: 1000px;
}

.ct .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.ct .section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.ct .section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--clay);
}

.ct .section-header p {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.ct .services-mini-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.ct .service-mini-card {
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.ct .service-mini-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.ct .service-mini-card i {
    font-size: 2.5rem;
    color: var(--light-green);
    margin-bottom: 20px;
}

.ct .service-mini-card h3 {
    color: var(--primary-green);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.ct .service-mini-card p {
    color: var(--gray);
    font-size: 1.05rem;
}

.ct .contact-card address {
    font-style: normal;
}

.ct .contact-note {
    font-size: 1.05rem;
    color: var(--clay);
    margin-top: 10px;
}

/* =========================
   FAQ Section
========================= */

.ct .faq-section {
    padding: 60px 0;
    background: #f8f6f2;
}

.ct .faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.ct .faq-item {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.ct .faq-item h3 {
    color: var(--primary-green);
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.ct .faq-item p {
    color: var(--gray);
    font-size: 1.40rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .ct .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ct .contact-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .ct .form-container {
        padding: 30px;
    }
}

/* =========================
   PAGES LÉGALES (CGV + Mentions légales)
========================= */

.legal-page .legal-hero {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--green-mid, #40916c) 100%);
    color: white;
    padding: 100px 20px 20px;
    text-align: center;
}

.legal-page .legal-hero h1 {
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 10px;
}

.legal-page .legal-hero p {
    opacity: 0.8;
    font-size: 1.25rem;
}

.legal-page .legal-content {
    max-width: 800px;
    margin: 60px auto 80px;
}

.legal-page .legal-disclaimer {
    background: #f0f7f4;
    border-left: 4px solid var(--primary-green);
    border-radius: 6px;
    padding: 1rem 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--primary-green);
    font-size: 0.95rem;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.legal-page .legal-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #eee;
}

.legal-page .legal-section:last-child {
    border-bottom: none;
}

.legal-page .legal-section h2 {
    font-size: 1.25rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 600;
}

.legal-page .legal-section p,
.legal-page .legal-section li {
    color: #444;
    line-height: 1.8;
    font-size: 1.25rem;
}

.legal-page .legal-section ul,
.legal-page .legal-section ol {
    padding-left: 1.5rem;
    margin: 0.75rem 0;
}

.legal-page .legal-section li {
    margin-bottom: 0.4rem;
}

.legal-page .legal-section a {
    color: var(--primary-green);
    text-decoration: underline;
}

.legal-page .legal-section address {
    font-style: normal;
    line-height: 1.8;
    color: #444;
    font-size: 1.2rem;
}

.legal-page .legal-note {
    font-size: 0.85rem;
    color: var(--clay);
    margin-top: 0.75rem;
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
}

/* =========================
   FOOTER
========================= */

/* =========================
   AVIS CLIENTS
========================= */

.reviews-section {
    padding: 80px 0;
    background: #f8faf9;
}

.reviews-header {
    text-align: center;
    margin-bottom: 48px;
}

.reviews-header h2 {
    font-size: 2rem;
    color: var(--green-dark);
    margin-bottom: 12px;
}

.reviews-aggregate {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
}

.agg-stars {
    color: #f59e0b;
    font-size: 1.4rem;
    letter-spacing: 2px;
}

.agg-score {
    font-weight: 600;
    color: var(--green-dark);
    font-size: 1.1rem;
}

.agg-count {
    color: #888;
    font-size: 0.9rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-bottom: 40px;
}

.review-card {
    background: white;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.11);
}

.review-stars .star {
    font-size: 1.15rem;
}

.review-stars .star.filled {
    color: #f59e0b;
}

.review-stars .star.empty {
    color: #ddd;
}

.review-comment {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.65;
    flex: 1;
    font-style: italic;
    margin: 0;
}

.review-author {
    font-size: 0.875rem;
    color: #888;
    border-top: 1px solid #f0f0f0;
    padding-top: 12px;
}

.author-name {
    color: var(--green-dark);
    font-weight: 600;
    font-style: normal;
}

.reviews-empty {
    text-align: center;
    color: #888;
    font-style: italic;
    padding: 32px 0;
    font-size: 1rem;
}

.reviews-cta {
    text-align: center;
    display: none;
}

/* Page avis — hero */
.avis-hero {
    background: linear-gradient(135deg, rgba(30, 61, 50, 0.88) 0%, rgba(46, 93, 76, 0.85) 100%), var(--primary-green);
    color: white;
    padding: 80px 0 60px;
    margin-top: 78px;
    text-align: center;
}

.avis-page .reviews-cta {
    display: none;
}

.avis-hero h1 {
    color: white;
    margin-bottom: 8px;
}

.avis-hero .tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

/* Page avis — formulaire */
.avis-form-section {
    padding: 60px 0 80px;
    background: white;
}

.avis-form-wrapper {
    max-width: 620px;
    margin: 0 auto;
}

.avis-form-wrapper h2 {
    font-size: 1.6rem;
    color: var(--green-dark);
    margin-bottom: 6px;
}

.review-form {
    margin-top: 28px;
}

.review-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.review-form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}

.review-form-field label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #333;
}

.review-form-field input[type="text"],
.review-form-field textarea {
    border: 1.5px solid #ddd;
    border-radius: 8px;
    padding: 0.65rem 0.9rem;
    font-size: 0.95rem;
    transition: border-color 0.2s;
    width: 100%;
}

.review-form-field input[type="text"]:focus,
.review-form-field textarea:focus {
    outline: none;
    border-color: var(--light-green);
}

/* Étoiles interactives (formulaire) */
.star-input {
    display: inline-flex;
    flex-direction: row-reverse;
    gap: 4px;
}

.star-input input[type="radio"] {
    display: none;
}

.star-input label {
    font-size: 2.2rem;
    color: #ddd;
    cursor: pointer;
    line-height: 1;
    transition: color 0.15s;
}

.star-input input:checked~label,
.star-input label:hover,
.star-input label:hover~label {
    color: #f59e0b;
}

.btn-submit-review {
    width: 100%;
    padding: 0.85rem;
    font-size: 1rem;
    border-radius: 8px;
    margin-top: 8px;
}

@media (max-width: 575.98px) {
    .review-form-row {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }
}


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

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.footer-brand h3 i {
    color: var(--light-green);
}

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--sand);
}

.footer-links ul,
.footer-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
    transition: background-color .3s ease, color .3s ease;
}

.social-links a:hover {
    background: var(--light-green);
    color: white;
}

.footer-wa {
    display: inline-flex !important;
    align-items: center;
    gap: 0.5rem;
    width: auto !important;
    height: auto !important;
    border-radius: 50px !important;
    padding: 0.45rem 1.1rem !important;
    background: rgba(255, 255, 255, 0.07) !important;
    border: 1px solid rgba(255, 255, 255, 0.22) !important;
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.18rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: background 0.25s ease, border-color 0.25s ease;
    text-decoration: none;
}

.footer-wa svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    flex-shrink: 0;
}

.footer-wa:hover {
    background: rgba(255, 255, 255, 0.14) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    color: white !important;
}

.footer-links a,
.footer-nav-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 10px;
    display: block;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-nav-list a:hover {
    color: white;
}

.footer-links li.footer-phone {
    display: flex;
    align-items: center;
    gap: .35rem;
}

.footer-links li.footer-phone a {
    margin-bottom: 0;
}

.footer-phone-location {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.0rem;
}

/* Le menu "Navigation" du footer réutilise main_menu : on neutralise
   les classes Bootstrap nav-link/active héritées du header */
.footer-nav-list .nav-link {
    padding: 0;
    border-radius: 0;
    font-weight: 400;
}

.footer-nav-list .nav-link.active,
.footer-nav-list .nav-link:hover,
.footer-nav-list .nav-link:focus {
    background: none;
    color: white;
}

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

.footer-bottom a {
    color: var(--sand);
    text-decoration: none;
    margin: 0 10px;
}

.footer-credits {
    margin-top: 10px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-credits a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.footer-credits a:hover {
    color: var(--sand);
}

/* Responsive */
@media (max-width: 992px) {
    .services-hero h1 {
        font-size: 2.8rem;
    }

    .services-hero .tagline {
        font-size: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .coverage-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .services-hero,
    .intro-section,
    .services-section,
    .process-section,
    .coverage-section,
    .cta-section {
        padding: 70px 0;
    }

    .intro-content h2,
    .section-header h2 {
        font-size: 2.2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Footer Concept */
.footer-concept {
    background: var(--dark-green);
    color: white;
    padding: 60px 0 30px;
}

.footer-concept-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-concept-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer-concept-links h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--sand);
}

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

.footer-concept-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 10px;
    display: block;
    transition: color 0.3s ease;
}

.footer-concept-links a:hover {
    color: white;
}

.concept-payment-methods {
    margin-top: 20px;
}

.concept-payment-methods span {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 15px;
    border-radius: 5px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .concept-page .intro-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .concept-hero h1 {
        font-size: 2.8rem;
    }

    .concept-hero .tagline-hero {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .concept-hero {
        padding: 70px 20px;
    }

    .intro-section,
    .services-section,
    .sustainable-section {
        padding: 70px 0;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* ================================================
   ANIMATIONS AU SCROLL
   Pilotées par JavaScript via IntersectionObserver.
   .js-fade-up / .js-slide-in  →  état initial
   .is-visible                 →  ajouté par JS à l'entrée dans le viewport
   --anim-delay                →  stagger défini inline par JS (ex. 0.1s, 0.2s…)
   will-change libéré après animation pour économiser la mémoire GPU.
================================================ */

.js-fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    transition-delay: var(--anim-delay, 0s);
    will-change: opacity, transform;
}

.js-fade-up.is-visible {
    opacity: 1;
    transform: none;
    will-change: auto;
}

.js-slide-in {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    transition-delay: var(--anim-delay, 0s);
    will-change: opacity, transform;
}

.js-slide-in.is-visible {
    opacity: 1;
    transform: none;
    will-change: auto;
}

/* Animation pulse sur bouton (page services, sélecteur de zone) */
@keyframes pulse-once {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.pulse-once {
    animation: pulse-once 0.5s ease;
}

/* Skip-to-content (accessibilité clavier) */
/* Classe utilitaire — masquage visuel uniquement (visible pour lecteurs d'écran) */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-to-content {
    position: absolute;
    top: -999px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    padding: 0.75rem 1.5rem;
    background: var(--green-dark, #2d6a4f);
    color: #fff;
    font-weight: 600;
    border-radius: 0 0 6px 6px;
    text-decoration: none;
    transition: top 0.15s ease;
}

.skip-to-content:focus {
    top: 0;
}

/* =============================================================
   PAGE PAIEMENT — Checkout & Confirmation
   ============================================================= */

/* ---- Bandeau de progression ---- */
.checkout-bandeau {
    background: var(--green-dark, #2d6a4f);
    color: white;
    padding: 0.9rem 0;
    margin-top: 78px;
}

.bandeau-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.checkout-progress {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin: 0;
    padding: 0;
}

.cp-step {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.cp-num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.55);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
}

.cp-step.is-done .cp-num {
    background: rgba(255, 255, 255, 0.2);
}

.cp-step.is-active .cp-num {
    background: white;
    color: var(--green-dark, #2d6a4f);
    border-color: white;
}

.cp-label {
    font-size: 0.88rem;
    font-weight: 500;
}

.cp-step.is-done .cp-label {
    opacity: 0.7;
}

.cp-step.is-active .cp-label {
    font-weight: 700;
}

.cp-sep {
    opacity: 0.35;
    font-size: 1.0rem;
}

.bandeau-tagline {
    font-size: 1.2rem;
    opacity: 0.82;
    margin: 0;
}

/* ---- Bannière version mobile ---- */
.mobile-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    background: #eef6f1;
    border: 1px solid rgba(64, 145, 108, 0.22);
    border-radius: 8px;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 1.75rem;
}

.mobile-banner-link {
    color: var(--green-dark, #2d6a4f);
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.mobile-banner-link:hover {
    text-decoration: underline;
}

/* ---- Layout ---- */
.checkout-section {
    background: #f4f8f5;
    padding-bottom: 3rem;
}

.checkout-container {
    padding-top: 2.5rem;
    padding-bottom: 0;
}

/* ---- Order Summary Card (gauche) ---- */
.order-summary-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    padding: 1.75rem;
    position: sticky;
    top: 1.5rem;
    border-top: 4px solid var(--green-mid, #40916c);
}

.summary-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--green-dark, #2d6a4f);
    border-bottom: 2px solid #e8f5e9;
    padding-bottom: 0.75rem;
    margin-bottom: 1rem;
}

.summary-items {
    margin-bottom: 1rem;
}

.summary-item {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    padding: 0.35rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
}

.summary-item:last-child {
    border-bottom: none;
}

.item-qty {
    font-weight: 700;
    color: var(--green-dark, #2d6a4f);
    min-width: 2rem;
    text-align: right;
}

.summary-details {
    margin: 1rem 0;
}

.summary-detail {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1.0rem;
}

.summary-detail:last-child {
    border-bottom: none;
}

.detail-label {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    color: #666;
}

.detail-label i {
    color: var(--green-mid, #40916c);
    width: 0.9rem;
    text-align: center;
    flex-shrink: 0;
}

.detail-value {
    color: #333;
    font-weight: 600;
    text-align: right;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--green-dark, #2d6a4f);
    color: white;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin-top: 1rem;
    font-weight: 700;
    font-size: 1.05rem;
}

.total-amount {
    color: white;
    font-size: 1.4rem;
}

.summary-secure-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.0rem;
    color: #888;
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid #eee;
}

.summary-secure-note i {
    color: var(--green-mid, #40916c);
}

/* ---- Stripe Payment Card (droite) ---- */
.stripe-payment-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(45, 106, 79, 0.15);
    border: 1.5px solid rgba(64, 145, 108, 0.25);
    padding: 1.75rem;
}

.payment-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--green-dark, #2d6a4f);
    border-bottom: 2px solid #e8f5e9;
    padding-bottom: 0.75rem;
    margin-bottom: 1.25rem;
}

/* ---- Pay button ---- */
.btn-pay {
    background: linear-gradient(135deg, var(--green-dark, #2d6a4f) 0%, var(--green-mid, #40916c) 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 1.1rem 1.5rem;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(45, 106, 79, 0.35);
    margin: 1.5rem 0 0.5rem;
}

.btn-pay:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--green-mid, #40916c) 0%, var(--green-dark, #2d6a4f) 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 106, 79, 0.45);
}

.btn-pay:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    box-shadow: none;
}

/* ---- Payment message (errors) ---- */
.payment-message {
    display: none;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    background: #f8f9fa;
    color: #444;
}

.payment-message--error {
    background: #fff2f2;
    color: #c0392b;
    border-left: 3px solid #c0392b;
}

/* ---- Payment branding ---- */
.payment-branding {
    font-size: 1.0rem;
    color: #999;
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 0.75rem;
}

/* Textes descriptifs dans les panneaux de paiement */
.stripe-payment-card .text-muted.small,
.stripe-payment-card p.text-muted {
    font-size: 0.95rem !important;
}

.checkout-card-logos {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.payment-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.7rem;
    border: 1.5px solid #ddd;
    border-radius: 6px;
    background: white;
    font-size: 0.8rem;
    font-weight: 600;
    color: #333;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.07);
}

.payment-badge .fa-cc-visa {
    color: #1a1f71;
    font-size: 1.15rem;
}

.payment-badge .fa-cc-mastercard {
    color: #eb001b;
    font-size: 1.15rem;
}

.payment-badge .fa-google-pay,
.payment-badge .fa-apple-pay {
    color: #333;
    font-size: 1.15rem;
}

/* ---- Séparateur "Procéder au paiement" ---- */
.payment-separator {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin: 1.1rem 0 0;
    color: #aaa;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.payment-separator::before,
.payment-separator::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e5e5e5;
}

/* ---- Trust badges ---- */
.trust-badges {
    display: flex;
    gap: 0.65rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid #eee;
}

.trust-badge {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    text-align: center;
    font-size: 0.76rem;
    color: #666;
    background: #f8faf9;
    border-radius: 8px;
    padding: 0.7rem 0.4rem;
    border: 1px solid #edf3f0;
}

.trust-badge i {
    font-size: 1rem;
    color: var(--green-mid, #40916c);
}

/* ---- Sélecteur méthode de paiement ---- */
.payment-method-selector {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.payment-method-btn {
    flex: 1;
    padding: 16px 12px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 700;
    color: #666;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.payment-method-btn.active {
    border-color: var(--green-dark, #2d6a4f);
    color: var(--green-dark, #2d6a4f);
    background: rgba(45, 106, 79, 0.04);
}

.payment-method-btn:hover:not(.active) {
    border-color: #aaa;
    color: #333;
}

/* ---- Coordonnées bancaires (virement) ---- */
.bank-details {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    margin: 20px 0;
    border: 1px solid #eee;
}

.bank-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 18px;
    border-bottom: 1px solid #eee;
    font-size: 0.875rem;
    gap: 12px;
}

.bank-detail-row:last-child {
    border-bottom: none;
}

.bank-detail-row span {
    color: #888;
    flex-shrink: 0;
}

.bank-detail-row strong {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: #1a1a1a;
    letter-spacing: 0.3px;
    text-align: right;
}

.bank-detail-row em {
    font-size: 0.75rem;
    color: #aaa;
}

.bank-detail-row.highlight {
    background: rgba(45, 106, 79, 0.05);
}

.bank-detail-row.highlight strong {
    color: var(--green-dark, #2d6a4f);
    font-weight: 700;
}

.transfer-reminder {
    max-width: 460px;
    margin: 24px auto;
    text-align: left;
}

/* ---- Confirmation section ---- */
.confirmation-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 3rem 0;
}

.confirmation-success {
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
}

.confirmation-icon {
    font-size: 4rem;
    color: var(--green-mid, #40916c);
    margin-bottom: 1rem;
    animation: pop-in 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes pop-in {
    from {
        transform: scale(0.5);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.confirmation-success h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--green-dark, #2d6a4f);
    margin-bottom: 0.5rem;
}

.confirmation-success .lead {
    color: #555;
    margin-bottom: 1.5rem;
}

.customer-number-box {
    background: linear-gradient(135deg, #e8f5e9 0%, #d4edda 100%);
    border: 1px solid rgba(64, 145, 108, 0.3);
    border-radius: 10px;
    padding: 1.25rem 2rem;
    margin: 1.5rem auto;
    display: inline-block;
    min-width: 260px;
}

.customer-number-box .label {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.25rem;
}

.customer-number-box .number {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--green-dark, #2d6a4f);
    letter-spacing: 0.05em;
    margin: 0;
}

.redirect-note {
    font-size: 0.88rem;
    color: #999;
    margin-top: 1.25rem;
}

.confirmation-error {
    text-align: center;
    max-width: 480px;
    margin: 0 auto;
}

/* ---- Responsive ---- */
@media (max-width: 767.98px) {
    .order-summary-card {
        position: static;
    }

    .bandeau-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
    }

    .bandeau-tagline {
        display: none;
    }

    .cp-step.is-done .cp-label {
        display: none;
    }

    .checkout-progress {
        gap: 0.45rem;
    }

    .cp-sep {
        font-size: 0.7rem;
        opacity: 0.25;
    }

    .mobile-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
    }

    .checkout-container {
        padding-top: 1.25rem;
    }

    .trust-badges {
        gap: 0.4rem;
    }

    .trust-badge {
        font-size: 0.7rem;
        padding: 0.55rem 0.3rem;
    }

    .customer-number-box {
        min-width: auto;
        width: 100%;
    }
}

/* =========================
   PROMO BAR (page d'accueil)
   Barre flottante sous le header
========================= */
.promo-bar {
    position: fixed;
    top: var(--header-height, 78px);
    left: 0;
    right: 0;
    z-index: 1020;
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(30, 61, 50, 0.25);
    transform: translateY(-100%);
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}

.promo-bar.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.promo-bar.is-hiding {
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
}

.promo-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 10px 20px;
}

.promo-bar-items {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 0.95rem;
}

.promo-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.promo-bar-item i {
    color: var(--sand);
}

.promo-bar-item strong {
    color: var(--sand);
}

.promo-bar-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.promo-bar-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--clay);
    color: var(--white);
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.promo-bar-cta:hover {
    background: #B56A49;
    color: var(--white);
    transform: translateY(-1px);
}

.promo-bar-close {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.promo-bar-close:hover {
    background: rgba(255, 255, 255, 0.25);
}

@media (max-width: 767.98px) {
    .promo-bar-item-secure {
        display: none;
    }

    .promo-bar-cta-label {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .promo-bar-inner {
        justify-content: center;
        text-align: center;
    }

    .promo-bar-items {
        justify-content: center;
        font-size: 0.85rem;
        gap: 10px;
    }
}