/* ═══════════════════════════════════
   BLOC FOOTER — BOTTOM BAR
═══════════════════════════════════ */

.site-footer-mini {
    background: #F9F7F2;
    position: relative;
    z-index: 10;
}

.footer-bottom-mini {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 60px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(7, 11, 15, 0.4);
    font-weight: 500;
}

.footer-bottom-mini p {
    margin: 0;
}

.uteek-link {
    color: var(--color-primary);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.uteek-link:hover {
    color: #9a7d5c;
}

.legal-links-mini {
    display: flex;
    gap: 30px;
    align-items: center;
}

.legal-links-mini a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.legal-links-mini a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-secondary);
    transition: width 0.3s ease;
}

.legal-links-mini a:hover {
    color: var(--color-primary);
}

.legal-links-mini a:hover::after {
    width: 100%;
}

/* Mobile */
@media (max-width: 767px) {
    .footer-bottom-mini {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 40px 20px;
    }

    .legal-links-mini {
        flex-direction: column;
        gap: 15px;
    }
}