/*---- يَا اللَّهُ يَا اللَّهُ يَا اللَّهُ يَا أَحَدُ يَا أَحَدُ يَا أَحَدُ يَا وَاحِدُ يَا وَاحِدُ يَا وَاحِدُاُ رْزُقْ نِي مِنْ هُمْ شَيْئًا وَإِنْ هُمْ أَبَوْا ------*/


/*
Theme Name: Hava Durumu
Version: 1.3
Description: Optimized & Reorganized
*/

/* ==================== 1. GLOBAL & RESET ==================== */
:root {
  --bg: #eef2ff; --surface: #ffffff; --text: #0f172a; --muted: #64748b;
  --primary: #4f46e5; --primary-soft: rgba(79,70,229,0.12);
  --danger: #f97316; --success: #10b981; --warning: #f59e0b;
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #f5f5f5; color: var(--text);
  line-height: 1.6; overflow-x: hidden;
}

/* ==================== 2. ANIMATIONS ==================== */
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
@keyframes slideDown { from { transform: translateY(-100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* ==================== 3. LAYOUT & TYPOGRAPHY ==================== */
.wrapper {
  max-width: 1280px; margin: 24px auto 40px; padding: 0 20px;
  animation: fadeIn 0.6s ease;
}

.page-title {
  font-size: 20px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 12px;
  background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.subline, .breadcrumbs { font-size: 0.85rem; color: var(--muted); font-weight: 500; margin-bottom: 24px; }
.breadcrumbs { font-size: 0.8rem; margin-bottom: 14px; }
.breadcrumbs strong { color: var(--primary); }

/* ==================== 4. HEADER ==================== */
header {
  background: #345381;
  padding: 16px 20px; position: sticky; top: 0; z-index: 100;
  box-shadow: 0 4px 20px rgba(79, 70, 229, 0.3); backdrop-filter: blur(10px);
}

.topbar {
  display: flex; justify-content: space-between; align-items: center;
  max-width: 1280px; margin: 0 auto; gap: 20px; flex-wrap: wrap;
}

.brand { display: flex; gap: 12px; align-items: center; }
.brand-logo {
  width: 42px; height: 42px; background: rgba(255,255,255,0.2);
  border-radius: 14px; display: grid; place-items: center;
  font-weight: 800; font-size: 1.3rem; letter-spacing: -0.05em;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.brand-text { font-weight: 700; font-size: 1.1rem; letter-spacing: -0.02em; }
.brand-subtext { font-size: 0.75rem; opacity: 0.85; font-weight: 400; }

nav { display: flex; gap: 18px; flex-wrap: wrap; }
nav a {
  color: #fff; text-decoration: none; font-size: 0.9rem; font-weight: 500;
  opacity: 0.9; transition: all 0.3s ease; padding: 6px 12px; border-radius: 8px;
}
nav a:hover { opacity: 1; background: rgba(255,255,255,0.15); }
nav a.active { font-weight: 700; background: rgba(255,255,255,0.25); }

.select-group {
  background: rgba(255,255,255,0.15); border-radius: 12px; padding: 6px 14px;
  display: flex; gap: 8px; align-items: center; backdrop-filter: blur(5px);
}
.select-group label { font-size: 0.8rem; font-weight: 500; }
.select-group select {
  background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.3);
  border-radius: 8px; color: #fff; font-size: 0.85rem; padding: 4px 8px;
  outline: none; font-weight: 500; cursor: pointer;
}
.select-group select option { background: #667eea; color: #fff; }


/* Sticky Mini Player */
.sticky-mini-player {
  position: fixed; top: 72px; left: 50%; transform: translateX(-50%) translateY(-150px);
  background: var(--gradient-primary); color: #fff; padding: 12px 24px;
  border-radius: 50px; box-shadow: 0 8px 32px rgba(79, 70, 229, 0.4);
  display: flex; align-items: center; gap: 12px; z-index: 90;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); max-width: 90vw; opacity: 0;
}
.sticky-mini-player.active { transform: translateX(-50%) translateY(0); opacity: 1; animation: slideDown 0.4s ease; }
.mini-player-icon { font-size: 1.5rem; animation: pulse 2s infinite; }
.mini-player-info { flex: 1; min-width: 0; }
.mini-player-title { font-size: 0.85rem; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mini-player-time { font-size: 0.7rem; opacity: 0.9; }
.mini-player-controls { display: flex; gap: 8px; }
.mini-player-btn {
  width: 32px; height: 32px; background: rgba(255,255,255,0.2); border: none; border-radius: 50%;
  cursor: pointer; display: grid; place-items: center; font-size: 1rem; transition: all 0.3s ease;
}
.mini-player-btn:hover { background: rgba(255,255,255,0.35); transform: scale(1.1); }

/* ==================== 5. HERO SECTION ==================== */
.hero-wrapper {
  padding: 4px; 
}

.hero {
  background: #ffffff; color: #333333; border-radius: 24px; padding: 32px;
  margin-bottom: 24px; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative; overflow: hidden; animation: fadeIn 0.8s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.hero::before {
  content: ''; position: absolute; top: -50%; right: -10%; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}

.hero-content { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; }
.hero-main { display: flex; gap: 24px; align-items: center; }

.weather-icon {
  width: 110px; height: 110px; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 28px; display: grid; place-items: center; font-size: 3.5rem;
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3); backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3); transition: transform 0.3s ease;
}
.weather-icon:hover { transform: scale(1.05); box-shadow: 0 12px 32px rgba(102, 126, 234, 0.4); }

.hero-info { flex: 1; }
.hero-location { font-size: 0.95rem; color: #666666; font-weight: 600; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.hero-temp { font-size: 4.5rem; font-weight: 900; line-height: 1; margin-bottom: 8px; color: #1a1a1a; text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); }
.hero-cond { font-size: 1.1rem; color: #555555; font-weight: 500; margin-bottom: 16px; }

.hero-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; min-width: 280px; }
.metric {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
  border-radius: 16px; padding: 14px 16px; font-size: 0.8rem;
  border: 1px solid rgba(102, 126, 234, 0.15); transition: all 0.3s ease;
}
.metric:hover {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
  transform: translateY(-2px); box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}
.metric-label { color: #777777; font-weight: 600; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px; font-size: 0.75rem; }
.metric strong { display: block; font-size: 1.3rem; font-weight: 800; color: #333333; }

/* Hero Audio */
.hero-audio { grid-column: 1 / -1; margin-top: 24px; padding-top: 24px; border-top: 1px solid rgba(0, 0, 0, 0.1); }
.audio-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; flex-wrap: wrap; gap: 12px; }
.audio-title { display: flex; align-items: center; gap: 10px; font-size: 1.1rem; font-weight: 700; color: #333333; }
.audio-title-icon { font-size: 1.5rem; animation: pulse 2s infinite; }
.audio-duration { font-size: 0.85rem; color: #666666; background: rgba(102, 126, 234, 0.1); padding: 4px 12px; border-radius: 20px; border: 1px solid rgba(102, 126, 234, 0.2); }

.audio-controls { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.audio-play-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); border: 2px solid rgba(102, 126, 234, 0.3);
  color: #fff; padding: 14px 32px; border-radius: 50px; font-size: 1.05rem; font-weight: 700;
  cursor: pointer; display: inline-flex; gap: 10px; align-items: center; backdrop-filter: blur(10px);
  transition: all 0.3s ease; box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
}
.audio-play-btn:hover {
  background: linear-gradient(135deg, #7c8df0 0%, #8a5bb5 100%); transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(102, 126, 234, 0.4);
}
.audio-play-btn:active { transform: translateY(0); }

.audio-share-btns { display: flex; gap: 8px; }
.audio-share-btn {
  width: 40px; height: 40px; background: rgba(102, 126, 234, 0.1); border: 1px solid rgba(102, 126, 234, 0.2);
  border-radius: 50%; cursor: pointer; display: grid; place-items: center; font-size: 1.1rem;
  transition: all 0.3s ease; text-decoration: none; color: #667eea;
}
.audio-share-btn:hover { background: rgba(102, 126, 234, 0.2); transform: scale(1.1); color: #764ba2; }

.audio-progress-container { margin-top: 16px; display: none; }
.audio-progress-container.active { display: block; }
.audio-progress-bar {
  width: 100%; height: 6px; background: rgba(102, 126, 234, 0.15); border-radius: 10px;
  overflow: hidden; cursor: pointer; position: relative; border: 1px solid rgba(102, 126, 234, 0.2);
}
.audio-progress-fill {
  height: 100%; background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  border-radius: 10px; width: 0%; transition: width 0.1s linear;
}
.audio-time { display: flex; justify-content: space-between; font-size: 0.75rem; margin-top: 8px; color: #666666; }

.audio-transcript {
  margin-top: 16px; padding: 16px; background: rgba(102, 126, 234, 0.08);
  border-radius: 12px; font-size: 0.9rem; line-height: 1.7; border-left: 4px solid #667eea; color: #333333;
}
.audio-transcript-title { font-weight: 700; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; font-size: 0.95rem; color: #333333; }
.audio-transcript-preview { font-size: 0.9rem; line-height: 1.6; color: #555555; margin-bottom: 12px; }
.audio-transcript-full { font-size: 0.85rem; line-height: 1.7; color: #666666; margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(0, 0, 0, 0.1); }
.audio-transcript-full p { margin-bottom: 10px; }
.audio-transcript-full p:last-child { margin-bottom: 0; }
.audio-transcript-toggle {
  background: rgba(102, 126, 234, 0.1); border: 1px solid rgba(102, 126, 234, 0.2); color: #667eea;
  padding: 8px 16px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; cursor: pointer;
  transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 6px; margin-top: 8px;
}
.audio-transcript-toggle:hover { background: rgba(102, 126, 234, 0.2); transform: translateY(-1px); color: #764ba2; }

/* Hero Mobile */
.hero-mobile-only { display: none; }
@media (max-width: 768px) {
  .hero-desktop-only { display: none !important; }
  .hero-mobile-only { display: block; }
  
  /* ANA CONTAINER - DİKEY YAP */
  .hero-mobile-container { 
    display: flex; 
    flex-direction: column; /* YATAYDAN DİKEYE */
    gap: 16px; 
  }
  
  /* ÜST KISIM - İKON + BİLGİ YATAY */
  .hero-mobile-main { 
    display: flex; 
    flex-direction: row; /* YATAY */
    align-items: center; /* ORTALA */
    gap: 12px;
    width: 100%;
  }
  
 .weather-icon-mobile {
    width: 70px; /* 64px → 70px */
    height: 70px; 
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 18px; 
    display: grid; 
    place-items: center; 
    font-size: 2.2rem; /* 2rem → 2.2rem */
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3); 
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3); 
    flex-shrink: 0;
}

.hero-mobile-location { 
    font-size: 0.78rem; /* 0.75rem → 0.78rem */
    color: #666666; 
    font-weight: 600; 
    margin-bottom: 2px; 
    text-transform: uppercase; 
    letter-spacing: 0.5px; 
}

.hero-mobile-temp { 
    font-size: 2.2rem; /* 2rem → 2.2rem */
    font-weight: 900; 
    line-height: 1; 
    margin-bottom: 2px; 
    color: #1a1a1a; 
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); 
}

.hero-mobile-cond { 
    font-size: 0.9rem; /* 0.85rem → 0.9rem */
    color: #555555; 
    font-weight: 500; 
}
  
  /* ALT KISIM - METRİKLER GENİŞ 2x2 */
  .hero-mobile-metrics { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); /* 2 sütun */
    gap: 10px; /* Boşluklar */
    width: 100%;
  }
  
  .metric-mobile {
    background: rgba(102, 126, 234, 0.08); 
    border-radius: 12px; 
    padding: 14px 10px; /* Dikey padding artır */
    backdrop-filter: blur(10px); 
    border: 1px solid rgba(102, 126, 234, 0.15); 
    text-align: center;
  }
  
 .metric-mobile-label {
    font-size: 0.7rem;
    color: #535353;
    font-weight: 800;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
  
  .metric-mobile-value {
    font-size: 15px;
    font-weight: 900;
    color: #000000;
}
}

/* ==================== 6. TABS SYSTEM ==================== */
.tabs-wrapper { position: relative; margin: 12px 0; }
.tabs-container {
  display: flex; justify-content: flex-start; gap: 8px; padding: 14px 10px;
  position: sticky; top: 72px; z-index: 50; background: rgba(74, 63, 199, 0.95);
  backdrop-filter: blur(6px); margin: 0 0 24px; border-radius: 12px;
  animation: fadeIn 0.6s ease 0.2s both; overflow-x: auto; scrollbar-width: none;
}
.tabs-container::-webkit-scrollbar, .tabs::-webkit-scrollbar { display: none; }

.tabs {
  display: flex; gap: 10px; padding: 8px 20px; background: rgba(79, 70, 229, 0.05);
  border-radius: 16px; overflow-x: auto; scrollbar-width: none; scroll-behavior: smooth;
}

.tab-btn {
  border: none; background: transparent; padding: 10px 18px; font-weight: 600;
  cursor: pointer; transition: all 0.3s ease; color: white; white-space: nowrap;
  position: relative; flex-shrink: 0; font-size: 16px; border-radius: 10px;
}
.tab-btn::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%) scaleX(0);
  width: 60%; height: 3px; background: var(--gradient-primary); border-radius: 10px; transition: transform 0.3s ease;
}
.tab-btn:hover { background: rgba(79, 70, 229, 0.08); }
.tab-btn.active { background: var(--gradient-primary); color: #fff; box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3); }
.tab-btn.active::after { transform: translateX(-50%) scaleX(1); background: #fff; }

.tabs-wrapper::after {
  content: '›'; position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  font-size: 22px; color: rgba(255,255,255,0.4); pointer-events: none; transition: opacity 0.3s;
}
.tabs-wrapper.scrolled::after { opacity: 0; }

.tab-select {
  display: none; width: 100%; padding: 10px; border-radius: 6px;
  background: #3a2e7b; color: #fff; font-size: 15px; border: none;
}

@media(max-width: 768px) { .tabs-container { top: 65px; margin: 0 -20px 16px; } }
@media(max-width: 480px) { .tabs-container { display: none; } .tab-select { display: block; } }

/* ==================== 7. FORECAST SECTIONS ==================== */
.card {
  background: var(--surface); border-radius: 10px; box-shadow: 0 4px 24px rgba(15,23,42,0.06);
  padding: 20px 24px; border: 1px solid rgba(79, 70, 229, 0.05); transition: all 0.3s ease; margin-bottom: 24px;
}
.card:hover { box-shadow: 0 8px 32px rgba(15,23,42,0.1); transform: translateY(-2px); }

.section-title {
  font-weight: 700; font-size: 1.3rem; margin-bottom: 16px; color: var(--primary);
  display: flex; align-items: center; gap: 10px; top: 150px; background: var(--surface); padding: 8px 0; z-index: 10;
}
.section-title::before { content: ''; width: 4px; height: 24px; background: var(--gradient-primary); border-radius: 4px; }
@media (max-width: 768px) { .section-title { top: 130px; font-size: 1.1rem; } }

/* Daily Forecast */
.daily-forecast-hero {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%); border-radius: 16px; padding: 20px; margin-bottom: 20px;
}
.daily-main-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; margin-bottom: 20px;
}
.daily-main-item { text-align: center; }
.daily-icon-big { font-size: 4rem; margin-bottom: 10px; }
.daily-label { font-size: 0.85rem; color: #0369a1; font-weight: 600; margin-bottom: 4px; }
.daily-value { font-size: 1.4rem; font-weight: 700; color: #0c4a6e; }
.daily-value.temp-high { font-size: 3rem; color: #dc2626; }
.daily-value.temp-low { font-size: 3rem; color: #0ea5e9; }

.daily-metrics-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); gap: 12px; }
.daily-metric-box {
  background: rgba(255,255,255,0.7); padding: 12px; border-radius: 12px; text-align: center; transition: all 0.3s ease;
}
.daily-metric-box:hover { background: rgba(255,255,255,0.9); transform: translateY(-2px); }
.daily-metric-icon { font-size: 1.2rem; margin-bottom: 4px; }
.daily-metric-label { font-size: 0.75rem; color: #64748b; margin-bottom: 2px; }
.daily-metric-value { font-weight: 700; color: #0c4a6e; }

@media (max-width: 768px) {
  .daily-forecast-hero { padding: 16px; }
  .daily-main-grid { grid-template-columns: 1fr; gap: 16px; }
  .daily-metrics-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- ORTAK TEMEL AYARLAR (Hem Mobil Hem PC) --- */
.weather-card-slider {
    background: #ffffff;
    border-radius: 20px;
    padding: 20px 20px 10px 20px; /* Alt padding biraz kısıldı */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 20px;
    position: relative;
    overflow: hidden; /* Dışarı taşmaları engelle */
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #334155;
}

/* Kaydırma Alanı Temeli */
.hourly-scroll-wrapper {
    display: flex;
    gap: 0; /* Boşluk yok, çizgiler birleşmeli */
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 20px; /* Scrollbar payı */
    
    /* Scrollbar'ı Gizleme Teknikleri */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE */
}
.hourly-scroll-wrapper::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

/* Tekil Saat Kutusu */
.hourly-item {
    flex: 0 0 auto; /* Asla sıkışma, boyutunu koru */
    width: 90px;    /* Masaüstü standart genişlik */
    text-align: center;
    position: relative;
    cursor: default;
}

/* Çizgili Grafik Yapısı */
.hourly-line-indicator {
    position: relative;
    height: 30px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Arka Plandaki Çizgi */
.hourly-line-indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: #e2e8f0;
    z-index: 1;
}

/* İlk ve Son Eleman İçin Çizgi Düzeltmesi */
.hourly-item:first-child .hourly-line-indicator::before { left: 50%; width: 50%; }
.hourly-item:last-child .hourly-line-indicator::before { width: 50%; }

/* Nokta (Dot) */
.hourly-line-indicator .dot {
    width: 10px;
    height: 10px;
    background: #3b82f6; /* Mavi Nokta */
    border: 2px solid #fff;
    border-radius: 50%;
    z-index: 2;
    position: relative;
    box-shadow: 0 0 0 2px #dbeafe; /* Dışta hafif mavi halka */
}

/* Metin Stilleri */
.hourly-temp { font-size: 1.1rem; font-weight: 800; color: #1e293b; margin-bottom: 5px; }
.hourly-icon { font-size: 1.8rem; margin: 10px 0; display: block; }
.hourly-rain { font-size: 0.75rem; color: #64748b; font-weight: 600; }
.hourly-time { font-size: 0.85rem; color: #000000; margin-top: 8px; font-weight: 900;}

/* Şu anki saat vurgusu */
.hourly-item.current .hourly-time { color: #3b82f6; font-weight: 700; }

/* -------------------------------------------------------- */
/* --- MASAÜSTÜ (PC) İÇİN ÖZEL KURALLAR (Min 769px) --- */
/* -------------------------------------------------------- */
@media (min-width: 769px) {
    .slider-controls {
        display: flex; /* Butonları göster */
        gap: 10px;
    }
    
    .scroll-btn {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 1px solid #e2e8f0;
        background: #fff;
        color: #334155;
        font-size: 1.2rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s ease;
        line-height: 0;
        padding-bottom: 4px; /* Oku ortalamak için ince ayar */
    }

    .scroll-btn:hover {
        background: #3b82f6;
        color: white;
        border-color: #3b82f6;
        transform: translateY(-2px);
    }
    
    /* Masaüstünde hover efekti */
    .hourly-item:hover .hourly-temp {
        transform: scale(1.1);
        transition: transform 0.2s;
        color: #3b82f6;
    }
}

/* ------------------------------------------------------ */
/* --- MOBİL (CEP) İÇİN ÖZEL KURALLAR (Max 768px) --- */
/* ------------------------------------------------------ */
@media (max-width: 768px) {
    
    /* 1. Butonları mobilde tamamen yok et */
    .slider-controls {
        display: none !important;
    }

    /* 2. Kartın sağ ve sol kenarlarındaki boşlukları ayarla */
    .weather-card-slider {
        padding: 15px 0 15px 0; /* Yanlardan sıfırla ki slider tam kenara değsin */
    }
    
    .section-title, .info-box {
        padding: 0 20px; /* Başlık ve info kutusu içeride kalsın */
    }

    /* 3. Slider Mobilde Daha Geniş ve Rahat Olsun */
    .hourly-scroll-wrapper {
        padding: 0 20px 20px 20px; /* Slider'ın başı ve sonu kenardan boşluklu başlasın */
    }

    /* 4. Mobilde eleman genişliği ayarı */
    .hourly-item {
        width: 75px; /* Mobilde biraz daha dar olabilir, ekrana daha çok sığsın */
    }
    
    /* 5. Mobilde Sağ Tarafa Devamı Var Hissi (Fade Effect) */
    /* Bu özellik sadece mobilde çalışacak */
    .weather-card-slider::after {
        content: '';
        position: absolute;
        top: 60px; /* Başlığın altı */
        right: 0;
        height: 150px; /* Slider yüksekliği kadar */
        width: 40px;
        background: linear-gradient(to right, rgba(255,255,255,0), #ffffff);
        pointer-events: none;
        z-index: 10;
    }
}



/* Forecast Grid (7/15/30 Days) */
.forecast-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); gap: 14px; }
.forecast-item {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%); border-radius: 16px; padding: 16px 14px;
  border: 1px solid rgba(79, 70, 229, 0.08); transition: all 0.3s ease; text-align: center;
}
.forecast-item:hover {
  transform: translateY(-4px); box-shadow: 0 8px 24px rgba(15,23,42,0.1); border-color: rgba(79, 70, 229, 0.2);
}
.forecast-item .day { font-weight: 700; margin-bottom: 8px; color: var(--primary); font-size: 0.95rem; }
.forecast-icon { font-size: 2.5rem; margin: 8px 0; }
.forecast-item .desc { font-size: 0.85rem; color: var(--muted); margin: 8px 0; }
.forecast-item .temp { font-size: 1rem; margin-top: 8px; font-weight: 700; }
.temp-high { color: var(--danger); }
.temp-low { color: #0ea5e9; }

@media (max-width: 768px) { .forecast-grid { grid-template-columns: repeat(auto-fit, minmax(90px, 1fr)); } }
@media (min-width: 992px) {
  #t15 .forecast-grid, #t30 .forecast-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; justify-content: center; }
  #t15 .forecast-item, #t30 .forecast-item { flex: 0 0 auto; width: auto; }
}

/* Info Box */
.info-box {
  margin-top: 20px; padding: 16px; background: rgba(59, 130, 246, 0.1);
  border-radius: 12px; border-left: 4px solid #3b82f6; animation: fadeIn 0.6s ease;
}
.info-box-title { font-weight: 700; color: #1e40af; margin-bottom: 8px; }
.info-box-content { font-size: 0.9rem; color: #1e3a8a; line-height: 1.8; }
.info-box.warning { background: rgba(245, 158, 11, 0.1); border-left-color: #f59e0b; }
.info-box.warning .info-box-title { color: #92400e; }
.info-box.warning .info-box-content { color: #78350f; }

/* ==================== 8. DISTRICTS SLIDER ==================== */
/* ==================== CLEAN DISTRICTS SLIDER ==================== */
.districts-section {
    margin: 40px 0;
    padding: 30px 20px; /* İç boşluğu artırdık */
    background: #fff; /* Tam beyaz zemin */
}

.districts-slider-wrapper {
    position: relative;
    padding: 0 50px; /* Oklar için yer */
}

.districts-slider-container {
    overflow: hidden;
    padding-bottom: 20px; /* Gölge kesilmesin diye alt boşluk */
    margin: 0 -10px; /* Kenar boşluklarını dengele */
	touch-action: pan-y;
}

.districts-slider {
    display: flex;
    gap: 16px; /* Kartlar arası boşluk */
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1); /* Yumuşak kayma */
    padding: 10px; /* Container padding */
}

/* --- YENİ KART TASARIMI (MINIMAL) --- */
.district-card-minimal {
    background: #ffffff;
    border: 1px solid #f1f5f9; /* Çok silik gri sınır */
    border-radius: 20px; /* Yumuşak köşeler (Hap gibi) */
    padding: 15px;
    min-width: 140px; /* Genişlik */
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02); /* Çok hafif gölge */
    position: relative;
    overflow: hidden;
}

/* Hover Efekti: Havalanma */
.district-card-minimal:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08); /* Belirgin gölge */
    border-color: #e2e8f0;
}

/* Kart İçeriği */
.dc-header { margin-bottom: 8px; }
.dc-name {
    font-size: 0.8rem;
    font-weight: 700;
    color: #64748b; /* Gri Etiket Rengi */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dc-body {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 5px;
}

.dc-temp {
    font-size: 2rem; /* Büyük Derece */
    font-weight: 800;
    color: #1e293b; /* Koyu Antrasit */
    line-height: 1;
}

.dc-icon {
    font-size: 1.8rem; /* İkon Derecenin yanında */
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1)); /* İkona derinlik */
}

.dc-footer { margin-top: auto; }
.dc-cond {
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 500;
}

/* --- KİBAR NAVİGASYON OKLARI --- */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: #ffffff; /* Beyaz zemin */
    border: 1px solid #e2e8f0; /* İnce gri çerçeve */
    border-radius: 50%;
    color: #64748b; /* Gri ok rengi */
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05); /* Hafif gölge */
}

.slider-nav:hover {
    background: #fff;
    color: #3b82f6; /* Hover'da mavi ok */
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
    transform: translateY(-50%) scale(1.05);
    border-color: #3b82f6;
}

.slider-nav.disabled {
    opacity: 0.4;
    cursor: default;
    box-shadow: none;
}

.slider-nav-prev { left: 0; }
.slider-nav-next { right: 0; }

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .districts-slider-wrapper { padding: 0 10px; }
    .slider-nav { display: none; } /* Mobilde okları gizle, kaydırarak gezsin */
    .district-card-minimal { min-width: 120px; padding: 12px; }
    .dc-temp { font-size: 1.6rem; }
    .dc-icon { font-size: 1.5rem; }
}

/* ==================== 9. CONTENT & SPOTLIGHT ==================== */
.content-with-spotlight {
  display: grid; grid-template-columns: 2fr 1fr; grid-auto-rows: 1fr; gap: 24px; margin-top: 24px;
}
.content-with-spotlight.layout-two-column { display: grid; grid-template-columns: 2fr 1fr; gap: 24px; }
.content-with-spotlight.layout-single-column { display: block; }
.content-with-spotlight.layout-single-column .content-description { width: 100%; max-width: 100%; }

.content-with-spotlight .content-description { margin-top: 0; display: flex; flex-direction: column; }
.content-description p { margin-bottom: 16px; color: #334155; line-height: 1.8; font-size: 0.95rem; }
.content-description h2 { font-size: 1.5rem; color: var(--primary); margin-bottom: 16px; font-weight: 800; }

.content-with-spotlight .weather-spotlight {
  position: sticky; top: 16px; border-radius: 16px; padding: 20px;
  background: linear-gradient(135deg, rgba(99,102,241,0.28) 0%, rgba(79,70,229,0.32) 100%);
  border: 1px solid rgba(99,102,241,0.45); box-shadow: 0 8px 28px rgba(0,0,0,0.18);
  margin-top: 0; display: flex; flex-direction: column; height: 100%;
}
.content-with-spotlight .ws-header { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; flex-shrink: 0; }
.content-with-spotlight .ws-emoji { font-size: 1.25rem; line-height: 1; }
.content-with-spotlight .ws-title {
  margin: 0; font-size: 1.05rem; font-weight: 800; letter-spacing: -0.01em;
  color: #ffffff; text-shadow: 0 1px 3px rgba(0,0,0,0.25);
}
.content-with-spotlight .ws-media {
  display: flex; flex-direction: column; align-items: center; margin: 8px 0 14px; flex-shrink: 0;
}
.content-with-spotlight .ws-media img {
  width: 100%; max-width: 220px; height: auto; border-radius: 12px; display: block;
  object-fit: cover; box-shadow: 0 6px 18px rgba(0,0,0,0.2); border: 1px solid rgba(255,255,255,0.25);
}
.content-with-spotlight .ws-media-caption {
  margin-top: 6px; font-size: 0.78rem; opacity: 0.95; text-align: center; color: #ffffff;
}
.content-with-spotlight .ws-content { flex: 1; display: flex; flex-direction: column; }
.content-with-spotlight .ws-section + .ws-section { margin-top: 14px; }
.content-with-spotlight .ws-subtitle {
  font-weight: 700; font-size: 0.95rem; margin-bottom: 8px; color: #ffffff; text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.content-with-spotlight .ws-metrics {
  margin: 0; padding: 0; list-style: none; display: grid; gap: 6px; font-size: 0.92rem; color: rgba(255,255,255,0.98);
}
.content-with-spotlight .ws-metrics li { line-height: 1.5; }
.content-with-spotlight .ws-metrics strong { color: #ffffff; }
.content-with-spotlight .ws-muted { opacity: 0.8; color: rgba(255,255,255,0.8); }
.content-with-spotlight .ws-section:last-child { margin-top: auto; padding-top: 16px; flex-shrink: 0; }
.content-with-spotlight .ws-note {
  margin: 0; padding: 12px 14px; border-radius: 10px; background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3); line-height: 1.6; font-size: 0.92rem; color: rgba(255,255,255,0.98);
}

@media (max-width: 1024px) { .content-with-spotlight { grid-template-columns: 1.4fr 1fr; gap: 20px; } }
@media (max-width: 768px) {
  .content-with-spotlight { grid-template-columns: 1fr; grid-auto-rows: auto; gap: 16px; }
  .content-with-spotlight .weather-spotlight {
    position: static; height: auto; background: linear-gradient(135deg, rgba(79,70,229,0.30) 0%, rgba(99,102,241,0.34) 100%);
    border: 1px solid rgba(99,102,241,0.5); box-shadow: 0 10px 28px rgba(0,0,0,0.2);
  }
  .content-with-spotlight .ws-media img { max-width: 100%; }
  .content-with-spotlight .ws-title { font-size: 1rem; }
  .content-with-spotlight .ws-metrics { font-size: 0.9rem; }
  .content-with-spotlight .ws-section:last-child { margin-top: 14px; padding-top: 0; }
  .content-description p { padding-left: 24px; }
  .content-description p::before { left: 0; }
}

/* ==================== 10. WIDGETS GRID ==================== */
.widget-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 24px; margin-bottom: 24px;  }
.widget-grid-4col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 24px; }
.widget-card {
  background: var(--surface); border-radius: 20px; padding: 20px;
  box-shadow: 0 4px 20px rgba(15,23,42,0.06); border: 1px solid rgba(79, 70, 229, 0.05); transition: all 0.3s ease;
}
.widget-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(15,23,42,0.1); }
.widget-title {
  font-weight: 700; font-size: 1.05rem; margin-bottom: 16px; color: var(--primary);
  display: flex; align-items: center; gap: 8px;
}
.widget-title i { font-size: 1.2rem; }

/* AQI Widget */
.aqi-main { text-align: center; margin-bottom: 16px; }
.aqi-value { font-size: 2.5rem; font-weight: 900; color: #10b981; line-height: 1; margin-bottom: 4px; }
.aqi-badge {
  display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: 0.75rem;
  font-weight: 700; background: #10b981; color: #fff;
}
.aqi-details { display: flex; flex-direction: column; gap: 8px; }
.aqi-row {
  display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #f1f5f9; font-size: 0.85rem;
}
.aqi-row:last-child { border-bottom: none; }
.aqi-label { font-weight: 600; color: #64748b; }
.aqi-val-small { font-weight: 700; color: #334155; }

/* Pollen Widget */
.pollen-item {
  display: flex; align-items: center; justify-content: space-between; padding: 12px;
  margin-bottom: 8px; background: #f8fafc; border-radius: 12px; border-left: 4px solid transparent;
}
.pollen-item.low { border-left-color: #10b981; }
.pollen-item.medium { border-left-color: #f59e0b; }
.pollen-item.high { border-left-color: #ef4444; }
.pollen-info { flex: 1; }
.pollen-name { font-weight: 600; font-size: 0.9rem; margin-bottom: 2px; }
.pollen-desc { font-size: 0.75rem; color: var(--muted); }
.pollen-level { font-weight: 700; padding: 4px 12px; border-radius: 12px; font-size: 0.75rem; }
.pollen-level.low { background: #dcfce7; color: #166534; }
.pollen-level.medium { background: #fef3c7; color: #92400e; }
.pollen-level.high { background: #fee2e2; color: #991b1b; }

/* Astro Widget */
.astro-box { background: linear-gradient(135deg, #1e293b 0%, #334155 100%); border-radius: 16px; padding: 16px; color: #fff; }
.astro-item {
  display: flex; align-items: center; gap: 10px; margin: 10px 0; padding: 10px;
  background: rgba(255,255,255,0.1); border-radius: 10px;
}
.astro-icon { font-size: 1.5rem; }
.astro-info { flex: 1; }
.astro-label { font-size: 0.75rem; opacity: 0.8; }
.astro-value { font-size: 1rem; font-weight: 700; }

/* Warning Widget */
.warning-box {
  background: #fff7ed; border: 1px solid #fed7aa; border-radius: 12px; padding: 12px;
  display: flex; gap: 12px; margin-bottom: 10px;
}
.warning-icon { color: #f97316; font-size: 1.5rem; }
.warning-content strong { display: block; color: #9a3412; font-size: 0.9rem; margin-bottom: 4px; }
.warning-content p { font-size: 0.8rem; color: #c2410c; margin: 0; line-height: 1.4; }
.widget-card .warning-box { width: 100%; margin-top: 16px; margin-bottom: 16px; align-items: center; }

/* Stats Widget */
.stats-grid { display: flex; flex-direction: column; gap: 10px; }
.stats-row {
  display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #e2e8f0; font-size: 0.9rem;
}
.stats-row:last-child { border-bottom: none; }
.stats-label { color: #64748b; }
.stats-value { font-weight: 700; color: #0f172a; }

@media (max-width: 1200px) { .widget-grid, .widget-grid-4col { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .widget-grid, .widget-grid-4col { grid-template-columns: 1fr; } }


/* ==================== 12. RELATED PAGES ==================== */
.related-pages { margin-top: 40px; padding-top: 24px; border-top: 1px solid #e2e8f0; }
.related-links { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.related-group h4 {
  font-size: 1rem; color: var(--primary); margin-bottom: 12px; font-weight: 700; display: flex; align-items: center; gap: 8px;
}
.related-group ul { list-style: none; }
.related-group li { margin-bottom: 8px; }
.related-group a {
  color: var(--text); text-decoration: none; font-size: 0.9rem; transition: all 0.2s ease;
  display: flex; align-items: center; gap: 6px;
}
.related-group a::before {
  content: '→'; color: var(--muted); font-size: 0.8rem; transition: transform 0.2s ease;
}
.related-group a:hover { color: var(--primary); padding-left: 4px; }
.related-group a:hover::before { transform: translateX(2px); color: var(--primary); }
@media (max-width: 768px) { .related-links { grid-template-columns: 1fr; } }

/* ==================== 13. FOOTER ==================== */
footer { background: #1f2937; color: white; margin-top: 60px; }
.footer-content {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px;
  padding: 48px 20px 32px; max-width: 1280px; margin: 0 auto;
}
.footer-section h3 { font-size: 16px; margin-bottom: 16px; color: white; }
.footer-section ul { list-style: none; }
.footer-section li { margin-bottom: 8px; }
.footer-section a { color: #d1d5db; font-size: 14px; transition: color 0.2s ease; text-decoration: none; }
.footer-section a:hover { color: white; }

.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 40px; height: 40px; background: #374151; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; font-size: 18px; transition: all 0.2s ease; color: #fff;
}
.social-links a:hover { background: #3b82f6; transform: translateY(-2px); }

.footer-bottom { border-top: 1px solid #374151; padding: 24px 20px; }
.footer-bottom-content { max-width: 1200px; margin: 0 auto; text-align: center; font-size: 14px; color: #9ca3af; }
.footer-bottom-content p { margin-bottom: 8px; }

@media (max-width: 768px) {
  .footer-content { grid-template-columns: 1fr; gap: 24px; padding: 32px 16px 24px; }
  .social-links { justify-content: center; }
}

/* ==================== 14. UTILITIES ==================== */
.fade-in { animation: fadeIn 0.5s ease; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-0 { margin-bottom: 0; }
.mt-0 { margin-top: 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}



/* Widget Grid Container */
.widget-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 24px;
  width: 100%;
}

/* Widget Card Base */
.widget-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.widget-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.widget-card.neutral {
  border-top: 3px solid #94a3b8;
}

.widget-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 24px; /* Buton ile arasında boşluk */
  padding-bottom: 12px;
  border-bottom: 2px solid #e2e8f0;
}

.widget-title-icon {
  font-size: 1.4rem;
  line-height: 1;
}

/* Forecast Summary Styles */
.forecast-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 8px;
  margin-bottom: 16px;
}

.forecast-preview {
  display: flex;
  gap: 12px;
  align-items: center;
}

.preview-icon {
  font-size: 2.5rem;
  line-height: 1;
}

.preview-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.preview-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: #1e293b;
}

.preview-desc {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.4;
}

.temp-range {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 1.5rem;
  font-weight: 700;
}

.temp-separator {
  color: #94a3b8;
  font-weight: 400;
}

/* Detail Button Styles */
.detail-btn {
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.25);
}

.detail-btn:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.35);
}

.detail-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(59, 130, 246, 0.25);
}

.btn-icon {
  font-size: 1.1rem;
  line-height: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .widget-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .forecast-summary {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  
  .forecast-preview {
    flex-direction: column;
    text-align: center;
  }
  
  .temp-range {
    font-size: 1.3rem;
  }
}
/* ==================== RESET & TEMEL ==================== */
:root {
    --primary: #4e54c8;
    --accent: #8f94fb;
    --bg: #f4f7fd;
    --text-dark: #2d3436;
    --radius: 16px;
}
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text-dark); margin: 0; line-height: 1.5; padding-bottom: 40px; }
.konteyner { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; color: inherit; }
h2, h3 { color: var(--text-dark); font-weight: 700; margin-bottom: 15px; }

/* HEADER (Sadeleşti) */
header { background: #345381; padding: 15px 0; color: #fff; box-shadow: 0 4px 20px rgba(78, 84, 200, 0.2); position: sticky; top: 0; z-index: 1000; }
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; font-weight: 800; } .logo-dot { color: #81ecec; }
.mobil-menu-ikonlar { font-size: 1.4rem; cursor: pointer; }
.pc-menu-links { display: none; } /* PC'de görünür yapacağız aşağıda */
.pc-menu-links nav a { color: rgba(255,255,255,0.9); margin-left: 20px; font-weight: 500; }

/* PC MANŞET (Harita + Yan Blok) */
.pc-manset-wrapper { display: none; gap: 25px; margin-top: 30px; } /* Mobilde gizli */
#pc-harita-manset { flex: 2; }
#pc-yan-blok { flex: 1; }

.interactive-map-placeholder {
    background: #dde1e7; 
    height: 480px; /* YÜKSEKLİK ARTTI VE SABİTLENDİ */
    border-radius: var(--radius); 
    display: grid; 
    place-items: center; 
    border: 2px dashed #cbd5e0;
    width: 100%;
}
.map-msg { text-align: center; color: #888; } .map-msg i { font-size: 3rem; margin-bottom: 10px; }
.map-msg h3 { font-size: 1.3rem; margin-bottom: 5px; color: #718096; }
.map-msg p { color: #a0aec0; }

/* YAN KART (Hoşgeldin + Liste + Buton) */
.turkiye-ozet-card { 
    background: #fff; 
    padding: 30px; /* İç boşluğu biraz ferahlattık */
    border-radius: var(--radius); 
    height: 480px; /* HARİTA İLE AYNI YÜKSEKLİK */
    box-shadow: 0 4px 20px rgba(0,0,0,0.03); 
    display: flex; 
    flex-direction: column; 
    box-sizing: border-box; /* Padding dahil hesaplansın diye */
}

/* Yeni: Hoşgeldin Alanı */
.ozet-welcome { display: flex; align-items: center; gap: 15px; padding-bottom: 15px; }
.welcome-icon { width: 45px; height: 45px; background: #fff3cd; border-radius: 50%; display: grid; place-items: center; color: #d4ac0d; font-size: 1.2rem; }
.welcome-text h4 { margin: 0; font-size: 1rem; color: #888; font-weight: 600; }
.welcome-text p { margin: 2px 0 0; font-size: 1.1rem; color: var(--text-dark); }
.live-temp { color: var(--primary); }

.ozet-divider { height: 1px; background: #eee; margin-bottom: 15px; width: 100%; }

.turkiye-ozet-card h3 { font-size: 1rem; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.ozet-list { list-style: none; padding: 0; margin: 0; flex: 1; } /* Flex 1 ile boşluğu doldursun */
.ozet-list li { display: flex; align-items: center; padding: 10px 0; border-bottom: 1px solid #f8f9fa; font-size: 0.95rem; }
.dot { width: 8px; height: 8px; border-radius: 50%; margin-right: 10px; }
.dot.hot { background: #ff7675; } .dot.cold { background: #74b9ff; } .dot.rain { background: #a29bfe; } .dot.wind { background: #fdcb6e; }

/* ==================== PREMIUM SESLİ ÖZET BUTONU ==================== */

/* Butonun Kendisi */
.side-audio-btn {
    margin-top: auto; /* En alta it */
    /* Düz renk yerine Premium Gradient */
    background: linear-gradient(135deg, #4e54c8 0%, #8f94fb 100%); 
    border: none; /* Kenarlığı kaldırdık, gerek yok */
    color: #fff; /* Yazı rengi beyaz */
    
    /* Dolgunluk ve Tıklanabilirlik */
    padding: 15px 20px; 
    border-radius: 50px; /* Tam yuvarlak (Hap gibi) */
    width: 100%; /* Kartın genişliğine yayılsın */
    box-sizing: border-box; /* Taşma yapmasın */
    
    display: flex; 
    align-items: center; 
    justify-content: space-between; /* İkon ve yazıyı iki uca at veya center yapabilirsin */
    gap: 15px;
    
    font-weight: 700; 
    font-size: 0.95rem;
    cursor: pointer; 
    
    /* "Ben buradayım" diyen gölge */
    box-shadow: 0 10px 25px rgba(78, 84, 200, 0.3); 
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Üzerine gelince efekt */
.side-audio-btn:hover {
    transform: translateY(-3px); /* Hafif yukarı zıplasın */
    box-shadow: 0 15px 35px rgba(78, 84, 200, 0.45); /* Gölge büyüsün */
    background: linear-gradient(135deg, #3b40a0 0%, #7c82f0 100%); /* Renk azıcık koyulaşsın */
}

/* Oynat İkonunun Kutusu */
.audio-btn-icon { 
    width: 36px; 
    height: 36px; 
    background: #ffffff; /* Beyaz zemin */
    border-radius: 50%; /* Tam daire */
    display: grid; 
    place-items: center; 
    color: var(--primary); /* İkonun içi mavi olsun */
    font-size: 0.9rem;
    padding-left: 3px; /* Play ikonu optik olarak ortalansın diye */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

/* Butona gelince ikon da hafif oynasın */
.side-audio-btn:hover .audio-btn-icon {
    transform: scale(1.1);
}

/* YENİ: BÜYÜK ARAMA BÖLÜMÜ (Harita Altı) */
#ana-arama-bolumu { display: none; margin-top: 30px; background: #fff; padding: 30px; border-radius: 20px; box-shadow: 0 8px 30px rgba(0,0,0,0.04); text-align: center; }
/* Mevcut .big-search-container class'ına ekle veya güncelle */
.big-search-container {
    background: #fff;
    padding: 35px; /* Biraz daha ferah */
    border-radius: 20px;
    /* CİLA BURADA: Daha yumuşak ve yaygın gölge */
    box-shadow: 0 20px 40px rgba(78, 84, 200, 0.12); 
    text-align: center;
    border: 1px solid rgba(255,255,255,0.5); /* Hafif sınır */
}.big-search-wrapper { display: flex; max-width: 600px; margin: 0 auto; position: relative; }
.big-search-wrapper input {
    flex: 1; padding: 18px 20px 18px 50px; border: 2px solid #eee; border-radius: 50px 0 0 50px; font-size: 1.1rem; outline: none; transition: border 0.3s;
}
.big-search-wrapper input:focus { border-color: var(--primary); }
.big-search-icon { position: absolute; left: 20px; top: 50%; transform: translateY(-50%); color: #ccc; font-size: 1.2rem; }
.big-search-btn {
    background: var(--primary); color: #fff; border: none; padding: 0 40px; font-size: 1.1rem; font-weight: 700; border-radius: 0 50px 50px 0; cursor: pointer; transition: background 0.3s;
}
.big-search-btn:hover { background: #3b40a0; }
.quick-tags { margin-top: 15px; font-size: 0.9rem; color: #888; }
.quick-tags a { color: var(--primary); margin-left: 8px; font-weight: 600; }

/* MOBİL GİZLEME & GÖSTERME */
#mobil-manset, #mobil-arama-cubugu { display: block; }

/* RESPONSIVE (PC) */
@media (min-width: 992px) {
    .mobil-menu-ikonlar { display: none; }
    .pc-menu-links { display: block; }
    #mobil-manset, #mobil-arama-cubugu { display: none; }
    .pc-manset-wrapper { display: flex; }
    #ana-arama-bolumu { display: block; } /* PC'de arama barı açılır */
    
    /* Grid Ayarları */
    .grid-container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
    .seo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
}
/* Haberler Grid */
.news-grid { margin-top: 10px; }
.news-card { background: #fff; border-radius: 16px; overflow: hidden; border: 1px solid #eee; }
.news-img { height: 120px; width: 100%; background-size: cover; }
.news-body { padding: 15px; }
.news-tag { font-size: 0.7rem; font-weight: 700; color: var(--primary); text-transform: uppercase; }
/* Haber başlıklarını 2 satıra sabitleme */
.news-body h3 {
    font-size: 1rem;
    margin: 5px 0 8px;
    line-height: 1.4;
    
    /* CİLA BURADA: Yazı uzasa da kutu bozulmaz, "..." koyar */
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Maksimum 2 satır */
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.8em; /* 2 satır yüksekliği kadar yer ayır */
}
.news-body p { font-size: 0.85rem; color: #777; margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* DİĞER UFAK STİLLER (Kartlar vs. - Önceki koddan korundu) */
.hero-widget { background: #fff; border-radius: 24px; padding: 20px; position: relative; overflow: hidden; border-top: 4px solid #FF9966; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.hero-top-bar { display: flex; justify-content: space-between; color: #888; font-size: 0.9rem; margin-bottom: 20px; }
.hero-main-flex { display: flex; align-items: center; justify-content: space-between; }
.temp-val { font-size: 3.5rem; font-weight: 800; line-height: 1; }
.hero-metrics-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.h-metric { background: #f8f9fa; padding: 8px 12px; border-radius: 12px; text-align: center; font-size: 0.8rem; }

/* ==================== POPÜLER KONUMLAR (5+1 SİSTEMİ) ==================== */

/* --- MOBİL İÇİN (Varsayılan) --- */
/* Mobilde hala yan yana kaymalı kalsın, sığmaz çünkü */
.scroll-container { 
    display: flex; 
    gap: 12px;
    overflow-x: auto; 
    padding: 5px 5px 15px 5px; /* Alt tarafa gölge payı */
    scrollbar-width: none; /* Firefox scroll gizle */
}
.scroll-container::-webkit-scrollbar { display: none; } /* Chrome scroll gizle */

/* Genel Kart Stili */
.city-chip {
    background: #fff; 
    border: 1px solid #eee; 
    border-radius: 16px;
    padding: 16px 10px; /* Mobilde iç boşluk */
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-dark);
    
    /* Flex ayarları: İçeriği ortala */
    display: flex; 
    align-items: center;
    justify-content: center;
    gap: 8px;
    
    white-space: nowrap;
    min-width: 130px; /* Mobilde çok küçülmesin */
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

/* Derece Span'ı */
.city-chip span { 
    font-weight: 500; 
    color: #888; 
    font-size: 0.9rem;
    background: #f0f2f5;
    padding: 2px 8px;
    border-radius: 8px;
}

/* Aktif Şehir (Antalya) */
.city-chip.active { 
    background: #2d3436; /* Koyu renk */
    color: #fff; 
    border-color: #2d3436;
}

/* --- 6. KART: TÜMÜNÜ GÖR BUTONU --- */
.view-all-card {
    background: var(--primary); /* Mavi renk */
    color: #fff;
    border-color: var(--primary);
}
.view-all-card i { font-size: 0.9rem; margin-left: 2px; }
.view-all-card:hover {
    background: #3b40a0; /* Hoverda koyulaşsın */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(78, 84, 200, 0.3);
}

/* ==================== PC GÖRÜNÜMÜ (DÜZELTİLMİŞ VERSİYON) ==================== */
@media (min-width: 992px) {
    .scroll-container {
        display: grid; 
        /* 6 Eşit Parça */
        grid-template-columns: repeat(6, 1fr); 
        /* Kartlar arası boşluk (Nefes payı) */
        gap: 10px; 
        overflow: visible; 
        padding: 0;
        /* Taşmayı engellemek için kutu hesaplamasını zorla */
        box-sizing: border-box; 
    }

    .city-chip {
        min-width: auto; 
        width: 100%; /* Bulunduğu 1 birimlik kutuyu tam doldursun */
        /* İç boşluğu biraz kıstık ki yazı sığsın, taşmasın */
        padding: 15px 4px; 
        font-size: 0.95rem; /* Yazıyı bi tık küçülttük, tek satıra sığsın */
        justify-content: center; /* İçindekileri tam ortala */
        box-sizing: border-box;
    }

    /* Tümünü Gör butonu için özel ayar (Sığması için) */
    .view-all-card {
        padding: 15px 2px; /* Kenarlardan daha az boşluk */
        font-size: 0.9rem;
    }

    .city-chip:hover { 
        transform: translateY(-5px); 
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        border-color: var(--primary);
    }
}
.report-card { background: #fff; padding: 20px; border-radius: 16px; display: flex; align-items: center; gap: 15px; border: 1px solid transparent; transition: all 0.2s; }
.report-card:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.rc-icon { width: 50px; height: 50px; background: #f0f2f5; border-radius: 12px; display: grid; place-items: center; font-size: 1.4rem; color: var(--primary); }
.highlight .rc-icon { background: #fff3cd; color: #d4ac0d; }
.rc-content h3 { margin: 0; font-size: 1.1rem; } .rc-content p { margin: 0; font-size: 0.85rem; color: #888; }

#seo-links { margin-top: 40px; background: #fff; padding: 30px; border-radius: 24px; }
.seo-col h4 { font-size: 0.9rem; text-transform: uppercase; margin-bottom: 10px; }
.seo-col a { display: block; font-size: 0.85rem; color: #666; margin-bottom: 5px; }

.alert-box { margin-top: 20px; padding: 15px; border-radius: 12px; background: #fff3cd; color: #856404; display: flex; align-items: center; gap: 10px; }
footer { margin-top: 40px; text-align: center; color: #888; border-top: 1px solid #eee; padding-top: 20px; }


.scroll-container > p {
    display: none !important;
}


.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-image {
    height: 35px; /* veya istediğiniz boyut */
    width: auto;
}

.logo-text {
    /* Mevcut logo text stilleriniz */
}



/* KAPSAYICI ALAN */
.nav-cards-container {
  width: 100%;
  padding: 10px 0;
}

/* SCROLL ALANI (MOBİL İÇİN) */
.nav-cards-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 15px; /* Gölge ve scrollbar payı */
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

/* Scrollbar Gizleme / Özelleştirme */
.nav-cards-scroll::-webkit-scrollbar {
  height: 6px; /* Biraz daha belirgin olsun */
}
.nav-cards-scroll::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 10px;
}
.nav-cards-scroll::-webkit-scrollbar-thumb {
  background: #cbd5e1; 
  border-radius: 10px;
}

/* KART TASARIMI */
.nav-card-item {
  flex: 0 0 auto; /* Mobilde küçülmeyi engeller */
  width: 110px;   /* Mobildeki kart genişliği */
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 15px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

/* Hover ve Aktif Efektleri */
.nav-card-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border-color: #bfdbfe; /* Açık mavi çerçeve */
}

/* İKON VE METİN */
.nav-card-icon {
  font-size: 2.2rem; /* Büyük ikon */
  margin-bottom: 10px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
  transition: transform 0.3s ease;
}

.nav-card-item:hover .nav-card-icon {
  transform: scale(1.1); /* Hover'da ikon biraz büyüsün */
}

.nav-card-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #334155;
  text-align: center;
  line-height: 1.3;
}

.nav-card-sub {
  font-size: 0.7rem;
  color: #64748b;
  margin-top: 4px;
  text-align: center;
}

/* ÖZEL RENK VURGULARI (Opsiyonel) */
/* Kar Kartı */
.nav-card-item.snow-card {
  background: linear-gradient(to bottom right, #ffffff, #f0f9ff);
  border-bottom: 3px solid #0ea5e9;
}
/* Yağmur Kartı */
.nav-card-item.rain-card {
  background: linear-gradient(to bottom right, #ffffff, #f0fdf4);
  border-bottom: 3px solid #16a34a;
}
/* Uzun Vade (30-90) */
.nav-card-item.long-term {
  border-bottom: 3px solid #6366f1;
}

/* MASAÜSTÜ (DESKTOP) DÜZENİ */
@media (min-width: 768px) {
  .nav-cards-scroll {
    display: grid;
    /* Kartları sığdığı kadar yan yana diz, minimum 130px olsun */
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 16px;
    padding-bottom: 0; /* Masaüstünde scrollbar yok */
    overflow: visible;
  }
  
  .nav-card-item {
    width: auto; /* Grid'e uyum sağlasın */
    height: 100%; /* Hepsi eşit boyda olsun */
    padding: 20px 15px;
  }
  
  .nav-card-icon {
    font-size: 2.5rem; /* Masaüstünde ikon daha büyük */
  }
  
  .nav-card-title {
    font-size: 0.95rem;
  }
}


/* Karşılaştırma Tablosu */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.comparison-table th, .comparison-table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #f1f5f9;
}
.comparison-table th {
  background-color: #f8fafc;
  color: #334155;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover { background-color: #f8fafc; }

/* Gün İçi Döküm (Sabah/Öğle/Akşam) Grid */
.daily-breakdown-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Mobilde alt alta, masaüstünde yan yana */
  gap: 15px;
  margin-top: 15px;
}
.breakdown-item {
  background: linear-gradient(to bottom, #ffffff, #f8fafc);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: transform 0.2s;
}
.breakdown-item:hover {
  transform: translateY(-3px);
  border-color: #cbd5e1;
}
.breakdown-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #64748b;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.breakdown-icon { font-size: 2.5rem; margin-bottom: 5px; }
.breakdown-temp { font-size: 1.5rem; font-weight: 800; color: #334155; margin-bottom: 5px; }
.breakdown-desc { font-size: 0.85rem; color: #475569; line-height: 1.4; }

/* --- NAVIGASYON KARTLARI CSS (Ana sayfadan aldık) --- */
.nav-cards-container { width: 100%; padding: 10px 0; }
.nav-cards-scroll {
  display: flex; gap: 12px; overflow-x: auto; padding-bottom: 15px;
  scroll-behavior: smooth; -webkit-overflow-scrolling: touch;
}
.nav-cards-scroll::-webkit-scrollbar { height: 6px; }
.nav-cards-scroll::-webkit-scrollbar-track { background: #f1f5f9; border-radius: 10px; }
.nav-cards-scroll::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 10px; }
.nav-card-item {
  flex: 0 0 auto; width: 110px; background: #ffffff;
  border: 1px solid #e2e8f0; border-radius: 16px; padding: 15px 10px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-decoration: none; transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05); position: relative; overflow: hidden;
}
.nav-card-item:hover {
  transform: translateY(-5px); box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); border-color: #bfdbfe;
}
.nav-card-icon { font-size: 2.2rem; margin-bottom: 10px; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1)); transition: transform 0.3s ease; }
.nav-card-item:hover .nav-card-icon { transform: scale(1.1); }
.nav-card-title { font-size: 0.85rem; font-weight: 700; color: #334155; text-align: center; line-height: 1.3; }
.nav-card-sub { font-size: 0.7rem; color: #64748b; margin-top: 4px; text-align: center; }
.nav-card-item.snow-card { background: linear-gradient(to bottom right, #ffffff, #f0f9ff); border-bottom: 3px solid #0ea5e9; }
.nav-card-item.rain-card { background: linear-gradient(to bottom right, #ffffff, #f0fdf4); border-bottom: 3px solid #16a34a; }
.nav-card-item.long-term { border-bottom: 3px solid #6366f1; }
.active-nav-card { border: 2px solid #3b82f6; background: #eff6ff; } /* Aktif sayfa işaretçisi */

@media (min-width: 768px) {
  .nav-cards-scroll { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 16px; padding-bottom: 0; overflow: visible; }
  .nav-card-item { width: auto; height: 100%; padding: 20px 15px; }
  .nav-card-icon { font-size: 2.5rem; }
  .nav-card-title { font-size: 0.95rem; }
}



/* Masaüstü ve Genel Ayarlar */
    .period-info-note {
        margin-top: 15px;
        background: #f8fafc; /* Daha ferah bir gri */
        padding: 16px; /* İç boşluğu artırdık */
        border-radius: 12px;
        border: 1px solid #e2e8f0;
        border-left: 5px solid #3b82f6; /* Mavi vurgu çizgisi */
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    }
    
    .period-header {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 12px;
        font-size: 1.1rem; /* Başlık büyüdü */
        color: #1e293b;
    }

    .period-desc {
        font-size: 1rem; /* Açıklama yazısı büyüdü (yaklaşık 16px) */
        color: #475569;
        margin-bottom: 12px;
        line-height: 1.5;
    }

    /* Saatlerin Kutusu */
    .period-times {
        display: flex; /* Masaüstünde yan yana dizer */
        flex-wrap: nowrap; /* Asla alt satıra geçmesin (ekran yetmezse scroll olur veya sığışır) */
        justify-content: space-between; /* Eşit aralık bırak */
        gap: 10px;
        padding-top: 12px;
        border-top: 1px solid #cbd5e1;
        font-size: 0.95rem; /* Saat yazılarını büyüttük */
        font-weight: 500;
        color: #334155;
    }

    .period-item {
        white-space: nowrap; /* Yazıların kırılmasını engeller */
    }

    /* MOBİL İÇİN ÖZEL AYAR (Mevcut düzeni koruma) */
    @media screen and (max-width: 768px) {
        .period-times {
            display: grid; /* Mobilde Grid sisteme geç */
            grid-template-columns: 1fr 1fr; /* 2 Sütun (Yan yana 2 tane) */
            gap: 12px; /* Araları aç */
            justify-content: start;
        }
        
        .period-item {
            /* Mobilde biraz daha rahat okunsun diye */
            background: #fff;
            padding: 5px 8px;
            border-radius: 6px;
            border: 1px solid #e2e8f0;
            text-align: center;
        }
    }



.compact-header {
    margin-bottom: 20px;
}

/* Breadcrumb */
.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.2rem;
    color: #0984e3;
    margin-bottom: 12px;

}

.breadcrumb-icon {
    font-size: 1.4rem;
}

.breadcrumb a {
    color: #0984e3;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s;
	
}

.breadcrumb a:hover {
    color: #0652DD;
    text-decoration: underline;
}

.breadcrumb-sep {
    color: #95a5a6;
    font-weight: 700;
    margin: 0 4px;
}

/* Ana Satır */
.main-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 2px solid #e8eaf0;
}

/* Başlık Grubu */
.title-group h1 {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #2d3436;
    line-height: 1.2;
}

/* Badge Wrapper */
.badges-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* ========================================
   TAHMİN RAPORLARI YAZISI CSS 
   Bu kısmı istediğin gibi özelleştirebilirsin
   ======================================== */
.badges-title {
    font-size: 0.85rem;  /* Burası küçük kaldıysa büyütebilirsin */
    color: #636e72;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Badge'ler */
.badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #2d3436;
}

.badge-anlik {
    background: #ffe5e5;
}

.badge-saatlik {
    background: #e3f2ff;
}

.badge-gunluk {
    background: #d4f4dd;
}

.separator {
    color: #ddd;
    font-weight: 400;
    font-size: 1.2rem;
}

/* Güncelleme Saati */
.update-time {
    background: #f8f9fa;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 0.85rem;
    color: #555;
    white-space: nowrap;
    border: 1px solid #e8eaf0;
	margin-top: 25px;
	margin-right:5px;
}

.update-time strong {
    color: #2d3436;
    font-weight: 600;
}

/* --- MOBİL UYUMLULUK --- */
@media (max-width: 768px) {
    .main-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 12px 0;
    }
    /* Güncelleme Saati */
.update-time {

	margin-top: 5px!important;
}
    .title-group h1 {
        font-size: 1.4rem;
    }
    
    .badges-title {
        font-size: 0.8rem;
    }
    
    .badges {
        gap: 10px;
    }
    
    .badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .separator {
        font-size: 1rem;
    }
    
    .update-time {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .breadcrumb {
        font-size: 1rem;
		font-weight:600;
    }
}

@media (max-width: 480px) {
    .title-group h1 {
        font-size: 1.3rem;
    }
    
    .badges-title {
        font-size: 0.75rem;
    }
    
    .badge {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
}


/* ŞİMDİKİ SAAT VURGUSU */
.hourly-item.current {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%); /* Hafif mavi geçiş */
    border: 2px solid #2196F3; /* Mavi çerçeve */
    border-radius: 12px;
    transform: scale(1.05); /* Hafif büyüt */
    box-shadow: 0 4px 10px rgba(33, 150, 243, 0.2); /* Gölge ver */
    z-index: 1; /* Diğerlerinin üzerine çıksın */
    min-width: 75px; /* Biraz daha geniş olsun */
}

.hourly-item.current .hourly-time {
    font-weight: 900;
    color: #1565C0;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.hourly-item.current .hourly-temp {
    font-size: 1.4rem; /* Dereceyi büyüt */
    color: #0d47a1;
}


.hourly-separator {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 10px;
    position: relative;
}

.hourly-separator::before {
    content: '';
    position: absolute;
    top: 10%;
    bottom: 10%;
    left: 50%;
    width: 1px;
    background: #ddd; /* Gri dikey çizgi */
}

.hourly-separator span {
    background: #fff;
    color: #999;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 4px 0;
    writing-mode: vertical-rl; /* Yazıyı dikine çevir */
    text-orientation: mixed;
    letter-spacing: 2px;
    z-index: 2;
}



/* --- NAVİGASYON KARTLARI --- */

.nav-cards-container {
    width: 100%;
    margin-bottom: 20px;
}

/* Mobil İçin Varsayılan (Yatay Kaydırma) */
.nav-cards-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 5px 2px 15px 2px; /* Alt boşluk scrollbar/gölge için */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.nav-card-item {
    flex: 0 0 110px; /* Mobildeki genişlik */
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 15px 10px;
    text-align: center;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.nav-card-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.nav-card-title {
    font-weight: 700;
    font-size: 0.85rem;
    line-height: 1.2;
    margin-bottom: 3px;
    color: #2d3436;
}

.nav-card-sub {
    font-size: 0.75rem;
    color: #888;
    font-weight: 500;
}

/* Hover Efekti */
.nav-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
    border-color: #b2bec3;
}

/* --- MASAÜSTÜ (PC) ÖZEL AYARLARI --- */
/* Ekran genişliği 992px ve üzeriyse devreye girer */
@media (min-width: 992px) {
    .nav-cards-scroll {
        display: grid; /* Flex iptal, Grid aktif */
        grid-template-columns: repeat(4, 1fr); /* Yan yana 4 eşit kutu */
        gap: 20px; /* Araları açalım */
        overflow-x: visible; /* Kaydırmayı kapat */
        padding-bottom: 0;
    }

    .nav-card-item {
        flex: none; /* Flex genişliğini unut */
        min-height: 120px; /* Kartları yükselt */
        background: #f8f9fa; /* Hafif gri zemin */
    }

    /* Masaüstünde ikonları ve yazıları büyütelim */
    .nav-card-icon {
        font-size: 2.5rem; 
    }
    .nav-card-title {
        font-size: 1.1rem;
    }
    .nav-card-sub {
        font-size: 0.85rem;
    }
}

/* === YARIN WIDGET ÖZEL CSS === */

/* Desktop Sıcaklık */
.hero-tomorrow .hero-temp {
    font-size: 24px !important;
    margin-top: 20px;
    margin-bottom: 20px;
    line-height: 1.4;
}

/* Renk Ayrımı - Desktop */
.hero-tomorrow .hero-temp .temp-max {
    color: #e74c3c; /* Kırmızı - En Yüksek */
    font-weight: 700;
}

.hero-tomorrow .hero-temp .temp-min {
    color: #3498db; /* Mavi - En Düşük */
    font-weight: 700;
}

/* Mobil Sıcaklık - Alt Alta */
.hero-tomorrow .hero-mobile-temp {
    font-size: 18px !important;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Renk Ayrımı - Mobil */
.hero-tomorrow .hero-mobile-temp .temp-max {
    color: #e74c3c; /* Kırmızı */
    font-weight: 700;
}

.hero-tomorrow .hero-mobile-temp .temp-min {
    color: #3498db; /* Mavi */
    font-weight: 700;
}

/* Metric Kartlar */
.hero-tomorrow .metric strong {
    font-size: 1.1rem !important;
}

.hero-tomorrow .metric-mobile-value {
    font-size: 1rem !important;
}

/* Sadece Yarın Sayfasında Canlı Saati Gizle */
body.page-type-yarin span.hava-live-clock,
body.page-type-yarin .js-hava-last-update-live {
    display: none !important;
}
/* =========================================
   MOBİL HEADER AKSİYONLARI & MENÜ
   ========================================= */
/* =========================================
   MOBİL HEADER AKSİYONLARI & MENÜ
   ========================================= */

/* Header İkon Butonları */
.mobil-header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-icon-btn {
    background: rgba(255,255,255,0.2);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%; /* Yuvarlak */
    font-size: 1.1rem;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background 0.3s;
}

.header-icon-btn:hover,
.header-icon-btn:active {
    background: rgba(255,255,255,0.35);
}

/* PC'de bu butonları gizle */
@media (min-width: 992px) {
    .mobil-header-actions { display: none; }
}

/* --- AÇILIR MOBİL ARAMA KUTUSU --- */
.mobile-search-dropdown {
    position: absolute;
    top: 100%; /* Header'ın hemen altı */
    left: 0;
    width: 100%;
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    z-index: 999;
    
    /* Animasyonlu Açılış */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.mobile-search-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.mobile-search-input {
    width: 100%;
    padding: 12px 45px 12px 45px; /* İkonlar için boşluk */
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    background: #f8fafc;
}

.mobile-search-input:focus {
    border-color: var(--primary);
    background: #fff;
}

.search-icon-input {
    position: absolute;
    left: 15px;
    color: #94a3b8;
}

.close-search-btn {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    color: #ef4444;
    font-size: 1.1rem;
    padding: 5px;
    cursor: pointer;
}

/* --- YANDAN AÇILIR MENÜ (DRAWER) --- */
.mobile-nav-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5); /* Karartma */
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    backdrop-filter: blur(3px);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -280px; /* Ekran dışında başlat */
    width: 280px;
    height: 100%;
    background: #fff;
    z-index: 1002;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.mobile-nav-drawer.active {
    transform: translateX(-280px); /* İçeri kaydır */
}

.drawer-header {
    padding: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.drawer-title {
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -0.5px;
}

.drawer-close-btn {
    background: rgba(255,255,255,0.2);
    border: none;
    color: #fff;
    width: 32px; height: 32px;
    border-radius: 50%;
    cursor: pointer;
}

.drawer-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.drawer-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 0;
    border-bottom: 1px solid #f1f5f9;
    color: #334155;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.05rem;
}

.drawer-link i {
    color: #667eea;
    width: 24px;
    text-align: center;
}

.drawer-link:hover {
    color: #764ba2;
    padding-left: 5px; /* Kayma efekti */
}

.drawer-footer {
    margin-top: auto;
    padding-top: 20px;
    text-align: center;
    font-size: 0.8rem;
    color: #94a3b8;
}

/* =========================================
   DÜZELTMELER (FIXES)
   ========================================= */

/* 1. MOBİL MENÜ LİNKLERİNİ ALT ALTA DİZME */
.drawer-nav {
    display: flex;
    flex-direction: column !important; /* Yan yana durmayı engeller, alt alta zorlar */
    width: 100%;
}

.drawer-link {
    width: 100%; /* Tam genişlik */
    box-sizing: border-box; /* Padding dahil hesapla */
    display: flex; /* İkon ve yazıyı hizala */
    align-items: center;
    justify-content: flex-start; /* Sola yasla */
}

/* 2. ARAMA SONUÇLARININ GÖRÜNMESİNİ SAĞLAMA */
header {
    overflow: visible !important; /* Header dışına taşan menüleri kesme */
    position: relative;
    z-index: 1000;
}

.mobile-search-dropdown {
    overflow: visible !important; /* Arama kutusunun dışına taşmasına izin ver */
    z-index: 9999 !important; /* En üstte olsun */
}

.mobile-search-wrapper {
    position: relative;
    z-index: 10000;
}

/* Sonuç Listesini En Üste Taşı */
.search-results-dropdown {
    z-index: 10001 !important; /* Her şeyin, haritanın bile üstünde */
    top: 100% !important; /* Inputun tam altına */
    margin-top: 5px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3) !important; /* Daha belirgin gölge */
    border: 1px solid #e2e8f0;
}

/* Mobilde klavye açılınca liste kaybolmasın */
@media (max-width: 768px) {
    .search-results-dropdown {
        max-height: 250px; /* Çok uzamasın, scroll olsun */
        overflow-y: auto;
    }
}

/* Compact Header Styles */
.compact-header {
    
    
    padding: 15px 0 !important;
    margin-bottom: 25px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    min-height: 60px !important;
}

.header-line {
    display: flex !important;
    justify-content: space-between !important;
    align-items: baseline !important;
    gap: 20px !important;
}

.left-group {
    display: flex !important;
    align-items: baseline !important;
    gap: 10px !important;
    flex-wrap: wrap !important;
    font-size: 1rem !important;
}

.breadcrumb-icon {
    font-size: 1.1rem !important;
}

.left-group a {
    color: #4e54c8 !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    font-size: 20px; !important;
}

.left-group a:hover {
    text-decoration: underline !important;
}

.breadcrumb-sep {
    color: #000000 !important;
    font-size: 1rem !important;
}

.page-title {
    font-weight: 800 !important;
    color: #0f172a !important;
    font-size: 1.3rem !important;
    margin-top: -4px !important;
}

.separator-dot {
    color: #cbd5e1 !important;
    font-weight: 300 !important;
    font-size: 0.95rem !important;
}

.badge {
    padding: 5px 12px !important;
    border-radius: 4px !important;
    font-size: 0.75rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.5px !important;
    white-space: nowrap !important;
}

.badge-anlik {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
    color: #fff !important;
}

.badge-saatlik {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    color: #fff !important;
}

.update-time {
    font-size: 0.9rem !important;
    color: #64748b !important;
    white-space: nowrap !important;
}

.update-time strong {
    color: #0f172a !important;
    font-weight: 700 !important;
}

@media (max-width: 992px) {
    .header-line {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 12px !important;
    }
    
    .left-group {
        width: 100% !important;
        font-size: 0.95rem !important;
        padding-left: 3px !important;
    }
    
    .breadcrumb-icon {
        font-size: 1rem !important;
    }
    
    .left-group a {
        font-size: 0.95rem !important;
    }
    
    .page-title {
        font-size: 1.1rem !important;
        margin-top: 0 !important;
    }
    
    .separator-dot {
        display: none !important;
    }
    
    .badge {
        margin-left: 0 !important;
    }
    
    .update-time {
        width: 100% !important;
        padding-left: 3px !important;
    }
}