.ap-annonce {
    position: fixed;
    right: 200px;
    top: 70%;
    transform: translateY(-50%);
    z-index: 9999;
    max-width: 280px;
    background: #fefaf1;
    border: 1px solid #c2985c;
    border-radius: 10px;
    padding: 16px 18px;
    box-shadow: 0 6px 20px rgba(41, 30, 22, 0.18);
    font-family: 'Inter', sans-serif;
    text-align: center;
    animation: ap-annonce-in 0.5s ease-out;
}

@keyframes ap-annonce-in {
    from { transform: translateY(-50%) translateX(20px); opacity: 0; }
    to   { transform: translateY(-50%) translateX(0); opacity: 1; }
}

.ap-annonce p.ap-annonce-titre {
	font-family: 'Libre Baskerville', serif;
    color: #291e16;
    font-size: 0.95rem;
    margin: 0 0 35px 0;
    padding-right: 18px;
}

.ap-annonce-btn {
    display: inline-block;
    background: #6d1819 !important;
    color: #ffffff !important;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-family: 'Libre Baskerville', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
}

.ap-annonce-btn:hover {
    background: #291e16 !important;
    color: #ffffff !important;
}

#ap-annonce-close {
    position: absolute;
    top: 6px;
    right: 8px;
    background: none;
    border: none;
    font-size: 1.1rem;
    color: #291e16;
    cursor: pointer;
    line-height: 1;
}