/* === CTA Banner === */
.ttb-tkv-cta-wrap { padding: 12px 0 6px; background: transparent; }
.ttb-tkv-cta {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 14px;
    width: calc(100% - 32px);
    background: linear-gradient(135deg, #fef3c7 0%, #fef9e7 100%);
    border: 1.5px solid #fbbf24;
    border-left: 6px solid #f59e0b;
    border-radius: 12px;
    padding: 12px 18px;
    cursor: pointer;
    text-align: left;
    box-shadow: 0 3px 10px rgba(245, 158, 11, .15);
    transition: transform .15s, box-shadow .15s;
    font-family: inherit;
}
.ttb-tkv-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(245, 158, 11, .25); }
.ttb-tkv-cta-icon {
    width: 40px; height: 40px; border-radius: 10px;
    background: linear-gradient(135deg, #f59e0b, #b45309);
    color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    box-shadow: 0 3px 8px rgba(245, 158, 11, .35);
}
.ttb-tkv-cta-icon svg { width: 20px; height: 20px; }
.ttb-tkv-cta-text { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.ttb-tkv-cta-eyebrow { font-size: 11px; font-weight: 800; letter-spacing: 1.4px; color: #b45309; text-transform: uppercase; }
.ttb-tkv-cta-title { font-size: 14.5px; font-weight: 800; color: #78350f; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ttb-tkv-cta-arrow { color: #b45309; flex-shrink: 0; }
.ttb-tkv-cta-arrow svg { width: 18px; height: 18px; }
@media (max-width: 575px) {
    .ttb-tkv-cta { padding: 10px 14px; gap: 10px; }
    .ttb-tkv-cta-icon { width: 36px; height: 36px; }
    .ttb-tkv-cta-icon svg { width: 18px; height: 18px; }
    .ttb-tkv-cta-title { font-size: 13px; }
    .ttb-tkv-cta-eyebrow { font-size: 10px; }
}

/* === Modal === */
.ttb-tkv-overlay {
    position: fixed !important; top: 0 !important; left: 0 !important; right: 0 !important; bottom: 0 !important; inset: 0 !important;
    background: rgba(17, 24, 39, .58) !important;
    z-index: 99999 !important; padding: 24px 16px;
    display: none;
    align-items: flex-start; justify-content: center;
    overflow-y: auto;
}
.ttb-tkv-overlay.is-open { display: flex !important; }
.ttb-tkv-modal {
    width: 100%; max-width: 720px; background: #fff;
    border-radius: 20px; overflow: hidden; margin: auto 0;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .35), 0 4px 12px rgba(0, 0, 0, .12);
    animation: ttbTkvIn .25s ease-out;
}
@keyframes ttbTkvIn { from { transform: translateY(16px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.ttb-tkv-head { background: #fff; padding: 20px 24px 18px; border-bottom: 4px solid #c1000f; position: relative; }
.ttb-tkv-head-row { display: flex; align-items: center; gap: 16px; }
.ttb-tkv-brand { width: 64px; height: 64px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.ttb-tkv-brand-img { width: 100%; height: 100%; object-fit: contain; display: block; }
.ttb-tkv-title-wrap { flex: 1; min-width: 0; }
.ttb-tkv-eyebrow { font-size: 11.5px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: #c1000f; margin: 0 0 3px; }
.ttb-tkv-h1 { font-size: 22px; font-weight: 900; letter-spacing: -.3px; margin: 0; color: #111827; }
.ttb-tkv-close {
    background: #fff; border: 1.5px solid #e5e7eb; color: #6b7280;
    width: 40px; height: 40px; border-radius: 50%; cursor: pointer;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    transition: background .15s, transform .15s, color .15s, border-color .15s;
}
.ttb-tkv-close:hover { background: #fef2f2; color: #c1000f; border-color: #fee2e2; transform: rotate(90deg); }

.ttb-tkv-body { max-height: 76vh; overflow-y: auto; padding: 22px 24px 26px; background: #f8f9fa; }
.ttb-tkv-body::-webkit-scrollbar { width: 8px; }
.ttb-tkv-body::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 6px; }

.ttb-tkv-sect-title { display: flex; align-items: center; gap: 10px; font-size: 12.5px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.2px; color: #6b7280; margin: 24px 0 12px; padding: 0 4px; }
.ttb-tkv-sect-title:first-child { margin-top: 0; }
.ttb-tkv-sect-title.ttb-tkv-gold { color: #b45309; }
.ttb-tkv-sect-line { flex: 1; height: 1px; background: #e5e7eb; }
.ttb-tkv-sect-title.ttb-tkv-gold .ttb-tkv-sect-line { background: linear-gradient(90deg, #fde68a, transparent); }

.ttb-tkv-featured {
    position: relative; background: linear-gradient(135deg, #fef3c7 0%, #fef9e7 100%);
    border: 2px solid #f59e0b; border-radius: 16px; padding: 20px 22px 22px;
    box-shadow: 0 10px 30px rgba(245, 158, 11, .18); overflow: hidden; margin-bottom: 4px;
}
.ttb-tkv-featured::before { content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 6px; background: linear-gradient(180deg, #f59e0b, #b45309); }
.ttb-tkv-feat-badge {
    position: absolute; top: 14px; right: 22px;
    background: linear-gradient(135deg, #f59e0b, #b45309); color: #fff !important;
    padding: 5px 12px; border-radius: 20px; font-size: 10.5px; font-weight: 900; letter-spacing: 1.2px;
    text-transform: uppercase; box-shadow: 0 4px 10px rgba(245, 158, 11, .38); animation: ttbTkvPulse 2s ease-in-out infinite;
}
@keyframes ttbTkvPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.04); } }
.ttb-tkv-feat-inner { display: flex; gap: 20px; align-items: stretch; }

/* Takvim yapragi */
.ttb-tkv-leaf {
    position: relative; width: 108px; min-width: 108px; background: #fff;
    border-radius: 6px 6px 10px 10px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .18), 0 2px 6px rgba(0, 0, 0, .12), inset 0 -1px 0 rgba(0, 0, 0, .04);
    flex-shrink: 0; overflow: visible; padding-top: 14px; transform: rotate(-1.5deg); transition: transform .25s;
}
.ttb-tkv-leaf:hover { transform: rotate(0) scale(1.02); }
.ttb-tkv-leaf::after { content: ''; position: absolute; left: 4px; right: 4px; bottom: -5px; height: 10px; background: #fff; border-radius: 0 0 8px 8px; box-shadow: 0 4px 10px rgba(0, 0, 0, .12); z-index: -1; }
.ttb-tkv-leaf::before { content: ''; position: absolute; left: 8px; right: 8px; bottom: -10px; height: 10px; background: #f8f9fa; border-radius: 0 0 8px 8px; box-shadow: 0 2px 8px rgba(0, 0, 0, .08); z-index: -2; }
.ttb-tkv-holes { position: absolute; top: -4px; left: 0; right: 0; display: flex; justify-content: space-around; padding: 0 14px; pointer-events: none; }
.ttb-tkv-hole { width: 7px; height: 7px; border-radius: 50%; background: radial-gradient(circle at 35% 35%, #6b7280 0%, #374151 55%, #111827 100%); box-shadow: inset 0 1px 2px rgba(0, 0, 0, .6), 0 1px 1px rgba(255, 255, 255, .6); }
.ttb-tkv-leaf-mo { background: linear-gradient(180deg, #c1000f 0%, #8b0000 100%); color: #fff !important; font-size: 13px; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; text-align: center; padding: 6px 4px 5px; margin: 0 6px; border-radius: 3px; box-shadow: 0 2px 5px rgba(193, 0, 15, .35), inset 0 -1px 0 rgba(0, 0, 0, .18), inset 0 1px 0 rgba(255, 255, 255, .18); text-shadow: 0 1px 1px rgba(0, 0, 0, .35); }
.ttb-tkv-leaf-day { font-family: 'Playfair Display', Georgia, 'Times New Roman', serif; font-size: 62px; font-weight: 900; line-height: 1; color: #111827; text-align: center; padding: 12px 0 8px; letter-spacing: -3px; }
.ttb-tkv-leaf-yr { position: relative; text-align: center; font-size: 11.5px; font-weight: 800; color: #6b7280; letter-spacing: 2.5px; padding: 8px 0 12px; border-top: 1.5px dashed #d1d5db; margin: 0 8px; }
.ttb-tkv-leaf-yr::before, .ttb-tkv-leaf-yr::after { content: ''; position: absolute; top: -5px; width: 9px; height: 9px; background: #fef3c7; border-radius: 50%; }
.ttb-tkv-leaf-yr::before { left: -12px; }
.ttb-tkv-leaf-yr::after { right: -12px; }

.ttb-tkv-feat-info { flex: 1; min-width: 0; }
.ttb-tkv-tour-name { font-size: 17.5px; font-weight: 900; color: #111827 !important; margin: 6px 0 8px; line-height: 1.25; letter-spacing: -.2px; padding-right: 100px; }
.ttb-tkv-row { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: #374151; margin: 4px 0; }
.ttb-tkv-row svg { width: 15px; height: 15px; color: #b45309; flex-shrink: 0; }
.ttb-tkv-row strong { color: #111827; font-weight: 700; }
.ttb-tkv-lbl-inline { font-weight: 800; color: #6b7280; font-size: 12.5px; text-transform: uppercase; letter-spacing: .4px; margin-right: 4px; }
.ttb-tkv-feat-actions { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
.ttb-tkv-btn-primary { display: inline-flex; align-items: center; gap: 7px; padding: 10px 16px; border-radius: 10px; background: linear-gradient(135deg, #f59e0b, #b45309); color: #fff !important; font-weight: 800; font-size: 13px; text-decoration: none !important; border: 0; cursor: pointer; box-shadow: 0 5px 14px rgba(245, 158, 11, .32); transition: transform .12s, box-shadow .12s; letter-spacing: .3px; }
.ttb-tkv-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(245, 158, 11, .45); }
.ttb-tkv-btn-primary svg { width: 14px; height: 14px; }
.ttb-tkv-btn-secondary { display: inline-flex; align-items: center; gap: 7px; padding: 10px 14px; border-radius: 10px; background: #fff; color: #b45309 !important; font-weight: 700; font-size: 13px; text-decoration: none !important; border: 1.5px solid #fde68a; cursor: pointer; transition: background .12s; }
.ttb-tkv-btn-secondary:hover { background: #fef3c7; }
.ttb-tkv-btn-secondary svg { width: 13px; height: 13px; }

.ttb-tkv-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 14px; padding: 16px 18px; margin-bottom: 10px; display: flex; align-items: center; gap: 16px; transition: transform .12s, box-shadow .12s, border-color .12s; }
.ttb-tkv-card:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0, 0, 0, .08); border-color: #fee2e2; }
.ttb-tkv-dbadge { background: linear-gradient(135deg, #fef2f2, #fff); border: 1.5px solid #fee2e2; border-radius: 14px; padding: 12px 8px 10px; min-width: 90px; text-align: center; box-shadow: 0 3px 10px rgba(0, 0, 0, .08); flex-shrink: 0; }
.ttb-tkv-dbadge-d { font-size: 32px; font-weight: 900; line-height: 1; color: #c1000f; letter-spacing: -1px; display: block; }
.ttb-tkv-dbadge-m { font-size: 12px; font-weight: 800; color: #c1000f; margin-top: 6px; letter-spacing: 1.2px; display: block; }
.ttb-tkv-dbadge-y { font-size: 10.5px; font-weight: 700; color: #6b7280; margin-top: 4px; display: block; }
.ttb-tkv-card-info { flex: 1; min-width: 0; }
.ttb-tkv-tour-name-sm { font-size: 15.5px; font-weight: 800; color: #111827; margin: 0 0 6px; line-height: 1.3; }
.ttb-tkv-row-sm { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #6b7280; }
.ttb-tkv-row-sm svg { width: 13px; height: 13px; color: #c1000f; flex-shrink: 0; }
.ttb-tkv-tag { margin-left: auto; background: #16a34a; color: #fff !important; padding: 3px 10px; border-radius: 20px; font-size: 10.5px; font-weight: 800; letter-spacing: .8px; text-transform: uppercase; flex-shrink: 0; white-space: nowrap; }
.ttb-tkv-tag-planned { background: #4338ca; }
.ttb-tkv-tag-cancelled { background: #dc2626; }
.ttb-tkv-tag-past { background: #9ca3af; }

.ttb-tkv-past { opacity: .58; background: #f3f4f6; border-color: #e5e7eb; }
.ttb-tkv-past:hover { opacity: .85; }
.ttb-tkv-past .ttb-tkv-dbadge { background: #fff; border-color: #e5e7eb; }
.ttb-tkv-past .ttb-tkv-dbadge-d,
.ttb-tkv-past .ttb-tkv-dbadge-m,
.ttb-tkv-past .ttb-tkv-row-sm svg { color: #6b7280; }

.ttb-tkv-foot { background: #fff; border-top: 1px solid #e5e7eb; padding: 14px 24px; font-size: 12.5px; color: #6b7280; font-weight: 600; text-align: center; }
.ttb-tkv-foot strong { color: #c1000f; font-weight: 900; letter-spacing: .3px; }

/* Modal mobile */
@media (max-width: 640px) {
    .ttb-tkv-modal { border-radius: 16px; }
    .ttb-tkv-head { padding: 18px 18px 16px; }
    .ttb-tkv-h1 { font-size: 18px; }
    .ttb-tkv-brand { width: 52px; height: 52px; }
    .ttb-tkv-body { padding: 18px 16px 22px; }
    /* Mobilde featured: kucuk takvim rozet + kompakt row layout */
    .ttb-tkv-featured { padding: 14px 14px 14px; }
    .ttb-tkv-feat-inner { flex-direction: row; gap: 12px; align-items: flex-start; }
    .ttb-tkv-feat-badge { position: static; margin: 0 0 8px 0; top: auto; right: auto; padding: 4px 10px; font-size: 9.5px; display: inline-flex; }
    .ttb-tkv-tour-name { padding-right: 0; margin: 0 0 6px 0; font-size: 15px; line-height: 1.25; }
    .ttb-tkv-row { font-size: 12px; margin: 2px 0; gap: 6px; }
    .ttb-tkv-row svg { width: 12px; height: 12px; }
    /* 2026-07-29: Featured mobilde tarih + yer gorunur, telefon ve ana turnuva saati gizli */
    .ttb-tkv-featured .ttb-tkv-row-phone { display: none; }
    .ttb-tkv-featured .ttb-tkv-anaturnuva { display: none; }
    /* Takvim yapragi mobilde kucuk rozet formunda (gelecek kartlarina benzer) */
    .ttb-tkv-leaf { width: 72px; min-width: 72px; transform: none; padding-top: 10px; border-radius: 12px; box-shadow: 0 3px 10px rgba(0, 0, 0, .1); border: 1.5px solid var(--gold-line); align-self: flex-start; }
    .ttb-tkv-leaf::before, .ttb-tkv-leaf::after { display: none; }
    .ttb-tkv-holes { display: none; }
    .ttb-tkv-leaf-mo { font-size: 10px; padding: 3px 4px 3px; margin: 0 4px; letter-spacing: 1.4px; }
    .ttb-tkv-leaf-day { font-size: 30px; padding: 4px 0 3px; letter-spacing: -1.2px; }
    .ttb-tkv-leaf-yr { font-size: 9.5px; padding: 4px 0 7px; margin: 0 6px; letter-spacing: 1.6px; }
    .ttb-tkv-leaf-yr::before, .ttb-tkv-leaf-yr::after { display: none; }
    .ttb-tkv-dbadge { min-width: 76px; padding: 10px 6px 8px; }
    .ttb-tkv-dbadge-d { font-size: 26px; }
    .ttb-tkv-card { padding: 14px 14px; gap: 14px; }
    .ttb-tkv-tour-name-sm { font-size: 14.5px; }
    .ttb-tkv-tag { font-size: 9.5px; padding: 3px 8px; }
    .ttb-tkv-row-sm { font-size: 12.5px; }
    .ttb-tkv-feat-actions { flex-direction: row; gap: 6px; margin-top: 10px; }
    .ttb-tkv-btn-primary, .ttb-tkv-btn-secondary { flex: 1; justify-content: center; font-size: 12px; padding: 8px 10px; }
    .ttb-tkv-btn-primary svg, .ttb-tkv-btn-secondary svg { width: 12px; height: 12px; }
}

/* 2026-07-29: Featured mobilde ekstra detaylar gizli (900px alti) */
@media (max-width: 900px) {
    .ttb-tkv-featured .ttb-tkv-anaturnuva { display: none !important; }
    .ttb-tkv-featured .ttb-tkv-row-phone { display: none !important; }
}