/* 5 kolon flex düzen (desktop), mobilde kırılır) */
.site-footer .footer-widgets,
.site-footer .footer-widgets .col-full {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: flex-start;
}

.site-footer .footer-widgets .block {
    flex: 1 1 220px;
    max-width: calc(20% - 16px);
    box-sizing: border-box;
}

/* İlk 4 blok - daha küçük */
.site-footer .footer-widgets .block.footer-widget-1,
.site-footer .footer-widgets .block.footer-widget-2,
.site-footer .footer-widgets .block.footer-widget-3,
.site-footer .footer-widgets .block.footer-widget-4 {
    flex: 1 1 180px;
    max-width: calc(17% - 16px);
}

/* Son blok (İletişim) - daha büyük */
.site-footer .footer-widgets .block.footer-widget-5 {
    flex: 1 1 320px;
    max-width: calc(32% - 16px);
}

/* Mobil için */
@media (max-width: 768px) {

    .site-footer .footer-widgets .block.footer-widget-1,
    .site-footer .footer-widgets .block.footer-widget-2,
    .site-footer .footer-widgets .block.footer-widget-3,
    .site-footer .footer-widgets .block.footer-widget-4,
    .site-footer .footer-widgets .block.footer-widget-5 {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* Varsayılan widget reset’leri */
.site-footer .widget_nav_menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer .widget_nav_menu li {
    margin: 6px 0;
}

/* Başlık + toggle barı */
.site-footer .footer-accordion__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-footer .footer-accordion__title {
    margin: 0;
    font-size: 15px;
    line-height: 1.3;
}

/* Toggle (mobilde göster) */
.site-footer .footer-accordion__toggle {
    display: none;
    border: 0;
    background: transparent;
    padding: 6px;
    line-height: 1;
    cursor: pointer;
}

/* Panel (içerik) */
.site-footer .footer-accordion__panel {
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: max-height 240ms ease, visibility 0ms linear 240ms;
}

/* Menü linkleri */
.site-footer .widget_nav_menu a {
    text-decoration: none;
    color: inherit;
}

.site-footer .widget_nav_menu a:hover {
    text-decoration: underline;
}

/* Mobil davranışı */
@media (max-width: 768px) {
    .site-footer .footer-widgets .block {
        max-width: 100%;
    }

    .site-footer .footer-accordion__toggle {
        display: inline-block;
    }

    .site-footer .footer-accordion__panel {
        grid-template-rows: 0fr;
        padding-top: 0;
    }

    .site-footer .footer-accordion__panel[aria-hidden="false"] {
        max-height: 1200px;
        /* menülerinize göre artırabilirsiniz */
        visibility: visible;
        transition: max-height 240ms ease;
    }

    .site-footer .footer-accordion__toggle::after {
        content: "▾";
        display: inline-block;
        transform: rotate(0deg);
        transition: transform 200ms ease;
        color: #000;
    }

    .site-footer .footer-accordion__toggle[aria-expanded="true"]::after {
        transform: rotate(180deg);
    }
}

@media (min-width:769px) {
    .site-footer .footer-accordion__panel {
        max-height: none !important;
        visibility: visible !important;
        overflow: visible !important;
        transition: none !important;
    }
}

/* Çift başlığı gizle: nav_menu içindeki span.gamma’yı JS taşıyacağımız için saklıyoruz */
.site-footer .widget_nav_menu .widget-title.gamma {
    display: none;
}

/* Alt menü girintisi (isteğe bağlı) */
.site-footer .widget_nav_menu .sub-menu {
    padding-left: 12px;
    margin-top: 4px;
    border-left: 2px solid rgba(0, 0, 0, .06);
}