/* === COOKIE BANNER === */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 800px;
    width: 92%;
    background-color: #003344;
    color: white;
    padding: 1rem 1.2rem;
    font-family: 'Lexend', sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    z-index: 9999;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* === TEXT === */
.cookie-banner span {
    flex: 1 1 100%;
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* === BUTTON GROUP === */
.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
}

/* === BUTTONS === */
.cookie-buttons button {
    background-color: #00FF99;
    border: none;
    padding: 8px 20px;
    border-radius: 16px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #003344;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
    height: auto;
    min-width: 120px;
    max-width: 160px;
    text-align: center;
}

.cookie-buttons button:hover {
    transform: scale(1.03);
    background-color: #00e68a;
}

/* === DECLINE STYLE === */
.cookie-buttons .decline {
    background-color: transparent;
    border: 2px solid #00FF99;
    color: #00FF99;
}

.cookie-buttons .decline:hover {
    background-color: #003344;
    border-color: #00e68a;
    color: #00e68a;
}

/* === MOBILE === */
@media (max-width: 1100px) {
    .cookie-banner {
        font-size: 0.6rem;
        width: 80%;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1rem;
        gap: 0.8rem;
    }

    .cookie-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cookie-buttons button {
        width: 100%;
        max-width: 260px;
        padding: 8px 20px;
        font-size: 0.6rem;
        border-radius: 16px;
    }

    .cookie-banner span {
        font-size: 0.6rem;
    }
}
