/* ══════════════════════════════════════════
 * FRO Footer Builder — Base Styles
 * ══════════════════════════════════════════ */

.fro-footer,
.fro-footer * {
    font-family: "Century Gothic", CenturyGothic, AppleGothic,
                 "URW Gothic L", Arial, sans-serif !important;
    font-weight: 400;
    box-sizing: border-box;
}

.fro-footer {
    background: var(--fro-bg, #080A0A);
    color: var(--fro-text, #ffffff);
}

/* Container */
.fro-footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 44px 22px 22px;
}

/* ── ÜST ALAN ── */
.fro-footer__top {
    display: grid;
    grid-template-columns: 1.15fr 2fr;
    gap: 32px;
    align-items: start;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255,255,255,.12);
}

/* Logo */
.fro-footer__logoLink {
    display: inline-block;
    line-height: 0;
    text-decoration: none;
}
.fro-footer__logo {
    height: 44px;
    width: auto;
    display: block;
}

/* Adres */
.fro-footer__addr {
    margin-top: 16px;
    line-height: 1.55;
    color: rgba(255,255,255,.72);
    font-size: 14px;
}
.fro-footer__addrLine {
    margin-top: 4px;
}

/* E-posta */
.fro-footer__mail {
    display: inline-block;
    margin-top: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}
.fro-footer__mail:hover {
    text-decoration: underline;
}

/* ── SOSYAL İKONLAR ── */
.fro-footer__social {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    flex-wrap: wrap;
}
.fro-footer__socialBtn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    transition: transform .15s, background .15s, border-color .15s;
    background: transparent;
}
.fro-footer__socialBtn svg {
    width: 18px;
    height: 18px;
}
.fro-footer__socialBtn:hover {
    transform: translateY(-1px);
    background: rgba(255,255,255,.06);
    border-color: rgba(255,255,255,.22);
}

/* ── MENÜLER ── */
.fro-footer__menus {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 100px;
}
.fro-footer__menuTitle {
    font-weight: 800;
    margin-bottom: 12px;
    font-size: 14px;
    letter-spacing: .2px;
}
.fro-footer__link {
    display: block;
    color: rgba(255,255,255,.72);
    text-decoration: none;
    font-size: 14px;
    padding: 4px 0;
    transition: color .2s;
}
.fro-footer__link:hover {
    color: #fff;
    text-decoration: underline;
}

/* ── ALT SATIR ── */
.fro-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding-top: 18px;
    align-items: flex-start;
    flex-wrap: wrap;
}
.fro-footer__legal {
    align-self: flex-start;
}
.fro-footer__legalLinks {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    color: rgba(255,255,255,.72);
    font-size: 12px;
    font-weight: 400;
}
.fro-footer__miniLink {
    color: rgba(255,255,255,.72);
    text-decoration: none;
    transition: color .2s;
}
.fro-footer__miniLink:hover {
    color: #fff;
    text-decoration: underline;
}
.fro-footer__sep {
    opacity: .35;
}
.fro-footer__copy {
    margin-top: 18px;
    color: rgba(255,255,255,.6);
    font-size: 12.5px;
    font-weight: 400;
}

/* Ödeme */
.fro-footer__payments {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}
.fro-footer__payLogo--wide {
    height: 28px;
    max-height: 28px;
    width: auto;
    display: block;
    margin-top: 2px;
}

/* ══════════════════════════════════════════
 * RESPONSIVE
 * ══════════════════════════════════════════ */
@media (max-width: 900px) {
    .fro-footer__top {
        grid-template-columns: 1fr;
    }
    .fro-footer__payments {
        justify-content: flex-start;
    }
}
@media (max-width: 520px) {
    .fro-footer__menus {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .fro-footer__container {
        padding: 34px 16px 18px;
    }
    .fro-footer__payLogo--wide {
        height: 24px;
    }
}
