/**
 * NTZ Turizm — Front CSS
 * Tur arşiv, detay, filtre, Elementor widget stilleri.
 *
 * @package NTZ_Turizm
 * @since   1.0.0
 */

/* ========================================
   SAYFA HERO (ARŞİV)
   ======================================== */
.page-hero {
    position: relative;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #0f172a 0%, #164e63 100%);
    text-align: center;
    overflow: hidden;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 30% 50%, rgba(8, 145, 178, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(34, 211, 238, 0.1) 0%, transparent 50%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero-title {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.page-hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ========================================
   FİLTRE BÖLÜMÜ
   ======================================== */
.tur-filter-section {
    background: #f8fafc;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 80px;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.tur-filter-form .filter-row {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-field {
    flex: 1;
    min-width: 160px;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.filter-search {
    flex: 2;
    min-width: 220px;
}

.filter-label {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.filter-field input,
.filter-field select {
    width: 100%;
    padding: 0.6rem 0.9rem;
    border: 1px solid #cbd5e1;
    border-radius: 0px;
    font-size: 0.9rem;
    background: #ffffff;
    transition: all 0.2s ease;
    color: #1e293b;
}

.filter-field input:focus,
.filter-field select:focus {
    border-color: #0891b2;
    box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.1);
    outline: none;
}

.filter-actions {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    min-width: auto;
    flex: 0;
}

/* ========================================
   SONUÇ BİLGİSİ
   ======================================== */
.tur-results-info {
    margin-bottom: 1.5rem;
}

.tur-results-info p {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

/* ========================================
   TUR KART LİNK SARMALAMA
   ======================================== */
.tour-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.tour-card-link:hover {
    color: inherit;
}

/* Kart placeholder (görsel yoksa) */
.tour-card-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 200px;
    background: linear-gradient(135deg, #e2e8f0, #f1f5f9);
    color: #94a3b8;
}

/* ========================================
   SAYFALAMA
   ======================================== */
.tur-pagination {
    margin-top: 3rem;
}

.tur-pagination .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
}

.tur-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    border-radius: 0px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #475569;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid #e2e8f0;
    background: #ffffff;
}

.tur-pagination .page-numbers:hover {
    background: #f1f5f9;
    border-color: #0891b2;
    color: #0891b2;
}

.tur-pagination .page-numbers.current {
    background: linear-gradient(135deg, #0891b2, #0e7490);
    color: #ffffff;
    border-color: transparent;
}

/* ========================================
   SONUÇ YOK
   ======================================== */
.tur-no-results {
    text-align: center;
    padding: 4rem 2rem;
    color: #64748b;
}

.tur-no-results svg {
    margin-bottom: 1.5rem;
    opacity: 0.4;
}

.tur-no-results h2 {
    font-size: 1.5rem;
    color: #334155;
    margin-bottom: 0.75rem;
}

.tur-no-results p {
    max-width: 400px;
    margin: 0 auto 1.5rem;
    line-height: 1.7;
}

/* ========================================
   TUR DETAY SAYFASI
   ======================================== */

/* Tur Hero */
.tur-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.tur-hero-bg {
    position: absolute;
    inset: 0;
}

.tur-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tur-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.3) 60%, rgba(15, 23, 42, 0.1) 100%);
}

.tur-hero-content {
    position: relative;
    z-index: 2;
    padding: 3rem 0;
    color: #ffffff;
}

/* Breadcrumb */
.tur-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.tur-hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}

.tur-hero-breadcrumb a:hover {
    color: #22d3ee;
}

.breadcrumb-sep {
    color: rgba(255, 255, 255, 0.3);
}

.breadcrumb-current {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.tour-status-lg {
    font-size: 0.8rem;
    padding: 0.35rem 1rem;
    margin-bottom: 0.75rem;
    display: inline-block;
}

.tur-hero-title {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.tur-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.tur-hero-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

/* İçerik Grid */
.tur-content-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2.5rem;
    align-items: start;
}

/* Detay Kartları */
.tur-detail-card {
    background: #ffffff;
    border-radius: 0px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.detail-card-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #ecfeff;
}

.detail-card-title svg {
    color: #0891b2;
    flex-shrink: 0;
}

.prose {
    line-height: 1.8;
    color: #334155;
    font-size: 0.95rem;
}

.prose p {
    margin-bottom: 1rem;
}

/* Listeler */
.detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-list li {
    position: relative;
    padding: 0.6rem 0 0.6rem 2rem;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.95rem;
    color: #334155;
}

.detail-list li:last-child {
    border-bottom: none;
}

.detail-list--places li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 0px;
    background: #0891b2;
}

.detail-list--routes {
    list-style: none;
    counter-reset: route;
}

.detail-list--routes li {
    counter-increment: route;
    padding-left: 2.5rem;
}

.detail-list--routes li::before {
    content: counter(route);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border-radius: 0px;
    background: linear-gradient(135deg, #0891b2, #0e7490);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dahil / Hariç */
.tur-includes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 1.5rem;
}

.includes-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid transparent;
}

.includes-title--yes {
    color: #10b981;
    border-bottom-color: #d1fae5;
}

.includes-title--no {
    color: #ef4444;
    border-bottom-color: #fee2e2;
}

.includes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.includes-list li {
    position: relative;
    padding: 0.4rem 0 0.4rem 1.5rem;
    font-size: 0.9rem;
    color: #475569;
}

.includes-list--yes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.includes-list--no li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: 700;
}

/* Özet Kartı (Sidebar) */
.tur-detail-sidebar {
    position: sticky;
    top: 100px;
}

.tur-summary-card {
    background: #ffffff;
    border-radius: 0px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.summary-price {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f1f5f9;
}

.summary-price-label {
    display: block;
    font-size: 0.8rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.summary-price-amount {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #0891b2;
}

.summary-details {
    margin-bottom: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid #f8fafc;
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-label {
    font-size: 0.85rem;
    color: #64748b;
}

.summary-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
}

.summary-cta {
    width: 100%;
    margin-bottom: 1rem;
}

.summary-note {
    font-size: 0.8rem;
    color: #94a3b8;
    text-align: center;
    line-height: 1.5;
    margin: 0;
}

/* ========================================
   NTZ ELEMENTOR WİDGET
   ======================================== */
.ntz-widget-tur-kartlari .tours-grid {
    display: grid;
    gap: 1.5rem;
}

.ntz-no-tours {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem;
    color: #64748b;
    font-size: 0.95rem;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .tur-content-grid {
        grid-template-columns: 1fr;
    }

    .tur-detail-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .tur-filter-form .filter-row {
        flex-direction: column;
    }

    .filter-field {
        min-width: 100%;
    }

    .filter-actions {
        flex-direction: row;
        width: 100%;
    }

    .filter-actions .btn {
        flex: 1;
    }

    .tur-filter-section {
        position: static;
    }

    .tur-includes-grid {
        grid-template-columns: 1fr;
    }

    .tur-hero {
        min-height: 300px;
    }

    .tur-hero-meta {
        flex-direction: column;
        gap: 0.75rem;
    }

    .ntz-widget-tur-kartlari .tours-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ========================================
   ÜYELİK VE GİRİŞ FORMLARI (FAZ 4)
   ======================================== */
.ntz-auth-container {
    max-width: 500px;
    margin: 4rem auto;
    background: #ffffff;
    border-radius: 0px;
    box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.ntz-auth-tabs {
    display: flex;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.auth-tab-btn {
    flex: 1;
    text-align: center;
    padding: 1.25rem;
    font-weight: 600;
    font-size: 1rem;
    color: #64748b;
    text-decoration: none;
    transition: all 0.2s ease;
}

.auth-tab-btn:hover {
    color: #0891b2;
    background: rgba(8, 145, 178, 0.02);
}

.auth-tab-btn.active {
    color: #0891b2;
    background: #ffffff;
    border-bottom: 3px solid #0891b2;
}

.ntz-auth-content {
    padding: 2.5rem;
}

.ntz-auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.auth-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.auth-field label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
}

.auth-field input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 0px;
    font-size: 0.95rem;
    color: #1e293b;
    transition: all 0.2s ease;
}

.auth-field input:focus {
    border-color: #0891b2;
    box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.1);
    outline: none;
}

.auth-field-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.checkbox-label {
    display: inline-flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.85rem;
    color: #475569;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.2rem;
    cursor: pointer;
}

.checkbox-label--kvkk span {
    line-height: 1.5;
}

.kvkk-link {
    color: #0891b2;
    text-decoration: underline;
    font-weight: 500;
}

.lost-pass-link {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.lost-pass-link:hover {
    color: #0891b2;
}

.ntz-auth-alert {
    padding: 0.85rem 1.25rem;
    border-radius: 0px;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.5;
}

.ntz-auth-alert.error {
    background: #fef2f2;
    border: 1px solid #fee2e2;
    color: #b91c1c;
}

.ntz-auth-alert.info {
    background: #ecfeff;
    border: 1px solid #cffafe;
    color: #0891b2;
}

.btn-block {
    width: 100%;
    justify-content: center;
    padding: 0.85rem;
    font-size: 1rem;
}

/* ========================================
   ÜYE KONTROL PANELİ (DASHBOARD)
   ======================================== */
.ntz-dashboard-container {
    max-width: 600px;
    margin: 4rem auto;
    background: #ffffff;
    border-radius: 0px;
    box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: 2.5rem;
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 1.5rem;
}

.dashboard-user-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 0px;
    background: #ecfeff;
    color: #0891b2;
}

.dashboard-user-meta h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.25rem 0;
}

.dashboard-user-meta .user-email {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

.coupon-card {
    background: linear-gradient(135deg, #ecfeff 0%, #cffafe 100%);
    border-radius: 0px;
    padding: 1.75rem;
    border: 1px solid rgba(8, 145, 178, 0.1);
    margin-bottom: 2rem;
}

.coupon-card-header {
    margin-bottom: 1.25rem;
}

.coupon-badge {
    display: inline-block;
    background: #0891b2;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 0px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.coupon-card-header h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #0e7490;
    margin: 0;
}

.coupon-box-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.coupon-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border: 2px dashed #0891b2;
    padding: 0.85rem 1.25rem;
    border-radius: 0px;
}

.coupon-code {
    font-family: 'Outfit', 'Courier New', Courier, monospace;
    font-size: 1.5rem;
    font-weight: 800;
    color: #0891b2;
    letter-spacing: 0.05em;
}

.btn-copy-code {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: #f0fdfa;
    border: 1px solid #99f6e4;
    color: #0d9488;
    padding: 0.5rem 0.85rem;
    border-radius: 0px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-copy-code:hover {
    background: #ccfbf1;
    color: #0f766e;
}

.btn-copy-code svg {
    flex-shrink: 0;
}

.coupon-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    border-top: 1px solid rgba(8, 145, 178, 0.1);
}

.info-label {
    color: #64748b;
}

.info-value {
    font-weight: 600;
}

.coupon-status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 0px;
    font-size: 0.8rem;
}

.coupon-status-badge.status-aktif {
    background: #d1fae5;
    color: #065f46;
}

.coupon-status-badge.status-kullanildi {
    background: #e2e8f0;
    color: #475569;
}

.coupon-instructions {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #475569;
    margin: 0;
}

.dashboard-footer {
    display: flex;
    gap: 1rem;
}

.dashboard-footer .btn {
    flex: 1;
    justify-content: center;
}

/* ========================================
   ÇEREZ RIZA BANNER (KVKK)
   ======================================== */
.ntz-cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 360px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(8, 145, 178, 0.15);
    box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.15), 0 8px 15px -6px rgba(15, 23, 42, 0.1);
    border-radius: 0px;
    padding: 1.25rem;
    z-index: 999999;
    animation: slideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.ntz-cookie-content p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #475569;
    margin: 0 0 1rem 0;
}

.ntz-cookie-content p a {
    color: #0891b2;
    text-decoration: underline;
    font-weight: 500;
}

.ntz-cookie-actions {
    display: flex;
    justify-content: flex-end;
}

/* ========================================
   AYLIK GRUPLANDIRMA BAŞLIKLARI
   ======================================== */
.tur-ay-baslik {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 1.75rem;
    color: #0f172a;
    margin: 3rem 0 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
    font-weight: 700;
    position: relative;
}

.tur-ay-baslik::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: #0891b2;
}

/* ========================================
   TUR KARTLARI — 2 SÜTUN GRID (ARŞİV SAYFASI)
   ======================================== */
.ntz-tours-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 28px !important;
    margin: 16px 0 48px !important;
}

/* Kart */
.ntz-tour-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e8eaed;
    border-radius: 0;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}

/* Hover animasyonu: hafif yukarı kalkma + gölge */
.ntz-tour-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .12);
}

/* Görsel alanı: 16:9 (1920x1080) oran korunur */
.ntz-tour-card__media {
    display: block;
    position: relative;
    aspect-ratio: 4 / 3;
    background: #f1f5f9;
    overflow: hidden;
}

/* Yüksek özgüllük + !important: Elementor/tema global "img { height:auto }"
   kuralının görseli kutuya oturmasını engellemesini önler. */
.ntz-tour-card .ntz-tour-card__media .ntz-tour-card__img,
.ntz-tour-card__img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;   /* görseli oranı bozmadan doldurur */
    object-position: center center !important;
    display: block;
    transition: transform .5s ease;
}

.ntz-tour-card:hover .ntz-tour-card__img {
    transform: scale(1.04);
}

/* Görseli olmayan turlar için şık fallback (marka renginde degrade + ikon) */
.ntz-tour-card__fallback {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .92);
    background: linear-gradient(135deg, #0e7490 0%, #0891b2 55%, #22d3ee 100%);
}

.ntz-tour-card__fallback svg {
    width: 64px;
    height: 64px;
}

/* Durum etiketi (görsel üzerinde) */
.ntz-tour-card__media .tour-status {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.2rem 0.6rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
    border-radius: 0 !important;
}

/* Gövde */
.ntz-tour-card__body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    flex: 1;
}

.ntz-tour-card__title {
    margin: 0;
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 20px;
    line-height: 1.25;
    font-weight: 800;
}

.ntz-tour-card__title a {
    color: #0f172a;
    text-decoration: none;
    transition: color .2s ease;
}

.ntz-tour-card:hover .ntz-tour-card__title a {
    color: #0891b2;
}

.ntz-tour-card__meta {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 16px;
    font-size: 14px;
    color: #4b5563;
}

.ntz-tour-card__meta li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ntz-tour-card__meta svg {
    flex-shrink: 0;
    color: #0891b2;
    opacity: 0.75;
}

.ntz-tour-card__excerpt {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ntz-tour-card__footer {
    margin-top: auto;            /* fiyat + buton kartın en altına yapışsın */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid #f1f5f9;
}

.ntz-tour-card__price small {
    display: block;
    font-size: 12px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ntz-tour-card__price strong {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #0891b2;
}

.ntz-tour-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    border-radius: 0;
    background: #0891b2;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s ease;
}

.ntz-tour-card__btn:hover {
    background: #0e7490;
    color: #fff;
}

/* ---- Tablet: boşlukları daralt ---- */
@media (max-width: 1024px) {
    .ntz-tours-grid {
        gap: 20px;
    }
}

/* ---- Mobil: tek sütun ---- */
@media (max-width: 768px) {
    .ntz-tours-grid {
        grid-template-columns: 1fr !important;
    }
    .ntz-tour-card__title {
        font-size: 18px;
    }
    /* Dokunma hedefi en az ~44px yükseklikte olsun */
    .ntz-tour-card__btn {
        min-height: 44px;
        padding-top: 12px;
        padding-bottom: 12px;
    }
}

/* ---- Küçük telefon: fiyat + buton alt alta ---- */
@media (max-width: 420px) {
    .ntz-tour-card__footer {
        flex-direction: column;
        align-items: stretch;
    }
    .ntz-tour-card__btn {
        justify-content: center;
    }
}

/* ========================================
   TUR ARŞİV — İKİ KOLON YERLEŞİM (SIDEBAR + GRID)
   ======================================== */
.tur-archive-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    align-items: start;
}

.tur-archive-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Sidebar Kartları (Genel) */
.sidebar-card {
    background: #ffffff;
    border: 1px solid #e8eaed;
    border-radius: 0;
    padding: 1.5rem;
}

/* Rezervasyon Kartı */
.sidebar-card--rezervasyon {
    text-align: center;
    background: linear-gradient(135deg, #ecfeff 0%, #ffffff 100%);
    border-color: rgba(8, 145, 178, 0.2);
}

.sidebar-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--color-primary, #0891b2);
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.sidebar-card__label {
    font-size: 0.85rem;
    color: #475569;
    margin: 0 0 0.5rem;
    font-weight: 500;
}

.sidebar-card__phone {
    display: block;
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-primary, #0891b2);
    text-decoration: none;
    transition: color 0.2s ease;
}

.sidebar-card__phone:hover {
    color: var(--color-primary-dark, #0e7490);
}

/* Ay Listesi Kartı */
.sidebar-card--aylar {
    padding: 1.25rem;
}

.sidebar-card__title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.75rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid #ecfeff;
}

.sidebar-card__title svg {
    color: var(--color-primary, #0891b2);
    flex-shrink: 0;
}

.sidebar-ay-listesi {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sidebar-ay-link {
    display: block;
    padding: 0.5rem 0.75rem;
    border-radius: 0;
    font-size: 0.88rem;
    font-weight: 500;
    color: #475569;
    text-decoration: none;
    transition: all 0.2s ease;
}

.sidebar-ay-link:hover {
    background: #ecfeff;
    color: var(--color-primary, #0891b2);
}

.sidebar-ay-link.active {
    background: var(--color-primary, #0891b2);
    color: #ffffff;
    font-weight: 600;
}

/* Ay başlığı scroll-margin (sabit header hesabı) */
.tur-ay-baslik {
    scroll-margin-top: 120px;
}

/* Mobil: Tek sütun (sidebar üstte) */
@media (max-width: 992px) {
    .tur-archive-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .tur-archive-sidebar {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
    }

    .sidebar-card {
        flex: 1;
        min-width: 240px;
    }

    .sidebar-ay-listesi {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 6px;
    }

    .sidebar-ay-link {
        padding: 0.35rem 0.65rem;
        font-size: 0.82rem;
    }
}

/* ========================================
   YÜZEN WHATSAPP BUTONU (TÜM SAYFALAR)
   ======================================== */
.ntz-wa-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}

.ntz-wa-float:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
}

@media (max-width: 480px) {
    .ntz-wa-float {
        width: 52px;
        height: 52px;
        bottom: 16px;
        right: 16px;
    }

    .ntz-wa-float svg {
        width: 24px;
        height: 24px;
    }
}
