/* =====================================================
   LE BAC PARIS - PWA Mobile Application Styles
   Mobile-First Design
   ===================================================== */

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a1a2e;
    --secondary: #16213e;
    --accent: #c9a227;
    --accent-light: #e8d17d;
    --gold: #d4af37;
    --cream: #ffffff;
    --white: #ffffff;
    --text-dark: #1a1a2e;
    --text-light: #666666;
    --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    --gradient-gold: linear-gradient(135deg, #c9a227 0%, #d4af37 100%);
    --shadow: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
}

html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--cream);
    -webkit-font-smoothing: antialiased;
    position: relative;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* =====================================================
   HEADER - Mobile First
   ===================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: rgba(255,255,255,0.8);
    background-image: url('../assets/pattern-nav.jpeg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    z-index: 1000;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    overflow: visible;
}

.header.scrolled {
    background-color: rgba(255,255,255,0.85);
    background-image: url('../assets/pattern-nav.jpeg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    backdrop-filter: blur(15px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 15px;
    max-width: 100%;
    width: 100%;
    margin: 0;
    background: rgba(255,255,255,0.75);
    min-height: 50px;
    box-sizing: border-box;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
}

.logo-accent {
    font-family: 'Poppins', sans-serif;
    font-size: 0.55rem;
    color: var(--accent);
    letter-spacing: 4px;
    font-weight: 500;
}

.nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: #f5f5f5;
    background-image: url('../assets/pattern-nav.jpeg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 999;
}

.nav-menu.active {
    transform: translateX(0);
}

.nav-logo-mobile {
    display: none;
}

@media (max-width: 767px) {
    .nav-logo-mobile {
        display: block;
        text-align: center;
        margin-bottom: 2rem;
        padding-top: 1rem;
    }

    .nav-logo-mobile img {
        width: 80px;
        height: auto;
        border-radius: 15px;
    }
}

.nav-link {
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent);
}

@media (max-width: 767px) {
    .nav-link {
        color: var(--white);
        font-family: 'Playfair Display', Georgia, serif;
        font-weight: 600;
        font-size: 0.8rem;
        letter-spacing: 1px;
        text-transform: uppercase;
        background: #1a1a1a;
        padding: 0.3rem 0.75rem;
        border: none;
        border-radius: 2px;
        opacity: 0;
        transform: translateX(30px);
        transition: background 0.3s ease, color 0.3s ease;
    }

    .nav-menu.active .nav-link {
        animation: slideInNav 0.4s ease forwards;
    }

    .nav-menu.active .nav-link:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu.active .nav-link:nth-child(2) { animation-delay: 0.2s; }
    .nav-menu.active .nav-link:nth-child(3) { animation-delay: 0.3s; }
    .nav-menu.active .nav-link:nth-child(4) { animation-delay: 0.4s; }
    .nav-menu.active .nav-link:nth-child(5) { animation-delay: 0.5s; }
    .nav-menu.active .nav-link:nth-child(6) { animation-delay: 0.6s; }

    @keyframes slideInNav {
        from {
            opacity: 0;
            transform: translateX(30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .nav-link:hover, .nav-link.active {
        background: var(--accent);
        color: var(--primary);
    }
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
    z-index: 1001;
}

.cart-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--primary);
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-shadow: none;
}

.cart-icon svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.5;
}

.cart-icon:hover {
    color: var(--accent);
    transform: scale(1.1);
}

.cart-icon:focus {
    outline: none;
    box-shadow: none;
}

.cart-icon:focus-visible {
    color: var(--accent);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent);
    color: var(--primary);
    font-size: 0.6rem;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-count:empty,
.cart-count[data-count="0"] {
    display: none;
}


.burger-menu {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
    min-width: 40px;
    min-height: 40px;
    align-items: center;
    justify-content: center;
}

.burger-menu span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.burger-menu.active {
    background: var(--primary);
    border-radius: 50%;
    min-width: 36px;
    min-height: 36px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.burger-menu.active span {
    background: var(--white);
    position: absolute;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg);
}

.date-display {
    background: var(--gradient-gold);
    color: var(--primary);
    text-align: center;
    padding: 0.25rem;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Fidelite Modal */
.fidelite-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 2000;
    display: none;
    flex-direction: column;
}

.fidelite-modal.active {
    display: flex;
}

.fidelite-header {
    background-color: rgba(255,255,255,0.85);
    background-image: url('../assets/pattern-nav.jpeg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    backdrop-filter: blur(12px);
    padding: 0.8rem 1rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border-bottom: 2px solid var(--accent);
}

.fidelite-back {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent);
    border: none;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0.6rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.fidelite-back:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.05);
}

.fidelite-back svg {
    width: 18px;
    height: 18px;
}

.fidelite-logo {
    height: 42px;
    width: auto;
    border-radius: 10px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 3px 15px rgba(0,0,0,0.15);
}

.fidelite-title {
    color: var(--primary);
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: var(--primary);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.65rem;
}

.fidelite-modal iframe {
    flex: 1;
    width: 100%;
    height: 100%;
    border: none;
}

/* =====================================================
   PAGE WRAPPER - Prevent horizontal overflow
   ===================================================== */
.page-wrapper {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* =====================================================
   SECTION 1: PRESENTATION
   ===================================================== */
.section {
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.section-presentation {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 80px;
    background: var(--primary);
    overflow: hidden;
}

.section-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
        rgba(26,26,46,0.3) 0%,
        rgba(26,26,46,0.5) 100%);
}

.section-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem 1.5rem;
    max-width: 600px;
}

.section-title {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: 5px;
    font-weight: 700;
}

.section-subtitle {
    color: var(--cream);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-style: italic;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.btn-discover {
    display: inline-block;
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 1rem 3rem;
    border-radius: 0;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.btn-discover:hover {
    background: var(--white);
    color: var(--primary);
}

/* =====================================================
   SECTION BIENVENUE AVEC CARROUSEL
   ===================================================== */
.section-bienvenue {
    background: var(--white);
    padding: 4rem 0;
    min-height: auto;
    overflow-x: hidden;
}

.bienvenue-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-direction: column-reverse;
    gap: 2rem;
}

.bienvenue-text {
    text-align: center;
}

.bienvenue-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.3rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.bienvenue-title span:last-of-type {
    font-size: 1.2rem;
    font-weight: 400;
}

.title-logo {
    width: 120px;
    height: 120px;
    margin-top: 1rem;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.title-logo.animate-ready {
    opacity: 0;
    transform: translateY(-100px) rotate(-10deg);
}

.title-logo.drop-in {
    animation: dropFromSky 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes dropFromSky {
    0% {
        opacity: 0;
        transform: translateY(-100px) rotate(-10deg);
    }
    60% {
        opacity: 1;
        transform: translateY(10px) rotate(3deg);
    }
    80% {
        transform: translateY(-5px) rotate(-2deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
    }
}

@media (min-width: 768px) {
    .bienvenue-title {
        align-items: flex-start;
        font-size: 3.25rem;
    }

    .title-logo {
        width: 150px;
        height: 150px;
        border-radius: 30px;
    }
}

.bienvenue-subtitle {
    font-style: italic;
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    min-height: 4.5em;
}

.bienvenue-description {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
    min-height: 14em;
}

@media (min-width: 768px) {
    .bienvenue-subtitle {
        min-height: 2em;
    }

    .bienvenue-description {
        min-height: 6em;
    }
}

/* Typewriter effect */
.typewriter {
    overflow: hidden;
    position: relative;
    display: block;
    text-align: center;
}

.typewriter::after {
    content: '|';
    color: var(--accent);
    font-weight: bold;
    animation: pulseCursor 0.8s ease-in-out infinite;
    text-shadow: 0 0 10px var(--accent), 0 0 20px var(--accent), 0 0 30px var(--accent);
    margin-left: 2px;
}

.typewriter.done::after {
    display: none;
}

@media (min-width: 768px) {
    .bienvenue-text .typewriter {
        text-align: left;
    }
}

@keyframes pulseCursor {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(1.2);
    }
}

/* Glow effect on typed text */
.typewriter-glow {
    animation: textGlow 0.3s ease-out;
}

@keyframes textGlow {
    0% {
        text-shadow: 0 0 20px var(--accent), 0 0 40px var(--accent);
    }
    100% {
        text-shadow: none;
    }
}

.bienvenue-subtitle.typing {
    text-shadow: 0 0 8px rgba(201, 162, 39, 0.5);
}

.bienvenue-description.typing {
    text-shadow: 0 0 5px rgba(102, 102, 102, 0.3);
}

.bienvenue-slider {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    flex: 0 0 33.333%;
    min-width: 33.333%;
    padding: 0;
    position: relative;
}

.slide::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}

@media (min-width: 768px) {
    .slide::after {
        height: 120px;
        background: linear-gradient(to top, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 20%, rgba(255,255,255,0) 100%);
    }
}

@media (min-width: 1024px) {
    .slide::after {
        height: 180px;
        background: linear-gradient(to top, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 30%, rgba(255,255,255,0) 100%);
    }
}

.slide img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

@media (min-width: 500px) {
    .slide img {
        height: 300px;
    }
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--white);
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.slider-btn svg {
    width: 20px;
    height: 20px;
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(26,26,46,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

@media (min-width: 768px) {
    .bienvenue-container {
        flex-direction: row;
        align-items: center;
        padding: 0 2rem;
    }

    .bienvenue-text {
        flex: 1;
        text-align: left;
        padding-right: 2rem;
    }

    .bienvenue-title {
        font-size: 2.5rem;
    }

    .bienvenue-description {
        margin: 0;
    }

    .bienvenue-slider {
        flex: 1;
    }

    .slide img {
        height: 350px;
    }
}

.presentation-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.presentation-card p {
    color: var(--cream);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.presentation-card p:last-child {
    margin-bottom: 0;
}

.salon-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
}

.feature span {
    color: var(--cream);
    font-size: 0.8rem;
    font-weight: 500;
}

.contact-info {
    color: var(--cream);
    font-size: 0.9rem;
}

.contact-info a {
    color: var(--accent);
    font-weight: 600;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--cream);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);
    transform: rotate(45deg);
    margin: 0.5rem auto 0;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* =====================================================
   SECTION VIDEO INSTAGRAM
   ===================================================== */
.section-video {
    background: var(--white);
    padding: 0.5rem 0 1.5rem 0;
    overflow-x: hidden;
}

.video-header {
    text-align: center;
    margin-bottom: 2rem;
}

.video-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.video-subtitle {
    color: var(--text-light);
    font-size: 1rem;
}

.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 280px;
    height: 65vh;
    max-height: 500px;
    margin: 0 auto;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.25);
}

.video-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180%;
    height: 100%;
    border: none;
    pointer-events: none;
}

.video-overlay-blocker {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    cursor: default;
}

/* Video Card Design */
.video-card {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 9/16;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 15px 50px rgba(0,0,0,0.25);
    transition: all 0.4s ease;
    margin: 0 auto;
}

.video-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}

.video-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-card:hover .video-card-bg img {
    transform: scale(1.1);
}

.video-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.3) 0%,
        rgba(0,0,0,0.1) 40%,
        rgba(0,0,0,0.5) 100%
    );
}

.video-card-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.video-instagram-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 35px;
    height: 35px;
    color: var(--white);
    opacity: 0.9;
}

.video-instagram-icon svg {
    width: 100%;
    height: 100%;
}

.video-instagram-icon-center {
    width: 60px;
    height: 60px;
    color: var(--white);
    filter: drop-shadow(0 4px 15px rgba(0,0,0,0.4));
    transition: all 0.3s ease;
}

.video-instagram-icon-center svg {
    width: 100%;
    height: 100%;
}

.video-card:hover .video-instagram-icon-center {
    transform: scale(1.15);
    filter: drop-shadow(0 6px 20px rgba(0,0,0,0.5));
}

.video-play-circle {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px rgba(0,0,0,0.3);
}

.video-play-circle svg {
    width: 35px;
    height: 35px;
    color: var(--primary);
    margin-left: 5px;
}

.video-card:hover .video-play-circle {
    transform: scale(1.15);
    background: var(--accent);
}

.video-card:hover .video-play-circle svg {
    color: var(--primary);
}

.video-card-text {
    position: absolute;
    bottom: 1.5rem;
    left: 0;
    right: 0;
    text-align: center;
}

.video-card-label {
    display: block;
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.3rem;
}

.video-card-title {
    display: block;
    color: var(--white);
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 2000;
    display: none;
    flex-direction: column;
}

.video-modal.active {
    display: flex;
}

.video-modal-header {
    background-color: rgba(255,255,255,0.85);
    background-image: url('../assets/pattern-nav.jpeg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    backdrop-filter: blur(12px);
    padding: 0.8rem 1rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border-bottom: 2px solid var(--accent);
}

.video-back {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent);
    border: none;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0.6rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.video-back:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.05);
}

.video-back svg {
    width: 18px;
    height: 18px;
}

.video-modal-logo {
    height: 42px;
    width: auto;
    border-radius: 10px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 3px 15px rgba(0,0,0,0.15);
}

.video-modal-title {
    color: var(--primary);
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: var(--primary);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.65rem;
}

.video-modal iframe {
    flex: 1;
    width: 100%;
    height: 100%;
    border: none;
}

@media (min-width: 768px) {
    .video-title {
        font-size: 2.5rem;
    }

    .section-video {
        padding: 1rem 0 4rem 0;
    }
}

/* =====================================================
   SECTION 2: ÉQUIPE
   ===================================================== */
.section-equipe {
    background: var(--cream);
    padding: 4rem 0;
    min-height: auto;
    overflow-x: hidden;
}

.section-heading {
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-intro {
    text-align: center;
}

/* Animation pour section Équipe */
.section-equipe .section-heading,
.section-equipe .section-intro {
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s ease-out;
}

.section-equipe .section-intro {
    transition-delay: 0.2s;
}

.section-equipe .section-heading.animate-in,
.section-equipe .section-intro.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.heading-accent {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: var(--accent);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
}

.heading-main {
    display: block;
    font-size: 2rem;
    color: var(--primary);
}

.section-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

.team-photo-header {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 2rem;
    padding: 0 1rem;
    border-radius: 20px;
    overflow: hidden;
}

.team-photo-header img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

@media (min-width: 768px) {
    .team-photo-header {
        max-width: 550px;
    }
}

@media (min-width: 1024px) {
    .team-photo-header {
        max-width: 600px;
    }
}

.team-carousel {
    position: relative;
    overflow: hidden;
    padding: 0 1rem;
    max-width: 100%;
}

.team-track {
    display: flex;
    transition: transform 0.5s ease;
}

.team-member {
    flex: 0 0 85%;
    margin: 0 0.5rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    position: relative;
    height: 400px;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.team-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    background: transparent;
    color: var(--accent);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.team-btn:hover {
    background: var(--accent);
    color: var(--white);
}

.team-btn svg {
    width: 20px;
    height: 20px;
}

.team-dots {
    display: flex;
    gap: 0.5rem;
}

.team-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(201, 162, 39, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.team-dot.active {
    background: var(--accent);
    transform: scale(1.2);
}

@media (min-width: 768px) {
    .team-member {
        flex: 0 0 45%;
    }
}

@media (min-width: 1024px) {
    .team-member {
        flex: 0 0 30%;
    }
}

.member-photo {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .member-photo img {
    transform: scale(1.1);
}

.member-overlay {
    display: none;
}

.member-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(26,26,46,0.7) 50%);
    color: var(--white);
    z-index: 2;
}

.member-info h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.member-role {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-exp {
    color: var(--cream);
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
    opacity: 0.9;
}

.member-desc {
    color: var(--cream);
    font-size: 0.85rem;
    line-height: 1.5;
    opacity: 0.9;
}

/* =====================================================
   SECTION 3: PRODUITS PHARES
   ===================================================== */
.section-produits {
    background: var(--cream);
    padding: 1.5rem 0;
    min-height: auto;
    overflow-x: hidden;
}

/* Clickable Section */
.clickable-section {
    cursor: pointer;
    transition: all 0.3s ease;
}

.clickable-section:hover {
    background: linear-gradient(135deg, var(--cream) 0%, rgba(200, 169, 126, 0.15) 100%);
}

.clickable-section:active {
    transform: scale(0.995);
}

.products-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0 1rem;
}

.products-title-area {
    flex: 1;
}

.products-subtitle {
    display: block;
    font-size: 0.65rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
    font-weight: 400;
}

.products-main-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    color: var(--primary);
    line-height: 1.3;
    font-weight: 600;
}

.products-nav {
    display: flex;
    gap: 0.5rem;
}

.product-nav-btn {
    width: 35px;
    height: 35px;
    border: 1px solid var(--primary);
    background: transparent;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.product-nav-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.product-nav-btn svg {
    width: 16px;
    height: 16px;
}

.products-carousel {
    overflow: hidden;
    margin-bottom: 1rem;
    max-width: 100%;
}

.products-track {
    display: flex;
    transition: transform 0.5s ease;
}

.product-slide {
    flex: 0 0 100%;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    padding: 0 1rem;
    align-items: center;
}

.product-slide-image {
    width: 40%;
    flex-shrink: 0;
    height: 180px;
    overflow: hidden;
    background: var(--white);
}

.product-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-slide:hover .product-slide-image img {
    transform: scale(1.05);
}

/* Product link style */
a.product-slide.product-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.product-slide-content {
    padding: 0;
    flex: 1;
}

.product-badge-new {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 0.2rem 0.5rem;
    font-size: 0.55rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.product-slide-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 0.15rem;
    font-weight: 600;
}

.product-slide-name {
    font-size: 0.7rem;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.product-slide-desc {
    color: var(--text-light);
    font-size: 0.75rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-slide-details {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.product-slide-size {
    color: var(--text-light);
    font-size: 0.75rem;
}

.product-slide-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

@media (min-width: 768px) {
    .section-produits {
        padding: 4rem 0;
    }

    .products-header {
        padding: 0 2rem;
        margin-bottom: 2rem;
    }

    .products-subtitle {
        font-size: 0.85rem;
    }

    .products-main-title {
        font-size: 2.2rem;
    }

    .product-nav-btn {
        width: 45px;
        height: 45px;
    }

    .product-nav-btn svg {
        width: 20px;
        height: 20px;
    }

    .product-slide {
        gap: 3rem;
        padding: 0 2rem;
    }

    .product-slide-image {
        width: 50%;
        height: 400px;
    }

    .product-badge-new {
        padding: 0.3rem 0.8rem;
        font-size: 0.7rem;
        margin-bottom: 1rem;
    }

    .product-slide-title {
        font-size: 2rem;
    }

    .product-slide-name {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .product-slide-desc {
        font-size: 0.95rem;
        line-height: 1.8;
        margin-bottom: 1.5rem;
        -webkit-line-clamp: unset;
    }

    .product-slide-price {
        font-size: 1.5rem;
    }
}

.products-cta {
    text-align: center;
    margin-top: 0.5rem;
    padding: 0 1rem;
}

.products-cta p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
}

@media (min-width: 768px) {
    .products-cta {
        margin-top: 2rem;
    }

    .products-cta p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
}

.btn-cta {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--primary);
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(201,162,39,0.3);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201,162,39,0.4);
}

@media (min-width: 768px) {
    .btn-cta {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }
}

/* =====================================================
   SECTION 4: AVIS CLIENTS
   ===================================================== */
.section-avis {
    background: var(--white);
    padding: 4rem 0;
    min-height: auto;
    overflow-x: hidden;
}

.section-avis .heading-accent {
    color: var(--accent);
}

.section-avis .heading-main {
    color: var(--primary);
}

.section-avis .section-intro {
    color: var(--text-light);
    opacity: 0.9;
}

.reviews-stats {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.overall-rating {
    text-align: center;
    margin-bottom: 0;
}

.rating-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.rating-stars {
    color: var(--accent);
    font-size: 1.5rem;
    margin: 0.25rem 0 0 0;
}

.rating-label {
    color: var(--cream);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.rating-breakdown {
    width: 100%;
    max-width: 300px;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 0.85rem;
}

.rating-bar .bar {
    flex: 1;
    height: 8px;
    background: rgba(0,0,0,0.1);
    border-radius: 4px;
    overflow: hidden;
}

.rating-bar .fill {
    height: 100%;
    background: var(--gradient-gold);
    border-radius: 4px;
}

.instagram-title-icon {
    width: 16px;
    height: 16px;
    color: var(--accent);
    vertical-align: middle;
    margin-right: 0.3rem;
}

.section-video .heading-accent {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
}

.section-video .section-heading {
    margin-bottom: 1.5rem;
}

/* Circular Rating Progress */
.rating-circle-container {
    display: flex;
    justify-content: center;
    margin-top: 0;
}

.rating-circle {
    position: relative;
    width: 100px;
    height: 100px;
}

.rating-circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.rating-circle .circle-bg {
    fill: none;
    stroke: rgba(0,0,0,0.1);
    stroke-width: 8;
}

.rating-circle .circle-fill {
    fill: none;
    stroke: var(--accent);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    transition: stroke-dashoffset 1.5s ease-out;
}

.rating-circle.animate .circle-fill {
    stroke-dashoffset: 22.64;
}

.circle-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.circle-percent {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
}

.circle-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-dark);
}

@media (min-width: 768px) {
    .rating-circle {
        width: 80px;
        height: 80px;
    }

    .circle-percent {
        font-size: 1rem;
    }

    .circle-label {
        font-size: 0.7rem;
    }
}

.reviews-carousel {
    position: relative;
    overflow: hidden;
    padding: 0 1rem;
    max-width: 100%;
}

.reviews-track {
    display: flex;
    transition: transform 0.5s ease;
}

.review-card {
    flex: 0 0 100%;
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(0,0,0,0.05);
    margin: 0 0.5rem;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-initial {
    color: var(--white);
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 600;
}

.reviewer-info {
    flex: 1;
}

.reviewer-info h4 {
    color: var(--primary);
    font-size: 1rem;
}

.review-date {
    color: var(--text-light);
    font-size: 0.75rem;
    opacity: 0.8;
}

.review-rating {
    color: var(--accent);
    font-size: 0.9rem;
}

.review-text {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1rem;
}

.review-service {
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    background: transparent;
    color: var(--accent);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: var(--accent);
    color: var(--primary);
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0,0,0,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--accent);
    transform: scale(1.2);
}

.reviews-cta {
    text-align: center;
    margin-top: 2rem;
}

.reviews-cta p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.btn-secondary {
    display: inline-block;
    border: 2px solid var(--accent);
    color: var(--accent);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--accent);
    color: var(--primary);
}

/* Avis Overlay */
.avis-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 9999;
}

.avis-overlay.active {
    display: flex;
}

.avis-icon-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    opacity: 0;
    transform: translateY(-100vh);
}

.avis-overlay.active .avis-icon-box {
    animation: fallDown 0.8s ease-out forwards;
}

.avis-overlay.active .avis-google {
    animation-delay: 0.1s;
}

.avis-overlay.active .avis-planity {
    animation-delay: 0.3s;
}

@keyframes fallDown {
    0% {
        opacity: 0;
        transform: translateY(-100vh) rotate(-20deg);
    }
    60% {
        transform: translateY(20px) rotate(5deg);
    }
    80% {
        transform: translateY(-10px) rotate(-3deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotate(0);
    }
}

.avis-icons-container {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.avis-icon-image {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.avis-icon-image img {
    height: 80px;
    width: auto;
    border-radius: 10px;
}

.avis-icon-image:hover {
    transform: scale(1.1);
}

.avis-icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.avis-icon-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.avis-icon-circle svg {
    width: 50px;
    height: 50px;
}

.avis-google .avis-icon-circle svg {
    color: #4285F4;
}

.avis-planity .avis-icon-circle svg {
    color: var(--accent);
}

.avis-icon-box span {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
}

.avis-close {
    margin-top: 3rem;
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.avis-close:hover {
    background: var(--white);
    color: var(--primary);
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    background: var(--white);
    padding: 2rem 0 1rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
    padding: 0 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.footer-logo .logo-text {
    color: var(--primary);
}

.footer-logo .logo-accent {
    color: var(--accent);
}

.footer-info, .footer-hours {
    color: var(--text-light);
    font-size: 0.9rem;
}

.footer-info a {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.1);
    color: var(--text-light);
    font-size: 0.8rem;
}

/* =====================================================
   PWA INSTALL BANNER
   ===================================================== */
.install-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: var(--primary);
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    z-index: 1000;
    transition: bottom 0.4s ease;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
}

.install-banner.show {
    bottom: 0;
}

.install-banner p {
    color: var(--white);
    font-size: 0.9rem;
}

.install-btn {
    background: var(--gradient-gold);
    color: var(--primary);
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
}

.dismiss-btn {
    background: none;
    border: none;
    color: var(--cream);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem;
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

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

/* =====================================================
   RESPONSIVE - Tablet
   ===================================================== */
@media (min-width: 768px) {
    .header-container {
        padding: 1rem 2rem;
        max-width: 1200px;
        margin: 0 auto;
        border-radius: 0 0 10px 10px;
    }

    .logo-text {
        font-size: 1.5rem;
    }
}

/* Menu navigation desktop uniquement */
@media (min-width: 1024px) {
    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 2rem;
    }

    .nav-menu {
        position: static;
        flex-direction: row;
        height: auto;
        width: auto;
        background: transparent;
        gap: 0.25rem;
        flex-wrap: nowrap;
        flex: 1;
        justify-content: center;
        transform: none;
    }

    .header-actions {
        order: 3;
    }

    .nav-link {
        color: var(--primary);
        font-family: 'Playfair Display', Georgia, serif;
        font-size: 0.85rem;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        padding: 0.5rem 0.8rem;
        border-radius: 25px;
        background: transparent;
        transition: all 0.3s ease;
        position: relative;
        opacity: 1;
        transform: none;
        white-space: nowrap;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background: var(--accent);
        transition: width 0.3s ease;
        border-radius: 2px;
    }

    .nav-link:hover {
        color: var(--accent);
        background: rgba(200, 169, 126, 0.1);
    }

    .nav-link:hover::after {
        width: 60%;
    }

    .nav-link.active {
        color: var(--primary);
        background: var(--accent);
        font-weight: 600;
    }

    .nav-link.active::after {
        display: none;
    }

    .container {
        padding: 0 2rem;
    }

    .section-title {
        font-size: 3.5rem;
        letter-spacing: 10px;
    }

    .products-showcase {
        grid-template-columns: repeat(3, 1fr);
        padding: 0 2rem;
    }

    .product-image {
        height: 220px;
    }

    .reviews-stats {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: 2rem;
    }

    .rating-circle-container {
        margin-top: 0;
        padding-top: 0.5rem;
    }

    .reviews-track {
        display: flex;
    }

    .review-card {
        flex: 0 0 calc(50% - 1rem);
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* =====================================================
   RESPONSIVE - Desktop
   ===================================================== */
@media (min-width: 1024px) {
    /* Cacher burger menu sur desktop */
    .burger-menu {
        display: none;
    }

    .section-content {
        max-width: 700px;
        padding: 3rem 2rem;
    }

    .section-title {
        font-size: 5rem;
        letter-spacing: 14px;
    }

    /* Titres des sections - Desktop */
    .section-heading {
        margin-bottom: 2rem;
    }

    .heading-accent {
        font-size: 1.3rem;
        letter-spacing: 3px;
    }

    .heading-main {
        font-size: 3.5rem;
    }

    .section-intro {
        font-size: 1.2rem;
    }

    /* Titre produits phares */
    .products-main-title {
        font-size: 2.2rem;
    }

    .products-subtitle {
        font-size: 1rem;
    }

    /* Titre avis */
    .avis-header h2 {
        font-size: 2.5rem;
    }

    .review-card {
        flex: 0 0 calc(33.333% - 1rem);
    }

    /* Desktop - Section Bienvenue - Full Screen */
    .section-bienvenue {
        min-height: 100vh;
        padding: 6rem 4rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .bienvenue-container {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 6rem;
        max-width: 1400px;
        margin: 0 auto;
        width: 100%;
    }

    .bienvenue-text {
        flex: 1;
        max-width: 550px;
        text-align: left;
    }

    .bienvenue-title {
        justify-content: flex-start;
    }

    .bienvenue-title .title-logo {
        width: 200px;
        height: auto;
    }

    .bienvenue-subtitle {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .bienvenue-description {
        font-size: 1.1rem;
        line-height: 1.8;
    }

    .bienvenue-slider {
        flex: 1;
        max-width: 600px;
        height: 500px;
    }

    .bienvenue-slider .slide {
        height: 500px;
    }

    .bienvenue-slider .slide img {
        height: 100%;
        object-fit: cover;
    }

    /* Desktop - Section Video - Full Screen */
    .section-video {
        min-height: 100vh;
        padding: 4rem 2rem;
        background: var(--white);
    }

    .section-video .container {
        max-width: 100%;
        min-height: calc(100vh - 8rem);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .section-video .section-heading {
        margin-bottom: 3rem;
    }

    .section-video .heading-main {
        font-size: 3rem;
    }

    .video-container {
        width: 350px;
        max-width: 350px;
        height: 600px;
        max-height: 600px;
    }

    /* Desktop - Section Équipe */
    .section-equipe {
        padding: 4rem 2rem;
    }

    .team-photo-header {
        max-width: 600px;
        margin: 0 auto 2rem;
        border-radius: 20px;
    }

    .team-carousel {
        max-width: 900px;
        margin: 0 auto;
    }

    .team-member {
        flex: 0 0 280px;
    }

    .member-photo {
        height: 350px;
    }

    /* Desktop - Section Produits Phares */
    .section-produits {
        padding: 4rem 2rem;
    }

    .products-carousel {
        max-width: 900px;
        margin: 0 auto;
    }

    .product-slide {
        gap: 3rem;
        padding: 2rem;
    }

    .product-slide-image {
        width: 45%;
        height: 280px;
    }

    .product-slide-content {
        padding-right: 2rem;
    }

    .product-slide-title {
        font-size: 1.5rem;
    }

    .product-slide-desc {
        font-size: 1rem;
        line-height: 1.7;
    }

    /* Desktop - Section Avis */
    .section-avis {
        padding: 4rem 2rem;
    }

    .avis-container {
        max-width: 1000px;
        margin: 0 auto;
    }

    .review-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

    .review-card {
        flex: 0 0 calc(50% - 1rem);
        max-width: 450px;
    }

    /* Desktop - Footer */
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 3rem;
    }

    .footer-section {
        text-align: left;
    }
}

/* Extra Large Desktop */
@media (min-width: 1400px) {
    /* Titres encore plus grands */
    .heading-accent {
        font-size: 1.5rem;
    }

    .heading-main {
        font-size: 4rem;
    }

    .section-intro {
        font-size: 1.3rem;
    }

    .products-main-title {
        font-size: 2.5rem;
    }

    .avis-header h2 {
        font-size: 3rem;
    }

    .bienvenue-container {
        gap: 8rem;
        max-width: 1600px;
    }

    .bienvenue-text {
        max-width: 600px;
    }

    .bienvenue-title .title-logo {
        width: 250px;
    }

    .bienvenue-subtitle {
        font-size: 1.7rem;
    }

    .bienvenue-description {
        font-size: 1.2rem;
    }

    .bienvenue-slider {
        max-width: 700px;
        height: 550px;
    }

    .bienvenue-slider .slide {
        height: 550px;
    }

    .team-photo-header {
        max-width: 650px;
    }

    .review-card {
        flex: 0 0 calc(33.333% - 1rem);
    }
}

/* =====================================================
   PWA Standalone Mode
   ===================================================== */
@media (display-mode: standalone) {
    .header {
        padding-top: env(safe-area-inset-top);
    }

    .install-banner {
        display: none !important;
    }
}

/* Safe areas for notched devices */
@supports (padding: max(0px)) {
    .header {
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
    }

    .footer {
        padding-bottom: max(1rem, env(safe-area-inset-bottom));
    }
}
