/* ==========================================================================
   SOMMAIRE M2SA CSS
   ==========================================================================
   0. VARIABLES & THÈMES (Mode Sombre/Clair)
   1. BASE & RESET (Typographie, Body)
   2. HEADER & NAVIGATION (Menu, Boutons de langue)
   3. HERO SECTION (Titre oversize)
   4. COMPOSANTS UI (Barre de recherche, Filtres, Boutons, Badges)
   5. GRILLE PRODUITS (Catalogue)
   6. CARROUSEL (Nouveautés)
   7. FENÊTRE MODALE (Pop-up Amazon)
   8. CONTACT & NEWSLETTER
   9. PAGE MENTIONS LÉGALES
   10. FOOTER & FLOTTANTS (WhatsApp)
   ========================================================================== */
/* ==========================================================================
   0. VARIABLES & THÈMES
   ========================================================================== */
:root {
    /* Couleurs de base (Mode Clair) */
    --bg-color: #e2f5ea;
    /* NOUVEAU : Dégradé partant d'en haut à droite (to bottom left) avec le vert pastel de ton image */
    --bg-gradient: linear-gradient(to bottom left, #f3f5f3 0%, #bef9cf 100%);
    
    /* NOUVEAU : Un léger voile sombre (3% d'opacité) pour rendre le carrousel un brin plus foncé */
    --carousel-bg: rgba(0, 0, 0, 0.03); 

    --text-color: #222222;
    --text-muted: #666666;
    --card-bg: #ffffff;
    
    /* Couleurs de la marque M2SA (Vert et Rouge) */
    --primary: #008751;        
    --secondary: #00663d;      
    --accent: #e30a17;         
    --border: #d2e8dd;         /* Bordures très légèrement verdies pour coller au thème */
    
    --transition: all 0.3s ease;
}

/* Activation du Mode Sombre via JS (On ne touche à rien, c'est parfait !) */
[data-theme="dark"] {
    --bg-color: #121212;
    --bg-gradient: radial-gradient(circle at top center, #172a21 0%, #0a0a0a 100%);
    
    /* En mode sombre, on rend le carrousel 100% transparent pour profiter du dégradé radial */
    --carousel-bg: transparent; 

    --text-color: #f4f7f6;
    --text-muted: #aaaaaa;
    --card-bg: #1a1a1a;
    
    --primary: #00b36b;        
    --secondary: #00e68a;
    --accent: #ff4d56;         
    --border: #333333;
}
/* ==========================================================================
   1. BASE & RESET
   ========================================================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    font-family: 'Inter', sans-serif; 
    background-color: var(--bg-color); 
    background-image: var(--bg-gradient);
    background-attachment: fixed;
    color: var(--text-color); 
    transition: background-color 0.3s, background-image 0.3s, color 0.3s;
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
html { scroll-behavior: smooth; }


/* ==========================================================================
   2. HEADER & NAVIGATION
   ========================================================================== */
.site-header { 
    background-color: var(--card-bg); 
    padding: 1rem 5%; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); 
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo { display: flex; align-items: center; }
.logo-img { max-height: 60px; width: auto; max-width: 250px; object-fit: contain; }

.main-nav ul { display: flex; gap: 2rem; list-style: none; font-weight: 600; }
.main-nav a:hover { color: var(--primary); transition: var(--transition); }

.header-controls { display: flex; align-items: center; gap: 1.5rem; }

/* Bouton Thème */
.theme-btn {
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 50%;
    width: 40px; height: 40px;
    font-size: 1.2rem; cursor: pointer;
    display: flex; justify-content: center; align-items: center;
    color: var(--text-color);
    transition: var(--transition);
}
.theme-btn:hover { background-color: rgba(0,0,0,0.05); transform: scale(1.1); }
[data-theme="dark"] .theme-btn:hover { background-color: rgba(255,255,255,0.1); }

/* Drapeaux */
.language-flags form { display: flex; gap: 8px; align-items: center; }
.flag-btn {
    background: transparent; border: 2px solid transparent; padding: 3px;
    cursor: pointer; border-radius: 50%; display: flex;
    justify-content: center; align-items: center; transition: var(--transition);
}
.flag-btn img { border-radius: 50%; transition: transform 0.2s ease; }
.flag-btn:hover img { transform: scale(1.15); }
.flag-btn.active { border-color: var(--primary); background-color: rgba(0, 135, 81, 0.1); }
[data-theme="dark"] .flag-btn.active { background-color: rgba(0, 179, 107, 0.2); }


/* ==========================================================================
   3. HERO SECTION
   ========================================================================== */
.hero-vitrine {
    width: 100%; padding: 6rem 5% 5rem 5%;
    display: flex; justify-content: center; align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05); 
}
[data-theme="dark"] .hero-vitrine { border-bottom: 1px solid rgba(255, 255, 255, 0.05); }

.hero-content { width: 95%; max-width: 1800px; text-align: center; }

.hero-subtitle {
    font-size: 1.3rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 4px; color: #000000; margin-bottom: 1.5rem;
}
[data-theme="dark"] .hero-subtitle { color: #ffffff; }

.hero-separator {
    width: 80px; height: 3px; background-color: var(--primary);
    border: none; margin: 0 auto 2.5rem auto;
}

.hero-title {
    font-size: clamp(4rem, 8vw, 8rem); font-weight: 800; letter-spacing: -2px; 
    color: var(--primary); margin-bottom: 3.5rem; line-height: 1.1;
}
[data-theme="dark"] .hero-title { color: #ffffff; }

.hero-description p {
    font-size: 1.25rem; font-weight: 400; color: var(--text-muted);
    line-height: 1.8; margin-bottom: 1.5rem; text-align: center; 
}
.hero-description p:last-child { margin-bottom: 0; }
.inline-logo { height: 1.3em; vertical-align: middle; margin: 0 6px; opacity: 0.9; }


/* ==========================================================================
   4. COMPOSANTS UI
   ========================================================================== */
/* Recherche */
.search-container { display: flex; justify-content: center; margin-bottom: 2.5rem; padding: 0 5%; }
.search-bar {
    display: flex; align-items: center; width: 100%; max-width: 650px;
    background-color: var(--card-bg); border: 2px solid var(--border);
    border-radius: 50px; padding: 0.5rem 1.5rem; transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}
.search-bar:focus-within {
    border-color: var(--primary); box-shadow: 0 8px 25px rgba(0, 135, 81, 0.15); transform: translateY(-2px); 
}
[data-theme="dark"] .search-bar:focus-within { box-shadow: 0 8px 25px rgba(0, 179, 107, 0.15); }
.search-icon { color: var(--primary); margin-right: 1rem; opacity: 0.8; }
.search-input {
    flex: 1; border: none; background: transparent; color: var(--text-color);
    font-size: 1.1rem; padding: 0.8rem 0; outline: none; font-family: inherit;
}
.search-input::placeholder { color: var(--text-muted); opacity: 0.6; font-weight: 300; }

/* Filtres de catégorie */
.category-filters { display: flex; justify-content: center; gap: 1rem; margin-bottom: 3rem; flex-wrap: wrap; }
.filter-btn { 
    padding: 0.6rem 1.5rem; border-radius: 30px; border: 2px solid var(--primary); 
    color: var(--text-color); font-weight: 600; transition: var(--transition); 
}
.filter-btn.active, .filter-btn:hover { background-color: var(--primary); color: #fff; }

/* Bouton Load More */
.pagination-container { text-align: center; margin-top: 3rem; margin-bottom: 1rem; width: 100%; }
.load-more-btn {
    background-color: transparent; color: var(--primary); border: 2px solid var(--primary);
    padding: 0.8rem 2.5rem; font-size: 1.1rem; font-weight: 600; border-radius: 50px;
    cursor: pointer; transition: var(--transition); font-family: inherit;
}
.load-more-btn:hover { background-color: var(--primary); color: #ffffff; transform: translateY(-2px); box-shadow: 0 4px 15px rgba(0, 135, 81, 0.2); }

/* Badges Produits */
.badge-new {
    position: absolute; top: 15px; right: 15px;
    background-color: var(--accent); color: #ffffff; padding: 5px 12px;
    border-radius: 20px; font-size: 0.8rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px; box-shadow: 0 4px 10px rgba(227, 10, 23, 0.3); z-index: 10;
}
html[dir="rtl"] .badge-new { right: auto; left: 15px; }

.badge-incoming {
    position: absolute; top: 15px; left: 15px;
    background-color: #0f3d6b; color: #ffffff; padding: 0.5rem 1rem;
    border-radius: 50px; font-size: 0.85rem; font-weight: 700; z-index: 5;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15); display: flex; align-items: center; gap: 8px; text-transform: uppercase;
}
.boat-icon { width: 18px; height: 18px; filter: brightness(0) invert(1); animation: float 3s ease-in-out infinite; }
@keyframes float { 0% { transform: translateY(0px) rotate(0deg); } 50% { transform: translateY(-3px) rotate(5deg); } 100% { transform: translateY(0px) rotate(0deg); } }


/* ==========================================================================
   5. GRILLE PRODUITS (Catalogue)
   ========================================================================== */
.gallery-container { max-width: 1400px; margin: 0 auto; padding: 4rem 5% 2rem 5%; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 3rem; }

.product-card { 
    background-color: var(--card-bg); border-radius: 12px; overflow: hidden; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease; padding: 1rem;
}
.product-clickable { cursor: pointer; }
.product-clickable:hover { transform: translateY(-8px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); }

.product-gallery-viewer { padding: 1.5rem; border-bottom: 1px solid var(--border); background-color: var(--card-bg); position: relative; }
.main-image-container { width: 100%; height: 250px; display: flex; justify-content: center; align-items: center; margin-bottom: 1rem; }
.main-img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 8px; }

.thumbnails-list { display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap; }
.thumb-img { width: 50px; height: 50px; object-fit: cover; border: 2px solid var(--border); cursor: pointer; border-radius: 6px; transition: var(--transition); }
.thumb-img.active, .thumb-img:hover { border-color: var(--primary); }

.product-info { padding: 1.5rem; }
.category-tag { font-size: 0.75rem; color: var(--accent); font-weight: bold; text-transform: uppercase; letter-spacing: 1px;}
.product-info h3 { margin: 0.5rem 0; font-size: 1.25rem; color: var(--text-color); }
.product-info p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1rem; }
.ref-tag { display: inline-block; margin-top: 0.5rem; font-size: 0.8rem; background-color: var(--bg-color); padding: 4px 10px; border-radius: 4px; border: 1px solid var(--border);}


/* ==========================================================================
   6. CARROUSEL (Nouveautés)
   ========================================================================== */
.carousel-section { 
    padding: 3rem 5%; 
    /* On utilise la nouvelle variable transparente/foncée au lieu d'une couleur unie */
    background: var(--carousel-bg);
}
.carousel-header h2 { font-size: 2.8rem; color: var(--primary); margin-bottom: 2.5rem; letter-spacing: -0.5px; }

.carousel-wrapper { position: relative; max-width: 1200px; margin: 0 auto; display: flex; align-items: center; }

.carousel-container-scroll {
    display: flex; overflow-x: auto; gap: 2rem; padding: 1rem 0; 
    scroll-snap-type: x mandatory; scroll-behavior: smooth; width: 100%; justify-content: flex-start;
    scrollbar-width: none; -ms-overflow-style: none; 
}
.carousel-container-scroll::-webkit-scrollbar { display: none; }

.carousel-prev, .carousel-next {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: var(--card-bg); color: var(--primary); border: 2px solid var(--primary);
    border-radius: 50%; width: 50px; height: 50px; min-width: 50px;
    font-size: 1.5rem; font-weight: bold; display: flex; align-items: center; justify-content: center;
    cursor: pointer; box-shadow: 0 4px 10px rgba(0,0,0,0.1); z-index: 10; transition: all 0.2s;
}
.carousel-prev:hover, .carousel-next:hover { background: var(--primary); color: white; }
.carousel-prev { left: -20px; }
.carousel-next { right: -20px; }

.carousel-card {
    min-width: 300px; max-width: 300px; background: var(--card-bg); border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08); cursor: pointer; transition: transform 0.3s;
    scroll-snap-align: start; overflow: hidden; flex-shrink: 0;
}
.carousel-card:hover { transform: translateY(-8px); }

.carousel-img-wrapper { position: relative; height: 250px; width: 100%; }
.carousel-img-wrapper img { width: 100%; height: 100%; object-fit: contain; padding: 15px; background-color: #fff; }

.badge-carousel-new {
    position: absolute; top: 15px; left: 15px; background-color: #dc3545; 
    color: white; padding: 6px 14px; border-radius: 20px; font-size: 0.85rem; font-weight: bold; z-index: 2;
}

.carousel-info { padding: 1.5rem; text-align: center; }
.carousel-info h4 { font-size: 1.2rem; color: var(--text-color); margin-bottom: 5px; }
.carousel-category { font-size: 0.9rem; color: var(--primary); opacity: 0.8; text-transform: uppercase; }


/* --- CORRECTION DES FLÈCHES EN ARABE (RTL) --- */
html[dir="rtl"] .carousel-prev {
    left: auto;
    right: -20px;
    transform: translateY(-50%); /* On laisse le navigateur faire son effet miroir naturel */
}

html[dir="rtl"] .carousel-next {
    right: auto;
    left: -20px;
    transform: translateY(-50%); /* On laisse le navigateur faire son effet miroir naturel */
}
/* ==========================================================================
   7. FENÊTRE MODALE (Pop-up Amazon)
   ========================================================================== */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.7); z-index: 2000; display: none;
    align-items: center; justify-content: center; backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--card-bg); width: 95%; max-width: 1000px;
    border-radius: 12px; position: relative; padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3); animation: modalFadeIn 0.3s ease-out;
    max-height: 90vh; overflow-y: auto;
}

@keyframes modalFadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.modal-close {
    position: absolute; top: 15px; right: 20px; font-size: 2.5rem; color: var(--text-muted);
    background: none; border: none; cursor: pointer; opacity: 0.6; transition: opacity 0.2s; z-index: 10;
}
.modal-close:hover { opacity: 1; color: var(--accent); }

.modal-body { display: flex; gap: 3rem; align-items: flex-start; }

.modal-image-col { width: 45%; flex-shrink: 0; display: flex; flex-direction: column; gap: 1.5rem; }
.modal-main-image-container {
    background-color: #fff; border-radius: 8px; padding: 1rem;
    border: 1px solid var(--border); width: 100%; height: 350px;
    display: flex; align-items: center; justify-content: center;
}
.modal-image-col img#modal-img { max-width: 100%; max-height: 100%; object-fit: contain; }

.modal-thumbnails-list { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; width: 100%; }
.modal-thumb-img {
    width: 65px; height: 65px; object-fit: contain; padding: 5px; background: white; border-radius: 6px;
    border: 2px solid var(--border); cursor: pointer; opacity: 0.7; transition: all 0.2s;
}
.modal-thumb-img:hover, .modal-thumb-img.active { opacity: 1; border-color: var(--primary); }

.modal-info-col { width: 55%; display: flex; flex-direction: column; }
.modal-category-tag { color: var(--primary); font-weight: 600; font-size: 0.9rem; text-transform: uppercase; margin-bottom: 0.5rem; }
.modal-info-col h2 { font-size: 2.2rem; color: var(--text-color); margin-bottom: 1rem; letter-spacing: -0.5px;}
.modal-divider { border: 0; border-top: 1px solid var(--border); margin: 1.5rem 0; }
.modal-info-col h3 { font-size: 1.2rem; margin-bottom: 0.8rem; color: var(--text-color); }
.modal-info-col p { color: var(--text-color); opacity: 0.9; line-height: 1.7; margin-bottom: 2.5rem; font-size: 1rem; }
.btn-modal-contact { display: inline-block; background-color: var(--primary); color: white; padding: 14px 28px; border-radius: 8px; text-decoration: none; font-weight: 600; text-align: center; transition: background 0.3s; width: fit-content;}
.btn-modal-contact:hover { background-color: var(--secondary); }


/* ==========================================================================
   8. CONTACT & NEWSLETTER
   ========================================================================== */
.newsletter-section { background-color: #17240d; padding: 5rem 5%; color: #ffffff; text-align: center; }
.newsletter-container { max-width: 900px; margin: 0 auto; }
.newsletter-content h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 1rem; }
.newsletter-content p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 2.5rem; }

.newsletter-form { display: flex; justify-content: center; gap: 1rem; max-width: 600px; margin: 0 auto; }
.newsletter-form input { flex: 1; padding: 1rem 1.5rem; border-radius: 50px; border: none; font-size: 1rem; outline: none; }
.newsletter-form button { background-color: #000000; color: #ffffff; border: none; padding: 1rem 2.5rem; border-radius: 50px; font-weight: 700; cursor: pointer; transition: var(--transition); }
.newsletter-form button:hover { background-color: var(--accent); transform: translateY(-2px); }
.newsletter-message { margin-top: 1.5rem; font-weight: 600; min-height: 24px; }

.modern-contact { background-color: #0f1714; color: #ffffff; padding: 6rem 5% 4rem 5%; margin-top: 0; }
.contact-container { max-width: 1200px; margin: 0 auto; }
.contact-header { text-align: center; margin-bottom: 4rem; }
.contact-header h2 { font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem; letter-spacing: 1px; }
.contact-separator { width: 60px; height: 3px; background-color: var(--primary); border: none; margin: 0 auto 1.5rem auto; }
.contact-subtitle { color: #aaaaaa; font-size: 1.1rem; }

.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2.5rem; margin-bottom: 4rem; }
.contact-card { display: flex; flex-direction: column; justify-content: center; height: 100%; background-color: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 16px; padding: 2.5rem 2rem; text-align: center; transition: transform 0.3s ease, background-color 0.3s ease; }
.contact-card:hover { transform: translateY(-5px); background-color: rgba(255, 255, 255, 0.06); border-color: rgba(0, 135, 81, 0.3); }

.contact-icon-img { width: 45px; height: 45px; object-fit: contain; margin-bottom: 1.5rem; display: block; margin-left: auto; margin-right: auto; opacity: 0.9; transition: var(--transition); }
.contact-card:hover .contact-icon-img { filter: invert(16%) sepia(89%) saturate(6052%) hue-rotate(351deg) brightness(97%) contrast(106%); }

.contact-card h3 { font-size: 1.2rem; color: var(--primary); margin-bottom: 1.5rem; text-transform: uppercase; letter-spacing: 1px; }
.address-item { margin-bottom: 1.2rem; text-align: center; }
.address-item:last-child { margin-bottom: 0; }
.address-label { font-size: 0.8rem; color: var(--primary); text-transform: uppercase; font-weight: 700; letter-spacing: 1.5px; display: block; margin-bottom: 4px; opacity: 0.8; }
.address-item p, .contact-card > p { color: #cccccc; font-size: 1rem; line-height: 1.5; }
.address-spacer { border: none; border-top: 1px solid rgba(255, 255, 255, 0.08); width: 60px; margin: 1.2rem auto; }
.contact-link { color: #ffffff; text-decoration: none; font-weight: 600; transition: color 0.3s ease; }
.contact-link:hover { color: var(--accent); }

.callback-section { display: flex; flex-direction: column; justify-content: center; height: 100%; background-color: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 16px; padding: 3rem 2rem; max-width: 800px; margin: 0 auto 4rem auto; text-align: center; }
.callback-header h3 { font-size: 1.8rem; color: var(--primary); margin-bottom: 0.5rem; }
.callback-header p { color: #aaaaaa; margin-bottom: 2rem; }
.callback-form { display: flex; flex-direction: column; gap: 1rem; max-width: 500px; margin: 0 auto; }
.callback-form .form-row { display: flex; gap: 1rem; }
.callback-form input { width: 100%; padding: 1rem 1.5rem; border-radius: 8px; background-color: rgba(0, 0, 0, 0.3); border: 1px solid rgba(255, 255, 255, 0.1); color: #ffffff; font-size: 1rem; outline: none; transition: var(--transition); }
.callback-form input::placeholder { color: #666666; }
.callback-form input:focus { border-color: var(--primary); background-color: rgba(0, 0, 0, 0.5); }
.btn-callback { background-color: var(--primary); color: #ffffff; border: none; padding: 1rem; border-radius: 8px; font-weight: 700; font-size: 1.1rem; cursor: pointer; transition: var(--transition); margin-top: 0.5rem; }
.btn-callback:hover { background-color: #007040; transform: translateY(-2px); }
.callback-message { margin-top: 1rem; font-weight: 600; min-height: 20px; }

.legal-info { text-align: center; border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 2rem; }
.legal-info p { color: #666666; font-size: 0.85rem; letter-spacing: 1px; }


/* ==========================================================================
   9. PAGE MENTIONS LÉGALES
   ========================================================================== */
.legal-page-section { padding: 6rem 5%; background-color: var(--bg-color); }
.legal-page-container { max-width: 900px; margin: 0 auto; background-color: var(--card-bg); padding: 3rem 4rem; border-radius: 16px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.legal-content h1 { font-size: 2.2rem; color: var(--primary); margin-bottom: 2.5rem; text-align: center; }
.legal-content h2 { font-size: 1.5rem; color: var(--text-color); margin-top: 3rem; margin-bottom: 1.2rem; border-bottom: 2px solid var(--border); padding-bottom: 0.5rem; }
.legal-content h3 { font-size: 1.1rem; color: var(--primary); margin-top: 2rem; margin-bottom: 0.8rem; }
.legal-content p, .legal-content li { font-size: 1rem; line-height: 1.7; margin-bottom: 1rem; color: var(--text-color); opacity: 0.9; }
.legal-content ul { margin-left: 1.5rem; margin-bottom: 1.5rem; }


/* ==========================================================================
   10. FOOTER & FLOTTANTS
   ========================================================================== */
.site-footer { background-color: #0f1714; text-align: center; padding: 1rem 5% 2rem 5%; color: #555555; font-size: 0.85rem; }

.whatsapp-float {
    position: fixed; width: 60px; height: 60px; bottom: 30px; right: 30px;
    background-color: #25D366; color: #FFF; border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); z-index: 1000;
    display: flex; align-items: center; justify-content: center; transition: var(--transition);
}
.whatsapp-float:hover { background-color: #128C7E; transform: scale(1.1) translateY(-5px); box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4); }
.whatsapp-icon { width: 35px; height: 35px; fill: #ffffff; }

/* ==========================================================================
   11. MEDIA QUERIES (MOBILES)
   ========================================================================== */
@media (max-width: 768px) {
    .header-container { flex-direction: column; gap: 1rem; }
    .main-nav ul { gap: 1rem; }
    .hero-vitrine { padding: 4rem 5% 3rem 5%; }
    .hero-subtitle { font-size: 1rem; letter-spacing: 2px; }
    .hero-description p { font-size: 1.1rem; text-align: left; }
    .contact-grid { grid-template-columns: 1fr; }
    .legal-page-container { padding: 2rem; }
    .legal-content h1 { font-size: 1.8rem; }
    .whatsapp-float { width: 50px; height: 50px; bottom: 20px; right: 20px; }
    .whatsapp-icon { width: 30px; height: 30px; }
    .carousel-header h2 { font-size: 2.2rem; }
    .carousel-prev, .carousel-next { display: none; }
    .modal-body { flex-direction: column; gap: 1.5rem;}
    .modal-image-col, .modal-info-col { width: 100%; }
    .modal-content { padding: 1.5rem; margin-top: 20px; }
    .modal-main-image-container { height: 250px; }
    .modal-info-col h2 { font-size: 1.8rem; }
}
@media (max-width: 600px) {
    .newsletter-form { flex-direction: column; }
    .callback-form .form-row { flex-direction: column; }
}