/* Han Footer Widget – Han Tema */

/* Genel yapı */
.han-footer {
    width: 100%;
    padding: 40px 24px 20px;
    background-color: #020617;
    color: rgba(248, 250, 252, 0.9);
    box-sizing: border-box;
}

.han-footer a {
    text-decoration: none;
}

/* Üst alan */
.han-footer-top {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 2fr);
    gap: 40px;
    align-items: flex-start;
}

/* Marka alanı */
.han-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.han-footer-logo img {
    max-width: 200px;
    height: auto;
    display: block;
}

.han-footer-brand-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(209, 213, 219, 0.95);
}

/* Sosyal alan */
.han-footer-social-wrap {
    margin-top: 4px;
}

.han-footer-social-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: rgba(148, 163, 184, 0.95);
    margin-bottom: 6px;
}

.han-footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.han-footer-social a {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background-color: rgba(15, 23, 42, 0.9);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #e5e7eb;
    font-size: 14px;
    transition: background-color 0.18s ease, transform 0.18s ease, color 0.18s ease;
}

.han-footer-social a:hover {
    transform: translateY(-1px);
}

/* Menü alanı */
.han-footer-menus {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.han-footer-menu-title {
    margin: 0 0 8px;
    font-size: 14px;
    font-weight: 600;
    color: #f9fafb;
}

.han-footer-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.han-footer-menu ul li {
    margin-bottom: 6px;
}

.han-footer-menu ul li a {
    font-size: 13px;
    color: rgba(209, 213, 219, 0.9);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.18s ease, transform 0.18s ease;
}

.han-footer-menu ul li a:hover {
    color: var(--e-global-color-secondary, #22c55e);
    transform: translateX(2px);
}

/* Alt satır */
.han-footer-bottom {
    border-top: 1px solid rgba(148, 163, 184, 0.35);
    margin-top: 32px;
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.han-footer-bottom-text {
    font-size: 12px;
    color: rgba(148, 163, 184, 0.9);
}

/* Responsive */
@media (max-width: 1024px) {
    .han-footer-top {
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.8fr);
        gap: 28px;
    }

    .han-footer-menus {
        gap: 18px;
    }
}

@media (max-width: 768px) {
    .han-footer {
        padding: 32px 16px 18px;
    }

    .han-footer-top {
        grid-template-columns: 1fr;
    }

    .han-footer-menus {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .han-footer-menus {
        grid-template-columns: 1fr;
    }

    .han-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .han-footer-bottom-text {
        font-size: 11px;
    }
}
