/* COOKIE BANNER STYLE */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: white;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    padding: 24px;
    border-radius: 12px;
    display: none;
    z-index: 10000;
    border: 1px solid #e0d9d1;
    max-width: 500px;
    font-family: 'Montserrat', sans-serif;
}

.cookie-banner.active {
    display: block;
    animation: slideUpCookie 0.5s ease-out;
}

@keyframes slideUpCookie {
    from { transform: translateY(100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.cookie-banner p {
    margin: 0 0 16px 0;
    font-size: 0.9rem;
    color: #444;
    line-height: 1.5;
}

.cookie-banner p a {
    color: #8e7d6b;
    text-decoration: underline;
}

.cookie-banner .buttons {
    display: flex;
    gap: 12px;
}

.cookie-banner button {
    padding: 10px 22px;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.btn-accept {
    background: #8e7d6b;
    color: white;
    border: none;
}

.btn-accept:hover {
    background: #2c3e50;
}

.btn-decline {
    background: transparent;
    color: #888;
    border: 1px solid #ddd;
}

.btn-decline:hover {
    border-color: #888;
    color: #444;
}

@media (max-width: 600px) {
    .cookie-banner {
        bottom: 10px;
        left: 10px;
        right: 10px;
        padding: 18px;
    }
    .cookie-banner .buttons {
        flex-direction: column;
    }
    .cookie-banner button {
        width: 100%;
    }
}
