/* Footer credit logo - Ecompilot */
.footer-credit-link {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    margin-left: 6px;
    text-decoration: none;
    position: relative;
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.footer-credit-link:hover {
    opacity: 0.9;
    transform: scale(1.05);
}
.footer-credit-logo {
    height: 30px;
    width: auto;
    max-width: 100px;
    object-fit: contain;
    display: block;
}
.footer-credit-tooltip {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(8px) scale(0.92);
    background: #1a1a1a;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    z-index: 1000;
    pointer-events: none;
}
.footer-credit-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -6px;
    border: 6px solid transparent;
    border-top-color: #1a1a1a;
}
.footer-credit-link:hover .footer-credit-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
}
