/* ============================================================
   Tur Destinasyonu — Frontend CSS v5.1
   ============================================================ */

/* ── CSS Değişkenleri ────────────────────────────────────── */
:root {
    --tdt-primary:   #0d9488;
    --tdt-accent:    #f97316;
    --tdt-dark:      #0f172a;
    --tdt-text:      #334155;
    --tdt-muted:     #64748b;
    --tdt-border:    #e2e8f0;
    --tdt-bg:        #f8fafc;
    --tdt-white:     #ffffff;
    --tdt-radius:    12px;
    --tdt-radius-sm: 8px;
    --tdt-shadow:    0 2px 16px rgba(0,0,0,.08);
    --tdt-shadow-lg: 0 8px 32px rgba(0,0,0,.14);
}

/* ── Global yatay scroll engeli ─────────────────────────── */
.elementor-widget-tdt_homepage,
.elementor-widget-tdt_tour_list,
.elementor-widget-tdt_tour_detail,
.elementor-widget-tdt_reservation,
.elementor-widget-tdt_my_reservations {
    overflow-x: hidden;
    max-width: 100%;
}

/* ── Ortak yardımcılar ───────────────────────────────────── */
.tdt-btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: .6rem 1.4rem; border-radius: 6px; font-weight: 600;
    font-size: .875rem; cursor: pointer; border: none;
    text-decoration: none; transition: filter .15s, transform .1s;
    white-space: nowrap;
}
.tdt-btn:hover { filter: brightness(1.08); transform: translateY(-1px); }
.tdt-btn-primary { background: var(--tdt-primary); color: #fff; }
.tdt-btn-block   { width: 100%; margin-top: .6rem; }
.tdt-btn-outline-primary {
    border: 2px solid var(--tdt-primary); color: var(--tdt-primary);
    background: transparent; padding: .5rem 1.4rem; border-radius: 6px;
    font-weight: 600; font-size: .875rem; cursor: pointer;
    text-decoration: none; display: inline-block;
    transition: background .2s, color .2s;
}
.tdt-btn-outline-primary:hover { background: var(--tdt-primary); color: #fff; }
.tdt-error       { background: #fef2f2; color: #dc2626; padding: 1rem; border-radius: 8px; border: 1px solid #fecaca; }
.tdt-empty       { text-align: center; padding: 3rem; color: var(--tdt-muted); }
.tdt-placeholder { background: #f0fdf4; border: 2px dashed var(--tdt-primary); border-radius: 8px; padding: 2rem; text-align: center; color: var(--tdt-muted); }

/* ============================================================
   ANASAYFA
   ============================================================ */

/* ── Hero full-width ─────────────────────────────────────── */
/* Elementor tüm padding/margin/container kısıtlamalarını geç */
.elementor-widget-tdt_homepage,
.elementor-widget-tdt_homepage .elementor-widget-container {
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    width: 100% !important;
    max-width: none !important;
}
.tdt-hero-fw {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Tam genişlik — içinde bulunduğu column'dan çık */
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    left: 0 !important;
    transform: none !important;
}
@media (max-width: 1024px) {
    .tdt-hero-fw {
        /* Elementor mobil padding varsa geç */
        margin-left: calc(-50vw + 50%) !important;
        margin-right: calc(-50vw + 50%) !important;
    }
}
@media (max-width: 768px) {
    .tdt-hero-fw { min-height: 320px !important; }
    .tdt-hero-content-wrap { padding: 1.5rem 1rem; }
    .tdt-hero-h1 { font-size: clamp(1.1rem, 5vw, 1.6rem); margin-bottom: 1.25rem; }
    .tdt-search-row-hp { flex-direction: column; }
    .tdt-shf-sep { width: 100%; height: 1px; }
    .tdt-shf { border-bottom: 1px solid var(--tdt-border); }
    .tdt-shf:last-of-type { border-bottom: none; }
    .tdt-hp-search-btn {
        border-radius: 0 0 var(--tdt-radius) var(--tdt-radius);
        padding: .85rem; font-size: .95rem; width: 100%;
    }
}
.tdt-hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.48); }
.tdt-hero-content-wrap {
    position: relative; z-index: 2; width: 100%;
    max-width: 900px; padding: 3rem 1.5rem;
}
.tdt-hero-h1 {
    color: #fff; font-size: clamp(1.3rem, 4vw, 2.3rem);
    font-weight: 400; margin: 0 0 1.75rem; line-height: 1.3; text-align: center;
}
.tdt-hero-h1 strong { font-weight: 800; display: block; }

/* ── Search card ─────────────────────────────────────────── */
.tdt-search-card {
    background: var(--tdt-white); border-radius: var(--tdt-radius);
    box-shadow: var(--tdt-shadow-lg); overflow: visible; position: relative;
}
.tdt-search-tabs-hp {
    display: flex; border-radius: var(--tdt-radius) var(--tdt-radius) 0 0;
    overflow: hidden; border-bottom: 1px solid var(--tdt-border);
}
.tdt-shtab {
    flex: 1; padding: .75rem .5rem; background: none; border: none;
    border-bottom: 2px solid transparent; font-weight: 600; font-size: .875rem;
    cursor: pointer; color: var(--tdt-muted);
    transition: color .15s, border-color .15s;
    display: flex; align-items: center; justify-content: center; gap: .4rem;
}
.tdt-shtab.active { color: var(--tdt-primary); border-bottom-color: var(--tdt-primary); }
.tdt-shtab svg   { flex-shrink: 0; opacity: .6; }
.tdt-shtab.active svg { opacity: 1; }

/* overflow:visible — autocomplete dropdown için şart */
.tdt-search-row-hp { display: flex; align-items: stretch; overflow: visible; }

.tdt-shf {
    flex: 1; position: relative; display: flex;
    align-items: center; padding: .75rem 1rem; gap: .5rem;
}
.tdt-shf-main { flex: 1.6; }
.tdt-shf-inner { flex: 1; display: flex; flex-direction: column; gap: .15rem; min-width: 0; }
.tdt-shf-lbl   { font-size: .68rem; font-weight: 700; letter-spacing: .05em; color: var(--tdt-dark); }
.tdt-shf-input {
    border: none; outline: none; font-size: .9rem; color: var(--tdt-text);
    background: transparent; width: 100%; padding: 0;
}
.tdt-shf-input::placeholder { color: var(--tdt-muted); }
.tdt-shf-ico-svg { display: flex; align-items: center; flex-shrink: 0; color: var(--tdt-primary); opacity: .6; }
.tdt-shf-sep { width: 1px; background: var(--tdt-border); align-self: stretch; flex-shrink: 0; }
.tdt-hp-search-btn {
    padding: 0 2rem; background: var(--tdt-accent); color: #fff;
    border: none; font-weight: 800; font-size: 1rem; letter-spacing: .05em;
    cursor: pointer; border-radius: 0 var(--tdt-radius) var(--tdt-radius) 0;
    white-space: nowrap; transition: filter .15s; flex-shrink: 0;
}
.tdt-hp-search-btn:hover { filter: brightness(1.1); }

/* ── Autocomplete ────────────────────────────────────────── */
.tdt-ac-dropdown {
    position: absolute; top: calc(100% + 4px); left: 0;
    min-width: 300px; width: 100%; background: var(--tdt-white);
    border: 1px solid var(--tdt-border); border-radius: var(--tdt-radius-sm);
    box-shadow: 0 12px 40px rgba(0,0,0,.15); z-index: 99999;
    display: none; overflow: hidden;
}
.tdt-ac-item {
    display: flex; align-items: center; gap: .75rem;
    padding: .65rem 1rem; text-decoration: none; color: var(--tdt-text);
    transition: background .1s; font-size: .875rem;
}
.tdt-ac-item:hover  { background: #f0fdf4; }
.tdt-ac-ico         { flex-shrink: 0; color: var(--tdt-primary); }
.tdt-ac-title       { flex: 1; font-weight: 500; }
.tdt-ac-price       { font-weight: 700; color: var(--tdt-primary); font-size: .8rem; }
.tdt-ac-loading, .tdt-ac-empty { padding: .65rem 1rem; color: var(--tdt-muted); font-size: .875rem; }

/* ── Anasayfa body ───────────────────────────────────────── */
.tdt-hp-body { padding: 2rem 0; }
.tdt-section { margin-bottom: 3rem; }
.tdt-section-title { font-size: 1.4rem; font-weight: 700; color: var(--tdt-dark); margin: 0 0 1.25rem; }
.tdt-all-btn-wrap   { text-align: center; margin-top: 1.5rem; }
.tdt-section-header-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; flex-wrap: wrap; }
.tdt-section-header-row .tdt-section-title { margin: 0; }
.tdt-cat-tabs-right { display: flex; gap: .4rem; margin-left: auto; }
.tdt-cat-tab {
    padding: .35rem .9rem; border: 2px solid var(--tdt-border);
    border-radius: 20px; background: none; cursor: pointer;
    font-size: .82rem; font-weight: 600; color: var(--tdt-muted);
    transition: .15s;
}
.tdt-cat-tab.active { color: var(--tdt-primary); border-color: var(--tdt-primary); }

/* ── Timeline ─────────────────────────────────────────────── */
.tdt-timeline-section { margin-bottom: 2.5rem; }
.tdt-timeline-outer {
    position: relative; overflow-x: auto; overflow-y: visible;
    padding: 2.5rem 0; min-height: 100px;
    /* Gizli scrollbar */
    scrollbar-width: none;
}
.tdt-timeline-outer::-webkit-scrollbar { display: none; }
.tdt-timeline-line {
    position: absolute; left: 0; right: 0; top: 50%; height: 2px;
    background: var(--tdt-border); z-index: 0; transform: translateY(-50%);
    pointer-events: none;
}
.tdt-timeline-track {
    display: flex; position: relative; z-index: 1;
    min-width: max-content; align-items: stretch;
}
.tdt-tl-item    { display: flex; flex-direction: column; align-items: center; width: 90px; flex-shrink: 0; }
.tdt-tl-spacer-lbl { height: 32px; flex-shrink: 0; }
.tdt-tl-dot-wrap { display: flex; align-items: center; justify-content: center; height: 20px; flex-shrink: 0; z-index: 2; }
.tdt-tl-dot {
    width: 14px; height: 14px; border-radius: 50%; background: #fff;
    border: 2px solid #cbd5e1; transition: transform .2s, border-color .2s;
    box-shadow: 0 0 0 3px #fff; cursor: pointer;
}
.tdt-tl-item:hover .tdt-tl-dot { transform: scale(1.35); }
.tdt-tl-cur  .tdt-tl-dot { background: var(--tdt-primary); border-color: var(--tdt-primary); }
.tdt-tl-past .tdt-tl-dot { background: #cbd5e1; border-color: #cbd5e1; }
.tdt-tl-lbl {
    font-size: .72rem; font-weight: 600; white-space: nowrap;
    text-decoration: none; color: #475569; border: 1px solid var(--tdt-border);
    border-radius: 5px; padding: .2rem .5rem; background: #fff;
    line-height: 1.4; transition: color .15s, border-color .15s; display: block;
}
.tdt-tl-lbl:hover     { color: var(--tdt-primary); border-color: var(--tdt-primary); }
.tdt-tl-cur  .tdt-tl-lbl { color: var(--tdt-primary); border-color: var(--tdt-primary); font-weight: 700; }
.tdt-tl-past .tdt-tl-lbl { color: #94a3b8; }
.tdt-tl-empty .tdt-tl-lbl { color: #cbd5e1; border-color: #f1f5f9; background: #f8fafc; }
.tdt-tl-empty .tdt-tl-dot { background: #f1f5f9; border-color: #e2e8f0; }
.tdt-tl-lbl-top    { margin-bottom: .4rem; }
.tdt-tl-lbl-bottom { margin-top:    .4rem; }

/* ── Öne Çıkan Tur Kartları ──────────────────────────────── */
.tdt-feat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.25rem; }
.tdt-hp-card {
    display: flex; flex-direction: column; border-radius: var(--tdt-radius);
    overflow: hidden; box-shadow: var(--tdt-shadow); text-decoration: none;
    color: inherit; transition: transform .2s, box-shadow .2s; background: var(--tdt-white);
}
.tdt-hp-card:hover { transform: translateY(-4px); box-shadow: var(--tdt-shadow-lg); }
.tdt-hp-card-img   { position: relative; height: 190px; overflow: hidden; }
.tdt-hp-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; display: block; }
.tdt-hp-card:hover .tdt-hp-card-img img { transform: scale(1.05); }
.tdt-hp-badge-def  { position: absolute; top: .6rem; left: .6rem; background: var(--tdt-primary); color: #fff; font-size: .68rem; font-weight: 700; padding: .25rem .6rem; border-radius: 4px; }
.tdt-hp-badge-camp { position: absolute; top: .6rem; right: .6rem; background: var(--tdt-accent); color: #fff; font-size: .68rem; font-weight: 700; padding: .25rem .6rem; border-radius: 4px; }
.tdt-hp-card-body  { padding: 1rem; flex: 1; display: flex; flex-direction: column; gap: .5rem; }
.tdt-hp-card-body h4 { margin: 0; font-size: .925rem; font-weight: 700; color: var(--tdt-dark); line-height: 1.35; }
.tdt-hp-card-meta  { display: flex; gap: .6rem; flex-wrap: wrap; font-size: .78rem; color: var(--tdt-muted); align-items: center; }
.tdt-hp-card-meta span { display: flex; align-items: center; gap: .25rem; }
.tdt-hp-card-price { margin-top: auto; display: flex; align-items: baseline; gap: .4rem; flex-wrap: wrap; }
.tdt-hp-old  { text-decoration: line-through; color: var(--tdt-muted); font-size: .8rem; }
.tdt-hp-cur  { font-size: 1.15rem; font-weight: 800; color: var(--tdt-primary); }
.tdt-hp-from { font-size: .75rem; color: var(--tdt-muted); }

/* ── Kategoriler iki sekmeli ─────────────────────────────── */
.tdt-cats-tabs {
    display: flex; gap: 2rem; justify-content: center;
    border-bottom: 2px solid var(--tdt-border); margin-bottom: 1.5rem;
}
.tdt-cats-tab {
    background: none; border: none; border-bottom: 3px solid transparent;
    margin-bottom: -2px; padding: .5rem 0; font-size: 1rem; font-weight: 700;
    cursor: pointer; color: #94a3b8; transition: color .15s, border-color .15s; white-space: nowrap;
}
.tdt-cats-tab.active { color: var(--tdt-accent); border-bottom-color: var(--tdt-accent); }
.tdt-cats-tab-inactive { color: var(--tdt-primary) !important; }
.tdt-cats-pane  { display: none; }
.tdt-cats-pane.active { display: block; }
.tdt-cats-grid  { display: grid; gap: 0; }
.tdt-cats-cols-2 { grid-template-columns: repeat(2, 1fr); }
.tdt-cats-cols-3 { grid-template-columns: repeat(3, 1fr); }
.tdt-cats-cols-4 { grid-template-columns: repeat(4, 1fr); }
.tdt-cats-card  { position: relative; aspect-ratio: 4/3; overflow: hidden; display: block; text-decoration: none; }
.tdt-cats-card:hover .tdt-cats-card-img { transform: scale(1.06); }
.tdt-cats-card-img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .4s ease; }
.tdt-cats-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.45) 0%, transparent 55%); pointer-events: none; }
.tdt-cats-card-label { position: absolute; bottom: 0; left: 0; z-index: 2; background: var(--tdt-accent); color: #fff; font-size: .85rem; font-weight: 700; padding: .35rem .85rem; line-height: 1.4; max-width: 90%; }

/* ============================================================
   TUR LİSTESİ
   ============================================================ */
.tdt-list-page { display: flex; gap: 1.5rem; align-items: flex-start; overflow: hidden; }

/* ── Sidebar ─────────────────────────────────────────────── */
.tdt-list-sidebar { width: 260px; flex-shrink: 0; position: sticky; top: 1rem; }
.tdt-sb-tabs { display: flex; gap: .4rem; margin-bottom: 1rem; }
.tdt-sb-tab {
    flex: 1; padding: .4rem .6rem; border: 2px solid var(--tdt-border);
    border-radius: 6px; background: none; cursor: pointer;
    font-size: .8rem; font-weight: 600; color: var(--tdt-muted); transition: .15s;
}
.tdt-sb-tab.active { border-color: var(--tdt-primary); color: var(--tdt-primary); background: #f0fdf4; }
.tdt-sb-header { display: flex; justify-content: space-between; align-items: center; font-size: .8rem; color: var(--tdt-muted); margin-bottom: .75rem; }
.tdt-sb-clear  { background: none; border: none; color: #ef4444; cursor: pointer; font-size: .8rem; font-weight: 600; }
.tdt-sb-section { border: 1px solid var(--tdt-border); border-radius: var(--tdt-radius-sm); overflow: hidden; margin-bottom: .6rem; }
.tdt-sb-section-title { padding: .65rem .85rem; font-size: .825rem; font-weight: 700; color: var(--tdt-dark); cursor: pointer; display: flex; justify-content: space-between; background: var(--tdt-bg); }
.tdt-sb-body   { padding: .5rem .85rem .75rem; display: none; }
.tdt-sb-body.open { display: block; }
.tdt-sb-search { width: 100%; border: 1px solid var(--tdt-border); border-radius: 6px; padding: .45rem .75rem; font-size: .875rem; box-sizing: border-box; }
.tdt-sb-radio, .tdt-sb-check { display: flex; align-items: center; gap: .4rem; font-size: .825rem; color: var(--tdt-text); padding: .25rem 0; cursor: pointer; }
.tdt-sb-badge  { margin-left: auto; background: var(--tdt-border); border-radius: 10px; padding: 1px 6px; font-size: .7rem; color: var(--tdt-muted); }

/* ── Liste ana ───────────────────────────────────────────── */
.tdt-list-main { flex: 1; min-width: 0; }
.tdt-sort-bar  { display: flex; gap: .4rem; flex-wrap: wrap; margin-bottom: 1rem; border-bottom: 1px solid var(--tdt-border); padding-bottom: .75rem; overflow-x: auto; scrollbar-width: none; }
.tdt-sort-bar::-webkit-scrollbar { display: none; }
.tdt-sort-btn  { background: none; border: none; border-bottom: 2px solid transparent; padding: .3rem .5rem; font-size: .8rem; font-weight: 600; color: var(--tdt-muted); cursor: pointer; transition: color .15s, border-color .15s; white-space: nowrap; }
.tdt-sort-btn.active { color: var(--tdt-primary); border-bottom-color: var(--tdt-primary); }
.tdt-result-bar { display: flex; align-items: center; gap: 1rem; font-size: .875rem; color: var(--tdt-muted); margin-bottom: .75rem; flex-wrap: wrap; }
.tdt-loading-msg { color: var(--tdt-accent); font-weight: 500; }
.tdt-total-num  { color: var(--tdt-dark); font-weight: 700; }

/* ── Liste kartı ─────────────────────────────────────────── */
.tdt-list-card {
    display: flex; gap: 1rem; background: var(--tdt-white);
    border: 1px solid var(--tdt-border); border-radius: var(--tdt-radius);
    overflow: hidden; margin-bottom: 1rem; box-shadow: var(--tdt-shadow);
    transition: box-shadow .2s;
}
.tdt-list-card:hover { box-shadow: var(--tdt-shadow-lg); }
.tdt-lc-img { width: 200px; flex-shrink: 0; position: relative; overflow: hidden; }
.tdt-lc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; display: block; }
.tdt-list-card:hover .tdt-lc-img img { transform: scale(1.05); }
.tdt-lc-badge      { position: absolute; top: .5rem; left: .5rem; background: var(--tdt-primary); color: #fff; font-size: .65rem; font-weight: 800; padding: .3rem .5rem; border-radius: 4px; line-height: 1.2; text-align: center; }
.tdt-lc-camp-badge { position: absolute; bottom: .5rem; left: .5rem; background: var(--tdt-accent); color: #fff; font-size: .65rem; font-weight: 700; padding: .2rem .5rem; border-radius: 4px; }
.tdt-lc-body { flex: 1; padding: 1rem .5rem; min-width: 0; display: flex; flex-direction: column; gap: .4rem; }
.tdt-lc-title { margin: 0; font-size: .95rem; font-weight: 700; }
.tdt-lc-title a { text-decoration: none; color: var(--tdt-dark); }
.tdt-lc-title a:hover { color: var(--tdt-primary); }
.tdt-lc-hotel { font-size: .8rem; color: var(--tdt-muted); }
.tdt-lc-dates { display: flex; gap: .75rem; flex-wrap: wrap; font-size: .8rem; color: var(--tdt-text); align-items: center; }
.tdt-lc-days  { color: var(--tdt-muted); }
.tdt-lc-urgent { color: #dc2626; font-weight: 600; }
.tdt-lc-features { display: flex; gap: .4rem; flex-wrap: wrap; margin-top: .2rem; }
.tdt-lc-feat { background: #f1f5f9; border-radius: 4px; padding: .2rem .5rem; font-size: .75rem; color: var(--tdt-muted); }
.tdt-lc-price-box {
    width: 150px; flex-shrink: 0; background: var(--tdt-bg);
    border-left: 1px solid var(--tdt-border); padding: .85rem;
    display: flex; flex-direction: column; gap: .3rem; justify-content: center;
}
.tdt-lc-price-old { text-decoration: line-through; color: var(--tdt-muted); font-size: .825rem; }
.tdt-lc-price-cur { font-size: 1.15rem; font-weight: 800; color: var(--tdt-primary); }
.tdt-lc-price-lbl { font-size: .7rem; color: var(--tdt-muted); }

/* ── Daha fazla / infinite scroll ───────────────────────── */
.tdt-load-more-wrap { text-align: center; margin-top: 1.5rem; padding-bottom: 2rem; }
.tdt-load-more-btn {
    padding: .6rem 2rem; border: 2px solid var(--tdt-primary); color: var(--tdt-primary);
    background: #fff; border-radius: 6px; font-weight: 600; font-size: .875rem;
    cursor: pointer; transition: background .15s, color .15s;
}
.tdt-load-more-btn:hover { background: var(--tdt-primary); color: #fff; }
.tdt-lm-sentinel { height: 1px; }
.tdt-lm-infinite-msg { display: flex; align-items: center; justify-content: center; gap: .5rem; padding: 1.5rem; color: var(--tdt-muted); font-size: .875rem; }
.tdt-lm-infinite-msg svg { animation: tdt-spin 1s linear infinite; }
.tdt-lm-all-loaded { color: #94a3b8; font-size: .875rem; }
@keyframes tdt-spin { to { transform: rotate(360deg); } }
.tdt-pagination { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 1.5rem; }
.tdt-page-btn { padding: .4rem 1rem; border: 1px solid var(--tdt-border); border-radius: 6px; background: #fff; cursor: pointer; font-size: .875rem; transition: background .15s; }
.tdt-page-btn:disabled { opacity: .4; cursor: not-allowed; }
.tdt-page-btn:not(:disabled):hover { background: #f1f5f9; }

/* ── Ay filtresi ─────────────────────────────────────────── */
.tdt-month-filter-bar { background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 8px; padding: .6rem 1rem; display: flex; align-items: center; justify-content: space-between; font-size: .875rem; color: #166534; margin-bottom: 1rem; }
.tdt-month-filter-clear { background: none; border: none; color: #dc2626; cursor: pointer; font-size: .8rem; font-weight: 600; }

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

/* ── Hero ─────────────────────────────────────────────────── */
.tdt-detail-page { width: 100%; overflow-x: hidden; }
.tdt-detail-hero-fw {
    position: relative; width: 100vw; left: 50%; transform: translateX(-50%);
    min-height: 360px; display: flex; align-items: flex-end;
    background-size: cover; background-position: center;
}
.tdt-detail-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,.2) 60%, transparent 100%); }
.tdt-detail-hero-inner { position: relative; z-index: 2; padding: 2rem 1.5rem; width: 100%; max-width: 900px; margin: 0 auto; }
.tdt-detail-breadcrumb { font-size: .78rem; color: rgba(255,255,255,.7); margin-bottom: .75rem; }
.tdt-detail-breadcrumb a { color: rgba(255,255,255,.75); text-decoration: none; }
.tdt-detail-breadcrumb span + span::before { content: ' › '; }
.tdt-detail-h1 { color: #fff; font-size: clamp(1.25rem, 3.5vw, 2rem); font-weight: 800; margin: 0 0 .5rem; line-height: 1.2; }
.tdt-detail-hero-meta { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; font-size: .875rem; color: rgba(255,255,255,.85); margin-top: .5rem; }
.tdt-detail-hero-meta span { display: flex; align-items: center; gap: .3rem; }
.tdt-detail-def-pill { background: var(--tdt-primary); color: #fff; font-size: .75rem; font-weight: 700; padding: .25rem .7rem; border-radius: 20px; }

/* ── Booking Bar Sticky Bottom ───────────────────────────── */
.tdt-booking-bar-sticky {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9000;
    background: var(--tdt-white); border-top: 1px solid var(--tdt-border);
    box-shadow: 0 -4px 24px rgba(0,0,0,.1);
}
.tdt-booking-bar-sticky.tdt-bb-at-footer { position: static; }
.tdt-bb-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 1.5rem; max-width: 1200px; margin: 0 auto;
    padding: .75rem 2rem; flex-wrap: wrap;
}
.tdt-bb-left  { display: flex; align-items: flex-start; gap: 1.5rem; flex-wrap: wrap; }
.tdt-bb-right { display: flex; align-items: center; gap: 1.25rem; flex-shrink: 0; }
.tdt-bb-group { display: flex; flex-direction: column; gap: .2rem; }
.tdt-bb-label { font-size: .72rem; font-weight: 700; color: var(--tdt-muted); }
.tdt-bb-select-wrap { position: relative; }
.tdt-bb-select {
    border: 1px solid var(--tdt-border); border-radius: 6px;
    padding: .35rem 2rem .35rem .65rem; font-size: .85rem; font-weight: 500;
    color: var(--tdt-dark); background: var(--tdt-bg); cursor: pointer;
    appearance: none; -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right .5rem center;
    max-width: 200px; min-width: 120px;
}
.tdt-bb-select:focus { outline: none; border-color: var(--tdt-primary); }
.tdt-bb-select:disabled { opacity: .7; cursor: default; }

/* Kişi seçici */
.tdt-pax-selector-wrap { position: relative; }
.tdt-pax-display {
    display: flex; align-items: center; gap: .4rem;
    border: 1px solid var(--tdt-border); border-radius: 6px;
    padding: .35rem .65rem; font-size: .85rem; font-weight: 500;
    color: var(--tdt-dark); background: var(--tdt-bg); cursor: pointer; white-space: nowrap;
}
.tdt-pax-dropdown {
    position: absolute; bottom: calc(100% + .5rem); left: 0;
    background: var(--tdt-white); border: 1px solid var(--tdt-border);
    border-radius: 10px; box-shadow: var(--tdt-shadow-lg);
    padding: .75rem 1rem; min-width: 240px; z-index: 10000;
}
.tdt-pax-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .35rem 0; font-size: .875rem; color: var(--tdt-text); border-bottom: 1px solid #f1f5f9; }
.tdt-pax-row:last-of-type { border-bottom: none; }
.tdt-pax-row small { font-size: .72rem; color: var(--tdt-muted); }
.tdt-pax-controls { display: flex; align-items: center; gap: .5rem; }
.tdt-pax-minus, .tdt-pax-plus {
    width: 28px; height: 28px; border-radius: 50%; background: var(--tdt-primary);
    color: #fff; border: none; cursor: pointer; font-size: 1.1rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center; transition: filter .12s;
}
.tdt-pax-minus:hover, .tdt-pax-plus:hover { filter: brightness(1.12); }
.tdt-pax-val { font-weight: 700; min-width: 20px; text-align: center; }

/* Sağ fiyat */
.tdt-bb-price-block { display: flex; flex-direction: column; align-items: flex-end; gap: .15rem; }
.tdt-bb-old { text-decoration: line-through; color: #94a3b8; font-size: .9rem; }
.tdt-bb-cur { font-size: 1.5rem; font-weight: 800; color: var(--tdt-primary); letter-spacing: -.02em; }
.tdt-bb-badges { display: flex; gap: .4rem; flex-wrap: wrap; justify-content: flex-end; }
.tdt-bb-badge-camp   { background: #059669; color: #fff; font-size: .7rem; font-weight: 700; padding: .18rem .55rem; border-radius: 4px; }
.tdt-bb-badge-urgent { background: #dc2626; color: #fff; font-size: .7rem; font-weight: 700; padding: .18rem .55rem; border-radius: 4px; }
.tdt-btn-reserve-main {
    background: var(--tdt-primary); color: #fff; padding: .75rem 1.75rem;
    border-radius: 8px; font-weight: 800; font-size: .925rem;
    text-decoration: none; border: none; cursor: pointer;
    white-space: nowrap; letter-spacing: .02em; transition: filter .15s; display: inline-block;
}
.tdt-btn-reserve-main:hover { filter: brightness(1.1); }

/* ── Detay container ─────────────────────────────────────── */
.tdt-detail-container { max-width: 960px; margin: 2rem auto 8rem; padding: 0 1rem; }
.tdt-detail-pills { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.tdt-info-pill { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; border-radius: 20px; font-size: .78rem; font-weight: 600; padding: .2rem .7rem; }
.tdt-pill-urgent { background: #fef2f2; color: #dc2626; border-color: #fecaca; }

/* ── Tabs ─────────────────────────────────────────────────── */
.tdt-detail-tabs-wrap { margin-bottom: 2rem; }
.tdt-detail-tabs { display: flex; gap: 0; border-bottom: 2px solid var(--tdt-border); flex-wrap: wrap; margin-bottom: 1.5rem; overflow-x: auto; scrollbar-width: none; }
.tdt-detail-tabs::-webkit-scrollbar { display: none; }
.tdt-detail-tab {
    padding: .6rem 1rem; background: none; border: none;
    border-bottom: 2px solid transparent; font-size: .875rem; font-weight: 600;
    cursor: pointer; color: var(--tdt-muted); transition: color .15s, border-color .15s;
    margin-bottom: -2px; white-space: nowrap;
}
.tdt-detail-tab.active { color: var(--tdt-primary); border-bottom-color: var(--tdt-primary); }
.tdt-tab-content  { display: none; }
.tdt-tab-content.active { display: block; }

/* ── Tur Programı ────────────────────────────────────────── */
.tdt-programs-list { display: flex; flex-direction: column; gap: 1rem; }
.tdt-program-item  { background: var(--tdt-bg); border: 1px solid var(--tdt-border); border-radius: var(--tdt-radius-sm); overflow: hidden; }
.tdt-program-header { display: flex; align-items: center; gap: 1rem; padding: .75rem 1rem; background: var(--tdt-white); }
.tdt-day-num { width: 32px; height: 32px; border-radius: 50%; background: var(--tdt-primary); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .875rem; flex-shrink: 0; }
.tdt-program-title { margin: 0; font-size: .925rem; font-weight: 700; color: var(--tdt-dark); }
.tdt-program-desc  { padding: .75rem 1rem; font-size: .875rem; color: var(--tdt-text); line-height: 1.65; }

/* ── Hizmetler ────────────────────────────────────────────── */
.tdt-services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.tdt-services-col h3 { font-size: .975rem; font-weight: 700; margin: 0 0 .75rem; }
.tdt-service-item { padding: .4rem 0; font-size: .875rem; border-bottom: 1px solid var(--tdt-border); }
.tdt-service-item:last-child { border-bottom: none; }
.tdt-inc { color: #166534; }
.tdt-exc { color: #991b1b; }

/* ── Fiyat tablosu ───────────────────────────────────────── */
.tdt-prices-info { background: #fffbeb; border: 1px solid #fde68a; border-radius: 6px; padding: .65rem 1rem; font-size: .875rem; color: #92400e; margin-bottom: 1rem; }
.tdt-price-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.tdt-price-table { width: 100%; border-collapse: collapse; font-size: .8rem; min-width: 600px; }
.tdt-price-table th { background: var(--tdt-bg); color: var(--tdt-dark); font-weight: 700; padding: .5rem .6rem; text-align: center; border: 1px solid var(--tdt-border); white-space: nowrap; }
.tdt-price-table td { padding: .45rem .6rem; border: 1px solid var(--tdt-border); text-align: center; vertical-align: middle; }
.tdt-price-table tr:nth-child(even) { background: #fafafa; }
.tdt-price-table tr.tdt-pt-active  { background: #f0fdf4 !important; }
.tdt-pt-date  { text-align: left !important; }
.tdt-pt-na    { color: #d1d5db; }
.tdt-pt-price { white-space: nowrap; }
.tdt-pt-old   { display: block; text-decoration: line-through; color: var(--tdt-muted); font-size: .75rem; }
.tdt-pt-new   { display: block; font-weight: 700; color: var(--tdt-dark); }
.tdt-tag-definite { background: var(--tdt-primary); color: #fff; font-size: .7rem; font-weight: 700; padding: .15rem .4rem; border-radius: 3px; display: inline-block; margin-bottom: .2rem; }
.tdt-tag-camp     { background: var(--tdt-accent); color: #fff; font-size: .7rem; padding: .15rem .4rem; border-radius: 3px; display: inline-block; }
.tdt-price-select-btn { background: var(--tdt-accent); color: #fff; border: none; border-radius: 5px; padding: .3rem .7rem; font-weight: 700; font-size: .8rem; cursor: pointer; transition: filter .15s; }
.tdt-price-select-btn:hover { filter: brightness(1.1); }

/* ── Ulaşım ──────────────────────────────────────────────── */
.tdt-flight-row { display: flex; align-items: center; gap: 1rem; padding: .6rem 0; border-bottom: 1px solid var(--tdt-border); font-size: .875rem; flex-wrap: wrap; }
.tdt-flight-badge { background: #e0f2fe; color: #0369a1; border-radius: 4px; padding: .2rem .5rem; font-size: .75rem; font-weight: 700; white-space: nowrap; }
.tdt-flight-detail { display: flex; gap: 1rem; flex-wrap: wrap; color: var(--tdt-text); }
.tdt-dep-point { padding: .4rem 0; font-size: .875rem; color: var(--tdt-text); display: flex; align-items: center; gap: .4rem; }

/* ============================================================
   REZERVASYON
   ============================================================ */
.tdt-reservation-wrap { max-width: 1000px; margin: 0 auto; }
.tdt-stepper { display: flex; align-items: center; margin-bottom: 2rem; overflow-x: auto; padding-bottom: .5rem; scrollbar-width: none; }
.tdt-stepper::-webkit-scrollbar { display: none; }
.tdt-step { display: flex; flex-direction: column; align-items: center; gap: .35rem; flex-shrink: 0; }
.tdt-step-circle { width: 36px; height: 36px; border-radius: 50%; background: var(--tdt-border); color: var(--tdt-muted); font-weight: 700; font-size: .875rem; display: flex; align-items: center; justify-content: center; transition: background .2s, color .2s; }
.tdt-step.active .tdt-step-circle, .tdt-step.done .tdt-step-circle { background: var(--tdt-primary); color: #fff; }
.tdt-step-label { font-size: .68rem; font-weight: 600; color: var(--tdt-muted); white-space: nowrap; }
.tdt-step.active .tdt-step-label { color: var(--tdt-primary); }
.tdt-step-line { flex: 1; height: 2px; background: var(--tdt-border); margin: 0 .5rem; min-width: 30px; position: relative; top: -10px; }
.tdt-res-layout { display: flex; gap: 1.5rem; align-items: flex-start; }
.tdt-res-form-area { flex: 1; min-width: 0; }
.tdt-res-sidebar { width: 300px; flex-shrink: 0; position: sticky; top: 1rem; }
.tdt-res-step-content { display: none; }
.tdt-res-step-content.active { display: block; }
.tdt-res-section-title { font-size: 1rem; font-weight: 700; margin: 0 0 .25rem; }
.tdt-res-section-desc  { font-size: .825rem; color: var(--tdt-muted); margin: 0 0 1rem; }

/* Kişi formu */
.tdt-pax-block { border: 1px solid var(--tdt-border); border-radius: var(--tdt-radius-sm); overflow: hidden; margin-bottom: 1rem; }
.tdt-pax-header { display: flex; align-items: center; gap: .75rem; padding: .6rem .85rem; background: var(--tdt-bg); border-bottom: 1px solid var(--tdt-border); flex-wrap: wrap; }
.tdt-pax-num   { width: 26px; height: 26px; border-radius: 50%; background: var(--tdt-primary); color: #fff; font-size: .8rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tdt-pax-label { font-weight: 700; font-size: .875rem; color: var(--tdt-dark); }
.tdt-pax-type-badge { background: #e0f2fe; color: #0369a1; font-size: .7rem; font-weight: 700; padding: .15rem .5rem; border-radius: 4px; }
.tdt-res-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; padding: .85rem; }
.tdt-res-field { display: flex; flex-direction: column; gap: .3rem; }
.tdt-res-field label { font-size: .78rem; font-weight: 600; color: var(--tdt-dark); }
.tdt-res-field input[type="text"],
.tdt-res-field input[type="email"],
.tdt-res-field input[type="tel"],
.tdt-res-field input[type="date"],
.tdt-res-field select,
.tdt-res-field textarea { border: 1px solid var(--tdt-border); border-radius: 6px; padding: .4rem .65rem; font-size: .875rem; width: 100%; box-sizing: border-box; transition: border-color .15s; }
.tdt-res-field input:focus, .tdt-res-field select:focus, .tdt-res-field textarea:focus { outline: none; border-color: var(--tdt-primary); }
.tdt-res-field small { font-size: .72rem; color: var(--tdt-muted); }
.tdt-inline-label { display: flex !important; flex-direction: row !important; align-items: center; gap: .3rem; font-size: .78rem !important; }
.tdt-field-full { grid-column: 1 / -1; }
.tdt-gender-radios { display: flex; gap: 1rem; font-size: .875rem; }
.tdt-req { color: #dc2626; }
.tdt-res-nav { display: flex; justify-content: flex-end; gap: .75rem; margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid var(--tdt-border); }
.tdt-res-next-btn { background: var(--tdt-primary); color: #fff; border: none; border-radius: 6px; padding: .55rem 1.5rem; font-weight: 700; font-size: .875rem; cursor: pointer; }
.tdt-res-back-btn { background: none; border: 1px solid var(--tdt-border); color: var(--tdt-muted); border-radius: 6px; padding: .55rem 1.2rem; font-weight: 600; font-size: .875rem; cursor: pointer; }

/* Ek hizmetler */
.tdt-extra-service-block { border: 1px solid var(--tdt-border); border-radius: var(--tdt-radius-sm); padding: 1rem; margin-bottom: 1rem; }
.tdt-extra-title { margin: 0 0 .6rem; font-size: .9rem; font-weight: 700; }
.tdt-extra-cb { display: flex; align-items: center; gap: .5rem; font-size: .85rem; color: var(--tdt-text); padding: .25rem 0; cursor: pointer; }
.tdt-extra-empty { background: var(--tdt-bg); border-radius: 8px; padding: 2rem; text-align: center; color: var(--tdt-muted); }

/* Ödeme */
.tdt-tamii-wrap { border: 1px solid var(--tdt-border); border-radius: var(--tdt-radius-sm); overflow: hidden; margin-bottom: 1rem; min-height: 80px; }
.tdt-tamii-placeholder { padding: 2rem; text-align: center; color: var(--tdt-muted); background: var(--tdt-bg); }
.tdt-tamii-placeholder h4 { margin: 0 0 .5rem; }
.tdt-terms-check { font-size: .825rem; display: flex; gap: .5rem; align-items: flex-start; }
.tdt-terms-check a { color: var(--tdt-primary); }

/* Sağ sidebar */
.tdt-res-tour-card { border: 1px solid var(--tdt-border); border-radius: var(--tdt-radius-sm); overflow: hidden; margin-bottom: 1rem; }
.tdt-res-tour-img  { position: relative; height: 160px; overflow: hidden; }
.tdt-res-tour-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tdt-res-tour-badge { position: absolute; top: .5rem; left: .5rem; background: var(--tdt-primary); color: #fff; font-size: .7rem; font-weight: 700; padding: .2rem .5rem; border-radius: 4px; }
.tdt-res-tour-info { padding: .75rem; font-size: .82rem; color: var(--tdt-text); display: flex; flex-direction: column; gap: .3rem; }
.tdt-res-tour-info h4 { margin: 0; font-size: .875rem; color: var(--tdt-dark); }
.tdt-res-tour-info div { display: flex; align-items: center; gap: .35rem; }
.tdt-payment-summary { background: var(--tdt-white); border: 1px solid var(--tdt-border); border-radius: var(--tdt-radius-sm); padding: 1rem; }
.tdt-payment-summary h4 { font-size: .75rem; font-weight: 700; letter-spacing: .05em; color: var(--tdt-muted); margin: 0 0 .75rem; }
.tdt-ps-rows { margin-bottom: .75rem; }
.tdt-ps-row { display: flex; justify-content: space-between; gap: .5rem; font-size: .825rem; padding: .3rem 0; color: var(--tdt-text); border-bottom: 1px solid #f1f5f9; }
.tdt-ps-row:last-child { border-bottom: none; }
.tdt-ps-val { font-weight: 600; }
.tdt-ps-total { display: flex; justify-content: space-between; font-weight: 700; font-size: .925rem; color: var(--tdt-dark); padding: .5rem 0; border-top: 2px solid var(--tdt-border); margin-bottom: .4rem; }
.tdt-ps-continue-btn, .tdt-res-submit { display: block; width: 100%; padding: .7rem; border: none; border-radius: 8px; font-weight: 700; font-size: .925rem; cursor: pointer; margin-top: .75rem; background: var(--tdt-primary); color: #fff; transition: filter .15s; }
.tdt-ps-continue-btn:hover, .tdt-res-submit:hover { filter: brightness(1.08); }
.tdt-res-success { text-align: center; padding: 2.5rem; }
.tdt-res-msg { margin-top: 1rem; font-size: .875rem; border-radius: 6px; padding: .5rem .75rem; }
.tdt-res-msg.ok  { background: #f0fdf4; color: #166534; }
.tdt-res-msg.err { background: #fef2f2; color: #dc2626; }

/* ============================================================
   KULLANICI ALANI
   ============================================================ */
.tdt-user-bar { position: relative; display: inline-flex; align-items: center; gap: .75rem; }
.tdt-ub-trigger { display: flex; align-items: center; gap: .5rem; cursor: pointer; padding: .35rem .6rem; border-radius: 8px; transition: background .15s; user-select: none; }
.tdt-ub-trigger:hover { background: #f1f5f9; }
.tdt-ub-avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--tdt-primary); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .875rem; flex-shrink: 0; }
.tdt-ub-info { display: flex; flex-direction: column; }
.tdt-ub-greeting { font-size: .82rem; color: #1e293b; white-space: nowrap; }
.tdt-ub-login-btn { display: flex; align-items: center; gap: .4rem; border: 1.5px solid var(--tdt-primary); color: var(--tdt-primary); background: none; border-radius: 7px; padding: .35rem .9rem; font-weight: 600; font-size: .85rem; cursor: pointer; transition: background .15s, color .15s; white-space: nowrap; }
.tdt-ub-login-btn:hover { background: var(--tdt-primary); color: #fff; }
.tdt-ub-dropdown { position: absolute; top: calc(100% + 8px); right: 0; background: var(--tdt-white); border: 1px solid var(--tdt-border); border-radius: 10px; box-shadow: var(--tdt-shadow-lg); min-width: 200px; z-index: 99999; overflow: hidden; }
.tdt-ub-dd-item { display: flex; align-items: center; gap: .6rem; padding: .7rem 1rem; font-size: .875rem; color: var(--tdt-text); text-decoration: none; background: none; border: none; width: 100%; text-align: left; cursor: pointer; transition: background .12s; }
.tdt-ub-dd-item:hover { background: #f1f5f9; }
.tdt-ub-dd-logout { color: #dc2626 !important; }
.tdt-auth-modal { position: fixed; inset: 0; z-index: 999999; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.tdt-auth-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.5); backdrop-filter: blur(3px); }
.tdt-auth-modal-box { position: relative; z-index: 1; background: var(--tdt-white); border-radius: 16px; padding: 2rem; width: 100%; max-width: 420px; box-shadow: 0 20px 60px rgba(0,0,0,.2); }
.tdt-auth-close { position: absolute; top: 1rem; right: 1rem; background: #f1f5f9; border: none; border-radius: 50%; width: 30px; height: 30px; cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center; color: var(--tdt-muted); }
.tdt-auth-tabs { display: flex; border-bottom: 2px solid var(--tdt-border); margin-bottom: 1.5rem; }
.tdt-ub-tab { flex: 1; padding: .6rem; background: none; border: none; border-bottom: 2px solid transparent; font-weight: 700; font-size: .875rem; cursor: pointer; color: var(--tdt-muted); margin-bottom: -2px; transition: color .15s, border-color .15s; }
.tdt-ub-tab.active { color: var(--tdt-primary); border-color: var(--tdt-primary); }
.tdt-auth-pane { display: none; }
.tdt-auth-pane.active { display: block; }
.tdt-auth-pane h3 { margin: 0 0 .25rem; font-size: 1.1rem; }
.tdt-auth-sub  { color: var(--tdt-muted); font-size: .875rem; margin: 0 0 1.25rem; }
.tdt-auth-field { margin-bottom: .85rem; }
.tdt-auth-field label { display: block; font-size: .78rem; font-weight: 700; color: var(--tdt-text); margin-bottom: .3rem; }
.tdt-auth-input { width: 100%; border: 1px solid var(--tdt-border); border-radius: 8px; padding: .5rem .75rem; font-size: .875rem; box-sizing: border-box; transition: border-color .15s; }
.tdt-auth-input:focus { outline: none; border-color: var(--tdt-primary); }
.tdt-auth-pw-wrap { position: relative; }
.tdt-auth-pw-wrap .tdt-auth-input { padding-right: 2.5rem; }
.tdt-pw-toggle { position: absolute; right: .6rem; top: 50%; transform: translateY(-50%); background: none; border: none; cursor: pointer; font-size: .9rem; color: #94a3b8; }
.tdt-auth-error { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; border-radius: 6px; padding: .4rem .75rem; font-size: .8rem; margin-bottom: .75rem; }
.tdt-ub-submit-btn { width: 100%; background: var(--tdt-primary); color: #fff; border: none; border-radius: 8px; padding: .6rem; font-weight: 700; font-size: .9rem; cursor: pointer; transition: filter .15s; }
.tdt-ub-submit-btn:hover { filter: brightness(1.1); }
.tdt-ub-submit-btn:disabled { opacity: .7; cursor: not-allowed; }
.tdt-auth-switch { text-align: center; font-size: .825rem; color: var(--tdt-muted); margin-top: .75rem; }
.tdt-auth-switch button { background: none; border: none; color: var(--tdt-primary); font-weight: 600; cursor: pointer; padding: 0; font-size: .825rem; }

/* ============================================================
   REZERVASYONLARıM
   ============================================================ */
.tdt-myres-wrap { max-width: 900px; margin: 0 auto; padding: 1rem 0; }
.tdt-myres-header { margin-bottom: 1.5rem; }
.tdt-myres-header h2 { font-size: 1.5rem; font-weight: 800; margin: 0 0 .3rem; }
.tdt-myres-login-required { text-align: center; padding: 4rem 2rem; background: var(--tdt-bg); border-radius: 12px; }
.tdt-myres-empty { text-align: center; padding: 3.5rem 2rem; background: var(--tdt-bg); border-radius: 12px; color: var(--tdt-muted); }
.tdt-brt-table { border: 1px solid var(--tdt-border); border-radius: 10px; overflow: hidden; background: var(--tdt-white); }
.tdt-brt-head { display: grid; grid-template-columns: 2fr 1.2fr 1fr .6fr 1fr .8fr .8fr; background: var(--tdt-bg); border-bottom: 2px solid var(--tdt-border); padding: .6rem .85rem; font-size: .75rem; font-weight: 700; color: var(--tdt-muted); letter-spacing: .04em; }
.tdt-brt-col { padding: 0 .4rem; }
.tdt-brt-summary { display: grid; grid-template-columns: 2fr 1.2fr 1fr .6fr 1fr .8fr .8fr; padding: .65rem .85rem; font-size: .82rem; color: var(--tdt-text); cursor: pointer; transition: background .12s; align-items: center; }
.tdt-brt-summary:hover { background: var(--tdt-bg); }
.tdt-brt-row-open .tdt-brt-summary { background: #f0fdf4; border-bottom: 1px solid var(--tdt-border); }
.tdt-brt-toggle { display: inline-block; margin-right: .5rem; font-size: .75rem; color: var(--tdt-primary); }
.tdt-brt-status { font-weight: 700; font-size: .78rem; }
.tdt-brt-amount { font-weight: 700; color: var(--tdt-primary); }
.tdt-brt-row { border-bottom: 1px solid #f1f5f9; }
.tdt-brt-row:last-child { border-bottom: none; }
.tdt-brt-detail { background: #fafafa; border-top: 1px solid var(--tdt-border); }
.tdt-brt-detail-inner { display: grid; grid-template-columns: 280px 1fr; gap: 1.5rem; padding: 1.5rem; }
.tdt-brd-left { display: flex; flex-direction: column; gap: .75rem; }
.tdt-brd-img  { border-radius: 8px; overflow: hidden; height: 160px; }
.tdt-brd-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tdt-brd-tour-name { font-weight: 700; font-size: .9rem; color: #1e293b; line-height: 1.3; }
.tdt-brd-section { background: var(--tdt-white); border: 1px solid var(--tdt-border); border-radius: 8px; padding: 1rem; }
.tdt-brd-section-title { font-size: .72rem; font-weight: 800; color: #94a3b8; letter-spacing: .06em; margin: 0 0 .75rem; }
.tdt-brd-pax-table { width: 100%; border-collapse: collapse; font-size: .8rem; }
.tdt-brd-pax-table th { background: var(--tdt-bg); color: var(--tdt-muted); font-weight: 700; padding: .4rem .65rem; border: 1px solid var(--tdt-border); text-align: left; font-size: .75rem; }
.tdt-brd-pax-table td { padding: .4rem .65rem; border: 1px solid #f1f5f9; color: var(--tdt-text); }
.tdt-brd-payment { display: flex; flex-direction: column; gap: .4rem; }
.tdt-brd-pay-row { display: flex; justify-content: space-between; font-size: .825rem; color: var(--tdt-text); padding: .25rem 0; border-bottom: 1px solid #f1f5f9; }
.tdt-brd-pay-total { display: flex; justify-content: space-between; padding: .5rem 0; font-weight: 700; font-size: .9rem; border-top: 2px solid var(--tdt-border); margin-top: .25rem; }

/* ============================================================
   MOBİL UYUMU
   ============================================================ */
@media (max-width: 768px) {
    /* Hero search */
    .tdt-search-row-hp  { flex-direction: column; }
    .tdt-shf-sep        { width: 100%; height: 1px; }
    .tdt-hp-search-btn  { border-radius: 0 0 var(--tdt-radius) var(--tdt-radius); padding: .85rem; font-size: .95rem; }
    .tdt-shf { border-bottom: 1px solid var(--tdt-border); }
    .tdt-shf:last-of-type { border-bottom: none; }
    .tdt-shf-sep { display: none; }

    /* Kategoriler */
    .tdt-cats-cols-3, .tdt-cats-cols-4 { grid-template-columns: repeat(2, 1fr); }

    /* Liste */
    .tdt-list-page { flex-direction: column; }
    .tdt-list-sidebar { width: 100%; position: static; }
    .tdt-list-card { flex-direction: column; }
    .tdt-lc-img { width: 100%; height: 180px; }
    .tdt-lc-price-box { width: 100%; border-left: none; border-top: 1px solid var(--tdt-border); flex-direction: row; flex-wrap: wrap; align-items: center; gap: .75rem; }

    /* Booking bar */
    .tdt-bb-inner { flex-direction: column; padding: .75rem 1rem; gap: .75rem; }
    .tdt-bb-left  { flex-direction: column; gap: .75rem; width: 100%; }
    .tdt-bb-group { flex-direction: row; align-items: center; gap: .75rem; }
    .tdt-bb-label { min-width: 80px; }
    .tdt-bb-select { max-width: 100%; width: 100%; }
    .tdt-bb-right { width: 100%; justify-content: space-between; }
    .tdt-btn-reserve-main { flex: 1; text-align: center; padding: .65rem 1rem; }

    /* Detay hero */
    .tdt-detail-container { margin-bottom: 12rem; } /* booking bar için boşluk */

    /* Rezervasyon */
    .tdt-res-layout { flex-direction: column; }
    .tdt-res-sidebar { width: 100%; position: static; }
    .tdt-res-grid  { grid-template-columns: 1fr; }
    .tdt-stepper   { gap: .25rem; }
    .tdt-step-line { min-width: 20px; }
    .tdt-step-label { font-size: .62rem; }

    /* Rezervasyonlarım */
    .tdt-brt-head { display: none; }
    .tdt-brt-summary { grid-template-columns: 1fr auto; gap: .5rem; }
    .tdt-brt-col:nth-child(n+3) { display: none; }
    .tdt-brt-detail-inner { grid-template-columns: 1fr; }
    .tdt-brd-img { height: 180px; }
    .tdt-brd-pax-table { font-size: .75rem; }

    /* Hizmetler */
    .tdt-services-grid { grid-template-columns: 1fr; }

    /* Feat grid */
    .tdt-feat-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
}

@media (max-width: 480px) {
    .tdt-cats-cols-2, .tdt-cats-cols-3, .tdt-cats-cols-4 { grid-template-columns: 1fr; }
    .tdt-hero-content-wrap { padding: 2rem 1rem; }
    .tdt-hp-card-img { height: 160px; }
    .tdt-detail-container { padding: 0 .75rem; }
    .tdt-bb-group { flex-direction: column; align-items: flex-start; }
}

/* ════════════════════════════════════════════════════════════
   HEADER WIDGET — Modern, Responsive, Premium
   ════════════════════════════════════════════════════════════ */
.tdt-hdr {
    --tdt-h-padding-y: 16px;
    --tdt-h-gap: 32px;
    --tdt-h-accent: #0d9488;
    --tdt-h-text: #334155;
    --tdt-h-bg: #ffffff;
    --tdt-h-border: #e2e8f0;
    background: var(--tdt-h-bg);
    width: 100%;
    z-index: 999;
    transition: box-shadow .25s ease, padding .25s ease;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.tdt-hdr-shadow { box-shadow: 0 1px 0 rgba(0,0,0,.04); }
.tdt-hdr-shadow.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.08); }
.tdt-hdr-sticky { position: sticky; top: 0; }
.tdt-hdr.scrolled { --tdt-h-padding-y: 10px; }

.tdt-hdr-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--tdt-h-padding-y) 32px;
    display: flex;
    align-items: center;
    gap: var(--tdt-h-gap);
    transition: padding .25s ease;
}

/* LOGO */
.tdt-hdr-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity .2s;
}
.tdt-hdr-logo:hover { opacity: .8; }
.tdt-hdr-logo img { display: block; width: auto; max-height: 64px; }
.tdt-hdr-logo-txt {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--tdt-h-accent);
    letter-spacing: -.02em;
}

/* DESKTOP MENU */
.tdt-hdr-menu { flex: 1; min-width: 0; }
.tdt-hdr-menu-list,
.tdt-hdr-menu-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.tdt-hdr-menu-list {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}
.tdt-hdr-menu-list > li { position: relative; }
.tdt-hdr-menu-list > li > a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 10px 14px;
    font-size: 15px;
    font-weight: 600;
    color: var(--tdt-h-text);
    text-decoration: none;
    border-radius: 8px;
    position: relative;
    transition: color .2s, background .2s;
}
.tdt-hdr-menu-list > li > a:hover,
.tdt-hdr-menu-list > li.current-menu-item > a,
.tdt-hdr-menu-list > li.current-menu-parent > a {
    color: var(--tdt-h-accent);
    background: rgba(13,148,136,.06);
}
.tdt-hdr-menu-list > li > a:after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--tdt-h-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
}
.tdt-hdr-menu-list > li:hover > a:after,
.tdt-hdr-menu-list > li.current-menu-item > a:after { transform: scaleX(1); }

/* Sub menu (dropdown) */
.tdt-hdr-menu-list .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    border: 1px solid var(--tdt-h-border);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,.10);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .2s, transform .2s, visibility .2s;
    z-index: 100;
}
.tdt-hdr-menu-list > li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.tdt-hdr-menu-list .sub-menu a {
    display: block;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--tdt-h-text);
    text-decoration: none;
    border-radius: 6px;
    transition: background .15s, color .15s;
}
.tdt-hdr-menu-list .sub-menu a:hover {
    background: #f1f5f9;
    color: var(--tdt-h-accent);
}

/* SAĞ ALAN */
.tdt-hdr-right {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

/* TELEFON */
.tdt-hdr-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 10px;
    text-decoration: none;
    transition: background .15s;
    color: inherit;
}
.tdt-hdr-phone:hover { background: #f1f5f9; }
.tdt-hdr-phone-ic {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(13,148,136,.1);
    color: var(--tdt-h-accent);
    flex-shrink: 0;
}
.tdt-hdr-phone-txt { display: flex; flex-direction: column; line-height: 1.2; }
.tdt-hdr-phone-txt small {
    font-size: 11px;
    color: #94a3b8;
    font-weight: 500;
}
.tdt-hdr-ph-num {
    font-size: 15px;
    font-weight: 700;
    color: var(--tdt-h-accent);
    letter-spacing: -.01em;
}

/* KULLANICI ALANI */
.tdt-hdr-user { position: relative; }
.tdt-hdr-login-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--tdt-h-accent);
    color: #fff !important;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(13,148,136,.25);
    transition: transform .15s, box-shadow .15s;
}
.tdt-hdr-login-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(13,148,136,.35);
}
.tdt-hdr-user-trigger {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px 6px 6px;
    background: #f8fafc;
    border: 1px solid var(--tdt-h-border);
    border-radius: 999px;
    cursor: pointer;
    font: inherit;
    color: var(--tdt-h-text);
    transition: background .15s;
}
.tdt-hdr-user-trigger:hover { background: #f1f5f9; }
.tdt-hdr-user-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--tdt-h-accent);
    color: #fff;
    font-weight: 700;
    font-size: 13px;
}
.tdt-hdr-user-name { font-size: 14px; font-weight: 500; }
.tdt-hdr-user-name strong { font-weight: 700; }
.tdt-hdr-user-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    min-width: 200px;
    background: #fff;
    border: 1px solid var(--tdt-h-border);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,.12);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .2s, transform .2s, visibility .2s;
    z-index: 100;
}
.tdt-hdr-user-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.tdt-hdr-user-menu a {
    display: block;
    padding: 10px 14px;
    font-size: 14px;
    color: var(--tdt-h-text);
    text-decoration: none;
    border-radius: 6px;
    transition: background .15s, color .15s;
}
.tdt-hdr-user-menu a:hover {
    background: #f1f5f9;
    color: var(--tdt-h-accent);
}

/* MOBİL BURGER */
.tdt-hdr-burger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid var(--tdt-h-border);
    border-radius: 10px;
    cursor: pointer;
    color: var(--tdt-h-text);
    transition: background .15s;
}
.tdt-hdr-burger:hover { background: #f1f5f9; }

/* MOBİL DRAWER */
.tdt-hdr-drawer {
    position: fixed;
    inset: 0;
    z-index: 99999;
    pointer-events: none;
}
.tdt-hdr-drawer.open { pointer-events: auto; }
.tdt-hdr-drawer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15,23,42,.5);
    opacity: 0;
    transition: opacity .3s ease;
    backdrop-filter: blur(4px);
}
.tdt-hdr-drawer.open .tdt-hdr-drawer-overlay { opacity: 1; }
.tdt-hdr-drawer-panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 320px;
    max-width: 85vw;
    background: #fff;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 32px rgba(0,0,0,.15);
}
.tdt-hdr-drawer.open .tdt-hdr-drawer-panel { transform: translateX(0); }
.tdt-hdr-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid var(--tdt-h-border);
}
.tdt-hdr-drawer-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--tdt-h-text);
}
.tdt-hdr-drawer-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    color: var(--tdt-h-text);
}
.tdt-hdr-drawer-close:hover { background: #f1f5f9; }
.tdt-hdr-drawer-menu { flex: 1; overflow-y: auto; padding: 12px 0; }
.tdt-hdr-drawer-list,
.tdt-hdr-drawer-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.tdt-hdr-drawer-list > li > a {
    display: block;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 600;
    color: var(--tdt-h-text);
    text-decoration: none;
    border-bottom: 1px solid #f1f5f9;
    transition: background .15s, color .15s;
}
.tdt-hdr-drawer-list > li > a:hover,
.tdt-hdr-drawer-list > li.current-menu-item > a {
    background: #f8fafc;
    color: var(--tdt-h-accent);
}
.tdt-hdr-drawer-list .sub-menu a {
    display: block;
    padding: 10px 32px;
    font-size: 13px;
    font-weight: 500;
    color: #64748b;
    text-decoration: none;
    border-bottom: 1px solid #f8fafc;
}
.tdt-hdr-drawer-list .sub-menu a:hover {
    background: #f8fafc;
    color: var(--tdt-h-accent);
}
.tdt-hdr-drawer-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    margin: 16px 20px;
    background: var(--tdt-h-accent);
    color: #fff !important;
    text-decoration: none;
    border-radius: 12px;
    font-size: 15px;
    box-shadow: 0 4px 16px rgba(13,148,136,.3);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .tdt-hdr-inner { gap: 16px; padding: 12px 20px; }
    .tdt-hdr-menu,
    .tdt-hdr-phone-txt small { display: none; }
    .tdt-hdr-user-name { display: none; }
    .tdt-hdr-burger { display: inline-flex; }
}
@media (max-width: 640px) {
    .tdt-hdr-inner { gap: 12px; padding: 10px 16px; }
    .tdt-hdr-right { gap: 8px; }
    .tdt-hdr-phone {
        padding: 6px;
        background: transparent;
    }
    .tdt-hdr-phone-txt { display: none; }
    .tdt-hdr-phone-ic { width: 40px; height: 40px; }
    .tdt-hdr-login-btn {
        padding: 8px 12px;
        font-size: 13px;
    }
    .tdt-hdr-login-btn span { display: none; }
    .tdt-hdr-user-trigger { padding: 4px; }
    .tdt-hdr-logo img { max-height: 44px; }
    .tdt-hdr-logo-txt { font-size: 1rem; }
}

/* ── Header Mega Menu Panel ─────────────────────── */
.tdt-hdr-mega {
    position: fixed; /* JS konumlandırır */
    top: 0; left: 0;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-top: 3px solid var(--tdt-h-accent, #0d9488);
    border-radius: 0 0 12px 12px;
    box-shadow: 0 16px 48px rgba(0,0,0,.15);
    z-index: 999990;
    min-width: 320px;
    max-width: 720px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .2s, transform .2s, visibility .2s;
    pointer-events: none;
}
.tdt-hdr-mega.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
.tdt-hdr-mega-inner { padding: 1.5rem 1.75rem; }
.tdt-hdr-mega-title {
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--tdt-h-accent, #0d9488);
    border-bottom: 2px solid var(--tdt-h-accent, #0d9488);
    padding-bottom: .55rem;
    margin: 0 0 .85rem;
}
.tdt-hdr-mega-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.tdt-hdr-mega-list li { break-inside: avoid; margin: 0; padding: 0; }
.tdt-hdr-mega-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    padding: .4rem .5rem;
    font-size: .9rem;
    color: #334155;
    text-decoration: none;
    line-height: 1.5;
    border-radius: 6px;
    transition: color .15s, background .15s, padding-left .15s;
}
.tdt-hdr-mega-list a:hover {
    color: var(--tdt-h-accent, #0d9488);
    background: rgba(13,148,136,.05);
    padding-left: .75rem;
}
.tdt-hdr-mega-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 20px;
    padding: 0 6px;
    background: #f1f5f9;
    color: #64748b;
    border-radius: 10px;
    font-size: .68rem;
    font-weight: 700;
    line-height: 1;
}
.tdt-hdr-mega-list a:hover .tdt-hdr-mega-count {
    background: var(--tdt-h-accent, #0d9488);
    color: #fff;
}
@media (max-width: 768px) {
    .tdt-hdr-mega { display: none !important; }
}
