.plaquette-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    background: #00456f;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    text-decoration: none;
    font-family: inherit;
}

.plaquette-btn:hover {
    background: #003556;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    color: white;
    text-decoration: none;
}

.plaquette-btn svg {
    width: 20px;
    height: 20px;
}

.plaquette-btn.absolute-position {
    position: absolute;
    bottom: 100px; /* Distance par rapport au bas de la page */
}

/* Ajustement quand la bannière de cookies est visible */
.cookie-banner.visible ~ .plaquette-btn {
    bottom: 90px;
}

/* Version mobile */
@media (max-width: 768px) {
    .plaquette-btn {
        bottom: 15px;
        right: 15px;
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .cookie-banner.visible ~ .plaquette-btn {
        bottom: 120px;
    }
}