/* cookie-banner.css */
.cookie-banner {
    position: fixed;
    bottom: -100px;
    left: 0;
    width: 100%;
    background-color: var(--secondary, #0a192f);
    color: var(--white, #ffffff);
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transition: bottom 0.4s ease-in-out;
    text-align: center;
    flex-wrap: wrap;
    gap: 15px;
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-text {
    flex: 1 1 300px;
    max-width: 800px;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-text a {
    color: var(--primary, #fdb813);
    text-decoration: underline;
}

.cookie-text a:hover {
    color: var(--white, #ffffff);
}

.cookie-btn {
    background-color: var(--primary, #fdb813);
    color: var(--secondary, #0a192f);
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.cookie-btn:hover {
    background-color: var(--primary-dark, #e0a310);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 15px;
        flex-direction: column;
        gap: 10px;
    }
    .cookie-btn {
        width: 100%;
    }
}
