/* ============================================
   Pickytidy — Bizi Takip Edin  v1.0.0
   ============================================ */

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

/* ── Bölüm ── */
.pts-section {
    --pts-cream : #fdf8f2;
    --pts-brown : #3d2b1f;
    --pts-gold  : #9b7e5a;
    --pts-muted : #7a6050;
    --pts-white : #ffffff;
    --pts-ease  : cubic-bezier(0.4, 0, 0.2, 1);

    position: relative;
    background-color: var(--pts-cream);
    padding: 72px 5%;
    overflow: hidden;
    font-family: 'Jost', sans-serif;
    box-sizing: border-box;
}

.pts-section *,
.pts-section *::before,
.pts-section *::after {
    box-sizing: border-box;
}

/* ── Dekoratif ── */
.pts-decor { position: absolute; inset: 0; pointer-events: none; z-index: 0; }

.pts-decor-circle {
    position: absolute;
    border-radius: 50%;
    background: var(--pts-gold);
    opacity: 0.055;
}
.pts-dc-1 { width: 360px; height: 360px; top: -120px; right: -80px; }
.pts-dc-2 { width: 220px; height: 220px; bottom: -60px; left: -60px; }

.pts-decor-dots {
    position: absolute;
    top: 50%;
    left: 4%;
    transform: translateY(-50%);
    width: 80px;
    height: 120px;
    background-image: radial-gradient(circle, rgba(155,126,90,0.25) 1.5px, transparent 1.5px);
    background-size: 14px 14px;
    opacity: 0.6;
}

/* ── Header ── */
.pts-header {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 52px;
}

.pts-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--pts-gold);
    margin-bottom: 12px;
}

.pts-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(28px, 3.8vw, 50px);
    font-weight: 600;
    color: var(--pts-brown);
    margin: 0 0 14px 0;
    line-height: 1.2;
}

.pts-subtitle {
    font-size: 15px;
    font-weight: 300;
    color: var(--pts-muted);
    max-width: 500px;
    margin: 0 auto 26px;
    line-height: 1.75;
}

.pts-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}
.pts-divider-line {
    display: block;
    width: 54px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--pts-gold), transparent);
}
.pts-divider-icon {
    font-size: 14px;
    color: var(--pts-gold);
    line-height: 1;
}

/* ══════════════════════════════
   KART GRIDI
══════════════════════════════ */
.pts-cards {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 660px;
    margin: 0 auto;
}

/* Grid style için */
.pts-style-square .pts-cards {
    display: grid;
    max-width: 900px;
}
.pts-style-square .pts-cards.pts-cols-2 { grid-template-columns: repeat(2, 1fr); }
.pts-style-square .pts-cards.pts-cols-3 { grid-template-columns: repeat(3, 1fr); }
.pts-style-square .pts-cards.pts-cols-4 { grid-template-columns: repeat(4, 1fr); }

/* Minimal style için */
.pts-style-minimal .pts-cards {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 100%;
}

/* ══════════════════════════════
   KART — PILL (YAY STILI) — DEFAULT
══════════════════════════════ */
.pts-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    background: var(--pts-white);
    border: 1px solid rgba(155, 126, 90, 0.15);
    border-radius: 18px;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.32s var(--pts-ease),
                box-shadow 0.32s var(--pts-ease),
                border-color 0.32s var(--pts-ease);
    box-shadow: 0 3px 16px rgba(61, 43, 31, 0.06);
}

.pts-card:hover {
    transform: translateX(6px) translateY(-2px);
    box-shadow: 0 12px 40px rgba(61, 43, 31, 0.12);
    border-color: var(--brand-color, var(--pts-gold));
}

/* Hover arkaplan efekti */
.pts-hover-bg {
    position: absolute;
    inset: 0;
    background: var(--brand-gradient, linear-gradient(135deg, var(--pts-gold), #e8c89a));
    opacity: 0;
    transition: opacity 0.32s var(--pts-ease);
    z-index: 0;
}

.pts-card:hover .pts-hover-bg {
    opacity: 0.06;
}

/* Sol accent çizgisi */
.pts-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--brand-gradient, var(--pts-gold));
    border-radius: 18px 0 0 18px;
    transform: scaleY(0);
    transform-origin: center;
    transition: transform 0.3s var(--pts-ease);
}
.pts-card:hover::before {
    transform: scaleY(1);
}

/* ── İkon sarmalayıcı ── */
.pts-icon-wrap {
    position: relative;
    z-index: 1;
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 14px;
    background: color-mix(in srgb, var(--brand-color, #9b7e5a) 10%, white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, transform 0.3s;
    flex-shrink: 0;
}

.pts-card:hover .pts-icon-wrap {
    background: var(--brand-gradient, var(--pts-gold));
}

.pts-icon {
    width: 26px;
    height: 26px;
    color: var(--brand-color, var(--pts-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
    flex-shrink: 0;
}

.pts-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.pts-card:hover .pts-icon {
    color: #ffffff;
}

/* ── Kart bilgileri ── */
.pts-card-info {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.pts-platform-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--pts-brown);
    transition: color 0.3s;
    line-height: 1.2;
}

.pts-card:hover .pts-platform-name {
    color: var(--brand-color, var(--pts-gold));
}

.pts-handle {
    font-size: 13px;
    font-weight: 400;
    color: var(--pts-gold);
    line-height: 1.3;
}

.pts-followers {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 400;
    color: var(--pts-muted);
    margin-top: 2px;
}

.pts-followers svg {
    flex-shrink: 0;
    opacity: 0.7;
}

/* ── Ok ── */
.pts-arrow {
    position: relative;
    z-index: 1;
    color: rgba(155, 126, 90, 0.4);
    transition: color 0.3s, transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pts-card:hover .pts-arrow {
    color: var(--brand-color, var(--pts-gold));
    transform: translateX(4px);
}

/* ══════════════════════════════
   KART — SQUARE (GRID)
══════════════════════════════ */
.pts-style-square .pts-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 20px 24px;
    gap: 12px;
    border-radius: 20px;
}

.pts-style-square .pts-card:hover {
    transform: translateY(-8px);
}

.pts-style-square .pts-card::before {
    left: 0; right: 0; bottom: auto;
    height: 3px; width: 100%;
    border-radius: 20px 20px 0 0;
    transform: scaleX(0);
    transform-origin: center;
}

.pts-style-square .pts-card:hover::before {
    transform: scaleX(1);
}

.pts-style-square .pts-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 18px;
}

.pts-style-square .pts-icon {
    width: 30px;
    height: 30px;
}

.pts-style-square .pts-card-info {
    align-items: center;
}

.pts-style-square .pts-arrow {
    display: none;
}

/* ══════════════════════════════
   KART — MINIMAL
══════════════════════════════ */
.pts-style-minimal .pts-card {
    width: 64px;
    height: 64px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
    gap: 0;
    flex-shrink: 0;
}

.pts-style-minimal .pts-card:hover {
    transform: scale(1.15) translateY(-4px);
}

.pts-style-minimal .pts-card::before { display: none; }

.pts-style-minimal .pts-icon-wrap {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.pts-style-minimal .pts-icon {
    width: 28px;
    height: 28px;
}

.pts-style-minimal .pts-card-info,
.pts-style-minimal .pts-arrow { display: none; }

/* ── Tooltip minimal modda ── */
.pts-style-minimal .pts-card[aria-label]:hover::after {
    content: attr(aria-label);
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--pts-brown);
    color: white;
    font-size: 11px;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 6px;
    white-space: nowrap;
    pointer-events: none;
    z-index: 10;
    font-family: 'Jost', sans-serif;
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 768px) {
    .pts-style-square .pts-cards.pts-cols-4 { grid-template-columns: repeat(2, 1fr); }
    .pts-style-square .pts-cards.pts-cols-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .pts-section { padding: 50px 4%; }
    .pts-style-square .pts-cards { grid-template-columns: repeat(2, 1fr) !important; }
    .pts-cards { gap: 10px; }
}
