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

body {
    font-family: "Barlow", sans-serif;
    letter-spacing: 0.09rem;
    overflow-x: hidden;
}

header {
    position: sticky;
    top: 0;
    z-index: 100;
    transition: background 0.3s, backdrop-filter 0.3s;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    min-height: 80px;
}

header.scrolled .header-content {
    min-height: 65px;
}

.header-left,
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    margin: 0 auto;
}

.logo img {
    height: 100px;
    display: block;
}

.phone {
    font-size: 14px;
    color: #6D5952;
}

.book {
    border-radius: 50px;
    padding: 12px 20px;
    text-decoration: none;
    font-weight: 600;
    color: #fff;
    background-color: #6D5952;
}

.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

.header-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    padding: 10px 0;
    background-color: #fff;
    border-top: 1px solid #eee;
}

.header-nav a {
    text-decoration: none;
    color: #6D5952;
    font-size: 16px;
    font-family: "Barlow", sans-serif;
    font-weight: 400;
    white-space: nowrap;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: #fff;
    border-top: 1px solid #ddd;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 99;
}

.mobile-menu a {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    font-size: 16px;
    text-decoration: none;
    color: #6D5952;
}

.promo-banner {
    background-color: #6D5952;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    font-size: 1.2rem;
    letter-spacing: 0.05rem;
    position: relative;
    z-index: 90;
    overflow: hidden;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.promo-text-wrap {
    display: inline-block;
    padding-left: 100%;
    animation: scrollText 80s linear infinite;
}

.promo-text {
    display: inline-block;
    padding-right: 50px;
}

@keyframes scrollText {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

header.scrolled+.promo-banner {
    position: sticky;
    top: 80px;
    z-index: 90;
}

.carousel {
    width: 100%;
    height: 90vh;
    overflow: hidden;
    position: relative;
}

.slides {
    display: flex;
    transition: transform 1s ease-in-out;
    height: 100%;
}

.slide {
    min-width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.overlay {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    text-align: center;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    padding: 0 20px;
}

.overlay h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.overlay p {
    font-size: 1.2rem;
    font-weight: 300;
}

.method-section {
    padding: 40px 80px;
    width: auto;
    margin: 0 auto;
    text-align: center;
    animation: fadeInUp 1.2s ease-out;
    background-color: #e1cec3;
}

.method-title {
    font-size: 2.5rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.method-subtitle {
    font-size: 0.95rem;
    letter-spacing: 0.3em;
    margin-bottom: 40px;
    color: #444;
}

.method-description,
.method-details,
.method-closing {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    padding: 0 10px;
}

.method-closing {
    font-weight: 500;
    font-size: 1.2rem;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-soins-button {
    display: none;
}

.face-treatment-section {
    display: flex;
    flex-wrap: wrap;
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.face-treatment-section-2 {
    display: flex;
    flex-wrap: wrap;
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.face-treatment-section-3 {
    display: flex;
    flex-wrap: wrap;
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.face-left {
    flex: 1 1 400px;
    max-width: 600px;
}

.face-left-2 {
    flex: 1 1 400px;
    max-width: 600px;
}

.face-left-3 {
    flex: 1 1 400px;
    max-width: 600px;
}

.face-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.face-title-2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.face-title-3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.face-subtitle {
    letter-spacing: 0.3em;
    font-size: 0.9rem;
    color: #444;
    margin-bottom: 20px;
}

.face-subtitle-2 {
    letter-spacing: 0.3em;
    font-size: 0.9rem;
    color: #444;
    margin-bottom: 20px;
}

.face-subtitle-3 {
    letter-spacing: 0.3em;
    font-size: 0.9rem;
    color: #444;
    margin-bottom: 20px;
}

.face-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.face-description-2 {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.face-description-3 {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.slider-wrapper {
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: 77%;
}

.slider-wrapper-2 {
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: 77%;
}

.slider-wrapper-3 {
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: 77%;
}

.image-comparison {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 10px;
    cursor: ew-resize;
}

.image-comparison-2 {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 10px;
    cursor: ew-resize;
}

.image-comparison-3 {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 10px;
    cursor: ew-resize;
}

.image-comparison img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.image-comparison-2 img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.image-comparison-3 img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.image-before {
    z-index: 1;
}

.image-before-2 {
    z-index: 1;
}

.image-before-3 {
    z-index: 1;
}

.image-after {
    z-index: 2;
    width: 50%;
    overflow: hidden;
    clip-path: inset(0 50% 0 0);
}

.image-after-2 {
    z-index: 2;
    width: 50%;
    overflow: hidden;
    clip-path: inset(0 50% 0 0);
}

.image-after-3 {
    z-index: 2;
    width: 50%;
    overflow: hidden;
    clip-path: inset(0 50% 0 0);
}

.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 24px;
    z-index: 3;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-handle-2 {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 24px;
    z-index: 3;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-handle-3 {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 24px;
    z-index: 3;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-handle::after {
    content: "";
    display: block;
    width: 26px;
    height: 26px;
    background-image: url('./img/double-arrow.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    background-color: #6D5952;
}

.slider-handle-2::after {
    content: "";
    display: block;
    width: 26px;
    height: 26px;
    background-image: url('./img/double-arrow.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    background-color: #6D5952;
}

.slider-handle-3::after {
    content: "";
    display: block;
    width: 26px;
    height: 26px;
    background-image: url('./img/double-arrow.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    background-color: #6D5952;
}

.bilan-button {
    margin-top: 25px;
    display: inline-block;
    padding: 12px 28px;
    border: 1px solid #1a1a1a;
    border-radius: 25px;
    font-style: italic;
    text-decoration: none;
    color: #1a1a1a;
    background: none;
    transition: all 0.3s ease;
}

.bilan-button-2 {
    margin-top: 25px;
    display: inline-block;
    padding: 12px 28px;
    border: 1px solid #1a1a1a;
    border-radius: 25px;
    font-style: italic;
    text-decoration: none;
    color: #1a1a1a;
    background: none;
    transition: all 0.3s ease;
}

.bilan-button-3 {
    margin-top: 25px;
    display: inline-block;
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    color: #ffffff;
    background-color: #6D5952;
    transition: all 0.3s ease;
    font-weight: bold;
}

.bilan-button:hover {
    background-color: #1a1a1a;
    color: #fff;
}

.bilan-button-2:hover {
    background-color: #1a1a1a;
    color: #fff;
}

.bilan-button-3:hover {
    background-color: #1a1a1a;
    color: #fff;
}

.face-right {
    flex: 1 1 300px;
    max-width: 500px;
    position: relative;
}

.face-right-2 {
    flex: 1 1 300px;
    max-width: 500px;
    position: relative;
}

.face-right-3 {
    flex: 1 1 300px;
    max-width: 500px;
    position: relative;
}

.face-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.face-image-2 {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.face-image-3 {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.treatment-point {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid #b59884;
    border-radius: 50%;
    animation: blink 1.8s infinite;
}

.treatment-point-2 {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid #b59884;
    border-radius: 50%;
    animation: blink 1.8s infinite;
}

.treatment-point-3 {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid #b59884;
    border-radius: 50%;
    animation: blink 1.8s infinite;
}

@keyframes blink {

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

    50% {
        opacity: 1;
        transform: scale(1.3);
    }
}

.point-1 {
    top: 20%;
    left: 59%;
}

.point-2 {
    top: 30%;
    left: 36%;
}

.point-3 {
    top: 36%;
    left: 30%;
}

.point-4 {
    top: 47%;
    left: 60%;
}

.point-5 {
    top: 52%;
    left: 38%;
}

.point-6 {
    top: 61%;
    left: 41%;
}

.point-1-2 {
    top: 28%;
    left: 49%;
}

.point-2-2 {
    top: 79%;
    left: 39%;
}

.point-3-2 {
    top: 91%;
    left: 58%;
}

.point-4-2 {
    top: 48%;
    left: 54%;
}

.point-5-2 {
    top: 40%;
    left: 27%;
}

.point-6-2 {
    top: 65%;
    left: 67%;
}

.point-1-3 {
    top: 25%;
    left: 39%;
}

.point-2-3 {
    top: 48%;
    left: 50%;
}

.point-3-3 {
    top: 58%;
    left: 53%;
}

.point-4-3 {
    top: 48%;
    left: 54%;
}

.point-5-3 {
    top: 18%;
    left: 47%;
}

.point-6-3 {
    top: 38%;
    left: 51%;
}

.point-7-3 {
    top: 75%;
    left: 47%;
}

.point-8-3 {
    top: 5%;
    left: 46%;
}

.face-carousel {
    background-color: #e1cec3;
}

.carousel-section {
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 1rem;
    transition: transform 0.5s ease;
    justify-content: center;
    background-color: #e1cec3;
}

.service-card {
    min-width: 320px;
    max-width: 320px;
    height: 420px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.service-media {
    width: 100%;
    height: 290px;
    overflow: hidden;
}

.service-media img,
.service-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-subtitle {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: white;
    margin-bottom: 0.5rem;
}

.service-title {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #50403a;
}

.service-price {
    font-size: 1rem;
    color: #50403a;
    margin-bottom: 1rem;
}

.voir-plus {
    color: #50403a;
    border: none;
    text-align: left;
    font-size: 16px;
    cursor: pointer;
    background-color: #e1cec3;
    text-decoration: underline;
}

.custom-carousel {
    position: relative;
    background-color: #e1cec3;
    padding-bottom: 2rem;
    overflow: hidden;
}

.custom-carousel-track-wrapper {
    overflow: hidden;
}

.custom-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 1rem;
}

.custom-card {
    min-width: 320px;
    max-width: 320px;
    height: 420px;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
}

.custom-media {
    height: 290px;
    overflow: hidden;
}

/* .rotate-me {
    transform: rotate(-90deg) !important;
    transform-origin: center;
} */

.custom-media img,
.custom-media video {

    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.custom-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.custom-subtitle {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: white;
    margin-bottom: 0.5rem;
}

.custom-title {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #50403a;
}

.custom-price {
    font-size: 1rem;
    color: #50403a;
    margin-bottom: 1rem;
}

.custom-carousel-controls {
    text-align: center;
    margin-top: 1rem;
}

.carousel-arrow {
    background-color: #e1cec3;
    color: #50403a;
    border: none;
    font-size: 2rem;
    margin: 0 1rem;
    cursor: pointer;
}

.custom-card {
    min-width: 280px;
}

.epilation-section {
    padding: 2rem;
    background: #e1cec3;
}

.laser-tarifs-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.epilation-gender-toggle {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.gender-btn {
    padding: 14px 20px;
    border: none;
    background-color: white;
    cursor: pointer;
    font-weight: bold;
    border-radius: 25px;
}

.gender-btn.active {
    background-color: #6D5952;
    color: white;
}

.epilation-zones {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.zone-tab {
    padding: 0.4rem 0.8rem;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    border-radius: 5px;
    background-color: #e1cec3;
    letter-spacing: 0.2em;
    color: #444;
}

.zone-tab.active {
    background-color: #e1cec3;
    color: #6D5952;
    text-decoration: underline;
}

.epilation-price-cards {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.epilation-price-card {
    border-right: 0.5px solid #50403a;
    padding: 1rem;
    text-align: center;
}

.epilation-price-card .zone-title {
    font-weight: bold;
    color: #50403a;
}

.epilation-price-card .zone-price {
    margin-top: 0.5rem;
    color: #b48c7a;
    font-size: 1.1rem;
}

.laser-section {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem auto;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    animation: fadeIn 1s ease-out;
}

.laser-media {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    height: 600px;
}

.laser-video {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.laser-content {
    flex: 1;
    animation: slideUp 1s ease-out;
}

.laser-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.laser-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1rem;
}

.laser-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #6D5952;
    color: white;
    font-weight: bold;
    border-radius: 25px;
    text-decoration: none;
    transition: background 0.3s;
}

.laser-button:hover {
    background: #444;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

.ht-values-section {
    background: white;
    padding: 60px 20px;
}

.ht-values-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.ht-value-card {
    text-align: center;
    max-width: 320px;
    flex: 1;
}

.ht-icon-circle {
    width: 60px;
    height: 60px;
    background-color: #e1cec3;
    color: #6D5952;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    margin: 0 auto 20px auto;
}

.ht-value-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #6D5952;
}

.ht-value-card p {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
}

.testimonial-section {
    padding: 3rem 1.5rem;
    background: #fff;
    text-align: center;
}

.testimonial-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: #000;
    line-height: 1.2;
}

.testimonial-title span {
    font-weight: 400;
}

.testimonial-title strong {
    color: #e1cec3;
    font-weight: 600;
}

.testimonial-source {
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: #444;
}

.testimonial-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.testimonial-card {
    background: #f5f6f7;
    border: 1px solid #ccc;
    padding: 1.8rem;
    max-width: 300px;
    flex: 1 1 280px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    text-align: left;
    animation: fadeIn 1.2s ease-in-out;
}

.testimonial-quote {
    font-size: 3rem;
    color: #6D5952;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.testimonial-author {
    font-weight: bold;
    font-size: 1rem;
    color: #6D5952;
}

.feedback-title {
    font-family: 'Barlow', sans-serif;
    font-size: 2rem;
    color: #000;
    text-align: center;
    width: 100%;
    margin: 40px 0;
}

.highlighted-retours {
    color: #d8b4a6;
}

.stats-section {
    padding: 4rem 1rem;
    background-color: #e1cec3;
    text-align: center;
}

.stats-wrapper {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeInStats 1s ease-in-out both;
}

.stats-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stats-number {
    font-size: 4rem;
    font-weight: 500;
    margin: 0;
    color: #6D5952;
}

.stats-label {
    font-size: 1.1rem;
    line-height: 1.4;
    color: #444;
    margin-top: 0.5rem;
}

@keyframes fadeInStats {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-contact {
    position: relative;
    background-color: #f3e6d5;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 3rem 2rem;
    flex-wrap: wrap;
    color: #000;
}

.footer-contact-content {
    position: relative;
    z-index: 2;
    max-width: 400px;
}

.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.footer-contact-info li {
    display: flex;
    align-items: center;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-contact-info i {
    font-size: 1.4rem;
    margin-right: 0.8rem;
    color: #50403a;
}

.footer-contact-socials {
    list-style: none;
    display: flex;
    gap: 1.2rem;
    padding: 0;
    margin: 0;
    color: #50403a;
}

.footer-contact-socials li {
    font-size: 1.4rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.footer-contact-socials li:hover {
    transform: scale(1.2);
}

.footer-contact-background {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 45%;
    background-image: url('./img/footer-img.jpeg');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.footer-contact-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
    list-style: none;
    padding: 0;
}

.footer-contact-links li a {
    color: #6D5952;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s, text-decoration 0.3s;
}

.footer-contact-links li a:hover {
    color: #090909;
    text-decoration: underline;
}

.footer-contact-background::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

#uniqueTestimonialCarousel2 {
    position: relative;
    background: url('./img/wellness.jpeg') center center / cover no-repeat;
    padding: 80px 20px;
    color: #6D5952;
    overflow: hidden;
}

.unique-carousel2-overlay {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.unique-carousel2-wrapper {
    position: relative;
    width: 100%;
    height: auto;
}

.unique-carousel2-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    text-align: center;
    padding: 20px 0;
}

.unique-carousel2-slide.active {
    opacity: 1;
    position: relative;
}

.unique-carousel2-text {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.unique-carousel2-author {
    font-style: italic;
    font-size: 1rem;
}

.unique-carousel2-arrow {
    background: #6D5952;
    border: none;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    padding: 10px 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: background 0.3s;
    z-index: 2;
    border-radius: 50%;
}

.unique-carousel2-prev {
    left: -60px;
}

.unique-carousel2-next {
    right: -60px;
}

@media (max-width: 768px) {
    .header-nav {
        display: none;
    }

    .hamburger {
        display: block;
        padding: 5px;
        font-size: 24px;
        order: 1;
    }

    .phone.desktop-only {
        display: none;
    }

    .hero-section {
        padding: 0;
    }

    .face-right {
        display: none;
    }

    .face-right-2 {
        display: none;
    }

    .face-right-3 {
        display: none;
    }

    .slide {
        height: 65vh;
    }

    .carousel {
        height: 65vh;
    }

    .epilation-price-card {
        border: none;
    }

    .laser-tarifs-title {
        font-size: 28px;
    }

    .laser-section {
        flex-direction: column-reverse;
    }

    .overlay h1 {
        font-size: 1.8rem;
    }

    .overlay p {
        font-size: 1.1rem;
    }

    .method-title {
        font-size: 2rem;
    }

    .method-section {
        padding: 40px 30px;
    }

    .method-description,
    .method-details,
    .method-closing {
        font-size: 1rem;
    }

    .face-treatment-section {
        flex-direction: column;
    }

    .face-title {
        font-size: 2rem;
    }

    .carousel-track {
        flex-wrap: nowrap;
        overflow-x: scroll;
        scroll-snap-type: x mandatory;
    }

    .service-card {
        flex: 0 0 80%;
        scroll-snap-align: start;
    }

    .custom-carousel-track-wrapper {
        padding: 0 10px;
    }

    .custom-card {
        width: 90vw;
        min-width: 90vw;
        max-width: 90vw;
        margin-right: 15px;
        scroll-snap-align: start;
    }

    .laser-media,
    .laser-content {
        flex: 1;
    }

    .ht-values-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .ht-value-card {
        max-width: 100%;
        padding: 0 20px;
    }

    .ht-value-card h3 {
        font-size: 17px;
    }

    .ht-value-card p {
        font-size: 14px;
    }

    .ht-icon-circle {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 15px;
    }

    .testimonial-title {
        font-size: 1.8rem;
    }

    .testimonial-cards {
        flex-direction: column;
        align-items: center;
    }

    .stats-number {
        font-size: 3rem;
    }

    .stats-wrapper {
        gap: 2rem;
    }

    .stats-label {
        font-size: 1rem;
    }

    .footer-contact {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-contact-background {
        position: static;
        width: 100%;
        height: 250px;
        margin-top: 2rem;
        background-position: center top;
    }

    .footer-contact-background::after {
        background-color: rgb(0 0 0 / 0%);
    }

    .unique-carousel2-text {
        font-size: 1rem;
    }

    .unique-carousel2-arrow {
        top: 85%;
    }

    .unique-carousel2-author {
        font-size: 0.9rem;
    }

    .unique-carousel2-prev {
        left: 10px;
        right: auto;
    }

    .unique-carousel2-next {
        right: 10px;
        left: auto;
    }

    .header-content {
        min-height: 80px;
    }

    header.scrolled .header-content {
        min-height: 80px;
    }

    .header-left {
        order: 1;
        gap: 10px;
    }

    .logo {
        order: 2;
        margin: 0;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .logo img {
        height: 80px;
    }

    header.scrolled .logo img {
        height: 80px;
    }

    .header-right {
        order: 3;
        justify-content: flex-end;
        gap: 0;
    }

    .book {
        padding: 8px 15px;
        font-size: 13px;
    }

    .mobile-menu {
        top: 75px;
    }

    header.scrolled .mobile-menu {
        top: 65px;
    }

    .promo-banner {
        font-size: 0.95rem;
        padding: 8px 0;
        top: 30px;
    }

    .promo-text-wrap {
        animation-duration: 85s;
    }

    .promo-text {
        padding-right: 30px;
    }

    .slider-wrapper,
    .slider-wrapper-2 {
        display: none;
    }

    .face-left,
    .face-left2 {
        flex: 1 1 100px;
    }

    .face-description,
    .face-description2 {
        margin-bottom: 0;
    }

    .face-carousel,
    .voir-plus {
        background-color: white;
    }

    .custom-carousel {
        background-color: white;
    }

    .custom-carousel-controls {
        display: none;
    }

    .face-left-3 {
        display: none;
    }

    .custom-carousel-controls {
        display: none !important;
    }

    .custom-carousel-track {
        display: flex;
        transition: transform 0.5s ease;
        gap: 0 !important;
        width: 100%;
    }

    .custom-card {
        min-width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto;
        height: 326px;
    }

    .custom-carousel-track-wrapper {
        overflow: hidden;
        width: 100%;
    }

    .face-carousel {
        background-color: white;
        padding: 0;
    }

    .face-carousel .custom-carousel-controls {
        display: none !important;
    }

    .face-carousel .custom-carousel-track {
        gap: 0 !important;
        width: 100%;
    }

    .face-carousel .custom-card {
        min-width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto;
    }

    .face-carousel .custom-carousel-track-wrapper {
        overflow: hidden;
        width: 100%;
    }

    .mobile-soins-button {
        display: inline-block;
        padding: 0.65rem 1.2rem;
        border-radius: 50px;
        background-color: #6D5952;
        /* or your theme color */
        color: white;
        text-decoration: none;
        font-size: 1rem;
        font-weight: 500;
        text-align: center;
        transition: background-color 0.3s ease, transform 0.2s ease;
        border: none;
        justify-self: center;
        display: list-item;

    }

    .custom-content {
        display: none;
    }

    .epilation-section {
        display: none;
    }

    .face-treatment-section-3 {
        display: none;
    }

    .face-description-2 {
        margin-bottom: 0;
    }

    .custom-carousel {
        padding-bottom: 0;
    }
}