/* =========================
   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;
}


/* =========================
   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, var(--primary-green) 0%, #1E3D32 100%);
    color: white;
    padding: 80px 20px;
    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;
    transition: color .2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: var(--eco-main);
}

.navbar-nav .nav-link.active {
    color: var(--eco-dark);
}

/* 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: .45rem 0;
    }
}

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

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

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

/* 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;
}

.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 .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, var(--dark-green) 0%, var(--primary-green) 100%);
    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 h2 {
    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 h3 {
    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-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.concept-page .stat-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.concept-page .stat-number {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--clay);
    margin-bottom: 5px;
}

.concept-page .stat-label {
    font-size: 0.9rem;
    color: var(--gray);
}

/* 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 h4 {
    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 h3 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

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

.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: var(--primary-green);
    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 h3 {
    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 h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

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

.concept-page .contact-cta h3 {
    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: #25D366;
    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, var(--dark-green) 0%, var(--primary-green) 100%);
    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;
}

.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 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;
    background: linear-gradient(135deg, var(--soft-blue) 0%, #A3D0D9 100%);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 300;
}

.premium .coverage-map:before {
    content: '🗺️';
    font-size: 200px;
    opacity: 0.3;
    position: absolute;
}

.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(--gray);
    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;
}

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

.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 h3 {
    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: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
}

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

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

/* 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 h3 {
    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 .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-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;
}

.tarifs .pricing-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    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);
}

.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;
}

.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-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 h3 {
    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) {
    .intro-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

    .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;
    }
}

@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 */
.or .booking-hero {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

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

.or .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;
    }
}

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

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

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

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

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

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

.or .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;
}

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

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

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

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

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

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

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

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

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

/* Form Styles compatible avec CF7 */
.or .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 */
.or .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);
}

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

.or .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;
}

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

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

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

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

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

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

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

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

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

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

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

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

.or .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;
}

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

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

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

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

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

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

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

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

.or .contact-item div p:last-child {
    color: var(--gray);
    font-size: 0.95rem;
}

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

    .or .process-sidebar {
        position: static;
    }

    .or .form-container {
        padding: 30px;
    }
}

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

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

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

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

    .or .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;
}

.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);
}

/* 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 h4 {
    color: var(--primary-green);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

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


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


/* 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;
}

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

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

.footer-links 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 {
    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;
}

/* 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) {
    .intro-content {
        grid-template-columns: 1fr;
    }

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

    .concept-hero h2 {
        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) */
.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
   ============================================================= */

/* ---- Hero ---- */
.checkout-hero {
    background: linear-gradient(135deg, var(--green-dark, #2d6a4f) 0%, var(--green-mid, #40916c) 100%);
    color: #fff;
    padding: 3rem 0 2.5rem;
    text-align: center;
}

.checkout-hero h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.checkout-hero p {
    opacity: 0.85;
    font-size: 1.05rem;
    margin: 0;
}

/* ---- Layout ---- */
.checkout-container {
    padding-top: 2.5rem;
    padding-bottom: 3rem;
}

/* ---- 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;
}

.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: flex-start;
    gap: 0.6rem;
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: #555;
}

.summary-detail i {
    color: var(--green-mid, #40916c);
    width: 1rem;
    text-align: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #e8f5e9;
    border-radius: 8px;
    padding: 0.85rem 1rem;
    margin-top: 1rem;
    font-weight: 700;
    font-size: 1.05rem;
}

.total-amount {
    color: var(--green-dark, #2d6a4f);
    font-size: 1.25rem;
}

.summary-secure-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    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 2px 16px rgba(0, 0, 0, 0.08);
    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;
}

#payment-element {
    min-height: 80px;
    margin-bottom: 1.25rem;
}

/* ---- Pay button ---- */
.btn-pay {
    background: var(--green-dark, #2d6a4f);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.9rem 1.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: background 0.2s ease, transform 0.15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
}

.btn-pay:hover:not(:disabled) {
    background: var(--green-mid, #40916c);
    color: #fff;
    transform: translateY(-1px);
}

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

/* ---- 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;
}

/* ---- Stripe branding ---- */
.stripe-branding {
    font-size: 0.78rem;
    color: #999;
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 0.75rem;
}

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

.checkout-card-logos span {
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0.25rem 0.6rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #555;
    letter-spacing: 0.03em;
}

/* ---- 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: #e8f5e9;
    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;
    }

    .checkout-hero {
        padding: 2rem 0 1.75rem;
    }

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

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