/* ==========================================================================
   1. VARIABLES ET CONFIGURATION DE BASE
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700&display=swap');

:root {
    --primary: #102718;
    --accent: #FF9900;
    --text: #333333;
    --light: #E2EDE5;
    --white: #ffffff;
    --border: #e0e0e0;
}

html { scroll-behavior: smooth; }
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; line-height: 1.6; color: var(--text); background-color: var(--white); overflow-x: hidden; }

/* ==========================================================================
   2. HEADER ET NAVIGATION (MEGA-MENU DESKTOP)
   ========================================================================== */
header { background: var(--white); padding: 1rem 5%; border-bottom: 1px solid #eee; position: sticky; top: 0; z-index: 1000; }
nav { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; z-index: 1001; position: relative; }
.logo img { max-height: 120px; width: auto; }

.hamburger { display: none; flex-direction: column; cursor: pointer; gap: 5px; z-index: 1001; }
.hamburger span { width: 25px; height: 3px; background-color: var(--primary); transition: all 0.3s ease; border-radius: 5px; }

nav ul { display: flex; list-style: none; gap: 30px; align-items: center; }
nav ul li { position: relative; }
nav a { text-decoration: none; color: var(--text); font-weight: 500; transition: color 0.3s; }
nav a:hover { color: var(--primary); }

.cta-nav { background: var(--primary); color: white !important; padding: 10px 20px; border-radius: 5px; transition: 0.3s; }
.cta-nav:hover { background-color: #0b1c11; }

.dropdown.mega-menu {
    position: absolute; top: 100%; left: 50%; background: var(--white); width: max-content; 
    max-width: 600px; box-shadow: 0 15px 35px rgba(0,0,0,0.1); border-radius: 12px;
    border: 1px solid var(--border); opacity: 0; visibility: hidden; transform: translate(-50%, 15px);
    transition: all 0.3s ease; display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; padding: 25px; z-index: 1000;
}
.has-dropdown:hover .dropdown.mega-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.mega-menu a { display: flex; flex-direction: column; align-items: center; padding: 15px; border-radius: 8px; text-align: center; transition: background 0.2s, transform 0.2s; }
.mega-menu a:hover { background: var(--light); transform: translateY(-3px); }
.dropdown-img { width: 100%; height: 100px; background-size: cover; background-repeat: no-repeat; background-position: center; border-radius: 6px; margin-bottom: 10px; display: block; }
.mega-menu span { font-size: 0.9rem; font-weight: 600; color: var(--text); }

/* ==========================================================================
   BANDEAU LOCAL (CORRIGÉ - SOUS LE MENU)
   ========================================================================== */
header .bandeau-local-anh {
    background-color: #FF9900 !important; /* Force le fond orange */
    width: 100% !important;
    padding: 12px 20px !important;
    display: flex !important;
    justify-content: center !important; /* Centre horizontalement */
    align-items: center !important; /* Centre verticalement */
    flex-wrap: wrap !important;
    text-align: center !important;
    border-top: 2px solid #cc7a00 !important; /* Ligne plus sombre au-dessus pour séparer du menu */
    margin: 0 !important;
}

header .bandeau-local-anh span, 
header .bandeau-local-anh strong {
    color: #ffffff !important; /* Force le texte en blanc pur */
    font-size: 1rem !important;
}

header .bandeau-texte-principal strong { font-weight: 700 !important; }
header .bandeau-texte-zones { font-weight: 500 !important; }
header .bandeau-separateur { margin: 0 15px !important; }

@media (max-width: 900px) {
    header .bandeau-local-anh {
        flex-direction: column !important;
        gap: 5px !important;
        padding: 10px !important;
    }
    header .bandeau-texte-principal strong {
        display: block !important;
        margin-bottom: 3px !important;
    }
    header .hide-mobile {
        display: none !important;
    }
}

/* ==========================================================================
   3. SECTIONS ACCUEIL (HERO, WIDGET)
   ========================================================================== */
.hero {
    display: flex; align-items: center; justify-content: space-between; padding: 80px 5%;
    background: linear-gradient(rgba(16, 39, 24, 0.8), rgba(16, 39, 24, 0.8)), 
                url('https://images.unsplash.com/photo-1573497019940-1c28c88b4f3e?auto=format&fit=crop&w=1350&q=80');
    background-size: cover; background-position: center; min-height: 70vh; gap: 40px;
}
.hero-content { flex: 1; color: white; max-width: 600px; }
.hero-content h1 { font-size: 3rem; margin-bottom: 20px; line-height: 1.2; }
.hero-content p { font-size: 1.2rem; margin-bottom: 20px; }

.hero-reassurance { list-style: none; font-size: 1.1rem; font-weight: 500; }
.hero-reassurance li { margin-bottom: 10px; padding-left: 20px; position: relative; }
.hero-reassurance li::before { content: "—"; position: absolute; left: 0; color: var(--accent); font-weight: bold; }

.hero-widget {
    background: var(--white); padding: 40px 35px; border-radius: 8px; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    width: 100%; max-width: 420px; border-top: 5px solid var(--accent);
}
.hero-widget h2 { color: var(--primary); font-size: 1.6rem; margin-bottom: 30px; text-align: center; font-weight: 700; }
.hero-widget label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--text); font-size: 0.95rem; }
.hero-widget select {
    width: 100%; padding: 14px 15px; margin-bottom: 25px; border: 1px solid var(--border); border-radius: 6px;
    font-family: 'Inter', sans-serif; font-size: 1rem; background-color: #fcfcfc; color: var(--text);
    appearance: none; -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat; background-position: right 1rem center; background-size: 1em;
}
.btn-devis-widget { width: 100%; padding: 16px; background: var(--accent); color: white; border: none; border-radius: 6px; font-size: 1.15rem; font-weight: 700; cursor: pointer; transition: 0.3s; margin-top: 10px; }
.btn-devis-widget:hover { background-color: #e68a00; transform: translateY(-2px); }

/* ==========================================================================
   4. CONTACT & HORAIRES (DESIGN CARTES CHEVAUCHANTES)
   ========================================================================== */
.contact-cards-container {
    max-width: 1200px;
    margin: -40px auto 40px auto; /* Le -40px permet de chevaucher le Hero */
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0 5%;
    position: relative;
    z-index: 10;
}
.contact-card {
    background: var(--white);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-top: 4px solid var(--accent);
}
.contact-card-title {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.contact-card-info {
    color: var(--text);
    font-size: 1.05rem;
    font-weight: 500;
}
.contact-card-info a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
}
.contact-card-info a:hover {
    color: var(--primary);
}

/* ==========================================================================
   5. REASSURANCE & GRILLES EXPERTISES
   ========================================================================== */
#reassurance { padding: 40px 5% 80px 5%; border-bottom: 1px solid var(--border); }
.reassurance-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.reassurance-item { flex: 1; min-width: 300px; text-align: center; background: #fcfcfc; border-radius: 8px; border: 1px solid var(--border); overflow: hidden; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05); transition: transform 0.4s ease, box-shadow 0.4s ease; text-align: center; }
.reassurance-item:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(16, 39, 24, 0.08); }
.reassurance-image { width: 100px; height: auto; margin: 0 auto 20px auto; display: block; object-fit: cover; border-radius: 8px; transition: transform 0.5s ease; box-shadow: 0 5px 15px rgba(0,0,0,0.06); }
.reassurance-item:hover .reassurance-image { transform: scale(1.03); }
.reassurance-item h3 { color: var(--primary); font-size: 1.3rem; margin: 0 25px 15px; font-weight: 700; }
.reassurance-item p { font-size: 0.95rem; color: #555; margin: 0 25px 30px; text-align: left; }

#expertises { padding: 80px 5%; background: var(--white); } 
#secteurs { padding: 80px 5%; background: var(--light); }
#expertises h2, #secteurs h2 { text-align: center; margin-bottom: 60px; font-size: 2.2rem; color: var(--primary); font-weight: 700; }

.nuisibles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; max-width: 1100px; margin: 0 auto; align-items: stretch; }
.nuisible-card { display: flex; flex-direction: column; align-items: center; justify-content: flex-start; background: var(--white); border-radius: 8px; text-decoration: none; color: var(--text); border: 1px solid var(--border); transition: 0.2s ease; text-align: center; box-shadow: 0 4px 6px rgba(16, 39, 24, 0.05); overflow: hidden; height: 100%; min-height: 260px; }
.nuisible-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(16, 39, 24, 0.1); }
.nuisible-image-container { width: 100%; height: 180px; background-size: cover; background-repeat: no-repeat; background-position: center; border-bottom: 3px solid var(--accent); flex-shrink: 0; }
.nuisible-card h3 { font-size: 1.1rem; font-weight: 600; width: 100%; padding: 15px 10px; margin: 0; flex-grow: 1; display: flex; align-items: center; justify-content: center; }

.card-more { background-color: #8B0000; color: white; cursor: pointer; border: none; justify-content: center; }
.card-more:hover { background-color: #660000; }
.icon-more { font-size: 4rem; font-weight: 300; line-height: 1; margin-bottom: 10px; color: white; }
.card-more h3 { flex-grow: 0; color: white; }

.hidden-nuisible, .hidden-secteur { display: none; }
.hidden-nuisible.visible, .hidden-secteur.visible { display: flex; animation: fadeIn 0.4s ease-in-out; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ==========================================================================
   6. AVIS CLIENTS & PARTENAIRES
   ========================================================================== */
#avis-clients { padding: 80px 5%; background-color: var(--white); border-top: 1px solid var(--border); }
.avis-header { text-align: center; margin-bottom: 40px; }
.avis-header h2 { font-size: 2.2rem; color: var(--primary); font-weight: 700; }

.partenaires-container { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 50px; max-width: 1000px; margin-left: auto; margin-right: auto; }
.partenaire-item { background: var(--light); color: var(--primary); padding: 10px 20px; border-radius: 50px; font-weight: 600; font-size: 0.95rem; border: 1px solid var(--border); }
.izipest-badge { background: var(--primary); color: var(--white); text-decoration: none; transition: 0.3s; }
.izipest-badge:hover { background: var(--accent); color: var(--white); border-color: var(--accent); }

.widget-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: center; width: 100%; }

/* ==========================================================================
   7. MEGA FOOTER
   ========================================================================== */
.main-footer { background-color: var(--white); border-top: 2px solid var(--border); padding: 60px 5% 20px; color: var(--text); }
.footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; margin-bottom: 40px; }
.footer-brand .footer-logo { max-width: 250px; height: auto; margin-bottom: 20px; }
.footer-brand p { font-size: 0.95rem; color: #555; margin-bottom: 25px; max-width: 90%; }
.footer-certifications { display: flex; flex-wrap: wrap; gap: 15px; align-items: center; }
.footer-certifications img { max-height: 50px; width: auto; filter: grayscale(100%); opacity: 0.8; transition: 0.3s; }
.footer-certifications img:hover { filter: grayscale(0%); opacity: 1; }
.footer-links h4 { color: var(--primary); font-size: 1.1rem; margin-bottom: 20px; font-weight: 700; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { text-decoration: none; color: #555; font-size: 0.95rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid var(--border); font-size: 0.85rem; color: #888; }

/* ==========================================================================
   8. PAGES INTERNES (CONTENU SEO)
   ========================================================================== */
.hero-page { padding: 80px 5%; background-size: cover; background-position: center; min-height: 40vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.hero-page-content h1 { color: var(--white); font-size: 2.8rem; margin-bottom: 15px; line-height: 1.2; }
.hero-page-content p { color: var(--white); font-size: 1.2rem; opacity: 0.9; max-width: 700px; margin: 0 auto; }

.page-content { padding: 80px 5%; background: var(--white); }
.content-wrapper { max-width: 900px; margin: 0 auto; }
.content-wrapper h2 { color: var(--primary); font-size: 2rem; margin-bottom: 25px; line-height: 1.3; }
.content-wrapper h3 { color: var(--primary); font-size: 1.5rem; margin-bottom: 20px; border-bottom: 2px solid var(--accent); padding-bottom: 10px; display: inline-block; }
.content-wrapper p { margin-bottom: 20px; font-size: 1.05rem; line-height: 1.7; color: #444; }

.content-wrapper ul { list-style-type: none; margin-bottom: 25px; }
.content-wrapper ul li { position: relative; padding-left: 30px; margin-bottom: 15px; font-size: 1.05rem; line-height: 1.6; color: #444; }
.content-wrapper ul li::before { content: "—"; position: absolute; left: 0; color: var(--accent); font-weight: bold; }

.margin-top-40 { margin-top: 40px; }

.info-box { background: var(--light); padding: 30px; border-radius: 8px; border-left: 4px solid var(--accent); }
.info-box h3 { font-size: 1.2rem; color: var(--primary); margin-bottom: 10px; }

.info-block { background: #f9f9f9; padding: 35px; border-left: 5px solid var(--accent); border-radius: 0 8px 8px 0; }
.info-box-danger { background-color: #fff3ed; border-left-color: #d9534f; }
.info-box-danger h3 { color: #d9534f; }
.info-box-danger p, .info-box-danger ul { margin-top: 15px; margin-bottom: 0; }

.info-block-primary { background-color: var(--primary); color: var(--white); border-left-color: var(--accent); }
.info-block-primary h3 { color: var(--white); border-bottom-color: var(--white); }
.info-block-primary p { color: var(--white); opacity: 0.9; }

.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 30px; }
.process-card { background: var(--light); padding: 30px 25px; border-radius: 8px; border: 1px solid var(--border); position: relative; }
.process-number { background: var(--primary); color: var(--white); width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 1.2rem; font-weight: bold; margin-bottom: 15px; }
.process-card h4 { color: var(--primary); font-size: 1.2rem; margin-bottom: 15px; }
.process-card p { font-size: 0.95rem; margin-bottom: 0; }

.cta-section { background: var(--primary); padding: 60px 5%; text-align: center; color: var(--white); }
.cta-content { max-width: 800px; margin: 0 auto; }
.cta-content h2 { font-size: 2.2rem; margin-bottom: 20px; }
.cta-content p { font-size: 1.1rem; margin-bottom: 35px; opacity: 0.9; }
.cta-buttons-container { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.btn-massive { display: inline-block; background: var(--accent); color: var(--white); font-size: 1.2rem; font-weight: bold; padding: 18px 40px; border-radius: 8px; text-decoration: none; transition: transform 0.2s, background 0.3s; cursor: pointer; text-align: center; border: none; }
.btn-massive:hover { background: #e68a00; transform: translateY(-3px); color: var(--white); }

.btn-transparent-outline { background-color: transparent; border: 2px solid var(--white); }
.btn-transparent-outline:hover { background-color: rgba(255, 255, 255, 0.1); }

/* ==========================================================================
   9. RESPONSIVE MOBILE (SMARTPHONE)
   ========================================================================== */
@media (max-width: 900px) {
    /* Responsive Top Bar */
    body #top .bandeau-local-anh { flex-direction: column !important; gap: 5px !important; padding: 12px !important; }
    body #top .bandeau-texte-principal strong { display: block !important; margin-bottom: 3px !important; }
    body #top .hide-mobile { display: none !important; }

    /* Responsive Contact Cards */
    .contact-cards-container { grid-template-columns: 1fr; margin-top: 20px; margin-bottom: 20px; gap: 15px; }

    .hamburger { display: flex; }
    .hamburger.toggle-active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.toggle-active span:nth-child(2) { opacity: 0; }
    .hamburger.toggle-active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    nav > ul#nav-links {
        position: fixed; top: 108px; left: -100%; width: 100%; height: calc(100vh - 108px);
        background-color: var(--white); display: block; padding-top: 15px; padding-bottom: 40px;
        overflow-y: auto; transition: left 0.4s ease; box-shadow: 5px 0 15px rgba(0,0,0,0.1); z-index: 1000; margin: 0;
    }
    nav > ul#nav-links.active { left: 0; }
    nav > ul#nav-links > li { display: block; width: 100%; text-align: left; }
    nav > ul#nav-links > li > a { font-size: 1.1rem; display: block; padding: 12px 20px; border-bottom: 1px solid #eeeeee; font-weight: 700; color: var(--primary); }

    .cta-nav { display: block; margin-top: 20px !important; width: calc(100% - 40px); margin-left: auto; margin-right: auto; padding: 12px 15px !important; text-align: center; }
    .dropdown.mega-menu { position: static; height: auto !important; transform: none; box-shadow: none; opacity: 1; visibility: visible; display: block; padding: 0; margin: 0; background: #f9f9f9; border: none; }
    .dropdown-img { display: none !important; }
    .mega-menu a { display: block; font-size: 0.95rem; padding: 10px 20px 10px 35px; text-align: left; border-bottom: 1px solid #f0f0f0; color: #444; border-radius: 0; }
    .mega-menu a:hover { background: #e8e8e8; transform: none; }

    .hero { flex-direction: column; padding: 60px 5%; }
    .hero-content { text-align: center; margin-bottom: 30px; }
    .hero-content h1 { font-size: 2.2rem; }
    .reassurance-container { flex-direction: column; }
    .nuisibles-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-container { grid-template-columns: 1fr; gap: 40px; }
    .process-grid { grid-template-columns: 1fr; gap: 20px; }
    .hero-page-content h1 { font-size: 2.2rem; }
}

@media (max-width: 500px) {
    .nuisibles-grid { grid-template-columns: 1fr; }
    .nuisible-card { padding: 25px; flex-direction: row; justify-content: flex-start; text-align: left; height: auto; min-height: 0;}
    .nuisible-image-container { width: 40px; height: 40px; margin-bottom: 0; margin-right: 15px; border-bottom: none;}
    .icon-more { font-size: 2.5rem; margin-bottom: 0; margin-right: 15px; }
    .footer-certifications { gap: 10px; justify-content: center; }
    .footer-brand, .footer-links { text-align: center; }
    .footer-brand p { margin: 0 auto 25px; }
}

/* ==========================================================================
   10. PAGE CONTACT ET FORMULAIRES
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: 1200px; margin: 0 auto; }
.contact-info h2 { color: var(--primary); font-size: 2.2rem; margin-bottom: 20px; line-height: 1.2; }
.contact-info > p { font-size: 1.1rem; color: #555; margin-bottom: 30px; }
.phone-link { display: inline-block; font-size: 2rem; font-weight: 700; color: var(--accent); text-decoration: none; margin-top: 10px; transition: transform 0.2s; }
.phone-link:hover { transform: scale(1.05); }

.contact-form-container { background: #fcfcfc; padding: 40px; border-radius: 8px; border: 1px solid var(--border); box-shadow: 0 10px 25px rgba(0,0,0,0.05); }
.contact-form-container h3 { font-size: 1.5rem; color: var(--primary); margin-bottom: 25px; text-align: center; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--text); font-size: 0.95rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 14px; border: 1px solid var(--border); border-radius: 6px; font-family: 'Inter', sans-serif; font-size: 1rem; background-color: var(--white); color: var(--text); transition: border-color 0.3s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); }

.contact-email-link { color: var(--primary); font-weight: 500; }
.w-100 { width: 100%; }

@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-form-container { padding: 30px 20px; }
}

/* ==========================================================================
   11. COMPOSANTS ADDITIONNELS & PRESTATIONS
   ========================================================================== */
.category-card { cursor: default; }
.category-card:hover { transform: none; box-shadow: 0 4px 6px rgba(16, 39, 24, 0.05); }
.sub-links-container { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 20px; width: 100%; }
.sub-link-pill { background-color: var(--light); color: var(--primary); font-size: 0.85rem; font-weight: 600; padding: 8px 15px; border-radius: 20px; text-decoration: none; border: 1px solid var(--border); transition: all 0.2s ease; }
.sub-link-pill:hover { background-color: var(--primary); color: var(--white); transform: translateY(-2px); }

.prestations-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.prestation-card { background: var(--white); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.prestation-card:hover { transform: translateY(-8px); box-shadow: 0 15px 30px rgba(16, 39, 24, 0.1); }
.prestation-img { height: 220px; background-size: cover; background-position: center; border-bottom: 3px solid var(--accent); }
.prestation-content { padding: 30px; flex-grow: 1; display: flex; flex-direction: column; }
.prestation-content h3 { color: var(--primary); font-size: 1.4rem; margin-bottom: 15px; border-bottom: none; }
.prestation-content p { color: #555; font-size: 0.95rem; line-height: 1.6; margin-bottom: 25px; flex-grow: 1; }

.btn-outline { align-self: flex-start; padding: 12px 25px; border: 2px solid var(--primary); color: var(--primary); text-decoration: none; border-radius: 6px; font-weight: 600; transition: all 0.3s ease; }
.btn-outline:hover { background: var(--primary); color: var(--white); }

@media (max-width: 900px) { .prestations-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .prestations-grid { grid-template-columns: 1fr; } .prestation-img { height: 180px; } }

/* ==========================================================================
   12. BANDEAU COOKIES
   ========================================================================== */
.cookie-banner { position: fixed; bottom: 0; left: 0; width: 100%; background-color: var(--white); border-top: 1px solid var(--border); box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1); padding: 20px 5%; display: flex; justify-content: space-between; align-items: center; z-index: 9999; transform: translateY(100%); transition: transform 0.5s ease; }
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { margin: 0; font-size: 0.95rem; color: var(--text); max-width: 60%; }
.cookie-banner a { color: var(--primary); font-weight: 700; text-decoration: underline; }
.cookie-buttons { display: flex; gap: 15px; }

.btn-cookie { padding: 10px 25px; font-size: 1rem; border-radius: 6px; cursor: pointer; font-weight: bold; transition: 0.3s; }
.btn-cookie-accept { background-color: var(--accent); color: var(--white); border: none; }
.btn-cookie-accept:hover { background-color: #e68a00; transform: translateY(-2px); }
.btn-cookie-refuse { background-color: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-cookie-refuse:hover { background-color: var(--light); }

@media (max-width: 900px) {
    .cookie-banner { flex-direction: column; text-align: center; gap: 15px; padding: 20px; }
    .cookie-banner p { max-width: 100%; font-size: 0.9rem; }
    .cookie-buttons { width: 100%; justify-content: center; }
}