/* Mobility Footer Widget */

.mfw-footer {
    width: 100%;
    padding: 48px 0 32px;
    --mfw-columns-gap: 80px;
}

.mfw-footer__top {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.5fr);
    column-gap: var(--mfw-columns-gap);
    row-gap: 40px;
    align-items: flex-start;
}

/* Newsletter */

.mfw-newsletter__title {
    font-size: 32px;
    font-weight: 600;
    margin: 0 0 16px;
}

.mfw-newsletter__text {
    font-size: 18px;
    line-height: 1.5;
    max-width: 520px;
    margin-bottom: 24px;
}

.mfw-newsletter__form-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.mfw-newsletter__input {
    flex: 1 1 260px;
    border-radius: 999px;
    border: 1px solid #ddd;
    padding: 0 24px;
    font-size: 16px;
    outline: none;
}

/* Masaüstü için buton */
.mfw-newsletter__button {
    flex: 0 0 auto;
    padding: 0 32px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Columns (menus + socials) */

.mfw-columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 48px;
    row-gap: 24px;
}

.mfw-column__heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.mfw-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mfw-menu li + li {
    margin-top: 8px;
}

.mfw-menu a {
    text-decoration: none;
}

/* Social icons */

.mfw-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.mfw-social__icon {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background-color: #f3f3f3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.mfw-social__icon i {
    font-size: 20px;
    color: #222;
}

/* Bottom bar */

.mfw-footer__bottom {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(0,0,0,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.mfw-bottom__left {
    font-size: 14px;
}

.mfw-bottom__logos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.mfw-payment-logo img {
    display: block;
    height: 32px;
    width: auto;
}

/* Responsive */

@media (max-width: 1024px) {
    .mfw-footer__top {
        grid-template-columns: 1fr;
    }

    .mfw-columns {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .mfw-footer {
        padding: 40px 0 24px;
    }

    .mfw-footer__top {
        grid-template-columns: 1fr;
        row-gap: 32px;
    }

    .mfw-columns {
        grid-template-columns: 1fr 1fr;
        column-gap: 24px;
    }

    .mfw-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .mfw-bottom__logos {
        justify-content: flex-start;
    }
}

/* ====== EN ÖNEMLİ KISIM: INPUT VE BUTON YÜKSEKLİĞİNİ EŞİTLE ====== */
/* MASAÜSTÜ (varsayılan) */
.mfw-footer input[type="email"],
.mfw-footer input[type="text"],
.mfw-footer textarea,
.mfw-footer .mfw-newsletter__input {
    display: block !important;
    box-sizing: border-box !important;
    width: 100% !important;
    height: 56px !important;        /* Buton yüksekliğiyle aynı */
    min-height: 0 !important;
    padding: 0 24px !important;
    line-height: 56px !important;
    border-radius: 999px !important;
}

/* Buton */
.mfw-footer button,
.mfw-footer .mfw-newsletter__button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    height: 56px !important;
    min-height: 0 !important;
    padding: 0 32px !important;
    border-radius: 999px !important;
}

/* MOBİLDE (≤767px) İNCELET */
@media (max-width: 767px) {

    .mfw-footer .mfw-newsletter__form-inner {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 10px !important;
    }

    .mfw-footer input[type="email"],
    .mfw-footer input[type="text"],
    .mfw-footer textarea,
    .mfw-footer .mfw-newsletter__input {
        height: 40px !important;      /* telefon için daha ince */
        line-height: 40px !important;
        padding: 0 16px !important;
        border-radius: 20px !important;
        font-size: 14px !important;
    }

    .mfw-footer button,
    .mfw-footer .mfw-newsletter__button {
        width: 100% !important;
        height: 40px !important;
        line-height: 40px !important;
        padding: 0 16px !important;
        border-radius: 20px !important;
        text-align: center !important;
        font-size: 14px !important;
    }
}