/* ─── FOOTER ───────────────────────────────────────── */
.bukio-footer {
    background: transparent;
    border-top: 1px solid rgba(0,0,0,0.07);
    padding: 1rem 0;
}

.bukio-footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.bukio-footer-logo img {
    height: 28px;
    width: auto;
}

.bukio-footer-center {
    font-size: 0.78rem;
    color: #9ca3af;
}

.bukio-footer-icons {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.bukio-footer-icons li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.1);
    color: #6b7280;
    font-size: 0.9rem;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
    text-decoration: none;
}

.bukio-footer-icons li a:hover {
    border-color: #FBBF24;
    background: #FBBF24;
    color: #1e3a5f;
}

/* ─── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 768px) {
    .bukio-footer-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.75rem;
    }

    .bukio-footer-logo img {
        height: 22px;
    }
}

@media (max-width: 768px) {
    .bukio-footer-icons {
        display: none;
    }
}
