.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    background-color: #1a1a1ae6;
    /* Slightly transparent dark grey */
    backdrop-filter: blur(10px);
    /* Premium feel */
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease-in-out;
}

.cookie-banner.hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}

.cookie-banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 1.2rem;
}

.cookie-banner p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
    font-family: 'Inter', 'Roboto', sans-serif;
    color: #e0e0e0;
}

.cookie-banner p a {
    color: #28a745;
    text-decoration: underline;
    font-weight: bold;
}

.cookie-banner p a:hover {
    color: #218838;
}

.cookie-btn {
    background-color: #28a745;
    /* A standard OK color or use your brand accent */
    color: #fff;
    border: none;
    padding: 0.6rem 2.5rem;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 6px;
    transition: background-color 0.2s ease, transform 0.1s ease;
    min-width: 150px;
    white-space: normal;
    text-align: center;
}

.cookie-btn:hover {
    background-color: #218838;
}

.cookie-btn:active {
    transform: scale(0.97);
}

/* Desktop sizing */
@media (min-width: 768px) {
    .cookie-banner-content {
        flex-direction: row;
        text-align: left;
    }

    .cookie-banner p {
        text-align: left;
        margin-right: 2rem;
    }
}