/* LU unified site footer — used by every page in the theme via get_footer() */

.sp-footer {
    border-top: 1px solid rgba(232,228,220,0.06);
}
.sp-footer-container {
    background: #1C1C3A;
    margin: 0 44px;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    padding: 48px 60px 32px;
}
.sp-footer-top {
    display: flex; justify-content: space-between; align-items: flex-start;
    margin-bottom: 40px;
}
.sp-footer-logo img { height: 32px; filter: brightness(0) invert(1); }
.sp-footer-support { display: flex; flex-direction: column; }
.sp-footer-support-title {
    font-size: 16px; font-weight: 500; margin-bottom: 8px; color: #E8E4DC;
}
.sp-footer-support a {
    color: rgba(232,228,220,0.5); text-decoration: none; font-size: 14px;
    transition: color 0.3s; display: flex; align-items: center; gap: 8px;
}
.sp-footer-support a:hover { color: #E8E4DC; }
.sp-footer-social { display: flex; align-items: center; gap: 16px; }
.sp-footer-social a { transition: opacity 0.3s; }
.sp-footer-social a:hover { opacity: 0.7; }
.sp-footer-social img { width: 28px; height: 28px; filter: brightness(0) invert(1); opacity: 0.5; }
.sp-footer-bottom {
    display: flex; justify-content: space-between; align-items: baseline;
    border-top: 1px solid rgba(232,228,220,0.08);
    padding-top: 24px;
}
.sp-footer-docs { display: flex; gap: 24px; }
.sp-footer-docs a {
    color: rgba(232,228,220,0.35); text-decoration: none;
    font-size: 13px; transition: color 0.3s;
}
.sp-footer-docs a:hover { color: #E8E4DC; }
.sp-footer-legal {
    text-align: right; display: flex; flex-direction: column; gap: 4px;
}
.sp-footer-legal span {
    color: rgba(232,228,220,0.25); font-size: 13px; font-weight: 400;
}

@media (max-width: 960px) {
    .sp-footer-container { margin: 0 12px; padding: 32px 24px 24px; border-radius: 28px 28px 0 0; }
    .sp-footer-top { flex-direction: column; gap: 24px; }
    .sp-footer-bottom { flex-direction: column; gap: 16px; }
    .sp-footer-legal { text-align: left; }
}

/* ===== Cookie consent banner ===== */
.lu-cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
    max-width: 360px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px 14px 18px;
    background: rgba(28, 28, 58, 0.92);
    color: #E8E4DC;
    border: 1px solid rgba(232, 228, 220, 0.08);
    border-radius: 14px;
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    line-height: 1.4;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.lu-cookie-banner[hidden] { display: none; }
.lu-cookie-banner-text { flex: 1; }
.lu-cookie-banner-btn {
    flex-shrink: 0;
    padding: 8px 18px;
    background: #fff;
    color: #12122B;
    border: none;
    border-radius: 100px;
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.2s;
}
.lu-cookie-banner-btn:hover { opacity: 0.85; }

@media (max-width: 580px) {
    .lu-cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
        max-width: none;
        font-size: 12px;
    }
}
