.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    padding: 20px 0;
}

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

.site-design-credit {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.4;
}

.site-design-credit a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 12px;
    border: 1px solid rgba(242, 139, 30, 0.34);
    border-radius: 999px;
    background: rgba(242, 139, 30, 0.12);
    color: #ffffff;
    text-decoration: none;
    transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.site-design-credit a strong {
    color: #ffad52;
    font-weight: 700;
}

.site-design-credit a i {
    font-size: 10px;
}

.site-design-credit a:hover,
.site-design-credit a:focus-visible {
    border-color: rgba(242, 139, 30, 0.72);
    background: rgba(242, 139, 30, 0.22);
    color: #ffffff;
    transform: translateY(-1px);
}

@media (max-width: 767px) {
    .footer-bottom-inner {
        flex-direction: column;
        justify-content: center;
        gap: 12px;
        text-align: center;
    }

    .site-design-credit {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-design-credit a {
        transition: none;
    }
}
/* Footer adresini masaüstünde tek satırda göster */
@media (min-width: 992px) {
    footer .footer-item.contact ul li .content {
        white-space: nowrap;
    }
}