/**
 * Modül: Tab Stilleri (Sadece Tasarım)
 */
.p-tabs { margin: 30px 0; width: 100%; }

/* Navigasyon */
.pt-nav { display: flex; gap: 10px; margin-bottom: -1px; position: relative; z-index: 2; overflow-x: auto; scrollbar-width: none; }
.pt-nav::-webkit-scrollbar { display: none; }

.pt-tab-btn {
    padding: 12px 24px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    color: #64748b;
    transition: all 0.3s ease;
    white-space: nowrap;
}

/* Paneller */
.pt-panels { background: #fff; border-radius: 0 0 12px 12px; position: relative; z-index: 1; }
.pt-panel { display: none; padding: 25px 0; animation: pFadeIn 0.4s ease; }
.pt-panel.pt-show { display: block; }

@keyframes pFadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 1. Klasik Stil */
.pt-classic .pt-nav { border-bottom: 1px solid #e2e8f0; }
.pt-classic .pt-tab-btn.pt-active { color: var(--p-blue); border-bottom: 2px solid var(--p-blue); }

/* 2. Pill (Hap) Stil */
.pt-pill .pt-nav { background: #f1f5f9; padding: 5px; border-radius: 100px; display: inline-flex; }
.pt-pill .pt-tab-btn { border-radius: 100px; padding: 8px 20px; }
.pt-pill .pt-tab-btn.pt-active { background: #fff; color: var(--p-blue); box-shadow: 0 2px 8px rgba(0,0,0,0.05); }

/* 3. Modern Çizgi Stil */
.pt-modern .pt-tab-btn { padding: 15px 0; margin-right: 30px; }
.pt-modern .pt-tab-btn.pt-active { color: #1e293b; box-shadow: inset 0 -2px 0 #1e293b; }

/* 4. Gölgeli Kutu Stil */
.pt-shadow .pt-panels { padding: 25px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); border: 1px solid #f1f5f9; border-radius: 12px; margin-top: 15px; }
.pt-shadow .pt-tab-btn.pt-active { color: var(--p-blue); background: #eff6ff; border-radius: 8px; }
