/* ═══════════════════════════════════════════════════════════════
   EUE NEUMORPHIC DESIGN SYSTEM — PART 2: COMPONENTS
   © EUE 2026
   ═══════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════
   BÖLÜM 6: KARTLAR
   ═══════════════════════════════════════════════════════════════ */

.eue-card {
    background: var(--eue-surface);
    border-radius: var(--eue-radius-xl);
    padding: 1.5rem;
    box-shadow:
        var(--eue-shadow-offset) var(--eue-shadow-offset) var(--eue-shadow-blur) var(--eue-shadow-dark),
        calc(var(--eue-shadow-offset) * -1) calc(var(--eue-shadow-offset) * -1) var(--eue-shadow-blur) var(--eue-shadow-light);
}

.eue-card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--eue-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background: linear-gradient(145deg, var(--eue-convex-from), var(--eue-convex-to));
    box-shadow:
        var(--eue-shadow-offset) var(--eue-shadow-offset) var(--eue-shadow-blur) var(--eue-shadow-dark),
        calc(var(--eue-shadow-offset) * -1) calc(var(--eue-shadow-offset) * -1) var(--eue-shadow-blur) var(--eue-shadow-light);
}

.eue-card-icon svg {
    width: 24px;
    height: 24px;
    color: var(--eue-primary);
}

.eue-card-title {
    font-family: var(--eue-font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--eue-text-primary);
    margin-bottom: 0.5rem;
}

.eue-card-text {
    font-size: 0.85rem;
    color: var(--eue-text-muted);
    line-height: 1.5;
}

/* ── Profil Kartı ────────────────────────────────────────────── */
.eue-card--profile { text-align: center; }

.eue-avatar {
    width: 72px;
    height: 72px;
    border-radius: var(--eue-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    background: linear-gradient(145deg, var(--eue-convex-from), var(--eue-convex-to));
    box-shadow:
        var(--eue-shadow-offset) var(--eue-shadow-offset) var(--eue-shadow-blur) var(--eue-shadow-dark),
        calc(var(--eue-shadow-offset) * -1) calc(var(--eue-shadow-offset) * -1) var(--eue-shadow-blur) var(--eue-shadow-light);
}

.eue-avatar svg {
    width: 32px;
    height: 32px;
    color: var(--eue-text-muted);
}

/* ═══════════════════════════════════════════════════════════════
   BÖLÜM 7: PROGRESS & BADGES
   ═══════════════════════════════════════════════════════════════ */

.eue-progress-wrap {
    margin-bottom: 1rem;
}

.eue-progress-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--eue-text-secondary);
    margin-bottom: 0.5rem;
}

.eue-progress-track {
    height: 10px;
    border-radius: var(--eue-radius-full);
    overflow: hidden;
    background: var(--eue-surface);
    box-shadow:
        inset 4px 4px 8px var(--eue-shadow-dark),
        inset -4px -4px 8px var(--eue-shadow-light);
}

.eue-progress-fill {
    height: 100%;
    border-radius: var(--eue-radius-full);
    transition: width 1.5s ease;
}

.eue-progress-fill--primary { background: linear-gradient(90deg, var(--eue-primary-light), var(--eue-primary)); }
.eue-progress-fill--success { background: linear-gradient(90deg, #4ade80, var(--eue-success)); }
.eue-progress-fill--warning { background: linear-gradient(90deg, #fbbf24, #f97316); }

/* ── Circular Progress ───────────────────────────────────────── */
.eue-circular {
    width: 120px;
    height: 120px;
    border-radius: var(--eue-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--eue-surface);
    box-shadow:
        var(--eue-shadow-offset) var(--eue-shadow-offset) var(--eue-shadow-blur) var(--eue-shadow-dark),
        calc(var(--eue-shadow-offset) * -1) calc(var(--eue-shadow-offset) * -1) var(--eue-shadow-blur) var(--eue-shadow-light);
}

.eue-circular-inner {
    width: 88px;
    height: 88px;
    border-radius: var(--eue-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--eue-surface);
    box-shadow:
        inset 4px 4px 8px var(--eue-shadow-dark),
        inset -4px -4px 8px var(--eue-shadow-light);
}

.eue-circular-value {
    font-family: var(--eue-font-display);
    font-size: 1.25rem;
    font-weight: 700;
}

/* ── Badges ──────────────────────────────────────────────────── */
.eue-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--eue-radius-full);
    background: var(--eue-surface);
    box-shadow:
        var(--eue-shadow-offset) var(--eue-shadow-offset) var(--eue-shadow-blur) var(--eue-shadow-dark),
        calc(var(--eue-shadow-offset) * -1) calc(var(--eue-shadow-offset) * -1) var(--eue-shadow-blur) var(--eue-shadow-light);
}

.eue-badge--pressed {
    box-shadow:
        inset 3px 3px 6px var(--eue-shadow-dark),
        inset -3px -3px 6px var(--eue-shadow-light);
}

/* ═══════════════════════════════════════════════════════════════
   BÖLÜM 8: ALERTS
   ═══════════════════════════════════════════════════════════════ */

.eue-alert {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: var(--eue-radius-md);
    border-left: 4px solid var(--eue-primary);
    background: var(--eue-surface);
    box-shadow:
        var(--eue-shadow-offset) var(--eue-shadow-offset) var(--eue-shadow-blur) var(--eue-shadow-dark),
        calc(var(--eue-shadow-offset) * -1) calc(var(--eue-shadow-offset) * -1) var(--eue-shadow-blur) var(--eue-shadow-light);
}

.eue-alert svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.eue-alert--info    { border-left-color: var(--eue-info); }
.eue-alert--info svg { color: var(--eue-info); }
.eue-alert--success    { border-left-color: var(--eue-success); }
.eue-alert--success svg { color: var(--eue-success); }
.eue-alert--warning    { border-left-color: var(--eue-warning); }
.eue-alert--warning svg { color: var(--eue-warning); }
.eue-alert--danger    { border-left-color: var(--eue-danger); }
.eue-alert--danger svg { color: var(--eue-danger); }

.eue-alert-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--eue-text-primary);
}

.eue-alert-text {
    font-size: 0.85rem;
    color: var(--eue-text-muted);
}

/* ═══════════════════════════════════════════════════════════════
   BÖLÜM 9: NAVİGASYON — Tabs, Pagination, Breadcrumb
   ═══════════════════════════════════════════════════════════════ */

/* ── Tabs ────────────────────────────────────────────────────── */
.eue-tabs {
    display: inline-flex;
    gap: 4px;
    padding: 5px;
    border-radius: var(--eue-radius-md);
    background: var(--eue-surface);
    box-shadow:
        inset 4px 4px 8px var(--eue-shadow-dark),
        inset -4px -4px 8px var(--eue-shadow-light);
}

.eue-tab {
    padding: 0.5rem 1rem;
    border-radius: var(--eue-radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--eue-text-muted);
    cursor: pointer;
    transition: var(--eue-transition);
    border: none;
    background: transparent;
    font-family: var(--eue-font-body);
}

.eue-tab:hover { color: var(--eue-text-primary); }

.eue-tab.active {
    color: var(--eue-primary);
    background: linear-gradient(145deg, var(--eue-convex-from), var(--eue-convex-to));
    box-shadow:
        var(--eue-shadow-offset) var(--eue-shadow-offset) var(--eue-shadow-blur) var(--eue-shadow-dark),
        calc(var(--eue-shadow-offset) * -1) calc(var(--eue-shadow-offset) * -1) var(--eue-shadow-blur) var(--eue-shadow-light);
}

/* ── Pagination ──────────────────────────────────────────────── */
.eue-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.eue-page-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--eue-radius-md);
    font-size: 0.85rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--eue-transition);
    background: var(--eue-surface);
    color: var(--eue-text-muted);
    font-family: var(--eue-font-body);
    box-shadow:
        var(--eue-shadow-offset) var(--eue-shadow-offset) var(--eue-shadow-blur) var(--eue-shadow-dark),
        calc(var(--eue-shadow-offset) * -1) calc(var(--eue-shadow-offset) * -1) var(--eue-shadow-blur) var(--eue-shadow-light);
}

.eue-page-btn:hover { transform: translateY(-1px); }

.eue-page-btn:active {
    box-shadow:
        inset 4px 4px 8px var(--eue-shadow-dark),
        inset -4px -4px 8px var(--eue-shadow-light);
}

.eue-page-btn.active {
    color: var(--eue-primary);
    background: linear-gradient(145deg, var(--eue-convex-from), var(--eue-convex-to));
}

.eue-page-btn svg {
    width: 18px;
    height: 18px;
}

/* ── Breadcrumb ──────────────────────────────────────────────── */
.eue-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    border-radius: var(--eue-radius-md);
    background: var(--eue-surface);
    box-shadow:
        var(--eue-shadow-offset) var(--eue-shadow-offset) var(--eue-shadow-blur) var(--eue-shadow-dark),
        calc(var(--eue-shadow-offset) * -1) calc(var(--eue-shadow-offset) * -1) var(--eue-shadow-blur) var(--eue-shadow-light);
}

.eue-breadcrumb a {
    color: var(--eue-primary);
    transition: var(--eue-transition);
}

.eue-breadcrumb a:hover { opacity: 0.7; }

.eue-breadcrumb svg {
    width: 14px;
    height: 14px;
    color: var(--eue-text-muted);
}

.eue-breadcrumb-current {
    color: var(--eue-text-muted);
}

/* ═══════════════════════════════════════════════════════════════
   BÖLÜM 10: MODAL & TOOLTİP
   ═══════════════════════════════════════════════════════════════ */

.eue-modal-overlay {
    position: fixed;
    inset: 0;
    background: var(--eue-overlay);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: var(--eue-z-modal);
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.eue-modal-overlay.open {
    display: flex;
    opacity: 1;
}

.eue-modal {
    background: var(--eue-surface);
    border-radius: var(--eue-radius-xl);
    padding: 1.5rem;
    max-width: 420px;
    width: 100%;
    box-shadow:
        var(--eue-shadow-offset) var(--eue-shadow-offset) var(--eue-shadow-blur) var(--eue-shadow-dark),
        calc(var(--eue-shadow-offset) * -1) calc(var(--eue-shadow-offset) * -1) var(--eue-shadow-blur) var(--eue-shadow-light);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.eue-modal-overlay.open .eue-modal { transform: scale(1); }

.eue-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.eue-modal-title {
    font-family: var(--eue-font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--eue-text-primary);
}

.eue-modal-body {
    font-size: 0.875rem;
    color: var(--eue-text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.eue-modal-footer {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
}

/* ── Tooltip ─────────────────────────────────────────────────── */
.eue-tooltip-wrap {
    position: relative;
    display: inline-block;
}

.eue-tooltip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    padding: 0.4rem 0.75rem;
    border-radius: var(--eue-radius-sm);
    font-size: 0.75rem;
    color: var(--eue-text-secondary);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    background: var(--eue-surface);
    box-shadow:
        var(--eue-shadow-offset) var(--eue-shadow-offset) var(--eue-shadow-blur) var(--eue-shadow-dark),
        calc(var(--eue-shadow-offset) * -1) calc(var(--eue-shadow-offset) * -1) var(--eue-shadow-blur) var(--eue-shadow-light);
}

.eue-tooltip-wrap:hover .eue-tooltip { opacity: 1; }

/* ═══════════════════════════════════════════════════════════════
   BÖLÜM 11: AVATAR & LİST
   ═══════════════════════════════════════════════════════════════ */

.eue-avatar-group {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 1rem;
}

.eue-avatar--xs { width: 32px; height: 32px; font-size: 0.65rem; }
.eue-avatar--sm { width: 40px; height: 40px; font-size: 0.75rem; }
.eue-avatar--md { width: 48px; height: 48px; font-size: 0.85rem; }
.eue-avatar--lg { width: 64px; height: 64px; font-size: 1rem; }
.eue-avatar--xl { width: 80px; height: 80px; font-size: 1.1rem; }

.eue-avatar-status {
    position: relative;
}

.eue-avatar-status::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 14px;
    height: 14px;
    background: var(--eue-success);
    border-radius: var(--eue-radius-full);
    border: 2px solid var(--eue-bg);
}

/* ── List Items ──────────────────────────────────────────────── */
.eue-list {
    border-radius: var(--eue-radius-md);
    overflow: hidden;
    background: var(--eue-surface);
    box-shadow:
        inset 4px 4px 8px var(--eue-shadow-dark),
        inset -4px -4px 8px var(--eue-shadow-light);
}

.eue-list-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    cursor: pointer;
    transition: var(--eue-transition);
    border-bottom: 1px solid var(--eue-border);
}

.eue-list-item:last-child { border-bottom: none; }
.eue-list-item:hover { background: rgba(255,255,255,0.08); }

.eue-list-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--eue-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(145deg, var(--eue-convex-from), var(--eue-convex-to));
    box-shadow:
        3px 3px 6px var(--eue-shadow-dark),
        -3px -3px 6px var(--eue-shadow-light);
}

.eue-list-icon svg {
    width: 18px;
    height: 18px;
}

.eue-list-content { flex: 1; min-width: 0; }

.eue-list-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--eue-text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.eue-list-subtitle {
    font-size: 0.75rem;
    color: var(--eue-text-muted);
}

/* ═══════════════════════════════════════════════════════════════
   BÖLÜM 18: YENİ EKLENEN BİLEŞENLER (Tables, Stepper, vs.)
   ═══════════════════════════════════════════════════════════════ */

/* ── Table ───────────────────────────────────────────────────── */
.eue-table-container {
    width: 100%;
    overflow-x: auto;
    background: var(--eue-surface);
    border-radius: var(--eue-radius-md);
    box-shadow:
        inset 4px 4px 8px var(--eue-shadow-dark),
        inset -4px -4px 8px var(--eue-shadow-light);
    padding: 1rem;
}

.eue-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
    text-align: left;
}

.eue-table th, .eue-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--eue-border);
}

.eue-table th {
    font-weight: 700;
    color: var(--eue-text-secondary);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.eue-table tr:last-child td {
    border-bottom: none;
}

/* ── Stepper ─────────────────────────────────────────────────── */
.eue-stepper {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 1.5rem;
}

.eue-stepper::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--eue-surface);
    box-shadow:
        inset 2px 2px 4px var(--eue-shadow-dark),
        inset -2px -2px 4px var(--eue-shadow-light);
    z-index: 1;
}

.eue-step {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.eue-step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    background: var(--eue-surface);
    color: var(--eue-text-muted);
    box-shadow:
        var(--eue-shadow-offset) var(--eue-shadow-offset) var(--eue-shadow-blur) var(--eue-shadow-dark),
        calc(var(--eue-shadow-offset) * -1) calc(var(--eue-shadow-offset) * -1) var(--eue-shadow-blur) var(--eue-shadow-light);
}

.eue-step.active .eue-step-number {
    color: var(--eue-primary);
    box-shadow:
        inset 3px 3px 6px var(--eue-shadow-dark),
        inset -3px -3px 6px var(--eue-shadow-light);
}

.eue-step-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--eue-text-secondary);
}

/* ── Chip / Tag ──────────────────────────────────────────────── */
.eue-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: var(--eue-radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    background: var(--eue-surface);
    color: var(--eue-text-primary);
    box-shadow:
        3px 3px 6px var(--eue-shadow-dark),
        -3px -3px 6px var(--eue-shadow-light);
}

.eue-chip-remove {
    background: none;
    border: none;
    color: var(--eue-text-muted);
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--eue-transition);
}

.eue-chip-remove:hover { color: var(--eue-danger); }

/* ── Star Rating ─────────────────────────────────────────────── */
.eue-star-rating {
    display: inline-flex;
    gap: 0.25rem;
}

.eue-star {
    font-size: 1.5rem;
    color: var(--eue-text-muted);
    cursor: pointer;
    transition: var(--eue-transition);
    text-shadow: 1px 1px 2px var(--eue-shadow-dark), -1px -1px 2px var(--eue-shadow-light);
}

.eue-star.active {
    color: var(--eue-warning);
}

/* ── File Upload ─────────────────────────────────────────────── */
.eue-file-upload {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border-radius: var(--eue-radius-md);
    background: var(--eue-surface);
    box-shadow:
        inset 4px 4px 8px var(--eue-shadow-dark),
        inset -4px -4px 8px var(--eue-shadow-light);
    cursor: pointer;
    transition: var(--eue-transition);
}

.eue-file-upload:hover {
    color: var(--eue-primary);
}

.eue-file-upload input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.eue-file-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--eue-text-muted);
}

/* ── Toast ───────────────────────────────────────────────────── */
.eue-toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 9999;
}

.eue-toast {
    padding: 1rem 1.5rem;
    border-radius: var(--eue-radius-md);
    background: var(--eue-surface);
    color: var(--eue-text-primary);
    box-shadow:
        var(--eue-shadow-offset) var(--eue-shadow-offset) var(--eue-shadow-blur) var(--eue-shadow-dark),
        calc(var(--eue-shadow-offset) * -1) calc(var(--eue-shadow-offset) * -1) var(--eue-shadow-blur) var(--eue-shadow-light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.eue-toast.show {
    transform: translateX(0);
}

/* ── Password Input Wrapper ──────────────────────────────────── */
.eue-password-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.eue-password-toggle {
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
    color: var(--eue-text-muted);
    cursor: pointer;
    font-size: 1rem;
}

/* © EUE 2026 — style.css Part 2/3 END */
