/* ===== SEARCH HISTORY DROPDOWN ===== */
.search-history-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    z-index: 150;
    display: none;
    overflow: hidden;
    animation: slideDown 0.2s ease;
}

.search-history-dropdown.active {
    display: block;
}

.sh-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    border-bottom: 1px solid var(--border-color);
    background: rgba(0, 0, 0, 0.2);
}

.sh-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

.sh-clear {
    background: none;
    border: none;
    font-size: 11px;
    color: var(--error);
    cursor: pointer;
    padding: 4px;
}

.sh-clear:hover {
    text-decoration: underline;
}

.sh-list {
    list-style: none;
    max-height: 250px;
    overflow-y: auto;
}

.sh-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition-fast);
}

.sh-item:last-child {
    border-bottom: none;
}

.sh-item:hover {
    background: var(--bg-glass-hover);
}

.sh-icon {
    color: var(--text-muted);
    width: 14px;
    height: 14px;
}

.sh-text {
    flex: 1;
    font-size: 14px;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sh-remove {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    opacity: 0;
    transition: var(--transition-fast);
}

.sh-item:hover .sh-remove {
    opacity: 1;
}

.sh-remove:hover {
    color: var(--error);
}

/* ===== NAV BUTTONS ===== */
.nav-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

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

.nav-btn:hover,
.nav-btn.active {
    background: var(--bg-glass-hover);
    color: var(--accent-3);
    border-color: var(--accent-1);
}

.nav-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--error);
    color: white;
    font-size: 10px;
    font-weight: 800;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border: 2px solid var(--bg-primary);
}

/* ===== FAVORITES BUTTON IN CARDS/MODAL ===== */
.btn-fav {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: var(--transition-fast);
}

.btn-fav svg {
    width: 20px;
    height: 20px;
    fill: none;
}

.btn-fav:hover {
    color: var(--warning);
    background: rgba(245, 158, 11, 0.1);
}

.btn-fav.is-favorite {
    color: var(--warning);
}

.btn-fav.is-favorite svg {
    fill: currentColor;
}

/* Responsive Hide */
@media (max-width: 768px) {
    .ds-desktop-only {
        display: none !important;
    }
}

/* ===== GOOGLE ADSENSE REKLAM ALANLARI ===== */
.ad-banner {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 24px auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg, 12px);
    padding: 8px;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ad-banner ins {
    width: 100%;
}

@media (max-width: 768px) {
    .ad-banner {
        min-height: 60px;
        padding: 4px;
    }
}

/* ===== DİL SEÇİCİ ===== */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 2px 6px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
    font-family: inherit;
}

.lang-btn:hover {
    color: var(--text-primary);
}

.lang-btn.active {
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    color: white;
}

.lang-sep {
    color: var(--border-color);
    font-size: 11px;
    user-select: none;
}