
@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: #f4f7fb;
            color: #1e2b37;
            line-height: 1.5;
            scroll-behavior: smooth;
        }

        /* couleurs signature + palette luxueuse */
        :root {
            --marine: #0a2e3f;
            --marine-light: #1f4a5e;
            --accent: #b58a5b;
            --accent-light: #d9b38c;
            --smoke: #eef2f5;
            --white: #ffffff;
            --text: #1e2b37;
            --footer-bg: #0a1c26;
            --shadow-sm: 0 15px 30px -10px rgba(0,40,60,0.15);
            --shadow-hover: 0 30px 40px -15px rgba(0,40,60,0.3);
            --gold-gradient: linear-gradient(135deg, #b58a5b 0%, #d4af37 100%);
        }

        /* header */
        .main-header {
            background-color: var(--white);
            box-shadow: 0 8px 20px rgba(0,20,30,0.08);
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(8px);
            background-color: var(--marine-light);
            border-bottom: 1px solid rgba(181,138,91,0.2);
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .header-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 80px;
        }

        .logo img {
            height: 60px;
            width: auto;
            display: block;
            border-radius: 8px;
            transition: transform 0.3s ease, filter 0.3s;
            filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
        }
        .logo img:hover { transform: scale(1.05) translateY(-2px); filter: drop-shadow(0 8px 12px var(--accent)); }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }
        .nav-links a {
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            letter-spacing: 0.5px;
            color: var(--white);
            padding-bottom: 6px;
            border-bottom: 2px solid transparent;
            transition: 0.3s;
            position: relative;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0%;
            height: 2px;
            background: var(--accent);
            transition: 0.3s;
        }
        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }
        .nav-links a.active, .nav-links a:hover {
            color: var(--accent);
        }

        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
        }
        .mobile-menu-toggle span {
            width: 30px;
            height: 3px;
            background-color: var(--marine);
            border-radius: 3px;
            transition: 0.2s;
        }

        /* carrousel hero (amélioré) */
        .carousel-hero {
            position: relative;
            height: 90vh;
            min-height: 650px;
            overflow: hidden;
        }
        .slide {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1.8s cubic-bezier(0.4, 0, 0.2, 1), transform 7s;
            transform: scale(1.05);
            z-index: 1;
        }
        .slide.active { 
            opacity: 1; 
            transform: scale(1);
        }
        .overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(145deg, rgba(10,46,63,0.75) 0%, rgba(10,46,63,0.25) 80%);
            z-index: 2;
        }
        .hero-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            z-index: 10;
            color: white;
            text-shadow: 0 4px 30px rgba(0,0,0,0.4);
            width: 90%;
            max-width: 1000px;
        }
        
        .hero-content h1 {
            font-size: clamp(3.5rem, 14vw, 7rem);
            font-weight: 800;
            letter-spacing: 8px;
            line-height: 1.1;
            animation: fadeUp 1.2s ease-out;
            background: linear-gradient(135deg, #ffffff, #f0e6d2);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 20px rgba(181, 138, 91, 0.25);
        }

        .hero-content p {
            font-size: clamp(1.4rem, 5vw, 2.5rem);
            font-weight: 300;
            letter-spacing: 8px;
            margin-top: 1.2rem;
            opacity: 0.9;
            animation: fadeUp 1.2s 0.2s backwards;
            color: var(--accent-light);
        }
        @keyframes fadeUp {
            0% { opacity: 0; transform: translateY(40px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            color: white;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            font-size: 0.9rem;
            letter-spacing: 2px;
            opacity: 0.8;
            transition: 0.3s;
            cursor: pointer;
        }
        .scroll-indicator i {
            font-size: 1.4rem;
            animation: bounce 2.2s infinite;
            color: var(--accent);
        }
        @keyframes bounce { 0%,20%,50%,80%,100%{transform:translateY(0);} 40%{transform:translateY(-12px);} 60%{transform:translateY(-6px);} }


        /* ========== SECTION BIENVENUE AMÉLIORÉE ========== */
.welcome-section {
    position: relative;
    padding: 6rem 1.5rem;
    background: linear-gradient(135deg, #f9fcff 0%, #f0f5fa 100%);
    overflow: hidden;
}

.welcome-section .container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Éléments décoratifs */
.welcome-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.decoration-wave {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(181,138,91,0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.decoration-circle {
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(10,46,63,0.03) 0%, transparent 70%);
    border-radius: 50%;
}

/* En-tête */
.welcome-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 3;
}

.welcome-subtitle {
    display: inline-block;
    font-size: 1rem;
    letter-spacing: 4px;
    color: var(--accent);
    background: rgba(181,138,91,0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-weight: 500;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(181,138,91,0.2);
}

.welcome-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.title-word {
    background: linear-gradient(135deg, var(--marine) 0%, #1f4a5e 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.title-word.accent {
    background: linear-gradient(135deg, var(--accent) 0%, #d4a373 100%);
    background-clip: text;
    -webkit-background-clip: text;
}

.title-underline {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.title-underline i {
    font-size: 1.8rem;
    color: var(--accent);
    animation: floatAnchor 3s ease-in-out infinite;
}

@keyframes floatAnchor {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(5deg); }
}

/* Grille principale */
.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 3;
}

/* Carte texte */
.welcome-card {
    border-radius: 40px;
    transition: all 0.5s cubic-bezier(0.2, 0.9, 0.3, 1);
}

.main-card {
    background: white;
    padding: 3rem;
    box-shadow: 
        0 30px 50px -20px rgba(10,46,63,0.3),
        inset 0 1px 2px rgba(255,255,255,0.8);
    border: 1px solid rgba(255,255,255,0.5);
    backdrop-filter: blur(10px);
    position: relative;
}

.main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent), var(--accent-light));
    border-radius: 40px 0 0 40px;
}

.quote-mark {
    font-size: 3rem;
    color: var(--accent);
    opacity: 0.3;
    margin-bottom: 1rem;
    line-height: 1;
}

.welcome-text {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #2d3e4b;
    margin-bottom: 1.8rem;
}

.welcome-text strong {
    color: var(--marine);
    font-weight: 700;
}

.welcome-text.highlight {
    font-size: 1.25rem;
    padding: 1.5rem;
    background: linear-gradient(145deg, #f8fafc, #eef2f6);
    border-radius: 24px;
    border-left: 4px solid var(--accent);
    margin: 2rem 0;
}

.year {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
    display: inline-block;
    background: rgba(181,138,91,0.15);
    padding: 0.2rem 1rem;
    border-radius: 50px;
    margin: 0 0.2rem;
}

/* Statistiques */
.stats-container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin: 2.5rem 0;
    padding: 2rem 0;
    border-top: 2px dashed rgba(181,138,91,0.3);
    border-bottom: 2px dashed rgba(181,138,91,0.3);
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--marine);
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--marine), var(--accent));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.9rem;
    color: #5a6f7e;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* CTA */
.welcome-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, var(--marine), #1f4a5e);
    color: white;
    text-decoration: none;
    border-radius: 60px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 15px 30px -10px rgba(10,46,63,0.4);
}

.welcome-cta i {
    transition: transform 0.3s ease;
}

.welcome-cta:hover {
    background: linear-gradient(135deg, #1f4a5e, var(--marine));
    transform: translateY(-5px);
    box-shadow: 0 25px 40px -15px rgba(10,46,63,0.6);
    gap: 1.5rem;
}

.welcome-cta:hover i {
    transform: translateX(8px);
}

/* Carte image */
.image-card {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 60px -20px rgba(10,46,63,0.5);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
}

.image-frame:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-10px);
    box-shadow: 0 50px 70px -20px rgba(10,46,63,0.7);
}

.image-wrapper {
    position: relative;
    height: 600px;
}

.welcome-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.image-frame:hover .welcome-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, 
        rgba(10,46,63,0.2) 0%,
        rgba(10,46,63,0.4) 100%);
    pointer-events: none;
}

/* Badges flottants */
.floating-badge {
    position: absolute;
    background: white;
    padding: 0.8rem 1.5rem;
    border-radius: 60px;
    box-shadow: 0 15px 30px -10px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    color: var(--marine);
    border: 2px solid white;
    backdrop-filter: blur(5px);
    z-index: 10;
    animation: float 3s ease-in-out infinite;
}

.floating-badge i {
    color: var(--accent);
    font-size: 1.2rem;
}

.badge-1 {
    top: 20px;
    left: 20px;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 80px;
    right: -20px;
    animation-delay: 0.5s;
    background: var(--accent);
    color: white;
}

.badge-2 i {
    color: white;
}

.badge-3 {
    bottom: 20px;
    left: 20px;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-8px) translateX(5px); }
}

/* Caption */
.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(10,46,63,0.9));
    color: white;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    letter-spacing: 1px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.image-frame:hover .image-caption {
    transform: translateY(0);
}

.image-caption i {
    color: var(--accent);
}

/* Barre de confiance */
.trust-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-top: 4rem;
    padding: 2rem;
    background: white;
    border-radius: 80px;
    box-shadow: 0 20px 40px -15px rgba(10,46,63,0.2);
    border: 1px solid rgba(181,138,91,0.1);
    position: relative;
    z-index: 3;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--marine);
    font-weight: 500;
}

.trust-item i {
    color: var(--accent);
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 968px) {
    .welcome-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .trust-bar {
        flex-direction: column;
        align-items: flex-start;
        border-radius: 40px;
        gap: 1rem;
    }
    
    .image-frame {
        transform: perspective(1000px) rotateY(0deg);
    }
    
    .badge-2 {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .welcome-section {
        padding: 4rem 1rem;
    }
    
    .main-card {
        padding: 2rem;
    }
    
    .image-wrapper {
        height: 450px;
    }
    
    .welcome-title {
        flex-direction: column;
        gap: 0;
    }
}
        /* sections */
        section { padding: 5rem 1.5rem; max-width: 1300px; margin: 0 auto; }
        .section-card {
            background: var(--white);
            border-radius: 48px 48px 48px 48px;
            box-shadow: var(--shadow-sm);
            padding: 3.5rem 3rem;
            transition: all 0.5s cubic-bezier(0.2, 0.9, 0.3, 1);
            border: 1px solid rgba(255,255,255,0.8);
            backdrop-filter: blur(4px);
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.9s, transform 0.9s;
            position: relative;
            overflow: hidden;
        }
        .section-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 8px;
            height: 100%;
            background: var(--accent);
            opacity: 0.5;
        }
        .section-card.animate-in {
            opacity: 1;
            transform: translateY(0);
            box-shadow: var(--shadow-hover);
        }
        .section-title {
            margin-bottom: 2rem;
            position: relative;
        }
        .section-title h2, .section-title h3 {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--marine);
            letter-spacing: -0.02em;
        }
        .section-title h3 i { color: var(--accent); margin-right: 12px; }
        .section-title:after {
            content: '';
            display: block;
            width: 100px;
            height: 4px;
            background: var(--accent);
            margin-top: 1rem;
            border-radius: 4px;
        }
        .section-card p {
            font-size: 1.2rem;
            color: #2d3e4b;
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .tm-news {
            border-radius: 32px;
            overflow: hidden;
            box-shadow: 0 20px 30px -10px rgba(0,0,0,0.2);
            margin: 2.5rem 0;
            transition: 0.4s;
        }
        .tm-news:hover { transform: scale(1.01); box-shadow: 0 25px 40px -10px var(--marine);}
        .tm-photo {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.7s;
        }
        .tm-photo:hover { transform: scale(1.03); }

        .represents {
            background: linear-gradient(145deg, #eef4f9, #ffffff);
            padding: 1.5rem 2rem;
            border-radius: 60px;
            font-size: 1.5rem;
            font-weight: 500;
            color: var(--marine);
            box-shadow: inset 0 1px 4px white, 0 12px 20px -12px rgba(0,32,64,0.3);
            display: inline-block;
            margin-top: 1rem;
            border: 1px solid rgba(181,138,91,0.3);
        }
        .represents i { color: var(--accent); margin-right: 12px; }

        #nosybe .sleepway {
            background: var(--gold-gradient);
            color: var(--marine);
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-size: 1.3rem;
            display: inline-block;
            margin-top: 1.8rem;
            font-weight: 600;
            box-shadow: 0 10px 18px -6px #0a2e3f;
            border: 1px solid rgba(255,215,0,0.3);
            transition: 0.3s;
        }
        #nosybe .sleepway:hover { transform: translateY(-4px); box-shadow: 0 18px 25px -8px var(--marine);}

        /* SECTION PRODUITS INTÉGRÉE AU CAROUSEL */
        .products-carousel-section {
            background: linear-gradient(145deg, #ffffff, #f0f7fd);
            border-radius: 80px;
            padding: 4rem 2rem;
            margin: 4rem auto;
            box-shadow: 0 30px 50px -20px rgba(10,46,63,0.4);
        }

        .products-carousel-title {
            text-align: center;
            margin-bottom: 3rem;
        }
        .products-carousel-title h2 {
            font-size: 3rem;
            color: var(--marine);
            font-weight: 700;
        }
        .products-carousel-title p {
            font-size: 1.3rem;
            color: #4c5a67;
            max-width: 700px;
            margin: 1rem auto 0;
        }

        .products-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .products-carousel {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            gap: 30px;
            padding: 20px 10px 40px;
            scrollbar-width: thin;
            scrollbar-color: var(--accent) #e0e0e0;
            -webkit-overflow-scrolling: touch;
        }
        .products-carousel::-webkit-scrollbar {
            height: 8px;
        }
        .products-carousel::-webkit-scrollbar-track {
            background: #e0e0e0;
            border-radius: 10px;
        }
        .products-carousel::-webkit-scrollbar-thumb {
            background: var(--accent);
            border-radius: 10px;
        }

        .product-card {
            flex: 0 0 320px;
            scroll-snap-align: start;
            background: white;
            border-radius: 32px;
            overflow: hidden;
            box-shadow: 0 15px 30px -8px rgba(0,0,0,0.2);
            transition: all 0.4s ease;
            cursor: pointer;
            border: 2px solid transparent;
        }
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 40px -8px rgba(10,46,63,0.4);
            border-color: var(--accent);
        }
        .product-card.active {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(181,138,91,0.3), 0 20px 30px -8px rgba(0,0,0,0.3);
        }

        .product-image {
            height: 240px;
            overflow: hidden;
            position: relative;
        }
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s;
        }
        .product-card:hover .product-image img {
            transform: scale(1.1);
        }
        .product-image .product-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--accent);
            color: white;
            padding: 5px 15px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.8rem;
            letter-spacing: 1px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }

        .product-info {
            padding: 25px 20px;
        }
        .product-info h3 {
            font-size: 1.8rem;
            color: var(--marine);
            margin-bottom: 15px;
            font-weight: 600;
        }
        .product-specs {
            list-style: none;
            margin-bottom: 20px;
        }
        .product-specs li {
            padding: 8px 0;
            border-bottom: 1px dashed #e0e0e0;
            color: #3f5563;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .product-specs li i {
            color: var(--accent);
            width: 20px;
            font-size: 1rem;
        }
        .product-specs li:last-child {
            border-bottom: none;
        }

        .product-detail-btn {
            display: inline-block;
            padding: 10px 25px;
            background: transparent;
            color: var(--marine);
            border: 2px solid var(--accent);
            border-radius: 50px;
            font-weight: 600;
            transition: 0.3s;
            width: 100%;
            text-align: center;
            cursor: pointer;
            font-size: 0.95rem;
        }
        .product-detail-btn:hover {
            background: var(--accent);
            color: white;
        }

        .carousel-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            z-index: 10;
            transition: 0.3s;
            font-size: 1.5rem;
            color: var(--marine);
        }
        .carousel-arrow:hover {
            background: var(--accent);
            color: white;
        }
        .carousel-arrow.left {
            left: -15px;
        }
        .carousel-arrow.right {
            right: -15px;
        }

        /* Section Nosy Be */
.nosybe-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.nosybe-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0a2e3f, #c49a6c, #0a2e3f);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #c49a6c;
    font-weight: 600;
    margin-bottom: 10px;
}

.nosybe-section .section-title {
    font-size: 2.5rem;
    color: #0a2e3f;
    margin-bottom: 15px;
    font-weight: 300;
}

.nosybe-section .section-title i {
    color: #c49a6c;
    margin-right: 10px;
}

.title-underline {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #c49a6c, transparent);
    margin: 0 auto;
    position: relative;
}

.title-underline i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #c49a6c;
    background: #f8f9fa;
    padding: 0 15px;
    font-size: 1rem;
}

.nosybe-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
    margin-bottom: 40px;
}

.nosybe-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.nosybe-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.12);
}

.main-card {
    padding: 40px;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(196, 154, 108, 0.1);
    padding: 8px 15px;
    border-radius: 50px;
    color: #0a2e3f;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 25px;
    border: 1px solid rgba(196, 154, 108, 0.3);
}

.location-badge i {
    color: #c49a6c;
}

.nosybe-description {
    margin-bottom: 30px;
}

.intro-text {
    font-size: 1.2rem;
    color: #2c3e50;
    line-height: 1.6;
    margin-bottom: 15px;
    font-weight: 400;
}

.highlight-text {
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
    padding-left: 15px;
    border-left: 3px solid #c49a6c;
    background: rgba(196, 154, 108, 0.05);
    padding: 15px;
    border-radius: 10px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-item:hover {
    background: white;
    border-color: rgba(196, 154, 108, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}

.service-text h4 {
    font-size: 1rem;
    color: #0a2e3f;
    margin-bottom: 5px;
    font-weight: 600;
}

.service-text p {
    font-size: 0.85rem;
    color: #666;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: #0a2e3f;
    color: white;
    border-radius: 12px;
    font-size: 0.95rem;
}

.trust-badge i {
    color: #c49a6c;
    font-size: 1.2rem;
}

/* Image Card */
.image-card {
    padding: 30px;
    background: linear-gradient(145deg, #ffffff 0%, #f5f5f5 100%);
}

.image-frame {
    position: relative;
    margin-bottom: 25px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.image-wrapper {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(10, 46, 63, 0.8) 0%, transparent 50%);
}

.sleepway-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #c49a6c;
    color: #0a2e3f;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.sleepway-badge i {
    margin-right: 8px;
    color: white;
}

.equipment-tag {
    position: absolute;
    right: 20px;
    background: white;
    color: #0a2e3f;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.tag-1 {
    top: 20px;
}

.tag-2 {
    top: 60px;
}

.sleepway-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    border: 1px solid rgba(196, 154, 108, 0.2);
}

.sleepway-icon {
    width: 60px;
    height: 60px;
    background: #0a2e3f;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c49a6c;
    font-size: 1.8rem;
}

.sleepway-content h3 {
    color: #0a2e3f;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.sleepway-desc {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.sleepway-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.sleepway-features span {
    font-size: 0.85rem;
    color: #0a2e3f;
}

.sleepway-features i {
    color: #c49a6c;
    margin-right: 5px;
    font-size: 0.8rem;
}

.hours-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    background: rgba(10, 46, 63, 0.05);
    border-radius: 50px;
    color: #0a2e3f;
    font-size: 0.9rem;
    border: 1px dashed #c49a6c;
}

.hours-badge i {
    color: #c49a6c;
}

.nosybe-cta {
    text-align: center;
    margin-top: 20px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #0a2e3f;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid transparent;
    margin-right: 15px;
}

.cta-button:hover {
    background: #c49a6c;
    color: #0a2e3f;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(196, 154, 108, 0.3);
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

.cta-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0a2e3f;
    text-decoration: none;
    font-weight: 500;
    padding: 15px 25px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-link:hover {
    background: rgba(10, 46, 63, 0.05);
    color: #c49a6c;
}

/* Responsive */
@media (max-width: 992px) {
    .nosybe-grid {
        grid-template-columns: 1fr;
    }
    
    .nosybe-section .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .main-card, .image-card {
        padding: 20px;
    }
    
    .service-item {
        flex-direction: column;
        text-align: center;
    }
    
    .sleepway-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .sleepway-features {
        justify-content: center;
    }
    
    .cta-button {
        display: flex;
        margin-right: 0;
        margin-bottom: 15px;
        justify-content: center;
    }
}

        /* SECTION BACKGROUND IMAGE */
.background-image-section {
    background-image: url('../Img/JTS1.jpeg'); /* Image par défaut */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Effet parallaxe */
    height: 80vh;
    min-height: 500px;
    width: 100%;
    max-width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 4rem 0;
    padding: 0;
    border-radius: 0;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.background-image-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(10,46,63,0.7) 0%, rgba(10,46,63,0.3) 100%);
    z-index: 1;
}

.background-image-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
    padding: 2rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    animation: fadeInUp 1.2s ease-out;
}

.background-image-content h2 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff, #f0e6d2);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.background-image-content p {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    color: var(--accent-light);
}

.btn-background {
    display: inline-block;
    padding: 15px 45px;
    background: transparent;
    color: white;
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: 0.3s;
    border-radius: 50px;
    border: 2px solid var(--accent);
    backdrop-filter: blur(5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.btn-background:hover {
    background: var(--accent);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(181,138,91,0.5);
    border-color: transparent;
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .background-image-section {
        background-attachment: scroll; /* Désactive parallaxe sur mobile */
        height: 70vh;
    }
    
    .background-image-content h2 {
        letter-spacing: 2px;
    }
    
    .btn-background {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

        /* MODAL DÉTAILS PRODUIT */
        .product-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10,46,63,0.9);
            backdrop-filter: blur(8px);
            z-index: 1000;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s;
        }
        .product-modal.show {
            display: flex;
            opacity: 1;
        }
        .modal-content {
            background: white;
            max-width: 900px;
            width: 90%;
            border-radius: 40px;
            overflow: hidden;
            position: relative;
            transform: scale(0.8);
            transition: transform 0.3s;
            box-shadow: 0 40px 60px rgba(0,0,0,0.5);
            max-height: 85vh;
            overflow-y: auto;
        }
        .product-modal.show .modal-content {
            transform: scale(1);
        }
        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--accent);
            color: white;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1.5rem;
            z-index: 10;
            transition: 0.3s;
            border: none;
        }
        .modal-close:hover {
            background: var(--marine);
            transform: rotate(90deg);
        }
        .modal-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            padding: 40px;
        }
        .modal-gallery {
            border-radius: 20px;
            overflow: hidden;
        }
        .modal-gallery img {
            width: 100%;
            height: 350px;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        .modal-thumbnails {
            display: flex;
            gap: 10px;
            margin-top: 15px;
        }
        .modal-thumb {
            width: 70px;
            height: 70px;
            border-radius: 10px;
            object-fit: cover;
            cursor: pointer;
            opacity: 0.7;
            transition: 0.3s;
            border: 2px solid transparent;
        }
        .modal-thumb:hover, .modal-thumb.active {
            opacity: 1;
            border-color: var(--accent);
        }
        .modal-details h2 {
            font-size: 2.5rem;
            color: var(--marine);
            margin-bottom: 20px;
        }
        .modal-details .modal-specs {
            list-style: none;
            margin: 25px 0;
        }
        .modal-details .modal-specs li {
            padding: 12px 0;
            border-bottom: 1px solid #e0e0e0;
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 1.1rem;
            color: #2d3e4b;
        }
        .modal-details .modal-specs li i {
            color: var(--accent);
            width: 25px;
            font-size: 1.3rem;
        }
        .modal-description {
            background: #f5f5f5;
            padding: 20px;
            border-radius: 20px;
            margin: 25px 0;
            line-height: 1.7;
            color: #2d3e4b;
        }
        .modal-contact-btn {
            display: inline-block;
            padding: 15px 40px;
            background: var(--accent);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: 0.3s;
            border: none;
            cursor: pointer;
            font-size: 1.1rem;
        }
        .modal-contact-btn:hover {
            background: var(--marine);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        @media (max-width: 768px) {
            .modal-grid {
                grid-template-columns: 1fr;
                padding: 25px;
            }
            .modal-gallery img {
                height: 250px;
            }
        }

       

        /* vidéo */
        .video-text-container {
            display: flex;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
        }
        .video-text {
            flex: 1;
            min-width: 280px;
            font-size: 1.2rem;
            line-height: 1.8;
            color: #2d3e4b;
        }
        .video-container {
            flex: 1;
            min-width: 320px;
            border-radius: 28px;
            overflow: hidden;
            box-shadow: 0 30px 30px -15px rgba(0,0,0,0.3);
            border: 3px solid var(--accent-light);
        }
        .video-container video {
            width: 100%;
            height: auto;
            display: block;
            transition: 0.5s;
        }
        .video-container:hover video { transform: scale(1.02); }

        /* ===============================
   SECTION ZAFINDRANO ARTISTIQUE
================================= */

.zafindrano-section {
    position: relative;
    background: 
        linear-gradient(rgba(10,46,63,0.75), rgba(10,46,63,0.75)),
        url('../Img/JTS1.jpeg') center/cover no-repeat fixed;
    padding: 120px 10%;
    border-radius: 80px 80px 0 0;
    overflow: hidden;
}

/* léger effet texture lumineux */
.zafindrano-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(181,138,91,0.25), transparent 60%);
    pointer-events: none;
}

.zafindrano-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
    z-index: 2;
}

/* ===============================
   TEXTE
================================= */

.zafindrano-text {
    width: 45%;
    min-width: 300px;
}

.zafindrano-text h2 {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 5px;
    margin-bottom: 25px;
    color: white;
    text-shadow: 2px 4px 15px rgba(0,0,0,0.6);
}

.zafindrano-text p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #f0f0f0;
    margin-bottom: 25px;
}

/* ===============================
   BOUTON
================================= */

.btn-zafindrano {
    display: inline-block;
    padding: 14px 40px;
    background: var(--accent);
    color: white;
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 14px;
    transition: 0.4s;
    border-radius: 40px;
    font-weight: 600;
    border: 1px solid transparent;
    box-shadow: 0 8px 20px rgba(181,138,91,0.4);
}

.btn-zafindrano:hover {
    background: #9e6f42;
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(181,138,91,0.6);
    border-color: var(--accent-light);
}

/* ===============================
   IMAGES FLOTTANTES
================================= */

.zafindrano-images {
    position: relative;
    width: 50%;
    min-width: 300px;
    height: 500px;
}

.zafindrano-images img {
    width: 70%;
    border-radius: 20px;
    box-shadow: 0 25px 40px -10px rgba(0,0,0,0.45);
    position: absolute;
    transition: all 0.5s cubic-bezier(0.2,0.9,0.3,1);
    animation: float 3.5s ease-in-out infinite;
    border: 3px solid white;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-14px); }
}

.img-top { top: 0; left: 0; z-index: 3; animation-delay: 0s; }
.img-middle { top: 120px; left: 120px; z-index: 2; animation-delay: 0.2s; }
.img-bottom { top: 240px; left: 40px; z-index: 1; animation-delay: 0.4s; }

.zafindrano-images:hover img {
    animation-play-state: paused;
}

.zafindrano-images img:hover {
    transform: scale(1.08) translateY(-8px);
    z-index: 10;
    box-shadow: 0 35px 60px -5px #0a2e3f;
}

/* ===============================
   RESPONSIVE
================================= */

@media(max-width: 992px) {
    .zafindrano-container {
        flex-direction: column;
        text-align: center;
    }

    .zafindrano-text,
    .zafindrano-images {
        width: 100%;
    }

    .zafindrano-images {
        height: 420px;
        margin-top: 40px;
    }
}
        /* footer */
        footer {
            background: var(--footer-bg);
            color: #b0c4d9;
            padding: 5rem 1.5rem 3rem;
            margin-top: 4rem;
            border-top: 6px solid var(--accent);
            position: relative;
        }
        footer::before {
            content: '';
            position: absolute;
            top: -6px;
            left: 0;
            width: 100%;
            height: 6px;
            background: linear-gradient(90deg, var(--accent), #f5e2c1, var(--accent));
        }
        .footer-content {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 2.5rem;
        }
        .footer-logo {
            display: flex;
            align-items: center;
            gap: 18px;
            font-size: 2.2rem;
            font-weight: 700;
            color: white;
        }
        .footer-logo img { height: 65px; border-radius: 15px; box-shadow: 0 0 0 2px var(--accent); }
        .footer-links { display: flex; gap: 2.8rem; flex-wrap: wrap; justify-content: center; }
        .footer-links a { color: #cddfeb; text-decoration: none; font-weight: 500; transition: 0.2s; font-size: 1.2rem; }
        .footer-links a:hover { color: var(--accent); transform: translateY(-2px); }
        .social-icons a {
            color: white;
            background: #1e4053;
            width: 48px;
            height: 48px;
            border-radius: 50px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin: 0 8px;
            transition: 0.3s;
            font-size: 1.3rem;
        }
        .social-icons a:hover { background: var(--accent); transform: translateY(-6px) scale(1.1); }
        .copyright { color: #7b98aa; font-size: 1rem; }
        .order-note { color: #9bb7c9; font-style: italic; font-size: 1.1rem; }

        /* mobile */
        @media (max-width: 768px) {
            .nav-links { display: none; position: absolute; top: 80px; left: 0; width: 100%; background: white; flex-direction: column; align-items: center; gap: 1rem; padding: 2rem; box-shadow: 0 20px 30px rgba(0,0,0,0.1); border-top: 2px solid var(--accent); }
            .nav-links.active { display: flex; }
            .mobile-menu-toggle { display: flex; }
            .section-card { padding: 2rem 1.2rem; }
            .section-title h2 { font-size: 2.2rem; }
            .represents { font-size: 1.2rem; padding: 1rem 1.5rem; }
            .zafindrano-container { flex-direction: column-reverse; }
            .zafindrano-images { height: 450px; width: 100%; }
            .zafindrano-images img { width: 65%; }
            .carousel-arrow.left { left: 0; }
            .carousel-arrow.right { right: 0; }
        }

        .fas, .far, .fab { transition: 0.2s; }
    
         /* Styles supplémentaires pour les nouveaux éléments */
        .products-carousel-section {
            background: linear-gradient(145deg, #ffffff, #f0f7fd);
            border-radius: 80px;
            padding: 4rem 2rem;
            margin: 4rem auto;
            box-shadow: 0 30px 50px -20px rgba(10,46,63,0.4);
        }

        .products-carousel-title {
            text-align: center;
            margin-bottom: 3rem;
        }
        .products-carousel-title h2 {
            font-size: 3rem;
            color: var(--marine);
            font-weight: 700;
        }
        .products-carousel-title p {
            font-size: 1.3rem;
            color: #4c5a67;
            max-width: 700px;
            margin: 1rem auto 0;
        }

        .products-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .products-carousel {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            gap: 30px;
            padding: 20px 10px 40px;
            scrollbar-width: thin;
            scrollbar-color: var(--accent) #e0e0e0;
            -webkit-overflow-scrolling: touch;
        }
        .products-carousel::-webkit-scrollbar {
            height: 8px;
        }
        .products-carousel::-webkit-scrollbar-track {
            background: #e0e0e0;
            border-radius: 10px;
        }
        .products-carousel::-webkit-scrollbar-thumb {
            background: var(--accent);
            border-radius: 10px;
        }

        .product-card {
            flex: 0 0 320px;
            scroll-snap-align: start;
            background: white;
            border-radius: 32px;
            overflow: hidden;
            box-shadow: 0 15px 30px -8px rgba(0,0,0,0.2);
            transition: all 0.4s ease;
            cursor: pointer;
            border: 2px solid transparent;
        }
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 40px -8px rgba(10,46,63,0.4);
            border-color: var(--accent);
        }
        .product-card.active {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(181,138,91,0.3), 0 20px 30px -8px rgba(0,0,0,0.3);
        }

        .product-image {
            height: 240px;
            overflow: hidden;
            position: relative;
        }
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s;
        }
        .product-card:hover .product-image img {
            transform: scale(1.1);
        }
        .product-image .product-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--accent);
            color: white;
            padding: 5px 15px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.8rem;
            letter-spacing: 1px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }

        .product-info {
            padding: 25px 20px;
        }
        .product-info h3 {
            font-size: 1.8rem;
            color: var(--marine);
            margin-bottom: 15px;
            font-weight: 600;
        }
        .product-specs {
            list-style: none;
            margin-bottom: 20px;
        }
        .product-specs li {
            padding: 8px 0;
            border-bottom: 1px dashed #e0e0e0;
            color: #3f5563;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .product-specs li i {
            color: var(--accent);
            width: 20px;
            font-size: 1rem;
        }
        .product-specs li:last-child {
            border-bottom: none;
        }

        .product-detail-btn {
            display: inline-block;
            padding: 10px 25px;
            background: transparent;
            color: var(--marine);
            border: 2px solid var(--accent);
            border-radius: 50px;
            font-weight: 600;
            transition: 0.3s;
            width: 100%;
            text-align: center;
            cursor: pointer;
            font-size: 0.95rem;
        }
        .product-detail-btn:hover {
            background: var(--accent);
            color: white;
        }

        .carousel-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            z-index: 10;
            transition: 0.3s;
            font-size: 1.5rem;
            color: var(--marine);
        }
        .carousel-arrow:hover {
            background: var(--accent);
            color: white;
        }
        .carousel-arrow.left {
            left: -15px;
        }
        .carousel-arrow.right {
            right: -15px;
        }

        /* MODAL DÉTAILS PRODUIT */
        .product-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10,46,63,0.9);
            backdrop-filter: blur(8px);
            z-index: 1000;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s;
        }
        .product-modal.show {
            display: flex;
            opacity: 1;
        }
        .modal-content {
            background: white;
            max-width: 900px;
            width: 90%;
            border-radius: 40px;
            overflow: hidden;
            position: relative;
            transform: scale(0.8);
            transition: transform 0.3s;
            box-shadow: 0 40px 60px rgba(0,0,0,0.5);
            max-height: 85vh;
            overflow-y: auto;
        }
        .product-modal.show .modal-content {
            transform: scale(1);
        }
        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--accent);
            color: white;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1.5rem;
            z-index: 10;
            transition: 0.3s;
            border: none;
        }
        .modal-close:hover {
            background: var(--marine);
            transform: rotate(90deg);
        }
        .modal-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            padding: 40px;
        }
        .modal-gallery {
            border-radius: 20px;
            overflow: hidden;
        }
        .modal-gallery img {
            width: 100%;
            height: 350px;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        .modal-thumbnails {
            display: flex;
            gap: 10px;
            margin-top: 15px;
            flex-wrap: wrap;
        }
        .modal-thumb {
            width: 70px;
            height: 70px;
            border-radius: 10px;
            object-fit: cover;
            cursor: pointer;
            opacity: 0.7;
            transition: 0.3s;
            border: 2px solid transparent;
        }
        .modal-thumb:hover, .modal-thumb.active {
            opacity: 1;
            border-color: var(--accent);
        }
        .modal-details h2 {
            font-size: 2.5rem;
            color: var(--marine);
            margin-bottom: 20px;
        }
        .modal-details .modal-specs {
            list-style: none;
            margin: 25px 0;
        }
        .modal-details .modal-specs li {
            padding: 12px 0;
            border-bottom: 1px solid #e0e0e0;
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 1.1rem;
            color: #2d3e4b;
        }
        .modal-details .modal-specs li i {
            color: var(--accent);
            width: 25px;
            font-size: 1.3rem;
        }
        .modal-description {
            background: #f5f5f5;
            padding: 20px;
            border-radius: 20px;
            margin: 25px 0;
            line-height: 1.7;
            color: #2d3e4b;
        }
        .modal-contact-btn {
            display: inline-block;
            padding: 15px 40px;
            background: var(--accent);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: 0.3s;
            border: none;
            cursor: pointer;
            font-size: 1.1rem;
        }
        .modal-contact-btn:hover {
            background: var(--marine);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        @media (max-width: 768px) {
            .modal-grid {
                grid-template-columns: 1fr;
                padding: 25px;
            }
            .modal-gallery img {
                height: 250px;
            }
            .carousel-arrow.left { left: 0; }
            .carousel-arrow.right { right: 0; }
        }