/* ------------------------------------------------------
   FOOTER
------------------------------------------------------- */

.site-footer {
    padding: 1rem 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border);
    margin-top: auto;
    color: var(--text);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .site-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* ------------------------------------------------------
   COOKIE CONSENT BANNER
------------------------------------------------------- */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(20,20,20,0.92);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 1.1rem 2rem;
    z-index: 999999;
    display: none;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.cookie-banner.show {
    display: block;
    opacity: 1;
}

.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.cookie-text strong {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
}

.cookie-text span {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.45;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
}

/* Mobile layout */
@media (max-width: 700px) {
    .cookie-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
        padding-bottom: 0.5rem;
    }

    .cookie-actions {
        width: 100%;
    }

    .cookie-actions .btn {
        flex: 1;
        justify-content: center;
    }
}
