/* ======================================================================
   YZ DEFAULT — FOOTER SECTION
   Tüm stiller .f- prefix'li → global çakışma yok.
   Renk paleti: açık nötr (header ile homojen).
   ====================================================================== */

.f-bar {
    background: var(--bg-soft);
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    padding: var(--sp-10) 0 0 0;
    margin-top: var(--sp-12);
}

.f-inner {
    max-width: var(--container);
    margin-inline: auto;
    padding: 0 var(--sp-4);
}

@media (min-width: 768px) {
    .f-inner { padding: 0 var(--sp-6); }
}

/* ─────────── Grid (4 kolon) ─────────── */

.f-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-8);
    padding-bottom: var(--sp-4);       /* sp-8 → sp-4 — Y26 rozeti altındaki boşluk azalır */
    align-items: start;                 /* Marka kolonu kendi içeriğince yükselir, boşluk kalmaz */
}

@media (min-width: 640px) {
    .f-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--sp-6) var(--sp-8);
    }
}

@media (min-width: 1024px) {
    .f-grid {
        /* Marka kolonu biraz daha geniş, diğerleri eşit */
        grid-template-columns: 1.4fr 1fr 1fr 1fr;
        gap: var(--sp-8);
    }
}

.f-col-title {
    font-family: var(--font-display);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    color: var(--text);
    letter-spacing: 0.02em;
    margin: 0 0 var(--sp-4) 0;
    padding-bottom: var(--sp-2);
    border-bottom: 2px solid var(--primary-lt);
    display: inline-block;
}

/* ─────────── Kolon 1: Marka ─────────── */

.f-brand {
    /* hiç ek stil yok — sadece içerik */
}

/* 🔗 Logo + (brand name + tagline) yan yana — alt satıra düşmesin */
.f-brand-row {
    display: flex;
    align-items: center;
    gap: var(--sp-3, 12px);
    margin-bottom: var(--sp-3, 12px);
    flex-wrap: nowrap;
}
.f-brand-text {
    min-width: 0;
    flex: 1;
}
.f-brand-text .f-brand-name { margin: 0; line-height: 1.2; }
.f-brand-text .f-tagline { margin: 4px 0 0; }

/* 📜 Çok satırlı copyright */
.f-copyright-platform {
    font-size: 11.5px;
    opacity: 0.9;
    line-height: 1.55;
}
.f-copyright-link {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
    opacity: 0.9;
}
.f-copyright-link:hover { opacity: 1; }

/* ═══════════════════════════════════════════════════════════════════════
 * 🇹🇷 Yasal Sicil Kartı — VKN/MERSİS/ETBİS/KEP/VERBİS
 *
 * Türk e-ticaret yasal şeffaflık. Y26 rozetinin hemen üstünde,
 * mandıracı paleti (krem + earth green) ile uyumlu sade kart.
 * ═══════════════════════════════════════════════════════════════════════ */
.f-legal-card {
    margin: 6px 0 12px;
    padding: 14px 16px;
    background: linear-gradient(135deg, #FAF6EE 0%, #F5F1E8 100%);
    border: 1px solid rgba(61, 90, 61, 0.18);
    border-left: 3px solid #E30A17;  /* Türk bayrağı kırmızısı */
    border-radius: 12px;
    width: 100%;          /* Marka kolonunun TAM genişliğini kullan, eşit görünüm */
    max-width: 100%;
    box-sizing: border-box;
}
.f-legal-card-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px dashed rgba(61, 90, 61, 0.18);
}
.f-legal-flag {
    font-family: 'Twemoji Country Flags', 'Segoe UI Emoji', 'Apple Color Emoji',
                 'Noto Color Emoji', system-ui, sans-serif;
    font-size: 16px;
    line-height: 1;
}
.f-legal-card-title {
    font-size: 12px;
    font-weight: 700;
    color: #2C4530;
    letter-spacing: -0.005em;
    text-transform: uppercase;
}
.f-legal-list {
    margin: 0;
    padding: 0;
    display: grid;
    gap: 6px;
}
.f-legal-row {
    display: grid;
    grid-template-columns: 78px 1fr;   /* Tüm etiketler eşit hizalanır (VKN/MERSİS/ETBİS/KEP/VERBİS) */
    gap: 12px;
    align-items: center;
    font-size: 12px;
    line-height: 1.5;
    padding: 4px 0;                     /* Her satıra eşit dikey padding */
    border-bottom: 1px dashed rgba(61, 90, 61, 0.10);
}
.f-legal-row:last-child {
    border-bottom: none;
}
.f-legal-row dt {
    font-weight: 700;
    color: #3D5A3D;
    letter-spacing: 0.01em;
    margin: 0;
}
.f-legal-row dd {
    color: #4A4239;
    font-variant-numeric: tabular-nums;
    word-break: break-word;
    margin: 0;
}
.f-legal-sep {
    margin: 0 4px;
    color: rgba(61, 90, 61, 0.4);
}
.f-legal-sub {
    color: #6B6258;
    font-weight: 500;
}
.f-legal-etbis-link,
.f-legal-kep-link {
    color: #4A4239;
    text-decoration: none;
    border-bottom: 1px dotted rgba(61, 90, 61, 0.35);
    transition: color 0.15s, border-color 0.15s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.f-legal-etbis-link:hover,
.f-legal-kep-link:hover {
    color: #2C4530;
    border-bottom-color: #3D5A3D;
}
.f-legal-verify-icon {
    width: 11px;
    height: 11px;
    color: #D4A845;
    opacity: 0.7;
    transition: transform 0.15s, opacity 0.15s;
}
.f-legal-etbis-link:hover .f-legal-verify-icon {
    transform: translate(1px, -1px);
    opacity: 1;
}

@media (max-width: 480px) {
    .f-legal-card { padding: 10px 12px; width: 100%; max-width: 100%; box-sizing: border-box; }
    .f-legal-card-title { font-size: 11px; }
    .f-legal-row { font-size: 11px; grid-template-columns: 52px 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════════
 * Y26 Üyelik Rozeti — Elegan kart tasarımı
 *
 * Earth-green + honey gradient palet, hover'da hafif yükselme + glow.
 * Mandıracı Dede paleti (#3D5A3D, #D4A845, krem #FAF6EE) ile uyumlu.
 * ═══════════════════════════════════════════════════════════════════════ */
.f-y26-badge {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 10px 18px 10px 20px;
    margin: 4px 0 4px;            /* alt margin 18px → 4px — Marka kolonu altı temizlenir */
    background: linear-gradient(135deg, rgba(61, 90, 61, 0.05) 0%, rgba(212, 168, 69, 0.07) 100%);
    border: 1px solid rgba(61, 90, 61, 0.18);
    border-radius: 14px;
    text-decoration: none;
    color: var(--text);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.25s ease;
    max-width: 100%;
    width: fit-content;
    position: relative;
    overflow: hidden;
}
.f-y26-badge::before {
    /* Hafif parlama overlay'i, hover'da görünür */
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.4) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}
.f-y26-badge:hover {
    background: linear-gradient(135deg, rgba(61, 90, 61, 0.10) 0%, rgba(212, 168, 69, 0.14) 100%);
    border-color: rgba(212, 168, 69, 0.55);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px -8px rgba(61, 90, 61, 0.35);
    color: var(--text);
}
.f-y26-badge:hover::before { opacity: 1; }
.f-y26-badge:focus-visible {
    outline: 2px solid #D4A845;
    outline-offset: 2px;
}

.f-y26-badge-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.f-y26-badge-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.f-y26-badge:hover .f-y26-badge-logo {
    transform: rotate(-6deg) scale(1.06);
    box-shadow: 0 4px 14px rgba(230, 57, 70, 0.30), 0 0 0 1px rgba(230, 57, 70, 0.18);
}

.f-y26-badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
    min-width: 0;
    padding-right: 4px;
}
.f-y26-badge-label {
    font-size: 12.5px;
    font-weight: 700;
    color: #2C4530;
    letter-spacing: -0.005em;
}
.f-y26-badge-sub {
    font-size: 10.5px;
    color: var(--text-soft, #6B6258);
    margin-top: 2px;
    letter-spacing: 0.01em;
}

.f-y26-badge-arrow {
    margin-left: 4px;
    width: 14px;
    height: 14px;
    color: #D4A845;
    opacity: 0.55;
    transition: transform 0.2s ease, opacity 0.2s ease;
    flex-shrink: 0;
}
.f-y26-badge-arrow svg { width: 100%; height: 100%; }
.f-y26-badge:hover .f-y26-badge-arrow {
    transform: translate(2px, -2px);
    opacity: 1;
}

@media (max-width: 480px) {
    .f-y26-badge { padding: 9px 12px 9px 10px; gap: 9px; border-radius: 12px; width: 100%; max-width: 100%; box-sizing: border-box; }
    .f-y26-badge-icon { width: 30px; height: 30px; border-radius: 9px; }
    .f-y26-badge-icon svg { width: 17px; height: 17px; }
    .f-y26-badge-label { font-size: 12px; }
    .f-y26-badge-sub { font-size: 10px; }
}

.f-brand-logo {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-3);
    text-decoration: none;
    color: var(--text);
    margin-bottom: 0;
    flex-shrink: 0;
}
.f-brand-logo:hover { opacity: 0.85; color: var(--text); }

.f-brand-logo-img {
    height: 44px;
    width: auto;
    max-width: 160px;
	border-radius:8px;
    object-fit: contain;
}

.f-brand-logo-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: var(--fw-bold);
    font-size: var(--fs-xl);
    letter-spacing: -0.02em;
    flex-shrink: 0;
}

.f-brand-name {
    font-family: var(--font-display);
    font-size: var(--fs-lg);
    font-weight: var(--fw-bold);
    color: var(--text);
    margin: 0 0 var(--sp-2) 0;
    letter-spacing: -0.01em;
}

.f-tagline {
    font-size: var(--fs-sm);
    color: var(--text-muted);
    line-height: var(--lh-snug);   /* 1.4 — kompakt; relaxed (1.75) yerine */
    margin: 0 0 var(--sp-4) 0;
    max-width: 32ch;
}

.f-copyright {
    font-size: var(--fs-xs);
    color: var(--text-soft);
    margin: 0 0 var(--sp-4) 0;
    line-height: var(--lh-snug);
}

/* ─────────── Sosyal Medya ─────────── */

.f-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.f-socials li { list-style: none; }

.f-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    color: var(--text-muted);
    text-decoration: none;
    transition: all var(--t-fast);
}
.f-social-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--primary-on, #fff);
    transform: translateY(-2px);
}
.f-social-btn:hover.f-social-whatsapp { background: #25d366;
    color: #fff; border-color: #25d366; }
.f-social-btn:hover.f-social-facebook { background: #1877f2;
    color: #fff; border-color: #1877f2; }
.f-social-btn:hover.f-social-instagram { background: linear-gradient(45deg,#f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: #fff; border-color: transparent; }
.f-social-btn:hover.f-social-twitter { background: #000; border-color: #000; }
.f-social-btn:hover.f-social-youtube { background: #ff0000;
    color: #fff; border-color: #ff0000; }
.f-social-btn:hover.f-social-tiktok { background: #000; border-color: #000; }
.f-social-btn:hover.f-social-linkedin { background: #0a66c2;
    color: #fff; border-color: #0a66c2; }
.f-social-btn:hover.f-social-tripadvisor { background: #00aa6c;
    color: #fff; border-color: #00aa6c; }

.f-social-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* ─────────── Link Kolonları (2, 3, 4) ─────────── */

.f-link-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.f-link-list li { list-style: none; }

/* Bilgi kolonu — horizontal varyant (Anasayfa · Hakkımızda · SSS · vb.) */
.f-link-list-horizontal {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px 14px;
    align-items: center;
    padding-top: 4px;
}
.f-link-list-horizontal li {
    position: relative;
    padding-right: 14px;
}
.f-link-list-horizontal li:not(:last-child)::after {
    content: '·';
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    opacity: 0.45;
    font-weight: 700;
    line-height: 1;
}
.f-link-list-horizontal .f-link {
    font-size: 12.5px;
}
.f-link-list-horizontal .f-link:hover {
    padding-inline-start: 0;            /* Horizontal'da kayma istemiyoruz */
}

.f-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: var(--fs-sm);
    transition: color var(--t-fast), padding-inline-start var(--t-fast);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.f-link:hover {
    color: var(--primary-dk);
    padding-inline-start: 4px;
}
.f-link-icon {
    width: 14px;
    height: 14px;
    opacity: 0.6;
}

/* İletişim bilgileri (Kolon 4 üstü) */
.f-contact {
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
    margin-bottom: var(--sp-4);
    padding-bottom: var(--sp-4);
    border-bottom: 1px dashed var(--border);
}

.f-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: var(--fs-xs);
    color: var(--text-muted);
    text-decoration: none;
    line-height: var(--lh-snug);
}
.f-contact-item:hover {
    color: var(--primary-dk);
}
.f-contact-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    margin-top: 2px;
    opacity: 0.7;
}

/* ─────────── Alt Çizgi (KobiZeka credit) ─────────── */

.f-bottom {
    border-top: 1px solid var(--border);
    padding: var(--sp-4) 0;
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .f-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: start;
    }
}

.f-bottom-left {
    font-size: var(--fs-xs);
    color: var(--text-soft);
}

.f-credit {
    font-size: var(--fs-xs);
    color: var(--text-soft);
    line-height: var(--lh-snug);
}
.f-credit-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: var(--fw-medium);
    transition: color var(--t-fast);
}
.f-credit-link:hover {
    color: var(--primary-dk);
    text-decoration: underline;
}

/* NOT: Back-to-top butonu artık modules/back-to-top/'a taşındı. */
