/* ══════════════════════════════════════════════════════════════
   Espresso Core — Footer Styles (turkiye-style v4.0)
   ══════════════════════════════════════════════════════════════ */

.md-espresso-footer {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.md-espresso-footer img {
    margin-bottom: 0 !important;
}

.md-espresso-footer__container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ── Top bar: logo + actions ─────────────────────────────── */
.md-espresso-footer__topbar {
    background: #222;
    padding: 20px 0;
    border-bottom: 1px solid #333;
}

.md-espresso-footer__topbar .md-espresso-footer__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.md-espresso-footer__logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.md-espresso-footer__logo img {
    max-height: 36px;
    width: auto;
}

.md-espresso-footer__logo span {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
}

.md-espresso-footer__actions {
    display: flex;
    gap: 10px;
}

.md-espresso-footer__btn {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 18px;
    text-decoration: none;
    transition: all 0.2s;
}

.md-espresso-footer__btn--outline {
    border: 1px solid #666;
    color: #ccc;
}

.md-espresso-footer__btn--outline:hover {
    border-color: #fff;
    color: #fff;
}

/* ── Category columns ────────────────────────────────────── */
.md-espresso-footer__nav {
    background: #222;
    padding: 30px 0;
    border-bottom: 1px solid #333;
}

.md-espresso-footer__cats {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
}

.md-espresso-footer__cat-title {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.md-espresso-footer__cat-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.md-espresso-footer__cat-links li {
    margin-bottom: 0;
}

.md-espresso-footer__cat-links li a {
    font-size: 12px;
    color: #999;
    text-decoration: none;
    display: block;
    padding: 3px 0;
    transition: color 0.2s;
}

.md-espresso-footer__cat-links li a:hover {
    color: #d51317;
}

/* ── Bottom: social + info columns ───────────────────────── */
.md-espresso-footer__bottom {
    background: #222;
    padding: 24px 0;
    border-bottom: 1px solid #333;
}

.md-espresso-footer__bottom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.md-espresso-footer__bottom-title {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.md-espresso-footer__bottom-text {
    font-size: 12px;
    color: #999;
    line-height: 1.5;
    margin: 0;
}

.md-espresso-footer__social {
    display: flex;
    gap: 14px;
}

.md-espresso-footer__social a {
    color: #999;
    transition: color 0.2s;
    display: flex;
    align-items: center;
}

.md-espresso-footer__social a:hover {
    color: #fff;
}

/* ── Copyright bar ───────────────────────────────────────── */
.md-espresso-footer__copy {
    background: #1a1a1a;
    padding: 16px 0;
    text-align: center;
}

.md-espresso-footer__copy p {
    font-size: 12px;
    color: #666;
    margin: 0 0 4px;
}

.md-espresso-footer__disclaimer {
    font-size: 11px;
    color: #555;
    line-height: 1.5;
    max-width: 800px;
    margin: 6px auto 6px !important;
}

.md-espresso-footer__credit {
    font-size: 11px;
    color: #555;
}

.md-espresso-footer__credit a {
    color: #d51317;
    text-decoration: none;
    font-weight: 600;
}

.md-espresso-footer__credit a:hover {
    text-decoration: underline;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1018px) {
    .md-espresso-footer__cats {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 767px) {
    .md-espresso-footer__cats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .md-espresso-footer__bottom-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .md-espresso-footer__topbar .md-espresso-footer__container {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }
}
