/* ========================================
RESET et STYLES de BASE
========================================*/

/* Sélecteur Universel (*) : Réinitialise le style par défaut du navigateur */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans';
    /* cursor: none !important; */
}

/* Style appliqué au corps de la page */
body {
    background-color: #ffffff;
    color: #333;
    padding-top: 100px;
    /* cursor: none; */
    overflow-x: hidden;
    padding-top: 0%;
}

/* Style appliqué à l'élément racine */
html {
    /* Active le défilement doux (smooth scroll) entre les ancres */
    scroll-behavior: smooth;
}

/* ========================================
POPUP (Fenêtre Modale)
========================================*/

/* Conteneur principal de la Popup (masque tout le reste de la page) */
.popup {
    /* Fixe la popup à l'écran, même en défilant */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Dégradé de fond rose et blanc doux pour l'arrière-plan */
    background: linear-gradient(135deg, #ffd1dc, #ffe4e1, #fff0f5);
    /* Utilise Flexbox pour centrer le contenu */
    display: flex;
    justify-content: center;
    align-items: center;
    /* Assure que la popup est au-dessus de tous les autres éléments */
    z-index: 999999;
    /* Animation d'apparition */
    animation: fadeInPopup 0.8s ease-in-out;
    /* Effet de flou sur l'arrière-plan */
    backdrop-filter: blur(8px);
}

/* Animation d'apparition de l'arrière-plan de la popup */
@keyframes fadeInPopup {
    from {
        opacity: 0;
        transform: scale(1.05); /* Commence légèrement agrandi */
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Contenu de la Popup (la boîte blanche centrale) */
.popup-content {
    background-color: #fff;
    /* Bords arrondis */
    border-radius: 25px;
    /* Rembourrage intérieur */
    padding: 40px 50px;
    /* Largeur maximale */
    max-width: 500px;
    /* Largeur sur mobile */
    width: 90%;
    text-align: center;
    /* Couleur principale du texte (rose vif) */
    color: #ff577f;
    /* Ombre subtile */
    box-shadow: 0 10px 25px rgba(255, 105, 180, 0.3);
    /* Bordure rose clair */
    border: 3px solid #ffb6c1;
    /* Animation pour faire flotter le contenu */
    animation: floatUp 0.6s ease-in-out;
    position: relative;
    /* Cache les parties de l'effet de scintillement qui dépassent */
    overflow: hidden;
}

/* Animation de flottement pour le contenu de la popup */
@keyframes floatUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Effet de scintillement/lumière sur la popup (pseudo-élément) */
.popup-content::before {
    content: "";
    position: absolute;
    /* Positionnement pour couvrir toute la carte */
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    /* Dégradé radial pour simuler un rayon de lumière */
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.4), transparent 70%);
    /* Animation de rotation pour l'effet de scintillement */
    animation: shimmer 6s linear infinite;
    /* Assure que l'effet ne bloque pas les clics */
    pointer-events: none;
}

/* Animation de rotation pour l'effet de scintillement */
@keyframes shimmer {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Titre principal de la popup */
.popup-content h1 {
    font-size: 2rem;
    font-weight: 700;
    /* Couleur du titre (rose foncé) */
    color: #ff5fa2;
    /* Ombre de texte légère */
    text-shadow: 0 1px 4px rgba(255, 192, 203, 0.6);
    margin-bottom: 15px;
    line-height: 1.3;
}

/* Partie spécifique du titre */
.popup-content h1 span {
    /* Couleur du mot clé (rose légèrement plus clair) */
    color: #ff85a1;
}

/* Paragraphe de la popup */
.popup-content p {
    font-size: 1.1rem;
    /* Couleur du texte du paragraphe */
    color: #ff7eb9;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Bouton de la popup */
.popup-content button {
    /* Dégradé de fond pour le bouton */
    background: linear-gradient(135deg, #ff85a1, #ffb3c1);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    padding: 12px 35px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    /* Transition pour tous les changements de style */
    transition: all 0.3s ease;
}

/* Effet au survol du bouton */
.popup-content button:hover {
    /* Petite élévation et rotation (effet doux) */
    transform: translateY(-2px) scale(1.05) rotate(2deg);
    /* Changement de dégradé au survol */
    background: linear-gradient(135deg, #ffa7c4, #ffccd5);
}

/* Masque l'icône du menu burger par défaut */
.menu-toggle {
    display: none;
}

.menu-toggle:focus,
.menu-toggle:active {
    outline: none;
    text-decoration: none;
}

/* ========================================
CURSEUR PERSONNALISÉ (Actuellement COMMENTÉ)
========================================*/
/* Les classes .dot, .lollipop, .cursor-hover, etc., sont ici mais ne s'appliquent pas */
/* car le CSS est commenté (utilisé pour des effets de curseur personnalisés) */

/* ========================================
LOADER (Écran de chargement)
========================================*/

/* Conteneur du loader (couvre tout l'écran au chargement) */
#loader {
    /* Fixe le loader et s'étend sur toute la vue */
    position: fixed;
    inset: 0;
    /* Dégradé de fond doux */
    background: linear-gradient(135deg, #ffd1dc, #ffe4e1, #fff0f5);
    /* Centre le contenu (spinner + texte) */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* Assure d'être au-dessus de tout */
    z-index: 9999;
    color: #ff5fa2;
    text-shadow: 1px 1px 0 #fff;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
    /* Transition pour la disparition douce */
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

/* Classe pour masquer le loader après chargement */
#loader.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Spinner (l'animation de chargement circulaire) */
.spinner {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    /* Crée un effet de dégradé conique avec plusieurs couleurs (arc-en-ciel doux) */
    background: conic-gradient(#ff8acb 0deg 60deg,
        #fff 60deg 120deg,
        #8ef6e4 120deg 180deg,
        #fff 180deg 240deg,
        #fbd46d 240deg 300deg,
        #fff 300deg 360deg);
    /* Animation de rotation */
    animation: spin 1.2s linear infinite;
    margin-bottom: 1rem;
    /* Ombre douce */
    box-shadow: 0 0 20px rgba(255, 192, 203, 0.6);
}

/* Animation de rotation du spinner */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Texte sous le spinner */
.loader-text {
    font-size: 1.4rem;
    color: #ff5fa2;
    /* Animation de pulsation (zoom doux) */
    animation: pulse 1.5s ease-in-out infinite;
}

/* Animation de pulsation */
@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

/* Contenu principal du site (initialement caché) */
#content {
    opacity: 0;
    transition: opacity 1s ease;
}

/* Rend le contenu principal visible après le chargement */
#content.visible {
    opacity: 1;
}

/* ========================================
VAGUES SVG (Effet visuel)
========================================*/

/* Conteneur des vagues */
.waves {
    position: relative;
    width: 100%;
    height: 15vh;
    /* Compense la marge en bas */
    margin-bottom: -7px;
    min-height: 100px;
    max-height: 150px;
    /* Fait remonter les vagues pour chevaucher la section précédente */
    margin-top: -100px;
}

/* Applique l'animation à chaque "use" (chaque vague) dans le SVG */
.parallax>use {
    /* Animation infinie pour le mouvement des vagues */
    animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

/* Retards et durées pour créer un décalage entre les vagues */
.parallax>use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}

.parallax>use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}

.parallax>use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}

.parallax>use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}

/* Animation du mouvement horizontal des vagues */
@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }
    100% {
        transform: translate3d(85px, 0, 0);
    }
}

/* ========================================
BARRE DE NAVIGATION FIXE, ARRONDIE ET DÉTACHÉE
========================================*/
.navbar-container {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1520px;
  margin-top: 20px;
  border-radius: 20px;
  background-color: #ffcad4;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-shadow: 0 0px 10px rgba(0, 0, 0, 0.26);
  z-index: 1000;
}

/* 🧭 STRUCTURE DU HEADER */
header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 8%;
  background-color: transparent;
}

/* 🍬 LOGO ET TITRE */
header nav .logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

header nav .logo-link:hover {
  transform: scale(1.05) rotate(-2deg);
  text-decoration: none;
}

header nav .logo-link img {
  max-height: 80px;
  width: auto;
  display: block;
}

header nav .logo-link h1 {
  font-size: 1.5em;
  margin: 0;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

/* 🍭 LIENS DU MENU */
.nav-links a {
  position: relative;
  color: #fff;
  margin: 0 10px;
  font-weight: 500;
  display: inline-block;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.4s ease-out;
}

/* ✨ Soulignement animé */
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: transform 0.3s ease;
}

/* 🪄 Effet au survol */
.nav-links a:hover {
  color: #fff;
  transform: scale(1.1) rotate(-2deg);
  text-decoration: none;
}

.nav-links a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

/* 📱 MENU BURGER (optionnel, si tu l'utilises) */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #fff;
      text-decoration: none; /* Désactive le soulignement */
    -webkit-tap-highlight-color: transparent; /* Désactive le highlight bleu sur mobile */
    user-select: none; /* Empêche la sélection du texte */
}

.menu-toggle:focus,
.menu-toggle:active {
    outline: none;
    text-decoration: none;
}

/* 🌐 RESPONSIVE DESIGN */
@media (max-width: 900px) {
  header nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-toggle {
    display: block;
        text-decoration: none; /* Désactive le soulignement */
    -webkit-tap-highlight-color: transparent; /* Désactive le highlight bleu sur mobile */
    user-select: none; /* Empêche la sélection du texte */
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }

  .nav-links a {
    padding: 10px 0;
    width: 100%;
  }

  .nav-links.active {
    display: flex;
  }
}

/* ========================================
SLIDER (Premier contenu)
========================================
*/
.slider {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
}

.slides {
  display: flex;
  width: 100%;
  transition: transform 1s ease-in-out;
}

.slide {
  width: 100%;
  flex-shrink: 0;
}

.slide img {
  width: 100%;
  height: 60vh;
  object-fit: cover;
}

/* ========================================
SECTIONS (À Propos)
========================================*/

/* Section "À propos" */
.about-section {
    /* Couleur de fond rose très pâle */
    background-color: #fff0f5;
    /* Utilise Flexbox pour aligner le texte et le bouton/contenu */
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    /* Grand rembourrage pour les grands écrans */
    padding: 120px 200px;
}

/* Contenu textuel de la section À propos */
.about-content {
    /* Prend autant de place que possible */
    flex-grow: 1;
    /* Limite la largeur du texte */
    max-width: 50%;
}

/* Bouton à droite de la section */
.button-right {
    /* Empêche le bouton de rétrécir */
    flex-shrink: 0;
    padding: 24px 50px;
    /* Couleur de fond rose vif */
    background-color: #ff577f;
    color: white;
    font-weight: 600;
    border: none;
    /* Bords très arrondis (pill-shape) */
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 1rem;
    margin-left: 20px;
    text-decoration: none;
    /* Transitions pour les effets au survol */
    box-shadow: 8px 8px 0 rgba(255, 105, 180, 0.2);
    transition: transform 0.4s ease-out, box-shadow 0.4s ease;
}

/* Effet au survol du bouton */
.button-right:hover {
    transform: translateY(8px) translateX(8px) scale(1.0);
    box-shadow: 0px 0px 0 rgba(255, 105, 180, 0.2);
    text-decoration: none;
    color: #fff;
}

#products {
    scroll-margin-top: 55px;
}

/* Titres et paragraphes de la section À propos */
.about-section h2,
.about-section p {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
    max-width: none;
    margin-bottom: 10px;
}

/* ========================================
PRODUITS (Ancienne Structure)
========================================*/

/* Conteneur des cartes de produits */
.produits {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    text-align: center;
}

/* Section contenant les produits */
#produit {
    padding-top: 100px;
    padding-bottom: 20px;
    background-color: #ffffff;
    text-align: center;
}

/* Une carte de produit (ancienne structure) */
.produit {
    width: 250px; /* Largeur qui sera écrasée par la ligne 449 */
    background: #fff;
    border-radius: 15px;
    transition: transform 0.3s;
    /* overflow: hidden;
    cursor: pointer; */
    /* Nouvelle largeur définie */
    width: 490px;
    height: 560px;
    /* Nouvelle ombre rose */
    box-shadow: 8px 8px 0 rgba(255, 105, 180, 0.2);
    transition: transform 0.4s ease-out, box-shadow 0.4s ease;
    border: 1px solid #ffcad4;
}

/* Effet au survol de la carte produit */
.produit:hover {
    transform: translateY(8px) translateX(8px) scale(1.0);
    box-shadow: 0px 0px 0 rgba(255, 105, 180, 0.2);
}

/* Image du produit */
.produit img {
    width: 90%;
    height: 300px;
    /* L'image est contenue dans la boîte (avec bordures) */
    object-fit: cover;
    background-color: #fff;
    box-shadow: 0 10px 15px rgba(49, 47, 47, 0.048);
}

/* Titre du produit */
.produit h4 {
    color: #ff577f;
    margin: 15px 0 5px;
    font-weight: 700;
}

/* Description du produit */
.produit p {
    color: #777;
    font-size: 0.95rem;
    padding: 10px;
}

/* ========================================
PRODUCTS (Nouvelle Structure, Carte Large)
========================================*/

/* Conteneur des cartes de produits (version large) */
.products {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    text-align: center;
}

/* Section contenant les produits */
#products {
    padding-top: 100px;
    padding-bottom: 20px;
    background-color: #ffffff;
    text-align: center;
}

/* Carte de produit (version avec image à gauche et texte à droite) */
.product {
    /* Aligne l'image et le texte */
    display: flex;
    align-items: center;
    /* background: #fff0f5; */
    background: #fff;
    border-radius: 15px;
    box-shadow: 8px 8px 0 rgba(255, 105, 180, 0.2);
    transition: transform 0.4s ease-out, box-shadow 0.4s ease;
    overflow: hidden;
    /* Grande largeur et hauteur */
    width: 1520px;
    height: 500px;
    border: 1px solid #ffcad4;
}

.product:hover {
    transform: translateY(8px) translateX(8px) scale(1.0);
    box-shadow: 0px 0px 0 rgba(255, 105, 180, 0.2);
}

/* Image de la carte large */
.product img {
    /* Prend 30% de la largeur de la carte */
    width: 30%;
    height: 100%;
    /* L'image est contenue (avec bordures) */
    object-fit: contain;
}

/* Conteneur du texte dans la carte large */
.product-content {
    /* Prend le reste de l'espace (70%) */
    flex: 1;
    display: flex;
    /* Empile le h4 au-dessus du p */
    flex-direction: column;
    /* Centre verticalement le bloc de texte */
    justify-content: center;
    /* Centre horizontalement le h4 et le p */
    align-items: center;
    padding: 20px;
    /* Centre le texte */
    text-align: center;
}

/* Titre de la carte large */
.product h4 {
    color: #ff577f;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 2.4rem;
    font-family: 'Pacifico';
}

/* Paragraphe de la carte large */
.product p {
    color: #777;
    font-size: 1.2rem;
    max-width: 80%;
}

/* ========================================
CONTACT (Formulaire)
========================================*/

/* Conteneur du formulaire de contact */
.contact-form {
    /* Fond rose pâle */
    background-color: #ffe5ec;
    border-radius: 10px;
    padding: 30px;
    /* Centre le formulaire */
    margin: 0 auto; 
    /* Structure les champs en colonne */
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: 8px 8px 0 #ffc9d7;
    transition: transform 0.4s ease-out, box-shadow 0.4s ease;
    width: 1520px;
}

/* Effet au survol du formulaire */
/* .contact-form:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(255, 105, 180, 0.35);
} */

/* Étiquettes des champs */
.contact-form label {
    font-weight: 600;
    color: #ff577f;
}

/* Champs de saisie (input et textarea) */
.contact-form input,
.contact-form textarea {
    padding: 10px;
    /* Bordure rose claire */
    border: 2px solid #ffcad4;
    border-radius: 10px;
    font-size: 1rem;
    background-color: #fff;
    color: #333;
    transition: border-color 0.3s ease;
    width: 100%;
    /* Important pour la largeur à 100% avec padding */
    box-sizing: border-box;
}

/* Effet au focus des champs (quand on clique dessus) */
.contact-form input:focus,
.contact-form textarea:focus {
    /* Bordure devient rose vif */
    border-color: #ff577f;
    outline: none;
}

/* Bouton d'envoi du formulaire */
.contact-form button {
    background-color: #ff577f;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 15px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 8px 8px 0 rgba(252, 88, 170, 0.2);
    transition: transform 0.4s ease-out, box-shadow 0.4s ease;
}

/* Effet au survol du bouton */
.contact-form button:hover {
    transform: translateY(8px) translateX(8px) scale(1.0);
    box-shadow: 0px 0px 0 rgba(255, 105, 180, 0.2);
}

/* ====== Ligne de champs (Nom + Email côte à côte) ====== */

/* Conteneur pour grouper les champs sur une ligne */
.form-row {
    display: flex;
    gap: 20px;
    /* Permet aux champs de passer à la ligne sur mobile */
    flex-wrap: wrap;
}

/* Conteneur d'un seul champ (Nom ou Email) */
.form-group {
    /* Prend la même place que l'autre dans la ligne */
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* ========================================
RESPONSIVE (Barre de navigation, Sections, Footer)
========================================*/

/* La section Responsive des styles globaux commence ici */

/* 📦 FOOTER CANDY (voir les améliorations de responsivité dans la réponse précédente) */
.footer-candy {
    /* Fond rose clair */
    background-color: #ffcad4;
    /* Bords supérieurs arrondis */
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    /* Ombre en haut */
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    /* Rembourrage large pour desktop */
    padding: 40px 200px;
    color: #fff;
    font-family: "Poppins", sans-serif;
    margin-top: 80px;
    position: relative;
    overflow: hidden;

    /* Animation d'apparition */
    animation: slideUpFade 1s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes slideUpFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Structure interne du footer (pour Flexbox) */
.footer-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

/* Colonnes du footer */
.footer-col {
    /* Flex: grandit, ne rétrécit pas, base de 250px */
    flex: 1 1 250px;
}

/* Logo dans le footer (styles similaires à la navbar) */
.footer-candy .logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.footer-candy .logo-link:hover {
    transform: scale(1.05) rotate(-2deg);
}

.footer-candy .logo-link img {
    max-height: 80px;
    width: auto;
    display: block;
}

.footer-candy .logo-link h1 {
    text-shadow: 0 0px 20px rgba(0, 0, 0, 0.4);
    font-size: 1.5em;
    margin: 0;
    color: #fff;
    font-weight: 700;
}

/* Texte général du footer */
.footer-candy p {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    text-shadow: 0 0px 10px rgba(0, 0, 0, 0.26);
}

/* Titres des colonnes du footer */
.footer-candy h3 {
    text-shadow: 0 0px 20px rgba(0, 0, 0, 0.4);
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
}

/* Listes de liens du footer */
.footer-candy ul {
    list-style: none;
    text-shadow: 0 0px 10px rgba(0, 0, 0, 0.26);
    padding: 0;
    margin: 0;
}

.footer-candy ul li {
    margin: 6px 0;
}

/* Les liens du footer */
.footer-candy ul li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    display: inline-block;
    transition: transform 0.4s ease, color 0.3s ease, text-shadow 0.3s ease;
}

/* Effet au survol des liens du footer */
.footer-candy ul li a:hover {
    /* Léger zoom, élévation et rotation (effet doux) */
    transform: scale(1.1) translateY(-2px) rotate(-2deg);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    color: #fff;
}

/* Icônes réseaux sociaux */
.social-icons a {
    color: #fff;
    font-size: 1.5rem;
    margin-right: 15px;
    display: inline-block;
    transition: transform 0.4s ease-out, text-shadow 0.3s ease;
}

/* Effet au survol des icônes sociales */
.social-icons a:hover {
    /* Zoom et rotation */
    transform: scale(1.2) rotate(-5deg);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* Section de copyright en bas du footer */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    /* Ligne de séparation */
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 15px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom a {
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ========================================
TÉMOIGNAGES (LES GENS PARLENT DE NOUS !)
========================================*/

/* Section des témoignages */
#testimonials {
    /* Fond assorti à la section 'About' */
    background-color: #fff0f5;
    padding: 80px 20px;
    text-align: center;
}

#testimonials h2 {
    margin-bottom: 50px;
    font-weight: 700;
}

/* Conteneur des cartes de témoignages */
.testimonial-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    /* Espace entre les cartes */
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Une carte de témoignage */
.testimonial-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 8px 8px 0 rgba(255, 105, 180, 0.2);
    transition: transform 0.4s ease-out, box-shadow 0.4s ease;
    text-align: left;
    /* Petite bordure */
    border: 1px solid #ffcad4;
    position: relative;
    /* Nécessaire pour les guillemets positionnés absolument */
    overflow: hidden;
    /* cursor: pointer; */
    width: 580px;
}

/* Effet de survol de la carte */
.testimonial-card:hover {
    /* Élévation et léger zoom */
    transform: translateY(8px) translateX(8px) scale(1.0);
    box-shadow: 0px 0px 0 rgba(255, 105, 180, 0.2);
    /* Ombre plus marquée
    box-shadow: 0 15px 30px rgba(255, 105, 180, 0.35); */
}

/* Message du témoignage */
.testimonial-message {
    font-style: italic;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    /* Espace à gauche pour le guillemet de début */
    padding-left: 45px;
    /* Espace à droite pour le guillemet de fin */
    padding-right: 45px;
}

/* Guillemet de DÉBUT (pseudo-élément) */
.testimonial-message::before {
    content: "❝";
    position: absolute;
    top: -5px;
    left: 10px;
    font-size: 2.5rem;
    color: #ff85a1;
    line-height: 1;
    opacity: 1;
}

/* Guillemet de FIN (pseudo-élément) */
.testimonial-message::after {
    content: "❞";
    position: absolute;
    bottom: -15px;
    right: 10px;
    font-size: 2.5rem;
    color: #ff85a1;
    line-height: 1;
    opacity: 1;
}

/* Nom de l'auteur du témoignage */
.testimonial-author {
    font-weight: 600;
    color: #ff577f;
    text-align: right;
    display: block;
    margin-top: 10px;
    padding-top: 10px;
    font-size: 1rem;
}

/* Titre/Fonction de l'auteur (avec une ligne en pointillé) */
.testimonial-tittle {
    font-weight: 600;
    color: #ff577f;
    text-align: right;
    display: block;
    margin-top: 10px;
    padding-top: 10px;
    /* Ligne de séparation en pointillé */
    border-top: 1px dashed #ffb6c1;
    font-size: 1rem;
}














/* ========================================
MEDIA QUERIES - RESPONSIVE DESIGN
========================================*/

/* 📱 TABLETTES (max-width: 1024px) */
@media (max-width: 1024px) {
    /* Navbar */
    .navbar-container {
        width: 95%;
        margin-top: 15px;
    }

    header nav {
        padding: 10px 5%;
    }

    /* Section About */
    .about-section {
        padding: 80px 50px;
        flex-direction: column;
        text-align: center;
    }

    .about-content {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .button-right {
        margin-left: 0;
    }

    /* Products (grandes cartes) */
    .product {
        width: 95%;
        height: auto;
        flex-direction: column;
    }

    .product img {
        width: 100%;
        height: 300px;
    }

    .product p {
        max-width: 90%;
    }

    /* Contact Form */
    .contact-form {
        width: 95%;
        padding: 25px;
    }

    /* Footer */
    .footer-candy {
        padding: 40px 50px;
    }

    .footer-wrapper {
        gap: 30px;
    }

    /* Testimonials */
    .testimonial-card {
        width: 45%;
        min-width: 400px;
    }
}

/* 📱 TABLETTES PETITES & MOBILES LARGES (max-width: 768px) */
@media (max-width: 768px) {
    /* Body */
    body {
        padding-top: 0;
    }

    /* Popup */
    .popup-content {
        padding: 30px 25px;
        max-width: 90%;
    }

    .popup-content h1 {
        font-size: 1.6rem;
    }

    .popup-content p {
        font-size: 1rem;
    }

    .popup-content button {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    /* Loader */
    .spinner {
        width: 60px;
        height: 60px;
    }

    .loader-text {
        font-size: 1.2rem;
    }

    /* Navbar */
    .navbar-container {
        width: 95%;
        margin-top: 10px;
        border-radius: 15px;
    }

    header nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
    }

    header nav .logo-link {
        flex-direction: row;
        gap: 8px;
    }

    header nav .logo-link img {
        max-height: 50px;
    }

    header nav .logo-link h1 {
        font-size: 1.2em;
    }

    /* Menu Toggle (Burger) */
    .menu-toggle {
        display: block;
        font-size: 1.8rem;
        cursor: pointer;
        color: #fff;
        z-index: 1001;
            text-decoration: none; /* Désactive le soulignement */
    -webkit-tap-highlight-color: transparent; /* Désactive le highlight bleu sur mobile */
    user-select: none; /* Empêche la sélection du texte */
    }

    .menu-toggle:focus,
.menu-toggle:active {
    outline: none;
    text-decoration: none;
}

    /* Navigation Links */
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #ffcad4;
        flex-direction: column;
        width: 100%;
        text-align: center;
        padding: 20px 0;
        border-radius: 0 0 15px 15px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 15px 0;
        width: 100%;
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    /* Slider */
    .slider {
        height: 40vh;
    }

    .slide img {
        height: 40vh;
    }

    /* Waves */
    .waves {
        height: 10vh;
        min-height: 60px;
        margin-top: -60px;
    }

    /* Section About */
    .about-section {
        padding: 60px 30px;
        flex-direction: column;
    }

    .about-content {
        max-width: 100%;
    }

    .about-section h2 {
        font-size: 1.8rem;
    }

    .about-section p {
        font-size: 1rem;
    }

    .button-right {
        padding: 18px 40px;
        font-size: 0.9rem;
        margin-left: 0;
        margin-top: 20px;
    }

    /* Products Section */
    #products {
        padding-top: 60px;
        padding-bottom: 20px;
    }

    /* Product Cards (grandes cartes) */
    .product {
        width: 95%;
        height: auto;
        flex-direction: column;
        padding: 20px;
    }

    .product img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }

    .product h4 {
        font-size: 1.8rem;
        margin-top: 15px;
    }

    .product p {
        font-size: 1rem;
        max-width: 95%;
    }

    /* Produits (anciennes cartes) */
    .produit {
        width: 95%;
        height: auto;
    }

    .produit img {
        height: 200px;
    }

    /* Contact Form */
    .contact-form {
        width: 95%;
        padding: 25px 20px;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .form-group {
        width: 100%;
    }

    /* Testimonials */
    #testimonials {
        padding: 60px 20px;
    }

    #testimonials h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .testimonial-card {
        width: 95%;
        min-width: unset;
        padding: 25px;
    }

    .testimonial-message {
        padding-left: 35px;
        padding-right: 35px;
        font-size: 0.95rem;
    }

    .testimonial-message::before,
    .testimonial-message::after {
        font-size: 2rem;
    }

    /* Footer */
    .footer-candy {
        padding: 40px 30px;
        margin-top: 60px;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
    }

    .footer-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .footer-col {
        flex: 1 1 100%;
        text-align: center;
    }

    .footer-candy .logo-link {
        justify-content: center;
    }

    .footer-candy .logo-link img {
        max-height: 60px;
    }

    .footer-candy .logo-link h1 {
        font-size: 1.3em;
    }

    .footer-candy h3 {
        font-size: 1rem;
        margin-top: 20px;
    }

    .social-icons {
        display: flex;
        justify-content: center;
        gap: 10px;
    }

    .footer-bottom {
        margin-top: 30px;
        font-size: 0.85rem;
    }
}

/* 📱 MOBILES (max-width: 480px) */
@media (max-width: 480px) {
    /* Popup */
    .popup-content {
        padding: 25px 20px;
    }

    .popup-content h1 {
        font-size: 1.4rem;
    }

    .popup-content p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .popup-content button {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    /* Loader */
    .spinner {
        width: 50px;
        height: 50px;
    }

    .loader-text {
        font-size: 1rem;
    }

    /* Navbar */
    header nav .logo-link img {
        max-height: 40px;
    }

    header nav .logo-link h1 {
        font-size: 1em;
    }

    .menu-toggle {
        font-size: 1.5rem;
            text-decoration: none; /* Désactive le soulignement */
    -webkit-tap-highlight-color: transparent; /* Désactive le highlight bleu sur mobile */
    user-select: none; /* Empêche la sélection du texte */
    }

    .menu-toggle:focus,
.menu-toggle:active {
    outline: none;
    text-decoration: none;
}

    .nav-links {
        top: 60px;
    }

    /* Slider */
    .slider {
        height: 30vh;
    }

    .slide img {
        height: 30vh;
    }

    /* Waves */
    .waves {
        height: 8vh;
        min-height: 50px;
        margin-top: -50px;
    }

    /* Section About */
    .about-section {
        padding: 40px 20px;
    }

    .about-section h2 {
        font-size: 1.5rem;
    }

    .about-section p {
        font-size: 0.9rem;
    }

    .button-right {
        padding: 15px 30px;
        font-size: 0.85rem;
        width: 100%;
        text-align: center;
    }

    /* Products Section */
    #products {
        padding-top: 50px;
    }

    .product {
        width: 95%;
        padding: 15px;
    }

    .product img {
        height: 200px;
    }

    .product h4 {
        font-size: 1.5rem;
    }

    .product p {
        font-size: 0.9rem;
    }

    /* Produits (anciennes cartes) */
    .produit {
        width: 100%;
    }

    .produit img {
        height: 180px;
    }

    .produit h4 {
        font-size: 1.2rem;
    }

    .produit p {
        font-size: 0.85rem;
    }

    /* Contact Form */
    .contact-form {
        width: 95%;
        padding: 20px 15px;
    }

    .contact-form label {
        font-size: 0.9rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 8px;
        font-size: 0.9rem;
    }

    .contact-form button {
        padding: 10px;
        font-size: 0.9rem;
    }

    /* Testimonials */
    #testimonials {
        padding: 50px 15px;
    }

    #testimonials h2 {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }

    .testimonial-card {
        width: 100%;
        padding: 20px;
    }

    .testimonial-message {
        padding-left: 30px;
        padding-right: 30px;
        font-size: 0.9rem;
    }

    .testimonial-message::before,
    .testimonial-message::after {
        font-size: 1.8rem;
    }

    .testimonial-message::before {
        left: 5px;
    }

    .testimonial-message::after {
        right: 5px;
    }

    .testimonial-author,
    .testimonial-tittle {
        font-size: 0.9rem;
    }

    /* Footer */
    .footer-candy {
        padding: 30px 20px;
        margin-top: 50px;
    }

    .footer-col .links {
      align-content: center;
    }
    
    .footer-col .socials {
      align-items: center; 
    }

    .footer-candy .logo-link img {
        max-height: 50px;
    }

    .footer-candy .logo-link h1 {
        font-size: 1.1em;
    }

    .footer-candy h3 {
        font-size: 0.95rem;
    }

    .footer-candy p,
    .footer-candy ul li a {
        font-size: 0.85rem;
    }

    .social-icons a {
        font-size: 1.3rem;
        margin-right: 10px;
    }

    .footer-bottom {
        font-size: 0.8rem;
        padding-top: 10px;
    }
}

/* 📱 TRÈS PETITS MOBILES (max-width: 360px) */
@media (max-width: 360px) {
    .popup-content h1 {
        font-size: 1.2rem;
    }

    .popup-content p {
        font-size: 0.85rem;
    }

    header nav .logo-link h1 {
        font-size: 0.9em;
    }

    .about-section h2 {
        font-size: 1.3rem;
    }

    .product h4 {
        font-size: 1.3rem;
    }

    .testimonial-card {
        padding: 15px;
    }

    .footer-candy {
        padding: 25px 15px;
    }
}

/* ========================================
AJUSTEMENTS POUR LE MENU BURGER
========================================*/

/* Animation d'ouverture du menu */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-links.active {
    animation: slideDown 0.3s ease-out;
}

/* ========================================
OPTIMISATIONS PERFORMANCES MOBILE
========================================*/

/* Désactive les animations complexes sur mobile pour de meilleures performances */
@media (max-width: 768px) {
    .popup-content::before {
        animation: none;
    }
    
    * {
        -webkit-tap-highlight-color: transparent;
    }

    /* Bouton hamburger : On le positionne en haut à droite, au-dessus du reste (z-index) */
    .menu-toggle {
        display: block;
        cursor: pointer;
        font-size: 1.9rem;
        color: #fff;
        position: absolute;
        top: 18px;
        right: 25px;
        z-index: 1100; /* Assure qu'il est au-dessus des autres éléments */
        transition: transform 0.3s ease;
            text-decoration: none; /* Désactive le soulignement */
    -webkit-tap-highlight-color: transparent; /* Désactive le highlight bleu sur mobile */
    user-select: none; /* Empêche la sélection du texte */
    }

    .menu-toggle:hover {
        transform: scale(1.1); /* Petit effet d'agrandissement au survol */
    }

    .menu-toggle:focus,
.menu-toggle:active {
    outline: none;
    text-decoration: none;
}

}

/* ========================================
ORIENTATION PAYSAGE (LANDSCAPE)
========================================*/

@media (max-width: 768px) and (orientation: landscape) {
    .slider {
        height: 50vh;
    }

    .slide img {
        height: 50vh;
    }

    .about-section {
        padding: 40px 30px;
    }

    #testimonials {
        padding: 50px 30px;
    }
}