/* ==========================================
   Freeglass - Custom CSS
   Identité : NOIR / BLANC / VERT LIME
   ========================================== */

html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #0A0A0A;
}

/* Header scroll effect */
#header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
    background-color: rgba(10, 10, 10, 0.98);
}

/* ==========================================
   Menu dropdown "Services"
   ========================================== */
.has-dropdown {
    position: relative;
}
.has-dropdown > a {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.has-dropdown > a::after {
    content: "\f078"; /* fa-chevron-down */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.7em;
    transition: transform 0.3s ease;
}
.has-dropdown:hover > a::after,
.has-dropdown:focus-within > a::after {
    transform: rotate(180deg);
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 300px;
    width: max-content;
    background: #161616;
    border: 1px solid rgba(167, 217, 43, 0.25);
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.03);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 60;
}
.dropdown-menu::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: #161616;
    border-left: 1px solid rgba(167, 217, 43, 0.25);
    border-top: 1px solid rgba(167, 217, 43, 0.25);
}
.has-dropdown:hover > .dropdown-menu,
.has-dropdown:focus-within > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    color: #e5e7eb;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}
.dropdown-menu a:hover {
    background: rgba(167, 217, 43, 0.1);
    color: #A7D92B;
    padding-left: 18px;
}
.dropdown-menu a i.dropdown-icon {
    color: #A7D92B;
    width: 18px;
    text-align: center;
}
.dropdown-menu a.active-sub {
    background: rgba(167, 217, 43, 0.12);
    color: #A7D92B;
}

/* Mobile dropdown : version accordéon ouvert */
.mobile-dropdown {
    background: rgba(167, 217, 43, 0.04);
    border-left: 2px solid #A7D92B;
    margin-left: 8px;
    border-radius: 0 8px 8px 0;
}
.mobile-dropdown a {
    padding-left: 20px !important;
    font-size: 0.85rem;
}

/* Form input focus glow */
input:focus {
    box-shadow: 0 0 0 4px rgba(167, 217, 43, 0.2) !important;
}

/* FAQ animation */
.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating CTA pulse */
#floatingCta {
    animation: pulse-cta 2.5s ease-in-out infinite;
}

@keyframes pulse-cta {
    0%, 100% {
        box-shadow: 0 10px 25px rgba(167, 217, 43, 0.4);
    }
    50% {
        box-shadow: 0 10px 40px rgba(167, 217, 43, 0.8);
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0A0A0A;
}

::-webkit-scrollbar-thumb {
    background: #2A2A2A;
    border-radius: 5px;
    border: 2px solid #0A0A0A;
}

::-webkit-scrollbar-thumb:hover {
    background: #A7D92B;
}

/* Selection color */
::selection {
    background: #A7D92B;
    color: #0A0A0A;
}

/* Mobile fixes */
@media (max-width: 640px) {
    h1 {
        font-size: 2.5rem !important;
        line-height: 1.05 !important;
    }
    
    #floatingCta {
        bottom: 1rem;
        right: 1rem;
        padding: 0.875rem 1.25rem;
    }
}

/* Glow effect on green buttons */
.bg-brand-green {
    position: relative;
}

/* Improve image rendering */
img {
    image-rendering: -webkit-optimize-contrast;
}

/* Print styles */
@media print {
    #header, #floatingCta, footer {
        display: none;
    }
    body {
        background: white;
        color: black;
    }
}

/* Subtle reveal animation utility */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ==========================================
   Hero slideshow
   ========================================== */
#heroSlideshow {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 8s ease-in-out;
    transform: scale(1.05);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1.12);
}

/* ==========================================
   Hero Offres - Slider plein écran
   ========================================== */
#offresHeroSlideshow {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.offres-hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.8s ease-in-out, transform 9s ease-in-out;
    transform: scale(1.08);
}

.offres-hero-slide.active {
    opacity: 1;
    transform: scale(1.18);
}

.hero-offres-title {
    text-shadow:
        0 2px 10px rgba(0, 0, 0, 0.95),
        0 6px 30px rgba(0, 0, 0, 0.7);
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.7));
}

.hero-offres-subtitle {
    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.9),
        0 4px 16px rgba(0, 0, 0, 0.6);
}

.offres-hero-dot.active {
    background-color: #A7D92B !important;
    width: 30px;
    border-radius: 9999px;
}

@keyframes pulse-soft {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.animate-pulse-soft {
    animation: pulse-soft 2.5s ease-in-out infinite;
}

/* Hero text content - amélioration de la lisibilité */
.hero-text-content {
    position: relative;
    z-index: 5;
}

.hero-text-content h1,
.hero-text-content p {
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.9),
        0 4px 24px rgba(0, 0, 0, 0.6);
}

.hero-title {
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.8));
}

/* Hero form wrapper - glow et profondeur */
.hero-form-wrapper {
    position: relative;
    z-index: 5;
}

.hero-form-wrapper::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(167, 217, 43, 0.25) 0%, transparent 70%);
    filter: blur(30px);
    z-index: -1;
    pointer-events: none;
}

@media (max-width: 768px) {
    .hero-text-content h1,
    .hero-text-content p {
        text-shadow: 
            0 2px 6px rgba(0, 0, 0, 0.95),
            0 4px 18px rgba(0, 0, 0, 0.8);
    }
}

/* Slide indicators */
.slide-indicator {
    width: 30px;
    height: 4px;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slide-indicator:hover {
    background: rgba(255, 255, 255, 0.5);
}

.slide-indicator.active {
    background: #A7D92B;
    width: 50px;
    box-shadow: 0 0 12px rgba(167, 217, 43, 0.6);
}

/* ==========================================
   Map markers - Carte de France
   ========================================== */
.map-marker {
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    pointer-events: auto;
    cursor: pointer;
    z-index: 10;
}

.marker-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: #A7D92B;
    border: 3px solid #0A0A0A;
    border-radius: 50%;
    box-shadow: 0 0 0 1px #A7D92B, 0 0 12px rgba(167, 217, 43, 0.8);
    z-index: 2;
}

.marker-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    background: #0A0A0A;
    border-radius: 50%;
}

.marker-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    border: 2px solid #A7D92B;
    border-radius: 50%;
    animation: marker-pulse 2s ease-out infinite;
    z-index: 1;
}

@keyframes marker-pulse {
    0% {
        width: 16px;
        height: 16px;
        opacity: 0.8;
    }
    100% {
        width: 50px;
        height: 50px;
        opacity: 0;
    }
}

.marker-label {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 14px;
    background: #0A0A0A;
    border: 1.5px solid #A7D92B;
    color: #A7D92B;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.marker-label::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #A7D92B;
}

.marker-label-right {
    bottom: auto;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    margin-bottom: 0;
    margin-left: 18px;
}

.marker-label-right::after {
    top: 50%;
    left: 0;
    transform: translate(-100%, -50%);
    border: 5px solid transparent;
    border-right-color: #A7D92B;
    border-top-color: transparent;
}

.marker-label-bottom {
    bottom: auto;
    top: 100%;
    margin-bottom: 0;
    margin-top: 14px;
}

.marker-label-bottom::after {
    top: auto;
    bottom: 100%;
    border-top-color: transparent;
    border-bottom-color: #A7D92B;
}

.map-marker:hover .marker-label {
    background: #A7D92B;
    color: #0A0A0A;
    transform: translateX(-50%) scale(1.1);
}

.map-marker:hover .marker-label-right {
    transform: translateY(-50%) scale(1.1);
}

.map-marker:hover .marker-dot {
    transform: translate(-50%, -50%) scale(1.3);
    transition: transform 0.3s ease;
}

@media (max-width: 640px) {
    .marker-label {
        font-size: 9px;
        padding: 3px 6px;
    }
    .marker-dot {
        width: 12px;
        height: 12px;
    }
}

/* ==========================================
   Service Icons (Centre / Mobile) avec Tooltip
   ========================================== */
.service-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: rgba(167, 217, 43, 0.12);
    border: 1px solid rgba(167, 217, 43, 0.35);
    color: #A7D92B;
    font-size: 12px;
    cursor: help;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.service-icon:hover {
    background: #A7D92B;
    color: #0A0A0A;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(167, 217, 43, 0.4);
}

.service-icon::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: #0A0A0A;
    color: #A7D92B;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid rgba(167, 217, 43, 0.5);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.25s ease;
    z-index: 20;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.service-icon::after {
    content: '';
    position: absolute;
    bottom: calc(100% + 2px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    border: 5px solid transparent;
    border-top-color: #A7D92B;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.25s ease;
    z-index: 20;
}

.service-icon:hover::before,
.service-icon:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.service-icons-group {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

/* ==========================================
   Google Reviews Badge
   ========================================== */
.google-review-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    font-size: 11px;
    color: #cbd5e1;
    transition: all 0.25s ease;
    width: fit-content;
    text-decoration: none;
}

.google-review-badge:hover {
    background: rgba(167, 217, 43, 0.08);
    border-color: rgba(167, 217, 43, 0.4);
    transform: translateX(2px);
}

.google-review-badge:hover .google-review-text {
    color: #A7D92B;
}

.google-review-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ffffff;
    font-size: 10px;
    /* Google brand colors gradient effect */
    background: conic-gradient(from 0deg, #4285F4, #34A853, #FBBC05, #EA4335, #4285F4);
    padding: 1px;
    flex-shrink: 0;
}

.google-review-icon i {
    background: #ffffff;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4285F4 0%, #34A853 33%, #FBBC05 66%, #EA4335 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 11px;
    font-weight: 900;
}

.google-review-stars {
    color: #FBBC05;
    font-size: 9px;
    letter-spacing: 1px;
    display: inline-flex;
    gap: 1px;
    flex-shrink: 0;
}

.google-review-text {
    font-weight: 600;
    color: #e5e7eb;
    transition: color 0.25s ease;
    white-space: nowrap;
}

@media (max-width: 640px) {
    .google-review-text {
        font-size: 10px;
    }
    .google-review-stars {
        font-size: 8px;
    }
}

/* ==========================================
   Centre Photo Thumbnail (vignette compacte)
   ========================================== */
.centre-thumb {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    border: 2px solid rgba(167, 217, 43, 0.3);
    background: #161616;
    transition: all 0.3s ease;
    cursor: pointer;
}

.centre-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.centre-thumb:hover {
    border-color: #A7D92B;
    box-shadow: 0 4px 14px rgba(167, 217, 43, 0.3);
    transform: scale(1.05);
}

.centre-thumb:hover img {
    transform: scale(1.15);
}

.centre-thumb::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 10, 0.65);
    color: #A7D92B;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.centre-thumb:hover::after {
    opacity: 1;
}

@media (max-width: 640px) {
    .centre-thumb {
        width: 48px;
        height: 48px;
    }
}

/* Lightbox pour photos centres */
.centre-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(8px);
    animation: fadeIn 0.25s ease;
}

.centre-lightbox.active {
    display: flex;
}

.centre-lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    border: 2px solid #A7D92B;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(167, 217, 43, 0.25);
}

.centre-lightbox img {
    display: block;
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
}

.centre-lightbox-caption {
    background: #0A0A0A;
    color: #fff;
    padding: 14px 20px;
    text-align: center;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 14px;
    border-top: 1px solid rgba(167, 217, 43, 0.3);
}

.centre-lightbox-caption .accent {
    color: #A7D92B;
}

.centre-lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #A7D92B;
    color: #0A0A0A;
    border: none;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.centre-lightbox-close:hover {
    transform: rotate(90deg) scale(1.1);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ==========================================
   Prestations Icons (badges compacts avec tooltip)
   ========================================== */
.prestations-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.prestations-group {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
    padding-left: 8px;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.prestation-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 5px;
    background: rgba(167, 217, 43, 0.08);
    border: 1px solid rgba(167, 217, 43, 0.25);
    color: #A7D92B;
    font-size: 10px;
    cursor: help;
    transition: all 0.25s ease;
    flex-shrink: 0;
    text-decoration: none;
}

.prestation-icon:hover {
    background: #A7D92B;
    color: #0A0A0A;
    transform: translateY(-2px) scale(1.08);
    box-shadow: 0 3px 10px rgba(167, 217, 43, 0.45);
    border-color: #A7D92B;
}

.prestation-icon::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: #0A0A0A;
    color: #A7D92B;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid rgba(167, 217, 43, 0.5);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.25s ease;
    z-index: 30;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.prestation-icon::after {
    content: '';
    position: absolute;
    bottom: calc(100% + 2px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    border: 5px solid transparent;
    border-top-color: #A7D92B;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.25s ease;
    z-index: 30;
}

.prestation-icon:hover::before,
.prestation-icon:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 640px) {
    .prestation-icon {
        width: 22px;
        height: 22px;
        font-size: 9px;
    }
    .prestations-group {
        padding-left: 0;
        border-left: none;
        margin-top: 4px;
    }
}

/* ==========================================
   WhatsApp Floating Chat Button
   ========================================== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 50;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: #25D366;
    z-index: -1;
    animation: whatsapp-pulse 2s ease-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(-8deg);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6), 0 6px 16px rgba(0, 0, 0, 0.4);
    color: #FFFFFF;
}

.whatsapp-float .whatsapp-tooltip {
    position: absolute;
    right: calc(100% + 14px);
    top: 50%;
    transform: translateY(-50%);
    background: #0A0A0A;
    color: #FFFFFF;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-float .whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #0A0A0A;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(-4px);
}

.whatsapp-float .whatsapp-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 18px;
    height: 18px;
    background: #FF3B30;
    color: #FFFFFF;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #FFFFFF;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Décale le CTA mobile existant pour ne pas masquer le WhatsApp */
@media (max-width: 1023px) {
    #floatingCta {
        bottom: 96px !important;
    }
    .whatsapp-float {
        width: 56px;
        height: 56px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-float .whatsapp-tooltip {
        display: none;
    }
}

/* Utilitaire : gradient radial (non présent dans Tailwind CDN par défaut) */
.bg-gradient-radial {
    background-image: radial-gradient(circle, var(--tw-gradient-stops));
}

/* ==========================================
   Bouton "Offre du mois" — Halo diffus + zoom léger
   ========================================== */
.btn-fire {
    position: relative;
    z-index: 1;
    overflow: visible !important;
    isolation: isolate;
    animation: btn-fire-zoom 2.8s ease-in-out infinite;
    transform-origin: center center;
}

/* Halo diffus vert lime en dégradé radial */
.btn-fire::before {
    content: '';
    position: absolute;
    inset: -14px;
    border-radius: 9999px;
    background: radial-gradient(
        ellipse at center,
        rgba(167, 217, 43, 0.55) 0%,
        rgba(167, 217, 43, 0.30) 35%,
        rgba(167, 217, 43, 0.10) 65%,
        transparent 85%
    );
    filter: blur(16px);
    z-index: -1;
    animation: btn-fire-halo 2.8s ease-in-out infinite;
    pointer-events: none;
}

/* Au survol : halo plus intense, zoom mis en pause */
.btn-fire:hover {
    animation-play-state: paused;
    transform: scale(1.06);
    transition: transform 0.3s ease;
}

.btn-fire:hover::before {
    animation-duration: 1.6s;
}

/* Animation : pulsation douce du halo */
@keyframes btn-fire-halo {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.08);
    }
}

/* Animation : zoom in/out discret du bouton, synchronisé avec le halo */
@keyframes btn-fire-zoom {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.04);
    }
}

/* Mode "réduction des animations" pour accessibilité */
@media (prefers-reduced-motion: reduce) {
    .btn-fire,
    .btn-fire::before {
        animation: none !important;
    }
}
