/* Cookie Consent Banner */
#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-primary-dark, #123642);
    color: var(--color-surface, #ffffff);
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    font-family: var(--font-family-body, 'Lato', sans-serif);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#cookie-consent-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: var(--container-width-max, 1200px);
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cookie-text {
    flex: 1;
    font-size: var(--font-size-base, 1rem);
    line-height: 1.6;
    margin: 0;
    color: var(--color-surface, #ffffff);
}

.cookie-text a {
    color: var(--color-secondary-light, #e6c585);
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    transition: color 0.2s, border-color 0.2s;
}

.cookie-text a:hover {
    color: var(--color-secondary, #c5a059);
    border-bottom-color: transparent;
}

.cookie-btn {
    background-color: var(--color-secondary, #c5a059);
    color: var(--color-primary-dark, #123642);
    border: none;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: var(--radius-sm, 4px);
    transition: all 0.2s ease;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-btn:hover {
    background-color: var(--color-secondary-light, #e6c585);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
}