/* ============================================================
   Pickytidy Footer v2.0.0
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600&family=Jost:wght@300;400;500;600&display=swap');

.ptf-footer {
    --ptf-cream  : #f5efe6;
    --ptf-brown  : #3d2b1f;
    --ptf-gold   : #9b7e5a;
    --ptf-muted  : #7a6050;
    --ptf-border : rgba(155,126,90,.25);
    --ptf-ease   : cubic-bezier(0.4,0,0.2,1);

    background: var(--ptf-cream);
    font-family: 'Jost', sans-serif;
    padding: 56px 5% 0;
    box-sizing: border-box;
}
.ptf-footer *, .ptf-footer *::before, .ptf-footer *::after { box-sizing: border-box; }

/* ════════════════════════════════════════
   ÜST ALAN — Marka + Sütunlar
════════════════════════════════════════ */
.ptf-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    position: relative;
}
.ptf-main::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    border-bottom: 1px solid var(--ptf-border);
}

/* ── Marka ── */
.ptf-brand { display: flex; flex-direction: column; gap: 14px; }
.ptf-brand-link { text-decoration: none; display: inline-block; }
.ptf-brand-logo { max-width: 160px; height: auto; display: block; }
.ptf-brand-name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 22px; font-weight: 600;
    color: var(--ptf-gold);
    letter-spacing: -.01em;
    transition: opacity .2s;
}
.ptf-brand-link:hover .ptf-brand-name { opacity: .75; }
.ptf-brand-desc {
    font-size: 13.5px; font-weight: 300; line-height: 1.75;
    color: var(--ptf-muted); margin: 0;
    max-width: 280px;
}

/* ── Link Sütunu ── */
.ptf-link-col { display: flex; flex-direction: column; gap: 0; }
.ptf-col-title {
    font-size: 13px; font-weight: 600; letter-spacing: .06em;
    color: var(--ptf-brown); text-transform: uppercase;
    margin: 0 0 16px; padding: 0;
}
.ptf-col-links {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-direction: column; gap: 10px;
}
.ptf-col-link {
    font-size: 13.5px; font-weight: 400;
    color: var(--ptf-muted); text-decoration: none;
    line-height: 1.4;
    transition: color .2s, padding-left .2s;
    display: inline-block; position: relative;
}
.ptf-col-link::before {
    content: '›';
    position: absolute; left: -12px; opacity: 0;
    color: var(--ptf-gold);
    transition: opacity .2s, left .2s;
}
.ptf-col-link:hover { color: var(--ptf-gold); padding-left: 10px; }
.ptf-col-link:hover::before { opacity: 1; left: -2px; }

/* ════════════════════════════════════════
   ALT BAR — Sosyal + Telif
════════════════════════════════════════ */
.ptf-bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 0 24px;
    flex-wrap: wrap;
}

.ptf-bottom-left  { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.ptf-bottom-right { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.ptf-social-label {
    font-size: 13px; font-weight: 600; letter-spacing: .06em;
    color: var(--ptf-brown); text-transform: uppercase; white-space: nowrap;
}
.ptf-copyright {
    font-size: 12.5px; font-weight: 300; color: var(--ptf-muted); margin: 0;
}

/* ── Sosyal Medya Listesi ── */
.ptf-social-list { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }

/* ─── STİL: pill — İkon + İsim (siteniz gibi) ─── */
.ptf-social-style-pill .ptf-social-btn {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 8px 16px;
    background: #fff;
    border: 1.5px solid rgba(155,126,90,.2);
    border-radius: 50px;
    text-decoration: none;
    font-size: 13px; font-weight: 500;
    color: #3d2b1f;
    transition: background .25s, border-color .25s, color .25s, transform .25s, box-shadow .25s;
    box-shadow: 0 1px 6px rgba(61,43,31,.05);
}
.ptf-social-style-pill .ptf-social-btn:hover {
    background: var(--ptf-gold);
    border-color: var(--ptf-gold);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(155,126,90,.3);
}
.ptf-social-style-pill .ptf-social-icon {
    width: 16px; height: 16px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ptf-social-style-pill .ptf-social-icon svg { width: 16px; height: 16px; }
.ptf-social-style-pill .ptf-social-name {
    font-size: 13px; font-weight: 500; line-height: 1;
}

/* ─── STİL: circle — Sadece İkon ─── */
.ptf-social-style-circle .ptf-social-btn {
    width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: #fff;
    border: 1.5px solid rgba(155,126,90,.2);
    text-decoration: none; color: #3d2b1f;
    transition: background .25s, border-color .25s, color .25s, transform .25s, box-shadow .25s;
    box-shadow: 0 1px 6px rgba(61,43,31,.05);
}
.ptf-social-style-circle .ptf-social-btn:hover {
    background: var(--ptf-gold); border-color: var(--ptf-gold); color: #fff;
    transform: translateY(-3px) scale(1.06);
    box-shadow: 0 6px 18px rgba(155,126,90,.3);
}
.ptf-social-style-circle .ptf-social-icon { width: 18px; height: 18px; display: flex; align-items: center; justify-content: center; }
.ptf-social-style-circle .ptf-social-icon svg { width: 18px; height: 18px; }
.ptf-social-style-circle .ptf-social-name { display: none; }

/* ─── STİL: square — Kare İkon ─── */
.ptf-social-style-square .ptf-social-btn {
    width: 40px; height: 40px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    background: #fff;
    border: 1.5px solid rgba(155,126,90,.2);
    text-decoration: none; color: #3d2b1f;
    transition: all .25s;
    box-shadow: 0 1px 6px rgba(61,43,31,.05);
}
.ptf-social-style-square .ptf-social-btn:hover {
    background: var(--ptf-gold); border-color: var(--ptf-gold); color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(155,126,90,.3);
}
.ptf-social-style-square .ptf-social-icon { width: 18px; height: 18px; display: flex; }
.ptf-social-style-square .ptf-social-icon svg { width: 18px; height: 18px; }
.ptf-social-style-square .ptf-social-name { display: none; }

/* ─── STİL: branded — Marka Rengi ─── */
.ptf-social-style-branded .ptf-social-btn {
    width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: var(--ptf-brand-clr, #888);
    border: none;
    color: #fff; text-decoration: none;
    transition: transform .25s, box-shadow .25s, filter .25s;
    box-shadow: 0 2px 10px rgba(0,0,0,.15);
}
.ptf-social-style-branded .ptf-social-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,.2);
    filter: brightness(1.1);
}
.ptf-social-style-branded .ptf-social-icon { width: 18px; height: 18px; display: flex; }
.ptf-social-style-branded .ptf-social-icon svg { width: 18px; height: 18px; }
.ptf-social-style-branded .ptf-social-name { display: none; }

/* ── Ödeme İkonları ── */
.ptf-payment-icons { display: flex; align-items: center; gap: 6px; }
.ptf-pay-icon { display: flex; border-radius: 4px; overflow: hidden; box-shadow: 0 1px 4px rgba(0,0,0,.12); }
.ptf-pay-icon svg { width: 48px; height: 20px; display: block; }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1100px) {
    .ptf-main { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
    .ptf-main > *:last-child:nth-child(5) { grid-column: 2; }
}
@media (max-width: 768px) {
    .ptf-main { grid-template-columns: 1fr 1fr; gap: 28px; }
    .ptf-brand { grid-column: 1 / -1; }
    .ptf-bottom-bar { flex-direction: column; align-items: flex-start; gap: 16px; }
    .ptf-bottom-right { width: 100%; justify-content: space-between; }
}
@media (max-width: 480px) {
    .ptf-footer { padding: 40px 4% 0; }
    .ptf-main { grid-template-columns: 1fr; gap: 24px; }
    .ptf-bottom-left { flex-direction: column; align-items: flex-start; gap: 10px; }
}
