* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: #252038;
    background: #fff7fb;
}

    /* HEADER */
    .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 20;
        padding: 12px 6%;
        background: rgba(255,255,255,0.72);
        backdrop-filter: blur(12px);
        box-shadow: 0 6px 25px rgba(0,0,0,0.06);
    }
    
    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .header-logo {
        display: flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
        color: #17204f;
    }
    
    .header-logo img {
        width: 62px;
        height: 62px;
        object-fit: contain;
    }
    
    .header-logo span {
        font-family: 'Great Vibes', cursive;
        font-size: 34px;
        color: #17204f;
    }
    
    .menu-toggle {
        display: none;
        border: none;
        cursor: pointer;
        padding: 12px 22px;
        border-radius: 40px;
        color: white;
        font-weight: 600;
        background: linear-gradient(135deg, #04a6d8, #e82fc1);
    }
    
    .nav {
        display: flex;
        gap: 22px;
    }
    
    .mobile-menu-wrap {
        display: none;
    }
    
    .nav a {
        color: #17204f;
        text-decoration: none;
        font-weight: 500;
    }
    
    .nav a:hover {
        color: #d72dbb;
    }
    
    /* HERO */
    .hero {
        position: relative;
        min-height: 100vh;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 130px 20px 70px;
    }
    
    .hero-video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
        filter: brightness(1.05) saturate(1.15);
    }
    
    .hero-overlay {
        position: absolute;
        inset: 0;
        z-index: 2;
        background:
            linear-gradient(135deg, rgba(0,150,210,0.52), rgba(240,35,180,0.42)),
            rgba(255,255,255,0.18);
    }
    
    /* HERO plus léger */
    .hero-card {
        position: relative;
        z-index: 3;
        max-width: 820px;
        text-align: center;
        padding: 28px 24px;
        border-radius: 34px;
        background: rgba(255,255,255,0.42);
        backdrop-filter: blur(7px);
        box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    }
    
    .hero-card img {
        width: 180px;
        margin-bottom: 12px;
    }
    
    .hero-card h1 {
        margin: 0;
        font-size: clamp(34px, 6vw, 66px);
        line-height: 1;
        font-family: 'Great Vibes', cursive;
        color: #17204f;
    }
    
    .hero-card h2 {
        margin: 12px 0 18px;
        font-size: clamp(22px, 4vw, 38px);
        color: #d72dbb;
    }
    
    .hero-card p {
        max-width: 700px;
        margin: 0 auto 22px;
        font-size: 18px;
        line-height: 1.6;
    }
    
    .btns {
        display: flex;
        justify-content: center;
        gap: 14px;
        flex-wrap: wrap;
    }
    
    .btn {
        padding: 14px 26px;
        border-radius: 40px;
        text-decoration: none;
        font-weight: 600;
    }
    
    .btn-primary {
        color: white;
        background: linear-gradient(135deg, #04a6d8, #e82fc1);
        box-shadow: 0 10px 25px rgba(216,45,187,0.28);
    }
    
    .btn-secondary {
        color: #17204f;
        background: white;
        border: 1px solid rgba(23,32,79,0.2);
    }
    
    /* SECTIONS */
    .section {
        padding: 75px 7%;
        text-align: center;
    }
    
    .section h2 {
        font-size: 36px;
        color: #17204f;
        margin-bottom: 16px;
    }
    
    .section p {
        max-width: 850px;
        margin: auto;
        line-height: 1.8;
        font-size: 17px;
    }
    
    .gradient-section {
        background: linear-gradient(135deg, #e9fbff, #fff0fa);
    }
    
    .cards {
        margin-top: 36px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 22px;
    }
    
    .card {
        background: white;
        padding: 28px;
        border-radius: 26px;
        box-shadow: 0 12px 35px rgba(23,32,79,0.09);
        border: 1px solid rgba(216,45,187,0.12);
    }
    
    .card h3 {
        color: #d72dbb;
        margin-top: 0;
    }
    
    .footer {
        padding: 30px 20px;
        text-align: center;
        background: linear-gradient(135deg, #17204f, #d72dbb);
        color: white;
    }

    /* MOBILE */
    @media (max-width: 850px) 
    {
        .header {
            padding: 8px 14px;
            flex-direction: column;
            gap: 8px;
        }

        .header-inner {
            display: grid;
            grid-template-columns: 54px 1fr 54px;
            align-items: center;
            gap: 8px;
        }
    
        .header-logo {
            grid-column: 1 / 3;
            flex-direction: row;
            justify-content: flex-start;
            gap: 10px;
        }
    
        .header-logo img {
            width: 52px;
            height: 52px;
        }
    
        .header-logo span {
            font-size: 28px;
            line-height: 1;
        }
    
        .nav {
            gap: 12px;
            font-size: 13px;
            flex-wrap: wrap;
            justify-content: center;
        }
    
        .cards {
            grid-template-columns: 1fr;
        }
    
        .hero-card img {
            width: 145px;
        }

        .desktop-nav {
            display: none;
        }
    
        .mobile-menu-wrap {
            display: block;
            grid-column: 3;
            grid-row: 1;
            text-align: right;
        }
    
        .menu-toggle {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            padding: 0;
            border-radius: 50%;
            border: none;
            cursor: pointer;
            color: white;
            font-size: 0;
            background: linear-gradient(135deg, #04a6d8, #e82fc1);
            box-shadow: 0 8px 20px rgba(216,45,187,0.28);
        }
    
        .menu-toggle::before {
            content: "☰";
            font-size: 24px;
            line-height: 1;
        }
    
        .mobile-nav {
            position: absolute;
            top: calc(100% + 10px);
            right: 14px;
            width: min(260px, calc(100vw - 28px));
            display: grid;
            gap: 6px;
            padding: 14px;
            border-radius: 24px;
            background: rgba(255,255,255,0.94);
            backdrop-filter: blur(14px);
            box-shadow: 0 18px 45px rgba(0,0,0,0.18);
            opacity: 0;
            transform: translateY(-10px) scale(0.96);
            pointer-events: none;
            transition: opacity .25s ease, transform .25s ease;
        }
    
        .mobile-nav.open {
            opacity: 1;
            transform: translateY(0) scale(1);
            pointer-events: auto;
            text-align:center;
        }
    
        .mobile-nav a {
            color: #17204f;
            text-decoration: none;
            font-weight: 600;
            padding: 12px 14px;
            border-radius: 18px;
            background: linear-gradient(135deg, rgba(4,166,216,0.08), rgba(232,47,193,0.08));
        }
    
        .hero {
            padding-top: 92px;
        }
    
        .hero-card {
            margin: 0 12px;
            padding: 22px 16px;
            background: rgba(255,255,255,0.30);
            backdrop-filter: blur(4px);
        }
    
        .hero-card img {
            width: 120px;
        }
    
        .hero-card h1 {
            font-size: 46px;
        }
    
        .hero-card h2 {
            font-size: 30px;
        }
    }

/*==============================
     page calino-tantrique
==============================*/

    .luxe-page {
        padding: 70px 7%;
        background:
            radial-gradient(circle at top left, rgba(4,166,216,0.16), transparent 28%),
            radial-gradient(circle at bottom right, rgba(232,47,193,0.18), transparent 30%),
            #fff7fb;
    }
    
    .luxe-intro-card,
    .luxe-highlight,
    .luxe-two-cards article,
    .tarif-card {
        border-radius: 34px;
        background: rgba(255,255,255,0.82);
        box-shadow: 0 18px 50px rgba(23,32,79,0.10);
        border: 1px solid rgba(255,255,255,0.85);
    }
    
    .luxe-intro-card {
        max-width: 1000px;
        margin: 0 auto 34px;
        padding: 48px;
        text-align: center;
    }
    
    .luxe-intro-card span {
        display: inline-block;
        padding: 9px 20px;
        border-radius: 40px;
        font-weight: 700;
        color: #17204f;
        background: linear-gradient(135deg, rgba(4,166,216,0.18), rgba(232,47,193,0.18));
    }
    
    .luxe-intro-card h2,
    .luxe-highlight h2,
    .luxe-tarifs h2 {
        color: #17204f;
        font-size: clamp(32px, 4vw, 52px);
        margin: 18px 0;
    }
    
    .luxe-intro-card p,
    .luxe-highlight p,
    .luxe-two-cards p,
    .luxe-two-cards li {
        color: #342b52;
        font-size: 17px;
        line-height: 1.8;
    }
    
    .luxe-two-cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 26px;
        margin-bottom: 34px;
    }
    
    .luxe-two-cards article {
        padding: 38px;
        position: relative;
        overflow: hidden;
    }
    
    .luxe-two-cards article::after {
        content: "";
        position: absolute;
        width: 150px;
        height: 150px;
        right: -50px;
        top: -50px;
        border-radius: 50%;
        background: linear-gradient(135deg, rgba(4,166,216,0.20), rgba(232,47,193,0.20));
    }
    
    .luxe-two-cards h3 {
        color: #d72dbb;
        font-size: 30px;
        margin-top: 0;
    }
    
    .luxe-two-cards ul {
        padding-left: 20px;
    }
    
    .luxe-highlight {
        max-width: 950px;
        margin: 0 auto 38px;
        padding: 48px;
        text-align: center;
        background:
            linear-gradient(135deg, rgba(255,255,255,0.88), rgba(255,240,250,0.9));
    }
    
    .luxe-tarifs {
        text-align: center;
    }
    
    .tarif-grid {
        max-width: 760px;
        margin: 0 auto 34px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .tarif-card {
        padding: 34px;
    }
    
    .tarif-card h3 {
        color: #d72dbb;
        font-size: 24px;
        margin-top: 0;
    }
    
    .tarif-card strong {
        color: #17204f;
        font-size: 20px;
    }
    
    .tarif-card p {
        margin: 10px 0 0;
        color: #17204f;
        font-size: 42px;
        font-weight: 800;
    }

    @media (max-width: 850px) 
    {
        .luxe-page {
            padding: 40px 18px;
        }
    
        .luxe-intro-card,
        .luxe-highlight,
        .luxe-two-cards article {
            padding: 28px 22px;
            border-radius: 28px;
        }
    
        .luxe-two-cards,
        .tarif-grid {
            grid-template-columns: 1fr;
        }
    }

/*============================
        Page massages
============================*/

    .page-top-luxe {
        padding: 95px 7% 70px;
        text-align: center;
        background:
            radial-gradient(circle at top left, rgba(4,166,216,0.22), transparent 32%),
            radial-gradient(circle at bottom right, rgba(232,47,193,0.24), transparent 35%),
            linear-gradient(135deg, #fff7fb, #eafbff);
    }
    
    .page-top-luxe span {
        display: inline-block;
        padding: 9px 20px;
        border-radius: 40px;
        font-weight: 700;
        color: #17204f;
        background: rgba(255,255,255,0.65);
    }
    
    .page-top-luxe h1 {
        margin: 15px 0;
        font-family: 'Great Vibes', cursive;
        font-size: clamp(58px, 9vw, 105px);
        color: #17204f;
    }
    
    .page-top-luxe p {
        max-width: 760px;
        margin: auto;
        font-size: 18px;
        line-height: 1.8;
        color: #342b52;
    }
    
    .massages-list-luxe {
        padding: 70px 7%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 26px;
        background: #fff7fb;
    }
    
    .massage-preview-card {
        padding: 34px;
        border-radius: 34px;
        background: rgba(255,255,255,0.86);
        box-shadow: 0 18px 50px rgba(23,32,79,0.10);
        border: 1px solid rgba(255,255,255,0.9);
    }
    
    .massage-preview-card h2 {
        margin-top: 0;
        color: #d72dbb;
        font-size: 28px;
    }
    
    .massage-preview-card p {
        color: #342b52;
        line-height: 1.7;
    }
    
    .massage-preview-card strong {
        display: block;
        margin: 18px 0 22px;
        color: #17204f;
    }
    
    .massage-preview-card.wide {
        grid-column: span 3;
        text-align: center;
    }

    .card-image {
        width: 100%;
        height: 160px;
        border-radius: 24px;
        overflow: hidden;
        margin-bottom: 18px;
    }
    
    .card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }
    
    .massage-preview-card:hover .card-image img {
        transform: scale(1.05);
    }
    
    .card-content h2 {
        margin: 0 0 10px;
    }
    
    .card-content p {
        font-size: 15px;
    }

    .massage-preview-card {
        overflow: hidden;
    }

    .card-image::after {
        content: "";
        position: absolute;
    }

.massages-list-luxe {
    align-items: stretch;
}

.massage-preview-card {
    min-height: 430px;
    display: flex;
    flex-direction: column;
}

.card-image {
    width: 100%;
    height: 150px;
    border-radius: 22px;
    overflow: hidden;
    margin-bottom: 18px;
    background: #f3eaf3;
}

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

.card-content {
    flex: 1;
}

.card-content h2 {
    min-height: 70px;
}

.card-content p {
    min-height: 58px;
}

.card-bottom {
    margin-top: auto;
}

.btn-card {
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
    
    @media (max-width: 900px) 
    {
        .page-top-luxe {
            padding: 70px 18px 45px;
        }
    
        .massages-list-luxe {
            grid-template-columns: 1fr;
            padding: 45px 18px;
        }
    
        .massage-preview-card.wide {
            grid-column: span 1;
        }
    }

/*============================
        Page salon premium
============================*/

.salon-hero-premium {
    padding: 70px 7% 35px;
    background: #fff7fb;
}

.salon-hero-image {
    position: relative;
    height: 560px;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(23,32,79,0.16);
}

.salon-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.salon-hero-image:hover img {
    transform: scale(1.04);
}

.salon-hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(23,32,79,0.62), transparent 58%),
        radial-gradient(circle at bottom right, rgba(232,47,193,0.30), transparent 38%);
}

.salon-hero-overlay {
    position: absolute;
    left: 45px;
    bottom: 40px;
    z-index: 2;
    color: #fff;
}

.salon-hero-overlay span {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 40px;
    background: rgba(255,255,255,0.22);
    backdrop-filter: blur(8px);
    font-weight: 600;
    margin-bottom: 10px;
}

.salon-hero-overlay h2 {
    margin: 0;
    font-family: 'Great Vibes', cursive;
    font-size: clamp(58px, 8vw, 105px);
    font-weight: 400;
}


/* présentation */
.salon-presentation-luxe {
    padding: 35px 7% 70px;
    background: #fff7fb;
    display: flex;
    justify-content: center;
}

.salon-card-premium {
    max-width: 950px;
    padding: 48px;
    border-radius: 36px;
    background: rgba(255,255,255,0.88);
    box-shadow: 0 18px 50px rgba(23,32,79,0.10);
    border: 1px solid rgba(255,255,255,0.9);
    text-align: center;
}

.salon-signature {
    display: block;
    font-family: 'Great Vibes', cursive;
    font-size: 54px;
    color: #17204f;
    margin-bottom: 8px;
}

.salon-card-premium h2 {
    margin: 0 0 22px;
    font-size: 32px;
    color: #d72dbb;
}

.salon-card-premium p {
    max-width: 760px;
    margin: 0 auto 18px;
    color: #342b52;
    line-height: 1.85;
}

.salon-btn {
    margin-top: 18px;
}


/* galerie */
.salon-gallery-section {
    padding: 0 7% 80px;
    background: #fff7fb;
}

.salon-gallery-title {
    text-align: center;
    margin-bottom: 30px;
}

.salon-gallery-title span {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 40px;
    font-weight: 700;
    color: #17204f;
    background: rgba(255,255,255,0.75);
}

.salon-gallery-title h2 {
    margin: 15px 0 0;
    color: #17204f;
    font-size: 34px;
}

.salon-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.salon-gallery img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 16px 40px rgba(23,32,79,0.11);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.salon-gallery img:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 22px 55px rgba(23,32,79,0.16);
}


/* mobile */
@media (max-width: 900px) {

    .salon-hero-premium {
        padding: 45px 18px 25px;
    }

    .salon-hero-image {
        height: 300px;
        border-radius: 26px;
    }

    .salon-hero-overlay {
        left: 24px;
        right: 24px;
        bottom: 25px;
    }

    .salon-hero-overlay h2 {
        font-size: 58px;
    }

    .salon-presentation-luxe {
        padding: 25px 18px 50px;
    }

    .salon-card-premium {
        padding: 32px 24px;
        border-radius: 28px;
    }

    .salon-signature {
        font-size: 46px;
    }

    .salon-card-premium h2 {
        font-size: 26px;
    }

    .salon-gallery-section {
        padding: 0 18px 55px;
    }

    .salon-gallery {
        grid-template-columns: 1fr;
    }

    .salon-gallery img {
        height: 230px;
        border-radius: 24px;
    }
}

/*============================
        Page galerie
============================*/

.galerie-section {
    padding: 70px 7%;
    background: #fff7fb;
}

.video-section {
    padding-top: 20px;
}

.galerie-title {
    text-align: center;
    margin-bottom: 35px;
}

.galerie-title span {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 40px;
    font-weight: 700;
    color: #17204f;
    background: rgba(255,255,255,0.75);
}

.galerie-title h2 {
    margin: 15px 0 0;
    color: #17204f;
    font-size: 34px;
}

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

.galerie-photo {
    padding: 0;
    border: none;
    cursor: pointer;
    border-radius: 30px;
    overflow: hidden;
    background: transparent;
    box-shadow: 0 18px 45px rgba(23,32,79,0.12);
}

.galerie-photo img {
    display: block;
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.galerie-photo:hover img {
    transform: scale(1.06);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.video-card {
    padding: 24px;
    border-radius: 34px;
    background: rgba(255,255,255,0.86);
    box-shadow: 0 18px 50px rgba(23,32,79,0.10);
    border: 1px solid rgba(255,255,255,0.9);
}

.video-card video {
    width: 100%;
    max-height: 420px;
    border-radius: 24px;
    background: #000;
    display: block;
}

.video-card h3 {
    margin: 18px 0 0;
    color: #d72dbb;
    font-size: 24px;
}

.galerie-empty {
    text-align: center;
    color: #342b52;
    background: rgba(255,255,255,0.75);
    padding: 25px;
    border-radius: 24px;
}

@media (max-width: 900px) {

    .galerie-section {
        padding: 45px 18px;
    }

    .galerie-grid,
    .video-grid {
        grid-template-columns: 1fr;
    }

    .galerie-photo img {
        height: 240px;
    }

    .video-card {
        padding: 18px;
        border-radius: 28px;
    }

    .video-card video {
        max-height: 360px;
    }
}
/*============================
            Modal
============================*/
body.modal-open {
    overflow: hidden;
}

.modal.open {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.modal-bg {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(6px);
}

.modal-box {
    position: relative;
    z-index: 2;
    width: min(850px, 100%);
    max-height: 88vh;
    overflow-y: auto;
    background: white;
    padding: 34px;
    border-radius: 30px;
    box-shadow: 0 30px 90px rgba(0,0,0,0.30);
    -webkit-overflow-scrolling: touch;
}

.modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 999;
}

.modal.open {
    display: block;
}

.modal-bg {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

.modal-box {
    position: relative;
    margin: 5vh auto;
    max-width: 800px;
    background: white;
    padding: 30px;
    border-radius: 30px;
    z-index: 2;
}

.modal-box h2 {
    font-family: 'Great Vibes';
    font-size: 60px;
    text-align: center;
}

.modal-gallery {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    margin-top: 20px;
}

.modal-gallery img {
    width: 200px;
    height: 140px;
    object-fit: cover;
    border-radius: 15px;
}


.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 42px;
    line-height: 1;
    color: white;
    background: rgba(255,255,255,0.18);
    cursor: pointer;
}

.lightbox-prev {
    left: 22px;
}

.lightbox-next {
    right: 22px;
}

.lightbox {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 2000;
}

.lightbox.open {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-bg {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.9);
}

.lightbox img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 20px;
    z-index: 2;
}

.modal-gallery img {
    cursor: pointer;
}

/* TARIFS */

.tarifs-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 60px 20px;
}

.tarifs-left, .tarifs-right {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
}

.prestation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.prestation-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/*.prestation-reserve-btn {
    border: none;
    padding: 10px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #c08a5a, #8f5f3d);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(192, 138, 90, 0.28);
    transition: transform .2s ease, box-shadow .2s ease;
}*/

/*.prestation:hover {
    background: #f8f8f8;
}*/

.prestation-reserve-btn {
    background: linear-gradient(135deg, #7b2ff7, #f107a3);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 10px 18px;
    font-weight: 600;
    box-shadow: 0 6px 15px rgba(123,47,247,0.3);
    cursor: pointer;
    transition: all 0.2s ease;
}

.prestation-reserve-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.35);
}

.prestation-reserve-btn:active {
    transform: scale(0.94);
}

.prestation.active .prestation-reserve-btn {
    background: linear-gradient(135deg, #2b1b17, #6e3d2b);
}

#slots {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.date-box {
    margin-top: 22px;
    text-align: center;
}

.date-box {
    margin-top: 22px;
}

.date-picker-wrap {
    position: relative;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    height: 54px;
    border-radius: 18px;
    background: linear-gradient(135deg, #c08a5a, #8f5f3d);
    box-shadow: 0 10px 24px rgba(192, 138, 90, 0.28);
    overflow: hidden;
}

.date-picker-wrap span {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    pointer-events: none;
}


.date-picker-wrap {
    position: relative;
    display: block;
    width: 100%;
    cursor: pointer;
}

/*#dateText {
    display: block;
    width: 100%;
    padding: 16px 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, #8b4a32, #c78b61);
    color: #fff;
    font-weight: 350;
    text-align: center;
    box-shadow: 0 10px 25px rgba(80, 40, 20, 0.18);
}*/

#dateText {
    display: block;
    width: 100%;
    padding: 16px 18px;
    border-radius: 20px;
    background: linear-gradient(135deg, #5f2c82, #ff3cac);
    color: #fff;
    font-weight: 350;
    text-align: center;
    box-shadow: 0 10px 25px rgba(80, 40, 120, 0.3);
    font-size: 16px;
}


#datePicker {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

#slots {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}





.date-picker-wrap input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}


/*.slot-btn {
    padding: 10px 15px;
    border: none;
    border-radius: 10px;
    background: #c08a5a;
    color: white;
    cursor: pointer;
}*/


.slot-btn {
    background: linear-gradient(135deg, #7b2ff7, #f107a3);
    color: #fff;
    border: none;
    border-radius: 14px;
    padding: 12px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    box-shadow: 0 6px 15px rgba(123,47,247,0.3);
    transition: all 0.2s ease;
}

.slot-btn:hover {
    transform: scale(1.05);
}

.slot-btn.active {
    background: linear-gradient(135deg, #1c2a5e, #2f3f8f);
    color: #d4af37;
}

.slot-disabled {
    background: #ddd;
    color: #999;
    box-shadow: none;
}




.selected-prestation-box {
    margin-bottom: 22px;
}

.selected-prestation-box h2 {
    margin-bottom: 12px;
}

.selected-prestation-box p {
    margin: 6px 0;
    color: #2b1b17;
    font-weight: 500;
}

#selectedMassage {
    font-size: 20px;
    font-weight: 700;
}

.tarifs-right {
    overflow: hidden;
}


/* mobile prestation : infos à gauche, bouton à droite */
@media (max-width: 900px) {
    .prestation {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px;
        align-items: end;
    }

    .prestation-info {
        min-width: 0;
    }

    .prestation-reserve-btn {
        align-self: end;
        margin-bottom: 2px;
    }
}
.slot-btn:hover {
    background: #a06d45;
}

.prestation.active {
    background: #f3e4d6;
    border-radius: 12px;
}

.slot-btn.active {
    background: #2b1b17;
}

.reservation-form {
    margin-top: 28px;
    padding: 24px;
    background: #f8efe8;
    border-radius: 22px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.reservation-form h3 {
    margin-bottom: 18px;
    font-size: 22px;
    color: #2b1b17;
}

.reservation-form input {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 14px;
    padding: 16px 18px;
    border: 1px solid rgba(192, 138, 90, 0.35);
    border-radius: 16px;
    font-size: 16px;
    font-family: inherit;
}

.reservation-form input:focus {
    outline: none;
    border-color: #c08a5a;
    box-shadow: 0 0 0 4px rgba(192, 138, 90, 0.15);
}

.reservation-form button {
    width: 100%;
    padding: 16px 18px;
    border: none;
    border-radius: 18px;
    background: #25D366;
    color: white;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.28);
}

@media (max-width: 900px) {
    .tarifs-container {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 35px 16px;
    }

    .tarifs-left,
    .tarifs-right {
        padding: 20px;
        border-radius: 18px;
    }

    .prestation {
        flex-direction: column;
        gap: 6px;
        align-items: flex-start;
    }

    #datePicker {
        width: 100%;
    }

    #slots {
        gap: 8px;
    }

    .slot-btn {
        flex: 1 1 calc(33.333% - 8px);
        min-width: 90px;
    }
}

@media (max-width: 480px) {
    .slot-btn {
        flex: 1 1 calc(50% - 8px);
    }
}

.slot-disabled {
    background: #e0e0e0;
    color: #888;
    cursor: not-allowed;
    text-decoration: line-through;
}

.statut-attente {
    background: #fff1c2;
    color: #8a5a00;
}

.statut-confirmee {
    background: #d6f5dc;
    color: #185c28;
}

.statut-annulee {
    background: #e5e5e5;
    color: #666;
}


/* Animations générales */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes softPulse {
    0% {
        box-shadow: 0 0 0 rgba(241, 7, 163, 0);
    }
    50% {
        box-shadow: 0 0 22px rgba(241, 7, 163, 0.35);
    }
    100% {
        box-shadow: 0 0 0 rgba(241, 7, 163, 0);
    }
}

/* Apparition douce du bloc de droite */
.tarifs-right {
    animation: fadeUp 0.45s ease both;
}

/* Animation des prestations */
.prestation {
    transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
}

.prestation:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 35px rgba(31, 22, 68, 0.12);
}

.prestation.active {
    border: 1px solid rgba(212, 175, 55, 0.7);
    box-shadow: 0 14px 35px rgba(31, 42, 94, 0.18);
}

/* Boutons réserver */
.prestation-reserve-btn {
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.prestation-reserve-btn:hover {
    transform: translateY(-2px) scale(1.03);
    filter: brightness(1.08);
}

/* Bouton calendrier */
#dateText {
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.date-picker-wrap:hover #dateText {
    transform: translateY(-2px);
    filter: brightness(1.08);
    box-shadow: 0 14px 32px rgba(241, 7, 163, 0.35);
}

/* Créneaux horaires */
.slot-btn {
    animation: fadeUp 0.35s ease both;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.slot-btn:hover:not(:disabled) {
    transform: translateY(-3px) scale(1.04);
    filter: brightness(1.08);
    box-shadow: 0 12px 24px rgba(241, 7, 163, 0.35);
}

.slot-btn.active {
    animation: softPulse 1.2s ease;
    transform: scale(1.06);
}

/* Créneaux indisponibles */
.slot-disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none !important;
}

/* Formulaire réservation */
.reservation-form {
    animation: fadeUp 0.4s ease both;
}

.reservation-form input {
    transition: border 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.reservation-form input:focus {
    outline: none;
    border-color: #f107a3;
    box-shadow: 0 0 0 4px rgba(241, 7, 163, 0.12);
    transform: translateY(-1px);
}

.reservation-form button {
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.reservation-form button:hover {
    transform: translateY(-2px) scale(1.02);
    filter: brightness(1.08);
}

.prestation-duration-select {
    width: 100%;
    margin-top: 10px;
    padding: 11px 42px 11px 14px;

    border-radius: 12px;
    border: 1px solid rgba(168, 85, 247, 0.45);

    background-color: #24163d;
    color: #f5e9ff;

    font-size: 0.92rem;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;

    cursor: pointer;
    outline: none;

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-image:
        linear-gradient(45deg, transparent 50%, #d4af37 50%),
        linear-gradient(135deg, #d4af37 50%, transparent 50%);
    background-position:
        calc(100% - 18px) 50%,
        calc(100% - 12px) 50%;
    background-size:
        6px 6px,
        6px 6px;
    background-repeat: no-repeat;

    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}

.prestation-duration-select:hover {
    border-color: rgba(212, 175, 55, 0.75);
    background-color: #2d1b50;
}

.prestation-duration-select:focus {
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18);
}

.prestation-duration-select option {
    background-color: #24163d;
    color: #f5e9ff;
}

.prestation.active .prestation-duration-select {
    background-color: #301950;
    border-color: #d4af37;
    color: #fff4c7;
}

/*============================
        Mentions légales
============================*/

.legal-section {
    padding: 70px 7%;
    background: #fff7fb;
}

.legal-card {
    max-width: 950px;
    margin: 0 auto;
    padding: 48px;
    border-radius: 36px;
    background: rgba(255,255,255,0.88);
    box-shadow: 0 18px 50px rgba(23,32,79,0.10);
    border: 1px solid rgba(255,255,255,0.9);
}

.legal-card h2 {
    margin-top: 34px;
    margin-bottom: 12px;
    color: #d72dbb;
    font-size: 25px;
}

.legal-card h2:first-child {
    margin-top: 0;
}

.legal-card p {
    color: #342b52;
    line-height: 1.85;
    margin-bottom: 16px;
}

.legal-card strong {
    color: #17204f;
}

@media (max-width: 900px) {
    .legal-section {
        padding: 45px 18px;
    }

    .legal-card {
        padding: 30px 24px;
        border-radius: 28px;
    }

    .legal-card h2 {
        font-size: 22px;
    }
}

/*============================
        Mentions légales
============================*/

.legal-section {
    padding: 70px 7%;
    background: #fff7fb;
}

.legal-card {
    max-width: 950px;
    margin: 0 auto;
    padding: 48px;
    border-radius: 36px;
    background: rgba(255,255,255,0.88);
    box-shadow: 0 18px 50px rgba(23,32,79,0.10);
    border: 1px solid rgba(255,255,255,0.9);
}

.legal-card h2 {
    margin-top: 34px;
    margin-bottom: 12px;
    color: #d72dbb;
    font-size: 25px;
}

.legal-card h2:first-child {
    margin-top: 0;
}

.legal-card p {
    color: #342b52;
    line-height: 1.85;
    margin-bottom: 16px;
}

.legal-card strong {
    color: #17204f;
}

@media (max-width: 900px) {
    .legal-section {
        padding: 45px 18px;
    }

    .legal-card {
        padding: 30px 24px;
        border-radius: 28px;
    }

    .legal-card h2 {
        font-size: 22px;
    }
}

.legal-list {
    margin: 10px 0 20px;
    padding-left: 20px;
    color: #342b52;
}

.legal-list li {
    margin-bottom: 6px;
}

/*============================
        Footer legal
============================*/

.footer-legal {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-legal a {
    position: relative;
    padding: 10px 18px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    color: #17204f;

    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(8px);

    box-shadow: 0 8px 20px rgba(23,32,79,0.08);
    transition: all 0.3s ease;
}

/* effet hover premium */
.footer-legal a:hover {
    color: white;
    background: linear-gradient(135deg, #04a6d8, #e82fc1);
    box-shadow: 0 10px 25px rgba(232,47,193,0.25);
    transform: translateY(-2px);
}

/* petit effet glow subtil */
.footer-legal a::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 40px;
    opacity: 0;
    transition: opacity 0.3s;
    background: linear-gradient(135deg, #04a6d8, #e82fc1);
    z-index: -1;
}

.footer-legal a:hover::after {
    opacity: 0.2;
}

/* mobile */
@media (max-width: 600px) {
    .footer-legal {
        gap: 10px;
    }

    .footer-legal a {
        font-size: 12px;
        padding: 8px 14px;
    }
}

/*============================
        Page contact
============================*/

.contact-section {
    padding: 70px 7%;
    background: #fff7fb;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 32px;
    align-items: stretch;
}

.contact-card,
.map-card {
    border-radius: 36px;
    background: rgba(255,255,255,0.88);
    box-shadow: 0 18px 50px rgba(23,32,79,0.10);
    border: 1px solid rgba(255,255,255,0.9);
    overflow: hidden;
}

.contact-card {
    padding: 45px;
}

.contact-signature {
    display: block;
    font-family: 'Great Vibes', cursive;
    font-size: 54px;
    color: #17204f;
    margin-bottom: 8px;
}

.contact-card h2 {
    margin: 0 0 20px;
    color: #d72dbb;
    font-size: 32px;
}

.contact-card p {
    color: #342b52;
    line-height: 1.75;
}

.contact-info {
    display: grid;
    gap: 18px;
    margin-top: 28px;
}

.contact-info div {
    padding: 18px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,240,250,0.78));
    box-shadow: 0 8px 24px rgba(23,32,79,0.06);
}

.contact-info strong {
    display: block;
    color: #17204f;
    margin-bottom: 8px;
}

.contact-info p {
    margin: 0;
}

.contact-info a {
    color: #d72dbb;
    font-weight: 700;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-actions {
    margin-top: 28px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.map-card {
    min-height: 520px;
}

.map-card iframe {
    display: block;
    width: 100%;
    height: 100%;
}

/* mobile */
@media (max-width: 900px) {

    .contact-section {
        padding: 45px 18px;
    }

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

    .contact-card {
        padding: 32px 24px;
        border-radius: 28px;
    }

    .contact-signature {
        font-size: 46px;
    }

    .contact-card h2 {
        font-size: 26px;
    }

    .map-card {
        min-height: 360px;
        border-radius: 28px;
    }

    .contact-actions {
        flex-direction: column;
    }

    .contact-actions .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}