#cookie-banner {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    transition: bottom 0.5s ease-in-out;
    flex-wrap: wrap;
    font-family: 'Lato', sans-serif;
}

#cookie-banner.show {
    bottom: 0;
}

#cookie-banner p {
    margin: 0;
    font-size: 0.9rem;
    max-width: 800px;
}

#cookie-banner button {
    background: var(--primary-color);
    border: none;
    color: white;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

#cookie-banner button:hover {
    background: #b8962e;
}

#cookie-banner a {
    color: var(--primary-color);
    text-decoration: underline;
}