#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a2e;
    color: #f0f0f0;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    z-index: 9999;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}
#cookie-banner p {
    margin: 0;
    flex: 1;
    min-width: 220px;
    line-height: 1.6;
}
#cookie-banner a {
    color: #a8c5da;
    text-decoration: underline;
}
.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.btn-accept-cookies {
    background: #7a9e7e;
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
}
.btn-refuse-cookies {
    background: transparent;
    color: #ccc;
    border: 1px solid #555;
    padding: 10px 22px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
}
.btn-accept-cookies:hover { background: #5f8463; }
.btn-refuse-cookies:hover { border-color: #999; color: #fff; }
