.og-cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background-color: #ffffff;
    border-top: 3px solid var(--color-primary, #003476);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
    padding: 1rem 1.5rem;
}

.og-cookie-banner--visible {
    display: flex;
    animation: og-slide-up 0.3s ease;
}

.og-cookie-banner--hiding {
    animation: og-slide-down 0.3s ease forwards;
}

@keyframes og-slide-up {
    from { transform: translateY(100%); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

@keyframes og-slide-down {
    from { transform: translateY(0);    opacity: 1; }
    to   { transform: translateY(100%); opacity: 0; }
}

.og-cookie-banner__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.og-cookie-banner__text {
    flex: 1;
    min-width: 280px;
}

.og-cookie-banner__text p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #212529;
}

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

.og-cookie-banner__text a:hover {
    color: #002255;
}

.og-cookie-banner__actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.og-cookie-btn {
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    white-space: nowrap;
    line-height: 1.5;
}

.og-cookie-btn--primary {
    background: var(--color-primary, #003476);
    color: #ffffff;
    border-color: var(--color-primary, #003476);
}

.og-cookie-btn--primary:hover {
    background: #002255;
    border-color: #002255;
}

.og-cookie-btn--secondary {
    background: transparent;
    color: var(--color-primary, #003476);
    border-color: var(--color-primary, #003476);
}

.og-cookie-btn--secondary:hover {
    background: rgba(0, 52, 118, 0.08);
}

@media (max-width: 576px) {
    .og-cookie-banner__inner {
        flex-direction: column;
        align-items: stretch;
    }

    .og-cookie-banner__actions {
        flex-direction: column;
    }

    .og-cookie-btn {
        text-align: center;
    }
}
