/* v3955 D21 — Premium storefront footer
 * AJAN D21-D — her storefront sayfasında görünür dark gradient footer.
 * 4 sütun grid (brand+social, legal, contact, trust) + bottom bar.
 * Mobile < 720px: single column stack.
 * CSP-strict: inline JS yok.
 */

.msf-footer {
    background: linear-gradient(180deg, #1a1d27 0%, #0f1119 100%);
    color: #cbd5e1;
    padding: 56px 24px 0;
    margin-top: 80px;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    line-height: 1.5;
}

.msf-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.3fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.msf-footer__col {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
}

.msf-footer__brand {
    font-size: 20px;
    font-weight: 800;
    color: #c39b3a;
    margin: 0 0 8px;
    letter-spacing: -0.01em;
}

.msf-footer__about {
    font-size: 13px;
    line-height: 1.6;
    color: #94a3b8;
    margin: 0 0 16px;
}

.msf-footer__title {
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.msf-footer__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.msf-footer__links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.15s ease;
}

.msf-footer__links a:hover,
.msf-footer__links a:focus-visible {
    color: #c39b3a;
    outline: none;
}

.msf-footer__contact {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.msf-footer__contact-row {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.5;
    transition: color 0.15s ease;
}

.msf-footer__contact-row strong {
    color: #94a3b8;
    font-weight: 500;
    margin-right: 4px;
}

a.msf-footer__contact-row:hover,
a.msf-footer__contact-row:focus-visible {
    color: #c39b3a;
    outline: none;
}

.msf-footer__address {
    font-size: 12px;
    color: #94a3b8;
    margin-top: 4px;
}

.msf-footer__social {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.msf-footer__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 32px;
    padding: 0 10px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: background 0.15s ease, color 0.15s ease;
}

.msf-footer__social-link:hover,
.msf-footer__social-link:focus-visible {
    background: #c39b3a;
    color: #1a1d27;
    outline: none;
}

.msf-footer__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.msf-trust-badge {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(195, 155, 58, 0.12);
    border: 1px solid rgba(195, 155, 58, 0.32);
    border-radius: 12px;
    font-size: 11px;
    color: #c39b3a;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.msf-footer__mersis {
    font-size: 11px;
    color: #6b7280;
    margin-top: 12px;
    line-height: 1.5;
}

.msf-footer__bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
}

.msf-footer__copyright {
    color: #6b7280;
    margin: 0;
}

.msf-footer__credit {
    color: #6b7280;
    margin: 0;
}

.msf-footer__credit a {
    color: #c39b3a;
    text-decoration: none;
    transition: color 0.15s ease;
}

.msf-footer__credit a:hover,
.msf-footer__credit a:focus-visible {
    color: #e5b85a;
    outline: none;
}

@media (max-width: 720px) {
    .msf-footer {
        padding: 40px 16px 0;
        margin-top: 48px;
    }

    .msf-footer__inner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-bottom: 32px;
    }

    .msf-footer__bottom {
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
    }
}

@media print {
    .msf-footer {
        display: none;
    }
}
