/* ========================================
   GOOGLE FONTS
   ======================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;800&family=Lato:wght@400;500&family=Dancing+Script:wght@400;700&display=swap');

/* ========================================
   RESET & BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a{
    text-decoration: none;
}
:root {
    /* Colors */
    --color-primary: #2B44A7;
    --color-secondary: #1E40AF;
    --color-accent-red: #EF4444;
    --color-accent-orange: #F97316;
    --color-dark: #1F2937;
    --color-gray: #6B7280;
    --color-light-gray: #F3F4F6;
    --color-white: #FFFFFF;
    --color-black: #111827;

    /* Bracelet colors */
    --color-bracelet-blue: #3B82F6;
    --color-bracelet-red: #EF4444;
    --color-bracelet-orange: #F97316;
    --color-bracelet-black: #1F2937;
    --color-bracelet-green: #10B981;
    --color-bracelet-purple: #8B5CF6;

    /* Typography */
    --font-family: Plato, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-size-base: 16px;
    --font-size-sm: 0.875rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;
    --font-size-5xl: 3rem;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --spacing-4xl: 5rem;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

    /* Border radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition-base: all 0.3s ease;
    --transition-fast: all 0.15s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-white);
    overflow-x: hidden;
}

p{
    color : #1C274C !important;
    text-align: start;
     line-height: 1.5 !important    ;
}

h1, h2, h3 {
    font-family: Montserrat !important;
}
/* ========================================
   UTILITIES
   ======================================== */
.search-toggle {
    display: none !important;
}
       .hero-content {
    /* Texte à droite */
    display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: 2rem 0 !important;
    /* padding: var(--spacing-3xl) 0; */
}

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

.cp {
    color: var(--color-primary);
    font-weight: bold;
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    color: var(--color-primary);
}

/* Typography */
.section-title {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.section-subtitle {
       font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0%;
    color: #1C274C;
    text-align: left;
    margin-bottom: var(--spacing-xl);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: var(--font-size-base);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

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

.btn-large {
    padding: 1rem 2rem;
    font-size: var(--font-size-lg);
}

.btn-block {
    width: 100%;
    display: block;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-base);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem var(--spacing-md);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: var(--transition-fast);
}

.nav-logo:hover {
    opacity: 0.8;
}

.nav-logo-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.nav-logo-img {
    width: 40px;
    height: auto;
}

.nav-logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1F2937;
}

.nav-menu {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: start;
    margin-top: 0 !important;
}


.nav-link {
    font-family: Lato;
    color: #1F2937;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition-fast);
    position: relative;
    white-space: nowrap;
}

.nav-link:hover {
    color: #2B44A7;
}

/* Actions à droite du header */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Bouton sélecteur de langue */
.language-selector {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    border-radius: 50%;
}

.language-selector:hover {
    background: #F3F4F6;
}

.language-selector svg {
    width: 24px;
    height: 24px;
}

/* Bouton Inscription */
.btn-inscription {
    padding: 10px 24px;
    border: 2px solid #2B44A7;
    border-radius: 25px;
    background: transparent;
    color: #2B44A7;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-inscription:hover {
    background: #2B44A7;
    color: white;
    transform: translateY(-1px);
}

/* Bouton Connexion */
.btn-connexion {
    padding: 10px 24px;
    border: 2px solid #2B44A7;
    border-radius: 25px;
    background: #2B44A7;
    color: white;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-connexion:hover {
    background: #1E3A8A;
    border-color: #1E3A8A;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(43, 68, 167, 0.3);
}

.nav-toggle {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.hamburger-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.toggle-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.nav-close {
    display: none;
    font-size: var(--font-size-2xl);
    cursor: pointer;
    color: var(--color-dark);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    padding-top: 0;
    /* padding-bottom: var(--spacing-3xl); */
    background: var(--color-white);
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

/* Desktop: Image à droite, contenu à gauche */
@media screen and (min-width: 969px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-3xl);
    }

    .hero-image {
        order: 2;
    }
}

.hero-content {
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-size: var(--font-size-2xl);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
}

.hero-description {
    font-size: var(--font-size-lg);
    color: var(--color-gray);
    margin-bottom: var(--spacing-xl);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease;
    max-width: 600px;
    width: 100%;
}

.hero-title-bottom {
    font-family: 'Montserrat', sans-serif;
    font-size: 27px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0%;
    color: #2B44A7;
    text-align: center;
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 10;
}

.hero-description-bottom {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0%;
    color: #1C274C;
    text-align: center;
    max-width: 500px;
    margin: 20px auto;
    position: relative;
    z-index: 10;
    margin-bottom: var(--spacing-lg);
}

.btn-precommande {
    display: inline-block;
    width: 212px;
    height: 52px;
    background: linear-gradient(90deg, #2B44A7 0%, #0467cf 84%);
    color: var(--color-white);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 35px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-precommande:hover {
    border: 2px solid #2B44A7;
    transform: translateY(-2px);
    background: white;
    color: #2B44A7;
    box-shadow: var(--shadow-lg);
}
/* 
.btn-inscription {
    padding: 10px 24px;
    border: 2px solid #2B44A7;
    border-radius: 25px;
    background: transparent;
    color: #2B44A7;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
}

.btn-inscription:hover {
    background: #2B44A7;
    color: white;
    transform: translateY(-1px);
} */
.bracelet-showcase {
    position: relative;
    width: 100%;
    max-width: 450px;
    display: flex;
    align-items: top;
    justify-content: center;
    padding: var(--spacing-xl);
    margin-bottom: -6rem;
}

.packaging-background {
    position: absolute;
    width: 86%;
    height: auto;
    object-fit: contain;
    filter: blur(2px);
    opacity: 0.4;
    z-index: 1;
}

.product-image {
    position: relative;
    width: 120%;
    height: auto;
    object-fit: contain;
    animation: floatImage 3s ease-in-out infinite;
    transition: var(--transition-base);
    z-index: 2;
    top: 42px;
}

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

/* ========================================
   INTRO SECTION
   ======================================== */
.intro {
    background: var(--color-white);
    padding: var(--spacing-2xl) 0;
}

.intro-content-center {
    max-width: 600px;
    margin: 0;
}

.intro-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0%;
    color: #2B44A7;
    margin-bottom: var(--spacing-md);
    text-align: left;
}

.intro-text-center {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0%;
    color: #1C274C;
    text-align: left;
    margin-bottom: var(--spacing-xl);
}

.intro-text-center strong {
    font-weight: 800;
}

.intro-divider {
    width: 120px;
    height: 0;
    border: none;
    border-top: 4px solid #2B44A7;
    margin: 0;
    border-radius: 0 4px 4px 0;
}

/* ========================================
   BRACELET IMAGE SECTION
   ======================================== */
.bracelet-section {
    background: var(--color-white);
    padding: var(--spacing-sm) 0 var(--spacing-2xl);
}

.bracelet-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bracelet-image-center {
    width: 150%;
    max-width: none;
    height: auto;
    object-fit: contain;
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */
.how-it-works {
    background: var(--color-white);
}

.how-it-works-header {
    max-width: 600px;
    margin: 0 auto 1rem 0;
}

.how-it-works-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0%;
    color: #2B44A7;
    margin-bottom: var(--spacing-md);
    text-align: left;
}

.how-it-works-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0%;
    color: #1C274C;
    text-align: left;
    margin-bottom: var(--spacing-xl);
    
}

.how-it-works-divider {
    width: 120px;
    height: 0;
    border: none;
    border-top: 4px solid #2B44A7;
    margin: 0;
    border-radius: 0 4px 4px 0;
}

.steps-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.step-item {
    text-align: center;
    max-width: 400px;
}

.step-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 70px;
    font-weight: 700;
    line-height: 100%;
    color: #2B44A7;
    margin-bottom: var(--spacing-sm);
}

.step-title {
     font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0%;
    color: #2B44A7;
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.step-description {
    font-family: 'Lato', sans-serif;
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-dark);
    line-height: 1.5;
    text-align: center;
}

.step-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: var(--spacing-sm) 0;
}

.arrow-icon {
    width: 24px;
    height: 24px;
}

/* ========================================
   ADVANTAGES SECTION
   ======================================== */
.advantages {
    background: var(--color-white);
}

.advantages-header {
    max-width: 600px;
    margin: 0 auto var(--spacing-xl) 0;
}

.advantages-title {
     font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0%;
    color: #2B44A7;
    margin-bottom: var(--spacing-md);
    text-align: left;
}

.advantages-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0%;
    color: #1C274C;
    text-align: left;
    margin-bottom: var(--spacing-xl);
}

.advantages-subtitle strong {
    font-weight: 800;
}

.advantages-divider {
    width: 120px;
    height: 0;
    border: none;
    border-top: 4px solid #2B44A7;
    margin: 0;
    border-radius: 0 4px 4px 0;
}

.advantages-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
    padding-left: var(--spacing-md);
}

.advantage-item {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.advantage-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.advantage-svg {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.advantage-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0;
}

.advantage-description {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-dark);
    line-height: 1.5;
    margin: 0;
    padding-left: 48px;
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features {
    background: var(--color-white);
}

.features-header {
    max-width: 600px;
    margin: 0 auto var(--spacing-xl) 0;
}

.features-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0%;
    color: #2B44A7;
    margin-bottom: var(--spacing-md);
    text-align: left;
}

.features-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0%;
    color: #1C274C;
    text-align: left;
    margin-bottom: var(--spacing-xl);
}

.features-divider {
    width: 120px;
    height: 0;
    border: none;
    border-top: 4px solid #2B44A7;
    margin: 0;
    border-radius: 0 4px 4px 0;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
    padding-left: var(--spacing-md);
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.feature-svg {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.feature-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0;
}

.feature-description {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-dark);
    line-height: 1.5;
    margin: 0;
    padding-left: 48px;
}
/* ========================================
   COLLECTION SECTION
   ======================================== */
.collection {
    background: var(--color-white);
    overflow: hidden;
}

.collection-header {
    max-width: 600px;
    margin: 0 auto var(--spacing-xl) 0;
}

.collection-title {
     font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0%;
    color: #2B44A7;
    margin-bottom: var(--spacing-md);
    text-align: left;
}

.collection-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0%;
    color: #1C274C;
    text-align: left;
    margin-bottom: var(--spacing-xl);
}

.collection-divider {
    width: 120px;
    height: 0;
    border: none;
    border-top: 4px solid #2B44A7;
    margin: 0;
    border-radius: 0 4px 4px 0;
}

.collection-bracelets {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-2xl);
    padding: 0 var(--spacing-md);
    overflow: visible;
    max-width: 100%; /* Empêche le débordement */
}

/* Masquer la scrollbar mais garder la fonctionnalité
.collection-bracelets::-webkit-scrollbar {
    height: 6px;
}

.collection-bracelets::-webkit-scrollbar-track {
    background: #F3F4F6;
    border-radius: 10px;
}

.collection-bracelets::-webkit-scrollbar-thumb {
    background: #2B44A7;
    border-radius: 10px;
}

.collection-bracelets::-webkit-scrollbar-thumb:hover {
    background: #1E3A8A;
} */

.bracelet-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    cursor: pointer;
    padding: var(--spacing-sm);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    min-width: 0; /* Permet la compression */
    width: 100%; /* Prend toute la largeur disponible */
    box-sizing: border-box; /* Inclut padding dans la largeur */
}

.bracelet-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(43, 68, 167, 0.05), rgba(43, 68, 167, 0.02));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bracelet-item:hover::before {
    opacity: 1;
}

.bracelet-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(43, 68, 167, 0.15);
}

.bracelet-item.active {
    background: linear-gradient(135deg, rgba(43, 68, 167, 0.08), rgba(43, 68, 167, 0.03));
    box-shadow: 0 8px 24px rgba(43, 68, 167, 0.2);
}

.bracelet-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%; /* S'adapte au conteneur */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-sm);
    transition: all 0.4s ease;
}

.bracelet-item:hover .bracelet-image-wrapper {
    transform: scale(1.1) rotate(3deg);
}

.bracelet-collection-img {
    width: 100%;
    max-width: 180px;
    height: auto;
    aspect-ratio: 3/4; /* Garde les proportions */
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    transition: all 0.4s ease;
}

.bracelet-collection-img-all {
    width: 100%;
    height: auto;
    max-height: 80vh;
    /* aspect-ratio: 3/4; Garde les proportions */
    object-fit: contain;
    /* filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1)); */
    /* transition: all 0.4s ease; */
}

.bracelet-item:hover .bracelet-collection-img {
    filter: drop-shadow(0 15px 30px rgba(43, 68, 167, 0.3));
}

.bracelet-color-indicator {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    position: relative;
}

.bracelet-color-indicator::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.bracelet-item:hover .bracelet-color-indicator,
.bracelet-item.active .bracelet-color-indicator {
    transform: scale(1.15);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.bracelet-item.active .bracelet-color-indicator::after {
    border-color: #2B44A7;
}

.bracelet-color-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #2B44A7;
    text-align: center;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.bracelet-item:hover .bracelet-color-name,
.bracelet-item.active .bracelet-color-name {
    color: #1E3A8A;
    font-weight: 700;
    transform: scale(1.05);
}

/* Animation au clic */
.bracelet-item.clicked {
    animation: clickPulse 0.6s ease;
}

@keyframes clickPulse {
    0% {
        transform: scale(1) translateY(0);
    }
    25% {
        transform: scale(0.95) translateY(5px);
    }
    75% {
        transform: scale(1.08) translateY(-15px);
    }
    100% {
        transform: scale(1.02) translateY(-12px);
    }
}
/* ========================================
   SECURITY ALLY SECTION
   ======================================== */
.security-ally {
    background: var(--color-white);
}

.security-header {
    max-width: 600px;
    margin: 0 auto var(--spacing-xl) 0;
}

.security-item {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.sector-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.sector-description {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-dark);
    line-height: 1.5;
    margin: 0;
    padding-left: 48px;
}

.security-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0%;
    color: #2B44A7;
    margin-bottom: var(--spacing-md);
    text-align: left;
}

.security-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0%;
    color: #1C274C;
    text-align: left;
    margin-bottom: var(--spacing-xl);
}

.security-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
    padding-left: var(--spacing-md);
}

.security-item {
    
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.check-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    margin-top: 2px;
}

.security-text {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-dark);
    line-height: 1.5;
    margin: 0;
}

/* ========================================
   SECTORS SECTION
   ======================================== */
.sectors {
    background: var(--color-white);
}

.sectors-header {
    max-width: 600px;
    margin: 0 auto var(--spacing-xl) 0;
}

.sectors-title {
     font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0%;
    color: #2B44A7;
    margin-bottom: var(--spacing-md);
    text-align: left;
}

.sectors-divider {
    width: 120px;
    height: 0;
    border: none;
    border-top: 4px solid #2B44A7;
    margin: 0;
    border-radius: 0 4px 4px 0;
}

.sectors-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0%;
    color: #1C274C;
    text-align: left;
    margin-bottom: var(--spacing-xl);
}
.sectors-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
    padding-left: var(--spacing-md);
}



.sector-svg {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.sector-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0;
}
.sector-item {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.sector-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.sector-description {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-dark);
    line-height: 1.5;
    margin: 0;
    padding-left: 48px;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.sector-card {
    background: var(--color-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.sector-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.sector-icon {
    font-size: 64px;
    margin-bottom: var(--spacing-md);
}

.sector-title {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--color-primary);
}

.sector-description {
    color: var(--color-gray);
    line-height: 1.8;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq {
    background: var(--color-white);
}

.faq-header {
    max-width: 600px;
    margin: 0 auto var(--spacing-xl) 0;
}

.faq-title {
     font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0%;
    color: #2B44A7;
    margin-bottom: var(--spacing-md);
    text-align: left;
}

.faq-divider {
    width: 120px;
    height: 0;
    border: none;
    border-top: 4px solid #2B44A7;
    margin: 0;
    border-radius: 0 4px 4px 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.faq-item {
    display: flex;
    flex-direction: column;
    /* gap: var(--spacing-xs); */
}

.faq-question {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0;
}

.faq-answer {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-dark);
    line-height: 1.5;
    margin: 0;
}

.faq-footer {
    margin-top: var(--spacing-xl);
    margin-left: auto;
    margin-right: auto;
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-dark);
    line-height: 1.5;
    letter-spacing: 0%;
    text-align: center;
    background: #FBFAFA;
    padding: var(--spacing-lg);
    border-radius: 10px;
    max-width: 343px;
}

.faq-contact-link {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: #2B44A7;
    text-decoration: none;
}

.faq-help {
    margin-top: var(--spacing-sm);
}

/* ========================================
   DISTRIBUTION SECTION
   ======================================== */
.distribution {
    background: var(--color-white);
}

.distribution-header {
    max-width: 600px;
    margin: 0 auto var(--spacing-xl) 0;
}

.distribution-title {
     font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0%;
    color: #2B44A7;
    margin-bottom: var(--spacing-md);
    text-align: left;
}

.distribution-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0%;
    color: #1C274C;
    text-align: left;
    margin-bottom: var(--spacing-xl);
}

.distribution-divider {
    width: 120px;
    height: 0;
    border: none;
    border-top: 4px solid #2B44A7;
    margin: 0;
    border-radius: 0 4px 4px 0;
}

.distribution-content {
    margin-top: var(--spacing-xl);
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: center;
}

/* Desktop: Image et contenu côte à côte */
@media screen and (min-width: 969px) {
    .distribution-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-3xl);
    }
}

.distribution-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    margin-bottom: var(--spacing-lg);
}

.distribution-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #2B44A7;
    margin-bottom: var(--spacing-sm);
}

.distribution-text {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-dark);
    line-height: 1.5;
    margin-bottom: var(--spacing-lg);
}

.distribution-box {
    background: #FBFAFA;
    padding: var(--spacing-lg);
    border-radius: 10px;
}

.distribution-box p {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-dark);
    line-height: 1.5;
    margin: 0;
}

.distribution-box strong {
    font-weight: 800;
}

/* ========================================
   PREORDER SECTION
   ======================================== */
.preorder {
    background: var(--color-white);
}

.preorder-header {
    max-width: 600px;
    margin: 0 auto var(--spacing-xl) 0;
}

.preorder-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0%;
    color: #2B44A7;
    margin-bottom: var(--spacing-md);
    text-align: left;
}

.preorder-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0%;
    color: #1C274C;
    text-align: left;
    margin-bottom: var(--spacing-xl);
}

.preorder-subtitle strong {
    font-weight: 800;
}

.preorder-divider {
    width: 120px;
    height: 0;
    border: none;
    border-top: 4px solid #2B44A7;
    margin: 0;
    border-radius: 0 4px 4px 0;
}

.preorder-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.preorder-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    margin: 0;
}

.btn-precommande-large {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 212px;
    height: 52px;
    background: linear-gradient(90deg, #2B44A7 0%, #0467cf 84%);
    color: var(--color-white);
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 35px;
    transition: var(--transition-base);
    box-shadow: var(--shadow-md);
    margin: 0 auto;
    align-self: center;
}

.btn-precommande-large:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   NEWSLETTER SECTION
   ======================================== */
.newsletter {
    background: var(--color-white);
}

.newsletter-header {
    max-width: 600px;
    margin: 0 auto var(--spacing-xl) 0;
}

.newsletter-title {
     font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0%;
    color: #2B44A7;
    margin-bottom: var(--spacing-md);
    text-align: left;
}

.newsletter-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0%;
    color: #1C274C;
    text-align: left;
    margin-bottom: var(--spacing-xl);
}

.newsletter-divider {
    width: 120px;
    height: 0;
    border: none;
    border-top: 4px solid #2B44A7;
    margin: 0;
    border-radius: 0 4px 4px 0;
}

.newsletter-form-container {
    margin-top: var(--spacing-xl);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    max-width: 400px;
}

.newsletter-input {
    padding: 0.75rem 1rem;
    border: 1px solid #E0E0E0;
    border-radius: 5px;
    font-size: 14px;
    font-family: 'Lato', sans-serif;
}

.newsletter-input:focus {
    outline: none;
    border-color: #2B44A7;
}

.btn-newsletter {
    width: 212px;
    height: 52px;
    background: linear-gradient(90deg, #2B44A7 0%, #0467cf 84%);
    color: var(--color-white);
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 35px;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: var(--shadow-md);
    align-self: center;
}

.btn-newsletter:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: #FBFAFA;
    padding: 2rem 0;
    border-top: 1px solid #E5E5E5;
}

.footer-box {
    background: #FBFAFA;
    border: 1px solid #D9D9D9;
    border-radius: 18px;
    padding: 2rem 2.5rem;
    box-shadow: 0 25px 11px rgba(0, 0, 0, 0.06);
    max-width: 100%;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
    align-items: start;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.5rem;
}

.logo-icon {
    width: 35px;
    height: auto;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #2B44A7;
}

.footer-signature {
    max-width: 140px;
    height: auto;
    margin: 0.5rem 0;
}

.footer-social {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.social-icon:hover {
    transform: scale(1.15);
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    text-align: right;
}

.footer-company {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 800;
    color: #000000;
    margin: 0;
    line-height: 1.4;
    letter-spacing: 0.3px;
}

.footer-address,
.footer-email,
.footer-phone {
    font-family: 'Lato', sans-serif;
    font-size: 10px;
    font-weight: 400;
    color: #1C274C;
    margin: 0;
    line-height: 1.4;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: #D9D9D9;
    margin: 1.5rem 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    font-family: 'Lato', sans-serif;
    font-size: 11px;
    color: #999999;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    font-family: 'Lato', sans-serif;
    font-size: 11px;
    color: #2B44A7;
    text-decoration: none;
    transition: all 0.15s ease;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* ========================================
   SCROLL TO TOP BUTTON
   ======================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 32px;
    height: 32px;
    background: transparent;
    color: #2B44A7;
    border: 2px solid #2B44A7;
    border-radius: var(--radius-full);
    font-size: 16px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(24%) sepia(68%) saturate(2300%) hue-rotate(220deg) brightness(93%) contrast(95%);
    transform: rotate(180deg);
}

.scroll-top:hover {
    background: #2B44A7;
    color: var(--color-white);
    transform: translateY(-5px);
}

.scroll-top:hover .scroll-icon {
    filter: brightness(0) invert(1);
}
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.2;
    }
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(30px);
    }
    50% {
        transform: translateY(15px);
    }
}

/* Scroll reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   LARGE SCREENS OPTIMIZATION (1440px+)
   ======================================== */
@media screen and (min-width: 1440px) {
    .container {
        max-width: 1400px;
        padding: 0 var(--spacing-xl);
    }

    .section {
        padding: var(--spacing-4xl) 0;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-description {
        font-size: 1.25rem;
    }

    /* Meilleurs espacements pour grands écrans */
    .steps-grid,
    .advantages-list,
    .features-list,
    .sectors-list {
        gap: var(--spacing-3xl);
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
/* ========================================
   RESPONSIVE - TABLETTES (968px et moins)
   ======================================== */
@media screen and (max-width: 968px) {
    .container {
        max-width: 720px;
    }

    /* Cacher les boutons et l'icône de langue sur mobile */
    .language-selector,
    .btn-inscription,
    .btn-connexion {
        display: none;
    }
    /* Quand le filtre est actif */
body.body-filtered::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* assombrissement léger */
  filter: blur(6px);
  z-index: 1;
  pointer-events: none;
}

/* Le menu reste net */
.nav-menu {

}


    .nav-menu {
          position: relative;
  z-index: 2;
        position: fixed;
        top: 25px;
        right: -100%;
        width: 280px;
        max-height: calc(100vh - 160px);
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
        padding: var(--spacing-md) var(--spacing-md);
        transition: right 0.4s ease;
        z-index: 1000;
        overflow-y: auto;
        border-top-left-radius: 16px;
        border-bottom-left-radius: 16px;
        justify-content: flex-start;
        background-color: var(--color-primary);
        display: flex;
        justify-content: start;
        align-items: start;
        
    }

    .nav-menu.desktop {
        display: none;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        margin-top: var(--spacing-md);
        width: 100%;
    }

    .nav-link {
        color: #FFFFFF !important;
        font-size: 13px;
        font-weight: 600;
        padding: 0.6rem 0;
        display: block;
        transition: all 0.3s ease;
    }

    .hr {
        border: 1px solid white;
        width: 100%;
    }
    

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

    .nav-link:hover {
        color: #004999;
        padding-left: var(--spacing-sm);
    }

    .nav-toggle {
        display: block;
    }

    .nav-close {
        display: block;
        /* position: absolute; */
        top: var(--spacing-md);
        right: var(--spacing-lg);
        color: #FFFFFF;
        font-size: 28px;
        cursor: pointer;
    }

    /* Overlay pour le menu */
    .nav-menu::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 280px;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
        z-index: -1;
    }

    .nav-menu.active::before {
        opacity: 1;
        visibility: visible;
    }

    .nav-logo-icon {
        width: 28px;
        height: 28px;
    }

    .nav-logo-img {
        width: 35px;
    }

    .nav-logo-text {
        font-size: 17px;
    }

    /* Hero responsive */
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-title {
        font-size: var(--font-size-4xl);
    }

    .product-image {
        width: 140%;
    }

    /* Sections responsive */
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .advantages-list,
    .features-list,
    .sectors-list {
        gap: var(--spacing-xl);
    }

    .collection-bracelets {
        gap: var(--spacing-sm);
        padding: 0 var(--spacing-md);
    }

    .bracelet-item {
        padding: var(--spacing-xs);
    }

    .bracelet-collection-img {
        max-width: 140px;
    }
    .bracelet-color-indicator {
        width: 40px;
        height: 40px;
    }
    
    .bracelet-color-name {
        font-size: 16px;
    }

    .distribution-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .distribution-image {
        margin: 0;
    }

    .preorder-content {
        align-items: center;
    }

    .preorder-image {
        max-width: 350px;
    }

    /* Newsletter & Footer responsive */
    .newsletter-input-group {
        flex-direction: column;
    }

    .footer-box {
        padding: 1.5rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .footer-links {
        gap: 1rem;
    }

     /* Cacher les titres dropdown sur mobile */
    .nav-link-dropdown.desktop-only {
        display: none !important;
    }
    
    /* Afficher tous les liens directement */
    .dropdown-menu.mobile-flat {
        position: static !important;
        box-shadow: none !important;
        background: transparent !important;
        padding: 0 !important;
        max-height: none !important;
        overflow: visible !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        display: block !important;
    }
    
    /* Retirer la bordure des dropdowns */
    .nav-dropdown {
        border-bottom: none !important;
    }
    
    /* Style des liens dans le menu mobile */
    .dropdown-menu.mobile-flat .dropdown-link {
        padding: 0.7rem 0 !important;
        font-size: 13px !important;
        color: #2B44A7 !important;
        border-bottom: 1px solid rgba(43, 68, 167, 0.1);
        display: block;
    }
    
    .dropdown-menu.mobile-flat .dropdown-link:hover {
        padding-left: 1rem !important;
    }
}

@media screen and (min-width: 969px) {
    .desktop-only {
        display: flex !important;
    }
    
    .mobile-flat {
        /* Comportement dropdown normal sur desktop */
    }
}

/* ========================================
   RESPONSIVE - TABLETTES PORTRAIT (768px et moins)
   ======================================== */
@media screen and (max-width: 768px) {
    .container {
        max-width: 540px;
        padding: 0 var(--spacing-md);
    }

    /* Navigation */
    .nav-menu {
        width: 280px;
    }

    .nav-logo-img {
        width: 32px;
    }

    .nav-logo-text {
        font-size: 17px;
    }

    .toggle-icon {
        width: 28px;
        height: 28px;
    }

    .hamburger-icon {
        width: 28px;
        height: 28px;
    }

    /* Hero section */
    .hero {
        padding-top: 100px;
    }

    .product-image {
        width: 130%;
        top: 110px;
    }

    .hero-title-bottom {
        font-size: 24px;
    }

    .hero-description-bottom {
        font-size: 13px;
    }

    /* Sections */
    .intro-title,
    .how-it-works-title,
    .advantages-title,
    .features-title,
    .collection-title,
    .security-title,
    .sectors-title,
    .faq-title,
    .distribution-title,
    .preorder-title,
    .newsletter-title {
        font-size: 19px;
    }

    /* Images */
    .bracelet-image-center {
        width: 130%;
    }

    .bracelet-item {
        min-width: 0;
        padding: 0.25rem;
        gap: 0.25rem;
    }

    .bracelet-image-wrapper {
        padding: 0.25rem;
    }

    .bracelet-collection-img {
        max-width: 100%;
        height: 80px; /* Réduit la hauteur */
        width: 100%;
        object-fit: contain;
    }
    
    .bracelet-color-indicator {
        width: 24px;
        height: 24px;
    }
    
    .bracelet-color-name {
        font-size: 10px;
    }

    .bracelet-color-name {
        font-size: 16px;
    }

    .preorder-image {
        max-width: 320px;
    }

    /* Footer */
    .footer-box {
        padding: 1.5rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .collection-bracelets {
        gap: var(--spacing-xs);
        padding: 0 var(--spacing-sm);
    }

    .bracelet-collection-img {
        max-width: 120px;
    }

    .bracelet-color-indicator {
        width: 32px;
        height: 32px;
    }

    .bracelet-color-name {
        font-size: 13px;
    }
}

/* ========================================
   RESPONSIVE - SMARTPHONES (576px et moins)
   ======================================== */
@media screen and (max-width: 576px) {
    .container {
        max-width: 100%;
        padding: 0 var(--spacing-md);
    }

    /* Navigation */
    .nav-menu {
        width: 280px;
    }

    .header {
        padding: var(--spacing-md) 0;
    }

    .nav-logo-img {
        width: 30px;
    }

    .nav-logo-text {
        font-size: 16px;
    }

    .toggle-icon {
        width: 26px;
        height: 26px;
    }

    .hamburger-icon {
        width: 26px;
        height: 26px;
    }

    .hero-title {
        font-size: var(--font-size-3xl);
    }

    .section-title {
        font-size: var(--font-size-2xl);
    }

    .section {
        padding: 4rem 0;
    }

    .advantages-grid,
    .features-grid,
    .collection-grid,
    .sectors-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
    }

    /* Hero section responsive */
    .hero {
        padding-top: 80px;
    }

    .bracelet-showcase {
        max-width: 100%;
        padding: var(--spacing-sm);
    }

    .packaging-background {
        width: 86%;
    }

    .product-image {
        width: 120%;
        top: -19px;
    }

    .hero-title-bottom {
        font-size: 27px;
        margin-top: var(--spacing-md);
    }

    .hero-description-bottom {
        font-size: 13px;
        max-width: 90%;
    }

    .btn-precommande {
        width: 212px;
        height: 52px;
        font-size: 18px;
    }

    /* Intro section responsive */
    .intro-content-center,
    .how-it-works-header,
    .advantages-header,
    .features-header,
    .collection-header,
    .security-header,
    .sectors-header,
    .faq-header,
    .distribution-header,
    .preorder-header {
        max-width: 100%;
        padding: 0 var(--spacing-sm);
    }

    .intro-title,
    .how-it-works-title,
    .advantages-title,
    .features-title,
    .collection-title,
    .security-title,
    .sectors-title,
    .faq-title,
    .distribution-title,
    .preorder-title {
        font-size: 18px;
    }

    .intro-text-center,
    .how-it-works-subtitle,
    .advantages-subtitle,
    .features-subtitle,
    .collection-subtitle,
    .security-subtitle,
    .distribution-subtitle,
    .preorder-subtitle {
        font-size: 13px;
    }

    /* Preorder responsive */
    .preorder-image {
        max-width: 300px;
    }

    /* Distribution responsive */
    .distribution-section-title {
        font-size: 18px;
    }

    .distribution-text,
    .distribution-box p {
        font-size: 13px;
    }

    /* Security responsive */
    .check-icon {
        width: 28px;
        height: 28px;
    }

    .security-text {
        font-size: 13px;
    }

    /* Sectors responsive */
    .sector-svg {
        width: 32px;
        height: 32px;
    }

    .sector-title {
        font-size: 14px;
    }

    .sector-description {
        font-size: 13px;
        padding-left: 40px;
    }

    /* FAQ responsive */
    .faq-question {
        font-size: 13px;
    }

    .faq-answer,
    .faq-footer {
        font-size: 13px;
    }

    .collection-bracelets {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.3rem;
        padding: 0 0.5rem;
        overflow: visible;
        width: 100%;
        box-sizing: border-box;
    }

    .bracelet-item {
        min-width: 0;
        width: 100%;
        padding: 0.3rem;
        gap: 0.3rem;
    }

    .bracelet-image-wrapper {
        padding: 0.2rem;
        width: 100%;
    }

    .bracelet-collection-img {
        max-width: 100%;
        width: 100%;
        height: auto;
        min-height: 80px;
        max-height: 100px;
    }
    
    .bracelet-color-indicator {
        width: 28px;
        height: 28px;
    }
    
    .bracelet-color-name {
        font-size: 11px;
        word-break: keep-all;
        white-space: nowrap;
    }
/*     
    .collection-bracelets::-webkit-scrollbar {
        height: 4px;
    } */
    /* Advantages responsive */
    .advantage-svg,
    .feature-svg {
        width: 32px;
        height: 32px;
    }

    .advantage-title,
    .feature-title {
        font-size: 14px;
    }

    .advantage-description,
    .feature-description {
        font-size: 13px;
        padding-left: 40px;
    }

    /* Bracelet image responsive */
    .bracelet-section {
        padding: var(--spacing-xs) 0 var(--spacing-lg);
    }

    .bracelet-image-center {
        width: 120%;
    }

    /* Steps responsive */
    .step-number {
        font-size: 50px;
    }

    .step-title {
        font-size: 16px;
    }

    .step-description {
        font-size: 13px;
    }

    .arrow-icon {
        width: 20px;
        height: 20px;
    }

    /* Newsletter responsive */
    .newsletter-title {
        font-size: 18px;
    }

    .newsletter-subtitle {
        font-size: 13px;
    }

    .newsletter-form {
        max-width: 100%;
    }

    /* Footer responsive */
    .footer-box {
        padding: 1.2rem;
        border-radius: 0;
        background: transparent;
        border: none;
        box-shadow: none;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-left {
        align-items: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .logo-icon {
        width: 30px;
    }

    .logo-text {
        font-size: 14px;
    }

    .footer-signature {
        max-width: 180px;
        align-self: center;
        margin: 0.5rem 0;
    }

    .footer-social {
        justify-content: center;
    }

    .social-icon img {
        width: 22px;
        height: 22px;
    }

    .footer-right {
        align-items: center;
        text-align: center;
        justify-content: center;
    }

    .footer-divider {
        margin: 1rem 0;
    }

    .footer-company {
        font-size: 10px;
        text-align: center;
    }

    .footer-address,
    .footer-email,
    .footer-phone {
        font-size: 9px;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-md);
    }

    .footer-copyright {
        font-size: 10px;
        text-align: center;
        width: 67%;
    }

    .footer-links {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
        gap: var(--spacing-md);
    }

    .footer-links a {
        font-size: 10px;
    }

    /* Scroll to top responsive */
    .scroll-top {
        width: 28px;
        height: 28px;
        bottom: 20px;
        right: 20px;
        font-size: 14px;
    }

    .scroll-icon {
        width: 16px;
        height: 16px;
    }
}

/* ========================================
   RESPONSIVE - TRÈS PETITS SMARTPHONES (375px et moins)
   ======================================== */
@media screen and (max-width: 375px) {
    .container {
        padding: 0 var(--spacing-sm);
    }

    /* Navigation */
    .nav-menu {
        width: 280px;
    }

    .nav-logo-img {
        width: 28px;
    }

    .nav-logo-text {
        font-size: 15px;
    }

    .toggle-icon {
        width: 24px;
        height: 24px;
    }

    .hamburger-icon {
        width: 24px;
        height: 24px;
    }

    /* Hero section */
    .hero-title-bottom {
        font-size: 18px;
    }

    .hero-description-bottom {
        font-size: 11px;
    }

    .product-image {
        width: 100%;
        /* top: 80px; */
    }

    /* Images */
    .bracelet-image-center {
        width: 100%;
    }

     .collection-bracelets {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.2rem;
        padding: 0 0.3rem;
    }

    .bracelet-item {
        padding: 0.2rem;
        gap: 0.2rem;
    }

    .bracelet-collection-img {
        min-height: 60px;
        max-height: 80px;
    }
    
    .bracelet-color-indicator {
        width: 22px;
        height: 22px;
    }
    
    .bracelet-color-name {
        font-size: 9px;
    }

    .preorder-image {
        max-width: 250px;
    }

    /* Buttons */
    .btn-precommande {
        width: 160px;
        height: 40px;
        font-size: 13px;
    }

    .btn-newsletter {
        width: 180px;
        height: 45px;
        font-size: 14px;
    }

    /* Steps */
    .step-number {
        font-size: 40px;
    }

    .step-title {
        font-size: 14px;
    }

    .step-description {
        font-size: 11px;
    }

    /* Sections titles */
    .intro-title,
    .how-it-works-title,
    .advantages-title,
    .features-title,
    .collection-title,
    .security-title,
    .sectors-title,
    .faq-title,
    .distribution-title,
    .preorder-title,
    .newsletter-title {
        font-size: 16px;
    }

    /* Advantages & Features */
    .advantage-svg,
    .feature-svg {
        width: 28px;
        height: 28px;
    }

    .advantage-title,
    .feature-title {
        font-size: 13px;
    }

    .advantage-description,
    .feature-description {
        font-size: 11px;
        padding-left: 36px;
    }

    /* Footer */
    .footer-box {
        padding: 1rem;
        border-radius: 14px;
    }

    .footer-left {
        align-items: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .logo-icon {
        width: 28px;
    }

    .logo-text {
        font-size: 13px;
    }

    .footer-signature {
        max-width: 110px;
        align-self: center;
    }

    .footer-social {
        justify-content: center;
    }

    .social-icon img {
        width: 20px;
        height: 20px;
    }

    .footer-right {
        align-items: center;
        text-align: center;
    }

    .footer-company {
        font-size: 9px;
    }

    .footer-address,
    .footer-email,
    .footer-phone {
        font-size: 8px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-sm);
    }

    .footer-copyright {
        font-size: 9px;
        text-align: center;
        width: 100%;
    }

    .footer-links {
        display: flex;
        justify-content: space-between;
        width: 100%;
        gap: var(--spacing-sm);
    }

    .footer-links a {
        font-size: 9px;
    }

    /* FAQ */
    .faq-question {
        font-size: 13px;
    }

    .faq-answer {
        font-size: 11px;
    }

    .faq-footer {
        font-size: 11px;
        max-width: 100%;
    }

    /* Scroll to top */
    .scroll-top {
        width: 26px;
        height: 26px;
        font-size: 13px;
        bottom: 15px;
        right: 15px;
    }

    .scroll-icon {
        width: 14px;
        height: 14px;
    }
}
