.site-footer {
    border-top: 1px solid var(--border-color);
    /* Dinamik Y Boşluğu: Footer daha ferah durması için 2 katına çıkarıldı */
    padding: calc(var(--padding-y-desktop, 24px) * 2) 0;
    background: var(--color-bg);
    transition: all var(--transition-smooth);
    margin-top: auto;
}

.footer-row {
    display: flex;
    gap: 32px;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-brand {
    margin-bottom: 12px;
    transform: scale(0.9);
    transform-origin: left;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.footer-nav {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: var(--color-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

.footer-nav a:hover {
    color: var(--color-primary);
}

.footer-text {
    color: var(--color-muted);
    margin: 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-text::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: var(--radius-button); 
    background: var(--color-primary);
}

@media (max-width: 768px) {
    .site-footer {
        /* Mobilde Dinamik Y Boşluğu */
        padding: calc(var(--padding-y-mobile, 16px) * 2) 0;
    }
    .footer-row {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 20px;
    }
    .footer-brand {
        transform-origin: center;
        justify-content: center;
        width: 100%;
    }
    .footer-nav {
        justify-content: center;
    }
    .footer-text {
        justify-content: center;
    }
    .footer-text::before {
        display: none;
    }
}