        /* ── Carrousel ─────────────────────────────────────── */
        .carousel-wrap {
            position: relative;
            width: 100%;
            max-width: 960px;
            margin: 2rem auto;
            overflow: hidden;
            border-radius: 12px;
            background: #fff; 
        }
        .carousel-track {
            display: flex;
            transition: transform 0.4s ease;
            will-change: transform;
        }
/* Option : hauteur auto selon la photo */
.carousel-slide {
    flex: 0 0 100%;
    max-height: 620px;   /* plafond */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.carousel-slide img {
    width: 100%;
    height: auto;        /* hauteur naturelle */
    max-height: 620px;   /* même plafond */
    object-fit: contain;
    display: block;
}
/* ── Lightbox overlay ──────────────────────────────────────── */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
}
.lightbox.active {
    display: flex;
}
.lightbox img {
    max-width: 92vw;
    max-height: 92vh;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.6);
    pointer-events: none;
}
.lightbox-close {
    position: fixed;
    top: 18px;
    right: 24px;
    color: #fff;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    opacity: 0.8;
}
.lightbox-close:hover { opacity: 1; }

/* Curseur sur les images pour indiquer le clic */
.carousel-slide img {
    cursor: zoom-in;
}
        .btn-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.35);
            border: none;
            color: #fff;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            transition: background 0.2s;
        }
        .btn-arrow:hover { background: rgba(0, 0, 0, 0.6); }
        .btn-prev { left: 14px; }
        .btn-next { right: 14px; }
        .carousel-counter {
            position: absolute;
            bottom: 12px;
            right: 14px;
            background: rgba(0, 0, 0, 0.45);
            color: #fff;
            font-size: 12px;
            padding: 2px 10px;
            border-radius: 12px;
            pointer-events: none;
        }
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 7px;
            padding: 10px 0 16px;
        }
        .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #ccc;
            border: none;
            cursor: pointer;
            padding: 0;
            transition: background 0.2s;
        }
        .dot.active { background: #56624f; } /* vert sauge charte Iris */

        /* ── Contenu page ──────────────────────────────────── */
        .mariage-intro {
            max-width: 760px;
            margin: 2.5rem auto 0;
            padding: 0 1rem;
            text-align: center;
        }
        .mariage-intro h1 {
            font-family: 'Parisienne', cursive;
            font-size: 2.6rem;
            color: #56624f;
            margin-bottom: 1rem;
        }
        .mariage-intro p {
            color: #555;
            line-height: 1.8;
            font-size: 1rem;
        }
        .mariage-formules {
            max-width: 960px;
            margin: 3rem auto;
            padding: 0 1rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.5rem;
        }
        .formule-card {
            background: #f3eee7;
            border-radius: 10px;
            padding: 1.5rem;
            border-left: 4px solid #bcc7b2;
        }
        .formule-card h3 {
            color: #56624f;
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }
        .formule-card p {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.7;
        }
        .formule-card .prix {
            margin-top: 1rem;
            font-weight: 600;
            color: #56624f;
            font-size: 1rem;
        }
        .btn-contact-mariage {
            display: block;
            width: fit-content;
            margin: 0 auto 3rem;
            padding: 0.75rem 2rem;
            background: #56624f;
            color: #fff;
            border-radius: 8px;
            text-decoration: none;
            font-size: 0.95rem;
            transition: background 0.2s;
        }
        .btn-contact-mariage:hover { background: #3e4a39; }