/* Footer marka barı — vitrin ve panel. Renk footer CSS degiskenlerinden türetilir. */

.ucore-brand-bar {
    border-top: 1px solid color-mix(in srgb, var(--ucore-footer-text, #94a3b8) 12%, transparent);
    background: color-mix(in srgb, var(--ucore-footer-bg, #0f172a) 82%, #000);
    color: var(--ucore-footer-text, #94a3b8);
}

.ucore-brand-bar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 0;
    flex-wrap: wrap;
}

.ucore-brand-bar__product {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: inherit;
    opacity: .92;
    transition: opacity .2s ease;
}

.ucore-brand-bar__product:hover {
    opacity: 1;
}

.ucore-brand-bar__ticarext-logo {
    display: block;
    height: 20px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}

.ucore-brand-bar__tagline {
    font-size: 12px;
    white-space: nowrap;
}

.ucore-brand-bar__sep {
    font-size: 12px;
    opacity: .5;
    user-select: none;
}

.ucore-brand-bar__corp {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    opacity: .92;
    transition: opacity .2s ease;
}

.ucore-brand-bar__corp:hover {
    opacity: 1;
}

.ucore-brand-bar__ucore-logo {
    display: block;
    height: 22px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
}

.ucore-brand-bar--light {
    background: #f8fafc;
    border-top-color: #e2e8f0;
    color: #64748b;
}

/* Panel corporate footer */
.ucore-brand-bar--corporate {
    border-top: none;
    background: transparent;
    color: inherit;
}

.ucore-brand-bar--corporate .ucore-brand-bar__inner {
    justify-content: space-between;
    padding: 0;
    gap: 16px;
}

.ucore-brand-bar__copy {
    font-size: 13px;
    font-weight: 600;
    color: var(--bs-secondary-color, #64748b);
    text-align: right;
}

.ucore-brand-bar__copy-muted {
    font-weight: 400;
}

@media (max-width: 767.98px) {
    .ucore-brand-bar__inner {
        gap: 8px;
    }

    .ucore-brand-bar--corporate .ucore-brand-bar__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .ucore-brand-bar__copy {
        text-align: left;
    }
}
