/* =============================================
   BAĞIŞ TAKİP SİSTEMİ - Getir-Style Premium Blue
   Inspired by Getir courier app UI
   Color: Logo Blue #3b82f6 + Deep Dark
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@500;700&display=swap');

:root {
    --tk-bg: #0a0e1a;
    --tk-surface: rgba(20, 27, 45, 0.7);
    --tk-surface2: rgba(30, 41, 59, 0.4);
    --tk-border: rgba(59, 130, 246, 0.06);
    --tk-border-glow: rgba(59, 130, 246, 0.18);
    --tk-text: #e2e8f0;
    --tk-text-dim: rgba(148, 163, 184, 0.6);
    --tk-accent: #3b82f6;
    --tk-accent2: #2563eb;
    --tk-accent-light: #60a5fa;
    --tk-accent-soft: rgba(59, 130, 246, 0.06);
    --tk-green: #22c55e;
    --tk-green2: #16a34a;
    --tk-purple: #a78bfa;
    --tk-red: #ef4444;
    --tk-radius: 20px;
    --tk-radius-sm: 12px;
    --tk-font: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

/* ---------- Page Base ---------- */
.takip-page {
    min-height: 100vh;
}

/* ---------- Navbar Takip Button ---------- */
.btn-takip-nav {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 10px;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.12);
    color: var(--tk-accent);
    font-size: 0.78rem;
    font-weight: 600;
    font-family: var(--tk-font);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-takip-nav:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.25);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.1);
    color: var(--tk-accent-light);
    transform: translateY(-1px);
}

.btn-takip-nav svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .btn-takip-nav {
        display: none !important;
    }
}

@media (min-width: 601px) and (max-width: 900px) {
    .btn-takip-nav span.takip-btn-text {
        display: none;
    }

    .btn-takip-nav {
        padding: 7px 10px;
    }
}

/* ---------- Hero Section ---------- */
.takip-hero {
    text-align: center;
    padding: 90px 20px 50px;
    position: relative;
    overflow: hidden;
}

.takip-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
}

.takip-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 130, 246, 0.06);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 100px;
    padding: 8px 22px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--tk-accent);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: badgeFadeIn 0.6s ease;
}

@keyframes badgeFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.takip-hero-title {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #93c5fd 50%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleFadeIn 0.8s ease;
}

@keyframes titleFadeIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.takip-hero-desc {
    font-size: 1rem;
    color: var(--tk-text-dim);
    max-width: 520px;
    margin: 0 auto 36px;
    line-height: 1.65;
    font-weight: 400;
    animation: descFadeIn 1s ease;
}

@keyframes descFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ---------- Search Box ---------- */
.takip-search-box {
    max-width: 560px;
    margin: 0 auto;
    position: relative;
    animation: searchSlideUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

@keyframes searchSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.takip-search-wrap {
    display: flex;
    align-items: center;
    background: rgba(20, 27, 45, 0.8);
    border: 1.5px solid rgba(59, 130, 246, 0.08);
    border-radius: 16px;
    padding: 6px;
    backdrop-filter: blur(16px);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

/* Premium Barcode Scanning Animation inside Search */
.takip-search-wrap.scanning::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
    height: 70%;
    width: 3px;
    background: var(--tk-accent);
    box-shadow: 0 0 15px 4px rgba(59, 130, 246, 0.8);
    animation: barcodeScan 1.2s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
    pointer-events: none;
    border-radius: 2px;
}

@keyframes barcodeScan {
    0% {
        left: 50px;
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    85% {
        opacity: 1;
    }

    100% {
        left: calc(100% - 150px);
        opacity: 0;
    }
}

.takip-search-wrap.scanning {
    border-color: var(--tk-accent);
    box-shadow: 0 0 0 4px var(--tk-accent-soft), 0 4px 20px rgba(0, 0, 0, 0.2);
}

.takip-search-wrap:focus-within {
    border-color: rgba(59, 130, 246, 0.35);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.06),
        0 8px 40px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(59, 130, 246, 0.05);
    transform: translateY(-2px);
}

.takip-search-icon {
    padding: 0 14px;
    color: var(--tk-text-dim);
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.takip-search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-size: 0.95rem;
    font-family: var(--tk-font);
    color: var(--tk-text);
    padding: 14px 0;
    letter-spacing: 0.02em;
    min-width: 0;
}

.takip-search-input::placeholder {
    color: var(--tk-text-dim);
    font-weight: 400;
}

.takip-search-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 24px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: var(--tk-font);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    flex-shrink: 0;
    letter-spacing: 0.01em;
}

.takip-search-btn:hover {
    transform: scale(1.04);
    box-shadow: 0 4px 24px rgba(59, 130, 246, 0.35);
}

.takip-search-btn:active {
    transform: scale(0.98);
}

.takip-search-hint {
    margin-top: 14px;
    font-size: 0.72rem;
    color: var(--tk-text-dim);
    opacity: 0.6;
    letter-spacing: 0.01em;
}

/* ---------- Loading Shimmer ---------- */
.takip-loading {
    display: none;
    max-width: 700px;
    margin: 32px auto;
    padding: 0 20px;
}

.takip-loading.active {
    display: block;
}

.shimmer-card {
    background: var(--tk-surface);
    border: 1px solid var(--tk-border);
    border-radius: var(--tk-radius);
    padding: 48px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.shimmer-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.04), transparent);
    animation: scanLine 1.5s ease infinite;
}

@keyframes scanLine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.shimmer-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(59, 130, 246, 0.08);
    border-top-color: var(--tk-accent);
    border-radius: 50%;
    animation: spinPulse 0.9s linear infinite;
}

@keyframes spinPulse {
    to {
        transform: rotate(360deg);
    }
}

.shimmer-text {
    font-size: 0.88rem;
    color: var(--tk-accent);
    font-weight: 600;
    letter-spacing: 0.02em;
    animation: textPulse 1.5s ease infinite;
}

@keyframes textPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.shimmer-dots {
    display: flex;
    gap: 6px;
}

.shimmer-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--tk-accent);
    animation: dotBounce 1.4s ease infinite;
}

.shimmer-dots span:nth-child(2) {
    animation-delay: 0.15s;
}

.shimmer-dots span:nth-child(3) {
    animation-delay: 0.3s;
}

.shimmer-dots span:nth-child(4) {
    animation-delay: 0.45s;
}

@keyframes dotBounce {

    0%,
    80%,
    100% {
        opacity: 0.15;
        transform: scale(0.7);
    }

    40% {
        opacity: 1;
        transform: scale(1.3);
    }
}

/* ---------- Result Panel (2-column) ---------- */
.takip-result {
    display: none;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.takip-result.active {
    display: block;
}

/* ===== DESKTOP: Navbar modalı kullanıldığı için eski panel gizli ===== */
/* Mobilde (.takip-result) eski davranışı korunur, desktop'ta renderResult 
   zaten navbar modalına yönlendirdiği için bu panel açılmaz. */

.takip-result-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 24px;
    align-items: start;
}

.takip-result-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.takip-result-right {
    position: sticky;
    top: 80px;
}

/* ---------- Donor Info Card ---------- */
.takip-donor-card {
    background: var(--tk-surface);
    border: 1px solid var(--tk-border);
    border-radius: var(--tk-radius);
    padding: 28px;
    margin-bottom: 16px;
    backdrop-filter: blur(16px);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: cardReveal 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.takip-donor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--tk-accent), var(--tk-accent2), var(--tk-accent));
    background-size: 200% 100%;
    animation: gradientSlide 3s linear infinite;
}

@keyframes gradientSlide {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

@keyframes cardReveal {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.takip-donor-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 24px;
    gap: 12px;
}

.takip-donor-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
    letter-spacing: -0.02em;
}

.takip-donor-code {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 10px;
    background: rgba(59, 130, 246, 0.06);
    border: 1px solid rgba(59, 130, 246, 0.1);
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
}

.takip-donor-code:hover {
    background: rgba(59, 130, 246, 0.12);
    border-color: rgba(59, 130, 246, 0.2);
    transform: scale(1.03);
}

.takip-donor-code span {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--tk-accent);
    letter-spacing: 0.06em;
}

.takip-donor-code svg {
    color: var(--tk-accent);
    opacity: 0.6;
}

.takip-donor-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.takip-donor-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.takip-donor-item label {
    font-size: 0.62rem;
    font-weight: 700;
    color: var(--tk-text-dim);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.takip-donor-item span {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--tk-text);
}

/* ============================================
   GETIR-STYLE TIMELINE - Animated Progress
   ============================================ */
.takip-timeline-card {
    background: var(--tk-surface);
    border: 1px solid var(--tk-border);
    border-radius: var(--tk-radius);
    padding: 28px;
    margin-bottom: 16px;
    backdrop-filter: blur(16px);
    opacity: 0;
    animation: cardReveal 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}

.takip-timeline-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.takip-timeline-title svg {
    color: var(--tk-accent);
}

/* Horizontal progress bar at top */
.takip-progress-bar {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 32px;
    padding: 0 8px;
}

.takip-progress-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.takip-progress-dot.pending {
    background: rgba(30, 41, 59, 0.6);
    border: 2px solid rgba(148, 163, 184, 0.1);
    color: rgba(148, 163, 184, 0.3);
}

.takip-progress-dot.completed {
    background: linear-gradient(135deg, var(--tk-green), var(--tk-green2));
    border: 2px solid transparent;
    color: #fff;
    box-shadow: 0 0 16px rgba(34, 197, 94, 0.3);
}

.takip-progress-dot.current {
    background: linear-gradient(135deg, var(--tk-accent), var(--tk-accent2));
    border: 2px solid transparent;
    color: #fff;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
    animation: currentPulse 2s infinite;
    transform: scale(1.15);
}

@keyframes currentPulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
    }

    50% {
        box-shadow: 0 0 32px rgba(59, 130, 246, 0.6);
    }
}

.takip-progress-line {
    flex: 1;
    height: 3px;
    border-radius: 3px;
    background: rgba(148, 163, 184, 0.06);
    position: relative;
    overflow: hidden;
}

.takip-progress-line .fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    border-radius: 3px;
    transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.takip-progress-line.completed .fill {
    width: 100%;
    background: linear-gradient(90deg, var(--tk-green), var(--tk-accent));
}

.takip-progress-line.partial .fill {
    width: 50%;
    background: linear-gradient(90deg, var(--tk-accent), rgba(59, 130, 246, 0.3));
    animation: partialGlow 2s infinite;
}

@keyframes partialGlow {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

.takip-progress-line.pending .fill {
    width: 0%;
}

/* Timeline steps (vertical detail cards) */
.takip-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.takip-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 16px;
    border-radius: 14px;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    opacity: 0;
    transform: translateX(-20px);
    position: relative;
}

.takip-step.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.takip-step.completed {
    opacity: 0.8;
}

.takip-step.completed.animate-in {
    opacity: 0.8;
}

.takip-step.current.animate-in {
    opacity: 1;
}

.takip-step.pending.animate-in {
    opacity: 0.25;
}

.takip-step.current {
    background: rgba(59, 130, 246, 0.04);
    border: 1px solid rgba(59, 130, 246, 0.08);
}

.takip-step-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    position: relative;
}

.takip-step.pending .takip-step-icon {
    background: rgba(30, 41, 59, 0.4);
}

.takip-step.completed .takip-step-icon {
    background: rgba(34, 197, 94, 0.08);
}

.takip-step.current .takip-step-icon {
    background: rgba(59, 130, 246, 0.1);
    animation: iconGlow 2s infinite;
}

@keyframes iconGlow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }

    50% {
        box-shadow: 0 0 12px 2px rgba(59, 130, 246, 0.15);
    }
}

.takip-step-check {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--tk-green);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--tk-bg);
}

.takip-step-check svg {
    width: 8px;
    height: 8px;
    stroke: #fff;
    stroke-width: 3;
    fill: none;
}

.takip-step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.takip-step-title {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--tk-text);
}

.takip-step.current .takip-step-title {
    color: #fff;
    font-weight: 700;
}

.takip-step-desc {
    font-size: 0.76rem;
    color: var(--tk-text-dim);
    line-height: 1.45;
}

.takip-step.current .takip-step-desc {
    color: rgba(148, 163, 184, 0.8);
}

.takip-step-date {
    font-size: 0.65rem;
    color: rgba(59, 130, 246, 0.5);
    font-weight: 500;
    margin-top: 2px;
}

.takip-step-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 8px;
    align-self: flex-start;
    margin-top: 4px;
    letter-spacing: 0.02em;
}

.takip-step.completed .takip-step-status {
    background: rgba(34, 197, 94, 0.06);
    color: var(--tk-green);
}

.takip-step.current .takip-step-status {
    background: rgba(59, 130, 246, 0.06);
    color: var(--tk-accent);
    animation: statusPulse 2s infinite;
}

@keyframes statusPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

/* Divider between steps */
.takip-step-divider {
    margin-left: 36px;
    height: 1px;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.06), transparent);
}

/* ---------- Media Evidence Section ---------- */
.takip-media-card {
    background: var(--tk-surface);
    border: 1px solid var(--tk-border);
    border-radius: var(--tk-radius);
    padding: 28px;
    margin-bottom: 16px;
    backdrop-filter: blur(16px);
    opacity: 0;
    animation: cardReveal 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

.takip-media-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.takip-media-title svg {
    color: var(--tk-accent);
}

.takip-media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
}

.takip-media-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.takip-media-item:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.takip-media-item img,
.takip-media-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.takip-media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.75) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 12px;
    opacity: 0;
    transition: opacity 0.3s;
}

.takip-media-item:hover .takip-media-overlay {
    opacity: 1;
}

.takip-media-dl {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.takip-media-dl:hover {
    background: rgba(59, 130, 246, 0.5);
}

.takip-media-type {
    font-size: 0.65rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.takip-media-empty {
    text-align: center;
    padding: 48px 20px;
    color: var(--tk-text-dim);
}

.takip-media-empty svg {
    opacity: 0.15;
    margin-bottom: 14px;
}

.takip-media-empty p {
    font-size: 0.82rem;
    line-height: 1.6;
}

/* ---------- Not Found ---------- */
.takip-notfound {
    display: none;
    text-align: center;
    padding: 60px 20px;
    max-width: 440px;
    margin: 0 auto;
}

.takip-notfound.active {
    display: block;
    animation: fadeSlideUp 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.takip-notfound-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.takip-notfound h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.takip-notfound p {
    font-size: 0.85rem;
    color: var(--tk-text-dim);
    line-height: 1.55;
    margin-bottom: 24px;
}

.takip-notfound-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    background: rgba(59, 130, 246, 0.06);
    border: 1px solid rgba(59, 130, 246, 0.12);
    color: var(--tk-accent);
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--tk-font);
    cursor: pointer;
    transition: all 0.3s;
}

.takip-notfound-btn:hover {
    background: rgba(59, 130, 246, 0.12);
    border-color: rgba(59, 130, 246, 0.25);
    transform: translateY(-2px);
}

/* ---------- Status Badges ---------- */
.takip-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 10px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.takip-status-badge.status-1 {
    background: rgba(59, 130, 246, 0.08);
    color: var(--tk-accent);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.takip-status-badge.status-2 {
    background: rgba(34, 197, 94, 0.06);
    color: var(--tk-green);
    border: 1px solid rgba(34, 197, 94, 0.1);
}

.takip-status-badge.status-3 {
    background: rgba(167, 139, 250, 0.06);
    color: var(--tk-purple);
    border: 1px solid rgba(167, 139, 250, 0.1);
}

.takip-status-badge.status-4 {
    background: rgba(59, 130, 246, 0.06);
    color: var(--tk-accent);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.takip-status-badge.status-5 {
    background: rgba(34, 197, 94, 0.06);
    color: var(--tk-green);
    border: 1px solid rgba(34, 197, 94, 0.1);
}

.takip-status-badge.status-6 {
    background: rgba(34, 197, 94, 0.08);
    color: var(--tk-green);
    border: 1px solid rgba(34, 197, 94, 0.12);
}

/* ---------- Lightbox ---------- */
.takip-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(24px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.takip-lightbox.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.takip-lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 16px;
    overflow: hidden;
}

.takip-lightbox-content img,
.takip-lightbox-content video {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    display: block;
}

.takip-lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.takip-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: scale(1.1);
}

/* ---------- SUCCESS MODAL TRACKING CODE ---------- */
.success-tracking-section {
    margin: 0 0 1.2rem 0;
    padding: 14px 16px;
    background: rgba(59, 130, 246, 0.04);
    border: 1px solid rgba(59, 130, 246, 0.08);
    border-radius: 14px;
    text-align: center;
}

.success-tracking-label {
    font-size: 0.6rem;
    font-weight: 800;
    color: rgba(59, 130, 246, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
}

.success-tracking-code {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.success-tracking-code span {
    font-size: 1.15rem;
    font-weight: 800;
    color: #3b82f6;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.08em;
}

.success-tracking-copy {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.12);
    color: #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.success-tracking-copy:hover {
    background: rgba(59, 130, 246, 0.18);
    transform: scale(1.1);
}

.success-tracking-hint {
    font-size: 0.68rem;
    color: rgba(148, 163, 184, 0.5);
    margin-top: 10px;
}

.success-tracking-hint a {
    color: #3b82f6 !important;
}

/* ---------- Download Buttons (matching desktop modal) ---------- */
.takip-download-section {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    flex-wrap: wrap;
}

.takip-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.takip-download-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.takip-download-btn.primary {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(37, 99, 235, 0.1));
    border-color: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
}

.takip-download-btn.primary:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(37, 99, 235, 0.18));
    border-color: rgba(59, 130, 246, 0.35);
    color: #93bbfc;
}

.takip-download-btn svg {
    flex-shrink: 0;
    opacity: 0.8;
}

/* ---------- System Info ---------- */
.takip-system-info {
    margin-top: 36px;
    padding: 24px;
    background: rgba(59, 130, 246, 0.04);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 16px;
    text-align: center;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    backdrop-filter: blur(8px);
    animation: fadeSlideUp 0.8s ease 0.3s both;
}

.takip-system-info-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #60a5fa;
    margin-bottom: 20px;
}

.takip-system-info-title svg {
    flex-shrink: 0;
}

.takip-system-info-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.takip-system-info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    text-align: center;
}

.takip-system-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(59, 130, 246, 0.08);
    margin-bottom: 4px;
}

.takip-system-info-item svg {
    flex-shrink: 0;
}

.takip-system-info-item strong {
    color: rgba(255, 255, 255, 0.9);
    display: block;
    margin-bottom: 2px;
}

.takip-system-info-item a {
    color: #60a5fa;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.takip-system-info-item a:hover {
    color: #93c5fd;
}

/* ---------- Timeline Done State (Status 5) ---------- */
.takip-step.done .takip-step-icon {
    background: linear-gradient(135deg, #059669, #10b981);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3), 0 0 40px rgba(16, 185, 129, 0.1);
}

.takip-step.done .takip-step-title {
    color: #34d399;
}

.takip-step.done .takip-step-desc {
    color: rgba(52, 211, 153, 0.6);
}

.takip-step-status.done {
    background: rgba(16, 185, 129, 0.1) !important;
    color: #34d399 !important;
    border-color: rgba(16, 185, 129, 0.2) !important;
}

.takip-progress-dot.done {
    background: linear-gradient(135deg, #059669, #10b981);
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.3);
}

/* ---------- Animations ---------- */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------- Not Found Modal ---------- */
.takip-notfound-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(10, 14, 26, 0.85);
    backdrop-filter: blur(8px);
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: 90px 20px 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow-y: auto;
}

.takip-notfound-overlay.active {
    display: flex;
    opacity: 1;
}

.takip-notfound-modal {
    background: var(--tk-surface);
    border: 1px solid var(--tk-border);
    border-radius: var(--tk-radius);
    padding: 28px 32px 40px;
    width: 100%;
    max-width: 600px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    flex-shrink: 0;
}

.takip-notfound-overlay.active .takip-notfound-modal {
    transform: translateY(0) scale(1);
}

.takip-notfound-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--tk-text-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.takip-notfound-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: scale(1.1);
}

.takip-notfound-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    border: 1px solid rgba(239, 68, 68, 0.2);
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.15);
}

.takip-notfound-modal h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.takip-notfound-modal p {
    font-size: 0.95rem;
    color: var(--tk-text-dim);
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.takip-notfound-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--tk-font);
}

.takip-notfound-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.takip-notfound-modal .takip-system-info {
    margin-top: 36px;
    padding: 24px;
    text-align: left;
    background: rgba(59, 130, 246, 0.04);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 16px;
}

@media (max-width: 960px) {
    .takip-result-grid {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .takip-result-right {
        position: static;
        order: 2;
        /* Timeline is second */
    }

    .takip-result-left {
        display: contents;
        /* Break out of column to use direct orders */
    }

    .takip-donor-card {
        order: 1;
        /* Doner Info is first */
        width: 100%;
    }

    .takip-media-card {
        order: 3;
        /* Photo Evidence is last */
        width: 100%;
    }
}

@media (max-width: 768px) {
    /* Navbar inherits transparent-to-glassy scroll effect from style.css */

    /* Hero - mobile optimized */
    .takip-hero {
        padding: 80px 20px 28px;
    }

    .takip-hero-badge {
        padding: 6px 16px;
        font-size: 0.65rem;
        margin-bottom: 16px;
    }

    .takip-hero-title {
        font-size: 1.75rem;
        margin-bottom: 12px;
    }

    .takip-hero-desc {
        font-size: 0.85rem;
        margin-bottom: 24px;
        line-height: 1.55;
        padding: 0 8px;
    }

    /* Search box - full width mobile */
    .takip-search-box {
        max-width: 100%;
    }

    .takip-search-wrap {
        border-radius: 14px;
        padding: 5px;
    }

    .takip-search-icon {
        padding: 0 10px;
    }

    .takip-search-icon svg {
        width: 18px;
        height: 18px;
    }

    .takip-search-input {
        font-size: 0.88rem;
        padding: 12px 0;
    }

    .takip-search-btn span {
        display: none;
    }

    .takip-search-btn {
        padding: 12px 16px;
        border-radius: 10px;
    }

    .takip-search-hint {
        font-size: 0.68rem;
        margin-top: 10px;
        padding: 0 4px;
    }

    /* Result panel as fullscreen modal on mobile */
    .takip-result {
        position: fixed;
        inset: 0;
        z-index: 99999;
        background: rgba(10, 14, 26, 0.4);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        padding: 24px 16px;
        overflow-y: auto;
        display: none;
        align-items: center;
        justify-content: center;
    }

    .takip-result.active {
        display: flex;
    }

    .takip-result-grid {
        background: var(--tk-surface);
        border: 1px solid var(--tk-border);
        border-radius: var(--tk-radius);
        width: 100%;
        max-width: 440px;
        margin: auto;
        display: flex;
        flex-direction: column;
        gap: 0;
        position: relative;
    }

    /* Cards */
    .takip-donor-card,
    .takip-timeline-card,
    .takip-media-card {
        padding: 20px;
        border-radius: 0;
        border: none;
        margin-bottom: 0;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
    }

    .takip-donor-card {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .takip-timeline-card {
        padding-top: 15px;
    }

    .takip-donor-card::before {
        display: none;
    }

    /* Donor header */
    .takip-donor-header {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        gap: 10px;
        margin-bottom: 18px;
    }

    .takip-donor-header-left {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .takip-donor-header-right {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .takip-donor-name {
        font-size: 1.15rem;
    }

    .takip-donor-code {
        padding: 0;
        background: transparent;
        border: none;
        gap: 4px;
        margin-top: -2px;
    }

    .takip-donor-code span {
        font-size: 0.7rem;
        color: var(--tk-text-dim);
    }

    .takip-donor-code svg {
        width: 12px;
        height: 12px;
    }
    
    .takip-mobile-close-btn {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: rgba(255,255,255,0.06);
        border: 1px solid rgba(255,255,255,0.1);
        color: var(--tk-text-dim);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .takip-status-badge {
        padding: 5px 12px;
        font-size: 0.65rem;
        border-radius: 20px;
    }

    /* Donor grid - 3 columns on mobile as exact Image 1 */
    .takip-donor-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 18px 10px;
    }

    .takip-donor-item {
        gap: 4px;
    }

    .takip-donor-item label {
        font-size: 0.55rem;
    }

    .takip-donor-item span {
        font-size: 0.76rem;
        line-height: 1.3;
    }

    /* Timeline progress dots */
    .takip-progress-bar {
        display: none !important;
    }

    .takip-timeline-title {
        font-size: 0.75rem;
        color: rgba(255,255,255,0.4);
        margin-bottom: 16px;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .takip-timeline-title svg {
        display: none;
    }

    .takip-step {
        padding: 0;
        gap: 14px;
        border-radius: 0;
        background: transparent !important;
        border: none !important;
        margin-bottom: 16px;
    }

    .takip-step-icon {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
        border-radius: 50%;
        margin-top: 2px;
    }
    
    .takip-step-header-mobile {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .takip-step-title {
        font-size: 0.88rem;
    }

    .takip-step-status {
        margin: 0;
        padding: 3px 8px;
        font-size: 0.6rem;
        border-radius: 12px;
    }

    .takip-step-desc {
        font-size: 0.72rem;
        line-height: 1.45;
        margin-top: 4px;
        color: rgba(255,255,255,0.5);
    }

    .takip-step-date {
        font-size: 0.65rem;
        margin-top: 6px;
        display: flex;
        align-items: center;
        gap: 4px;
        color: rgba(255,255,255,0.4);
    }
    
    .takip-step-date::before {
        content: '🕒';
        font-size: 0.7rem;
        opacity: 0.7;
    }

    .takip-step-divider {
        margin-left: 16px;
        height: 34px;
        width: 1px;
        background: rgba(255,255,255,0.1);
        margin-top: -16px;
        margin-bottom: -10px;
    }

    .takip-step-check {
        width: 14px;
        height: 14px;
    }

    .takip-step-check svg {
        width: 7px;
        height: 7px;
    }

    /* Media grid */
    .takip-media-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .takip-media-item {
        border-radius: 12px;
    }

    .takip-media-overlay {
        padding: 8px;
        opacity: 1;
    }

    .takip-media-type {
        font-size: 0.58rem;
    }

    .takip-media-dl {
        width: 28px;
        height: 28px;
        border-radius: 8px;
    }

    .takip-media-empty {
        padding: 32px 16px;
    }

    .takip-media-empty svg {
        width: 36px;
        height: 36px;
    }

    .takip-media-empty p {
        font-size: 0.76rem;
    }

    /* Not found */
    .takip-notfound {
        padding: 40px 20px;
    }

    .takip-notfound-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 16px;
    }

    .takip-notfound-icon svg {
        width: 28px;
        height: 28px;
    }

    .takip-notfound h3 {
        font-size: 1.05rem;
    }

    .takip-notfound p {
        font-size: 0.8rem;
    }

    .takip-notfound-btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    /* Download buttons mobile */
    .takip-download-section {
        flex-direction: column;
        gap: 8px;
    }

    .takip-download-btn {
        justify-content: center;
        padding: 12px 16px;
        font-size: 0.75rem;
        width: 100%;
    }

    /* System info mobile */
    .takip-system-info {
        margin-top: 24px;
        padding: 16px;
        border-radius: 12px;
    }

    .takip-notfound-modal {
        padding: 24px 20px;
        transform: translateY(0) scale(1) !important;
    }

    .takip-system-info-title {
        font-size: 0.76rem;
        margin-bottom: 12px;
    }

    .takip-system-info-item {
        font-size: 0.72rem;
        gap: 8px;
    }

    .takip-system-info-item svg {
        width: 14px;
        height: 14px;
    }

    /* Lightbox mobile */
    .takip-lightbox {
        padding: 12px;
    }

    .takip-lightbox-close {
        top: 12px;
        right: 12px;
        width: 38px;
        height: 38px;
    }

    .takip-lightbox-content {
        max-width: 96vw;
        max-height: 80vh;
        border-radius: 12px;
    }

    .takip-lightbox-content img,
    .takip-lightbox-content video {
        max-height: 80vh;
    }

    /* Barcode scan animation - mobile adjusted */
    @keyframes barcodeScan {
        0% {
            left: 30px;
            opacity: 0;
        }
        15% {
            opacity: 1;
        }
        85% {
            opacity: 1;
        }
        100% {
            left: calc(100% - 80px);
            opacity: 0;
        }
    }
}

@media (max-width: 480px) {
    .takip-hero {
        padding: 72px 16px 20px;
    }

    .takip-hero-title {
        font-size: 1.5rem;
    }

    .takip-hero-desc {
        font-size: 0.8rem;
        margin-bottom: 20px;
    }

    .takip-result {
        padding: 24px 12px;
    }

    .takip-donor-name {
        font-size: 1rem;
    }

    .takip-donor-grid {
        gap: 12px 8px;
    }

    .takip-step-icon {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
        border-radius: 50%;
    }

    .takip-step-title {
        font-size: 0.82rem;
    }

    .takip-step-desc {
        font-size: 0.68rem;
    }

    .takip-step-divider {
        margin-left: 14px;
        height: 30px;
        margin-top: -14px;
        margin-bottom: -10px;
    }

    .takip-media-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .takip-media-item {
        border-radius: 10px;
    }

    /* Search box very small screens */
    .takip-search-input {
        font-size: 0.82rem;
        padding: 10px 0;
    }

    .takip-search-btn {
        padding: 10px 14px;
    }

    .takip-search-hint {
        font-size: 0.65rem;
    }

    /* Success tracking section mobile */
    .success-tracking-section {
        padding: 12px;
        border-radius: 12px;
    }

    .success-tracking-code span {
        font-size: 0.95rem;
    }
}

@media (max-width: 360px) {
    .takip-hero-title {
        font-size: 1.3rem;
    }

    .takip-donor-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .takip-progress-dot {
        width: 22px;
        height: 22px;
        font-size: 0.5rem;
    }

    .takip-media-grid {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }
}

/* ---------- Mobile Touch & Active States ---------- */
@media (pointer: coarse) {
    .takip-search-btn:active {
        transform: scale(0.95);
        opacity: 0.85;
    }

    .takip-donor-code:active {
        transform: scale(0.97);
        background: rgba(59, 130, 246, 0.15);
    }

    .takip-media-item:active {
        transform: scale(0.97);
    }

    .takip-notfound-btn:active {
        transform: scale(0.95);
        opacity: 0.85;
    }

    .takip-lightbox-close:active {
        transform: scale(0.9);
        background: rgba(255, 255, 255, 0.15);
    }

    .takip-media-dl:active {
        background: rgba(59, 130, 246, 0.4);
        transform: scale(0.9);
    }
}

/* ---------- Mobile Menu Bağış Takip Link ---------- */
.takip-page .mobile-link[href="takip.html"] {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(37, 99, 235, 0.08));
    border: 1px solid rgba(59, 130, 246, 0.2) !important;
    color: #60a5fa !important;
    font-weight: 700;
    text-align: center;
    border-radius: 12px;
    margin-top: 4px;
}

/* ---------- Safe Area for Notched Phones ---------- */
@supports (padding: env(safe-area-inset-bottom)) {
    .takip-page .site-footer .footer-bottom {
        padding-bottom: calc(1.2rem + env(safe-area-inset-bottom));
    }

    .takip-lightbox {
        padding-top: env(safe-area-inset-top);
        padding-bottom: env(safe-area-inset-bottom);
    }
}

/* ---------- Smooth Scroll ---------- */
.takip-page {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Footer spacing */
.takip-page .site-footer {
    margin-top: 0;
}