/* ============================================
   Harman App — Hava Durumu Sayfası CSS
   Versiyon: 3.0 (Yeni Tasarım)
   ============================================ */

:root {
    --hw-green: #326c3a;
    --hw-green-light: #e8f5e9;
    --hw-green-dark: #1b4d22;
    --hw-green-50: #f0f7f1;
    --hw-bg: #f5f7f5;
    --hw-card: #ffffff;
    --hw-border: #e2e8e2;
    --hw-text: #1a2e1a;
    --hw-text-secondary: #5a6a5a;
    --hw-text-muted: #8a9a8a;
    --hw-danger: #d32f2f;
    --hw-danger-light: #fef2f2;
    --hw-warning: #f57c00;
    --hw-warning-light: #fff8e1;
    --hw-info: #0288d1;
    --hw-info-light: #e1f5fe;
    --hw-success: #059669;
    --hw-success-light: #ecfdf5;
    --hw-radius: 12px;
    --hw-radius-sm: 8px;
    --hw-radius-lg: 16px;
    --hw-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --hw-shadow-md: 0 4px 6px rgba(0,0,0,0.05), 0 2px 4px rgba(0,0,0,0.04);
    --hw-shadow-lg: 0 10px 15px rgba(0,0,0,0.06), 0 4px 6px rgba(0,0,0,0.04);
    --hw-transition: 0.25s ease;
}

/* ---- Page Wrapper ---- */
.hw-page {
    background: var(--hw-bg);
    padding: 0 0 32px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Public Sans', Roboto, sans-serif;
    color: var(--hw-text);
    -webkit-font-smoothing: antialiased;
}

.hw-page *,
.hw-page *::before,
.hw-page *::after {
    box-sizing: border-box;
}

.hw-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ---- Section Spacing ---- */
.hw-section {
    margin-bottom: 20px;
}

.hw-section-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--hw-text);
    margin: 0 0 14px;
}

/* ---- Card Base ---- */
.hw-card {
    background: var(--hw-card);
    border-radius: var(--hw-radius);
    box-shadow: var(--hw-shadow);
    border: 1px solid var(--hw-border);
}

/* ============================================
   LOCATION BAR
   ============================================ */
.hw-location-bar {
    background: var(--hw-card);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid var(--hw-border);
    flex-wrap: wrap;
}

.hw-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--hw-text-secondary);
    flex-wrap: wrap;
}

.hw-breadcrumb a {
    color: var(--hw-text-secondary);
    text-decoration: none;
    transition: color var(--hw-transition);
}

.hw-breadcrumb a:hover {
    color: var(--hw-green);
}

.hw-breadcrumb-sep {
    color: var(--hw-text-muted);
    font-size: 11px;
}

.hw-breadcrumb-current {
    color: var(--hw-text);
    font-weight: 600;
}

/* Search Trigger Button */
.hw-search-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: var(--hw-green-50);
    border: 1px solid var(--hw-border);
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--hw-text);
    transition: all var(--hw-transition);
    white-space: nowrap;
}

.hw-search-trigger:hover {
    background: var(--hw-green-light);
    border-color: var(--hw-green);
}

/* Search Overlay */
.hw-search-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    animation: hwFadeIn 0.15s ease;
}

.hw-search-overlay.hw-open {
    display: flex;
    justify-content: center;
    padding-top: 60px;
}

@media (max-width: 768px) {
    .hw-search-overlay.hw-open {
        padding-top: 0;
        align-items: stretch;
    }
}

.hw-search-panel {
    background: white;
    border-radius: var(--hw-radius-lg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    width: 100%;
    max-width: 480px;
    max-height: 70vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hw-search-panel {
        max-width: 100%;
        max-height: 100%;
        border-radius: 0;
    }
}

.hw-search-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--hw-border);
}

.hw-search-input-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--hw-bg);
    border-radius: var(--hw-radius-sm);
    padding: 10px 14px;
}

.hw-search-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 16px;
    color: var(--hw-text);
    font-family: inherit;
}

.hw-search-input::placeholder {
    color: var(--hw-text-muted);
}

.hw-search-close {
    background: none;
    border: none;
    color: var(--hw-green);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    padding: 8px;
    white-space: nowrap;
}

.hw-search-results {
    flex: 1;
    overflow-y: auto;
    padding: 8px;
    -webkit-overflow-scrolling: touch;
}

.hw-search-group-title {
    font-size: 11px;
    font-weight: 600;
    color: var(--hw-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 12px 4px;
}

.hw-search-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border-radius: var(--hw-radius-sm);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    transition: background var(--hw-transition);
}

.hw-search-item:hover,
.hw-search-item:focus {
    background: var(--hw-green-50);
    text-decoration: none;
    color: inherit;
}

.hw-search-item-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 13px;
}

.hw-search-item-icon.hw-il {
    background: var(--hw-green-light);
    color: var(--hw-green);
}

.hw-search-item-icon.hw-ilce {
    background: var(--hw-info-light);
    color: var(--hw-info);
}

.hw-search-item-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--hw-text);
}

.hw-search-item-sub {
    font-size: 12px;
    color: var(--hw-text-muted);
}

.hw-search-empty {
    text-align: center;
    padding: 32px 16px;
    color: var(--hw-text-muted);
    font-size: 14px;
}

@keyframes hwFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ============================================
   ALERT BANNER
   ============================================ */
.hw-alert {
    margin: 12px 16px 0;
    padding: 12px 16px;
    border-radius: var(--hw-radius);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    animation: hwSlideDown 0.3s ease;
}

.hw-alert-frost {
    background: var(--hw-danger-light);
    border: 1px solid #fecaca;
    color: var(--hw-danger);
}

.hw-alert-storm {
    background: var(--hw-warning-light);
    border: 1px solid #fde68a;
    color: #92400e;
}

.hw-alert-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.hw-alert-text {
    flex: 1;
}

.hw-alert-text strong {
    display: block;
    font-size: 15px;
    margin-bottom: 2px;
}

.hw-alert-text span {
    font-weight: 400;
    font-size: 13px;
    opacity: 0.85;
}

.hw-alert-dismiss {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    opacity: 0.5;
    transition: opacity var(--hw-transition);
    color: inherit;
}

.hw-alert-dismiss:hover {
    opacity: 1;
}

@keyframes hwSlideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   CURRENT WEATHER (HERO)
   ============================================ */
.hw-current {
    background: var(--hw-card);
    border-radius: var(--hw-radius-lg);
    box-shadow: var(--hw-shadow-md);
    border: 1px solid var(--hw-border);
    padding: 24px;
    text-align: center;
}

.hw-current-top {
    margin-bottom: 16px;
}

.hw-current-location {
    font-size: 14px;
    color: var(--hw-text-secondary);
    font-weight: 400;
    margin: 0 0 4px;
}

.hw-current-date {
    font-size: 13px;
    color: var(--hw-text-muted);
    margin: 0;
}

.hw-current-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 8px;
}

.hw-current-icon {
    width: 72px;
    height: 72px;
}

.hw-current-temp {
    font-size: 64px;
    font-weight: 700;
    color: var(--hw-text);
    line-height: 1;
    letter-spacing: -2px;
}

.hw-current-desc {
    font-size: 16px;
    color: var(--hw-text-secondary);
    text-transform: capitalize;
    margin: 0 0 4px;
}

.hw-current-feels {
    font-size: 14px;
    color: var(--hw-text-muted);
    margin: 0 0 20px;
}

.hw-current-stats {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
}

.hw-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 4px;
    background: var(--hw-green-50);
    border-radius: var(--hw-radius-sm);
    transition: background var(--hw-transition);
}

.hw-stat:hover {
    background: var(--hw-green-light);
}

.hw-stat-icon {
    width: 18px;
    height: 18px;
    color: var(--hw-green);
}

.hw-stat-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--hw-text);
    line-height: 1.2;
}

.hw-stat-label {
    font-size: 11px;
    color: var(--hw-text-muted);
    font-weight: 400;
    text-align: center;
}

/* ============================================
   AGRICULTURAL CARDS
   ============================================ */
.hw-agri-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.hw-agri-card {
    background: var(--hw-card);
    border-radius: var(--hw-radius);
    box-shadow: var(--hw-shadow);
    border: 1px solid var(--hw-border);
    padding: 16px;
    transition: transform var(--hw-transition), box-shadow var(--hw-transition);
}

.hw-agri-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--hw-shadow-md);
}

.hw-agri-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.hw-agri-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hw-agri-icon i {
    font-size: 14px;
    color: white;
}

.hw-agri-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--hw-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.hw-agri-status {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    text-transform: capitalize;
}

.hw-agri-detail {
    font-size: 13px;
    color: var(--hw-text-secondary);
    line-height: 1.4;
}

.hw-agri-metric {
    font-size: 15px;
    font-weight: 600;
    margin-top: 8px;
    color: var(--hw-text);
}

/* ============================================
   DAILY FORECAST
   ============================================ */
.hw-daily-scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 4px 0 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.hw-daily-scroll::-webkit-scrollbar { display: none; }

.hw-daily-card {
    min-width: 120px;
    flex-shrink: 0;
    scroll-snap-align: start;
    background: var(--hw-card);
    border-radius: var(--hw-radius);
    box-shadow: var(--hw-shadow);
    border: 2px solid transparent;
    padding: 14px 12px;
    text-align: center;
    cursor: pointer;
    transition: all var(--hw-transition);
}

.hw-daily-card:hover {
    border-color: var(--hw-green-light);
    box-shadow: var(--hw-shadow-md);
}

.hw-daily-card.hw-active {
    border-color: var(--hw-green);
    background: var(--hw-green-50);
}

.hw-daily-day {
    font-size: 14px;
    font-weight: 600;
    color: var(--hw-text);
    margin-bottom: 2px;
}

.hw-daily-date {
    font-size: 12px;
    color: var(--hw-text-muted);
    margin-bottom: 8px;
}

.hw-daily-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 8px;
}

.hw-daily-temps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 6px;
}

.hw-daily-max {
    font-size: 18px;
    font-weight: 700;
    color: var(--hw-text);
}

.hw-daily-min {
    font-size: 14px;
    color: var(--hw-text-muted);
    font-weight: 400;
}

.hw-daily-rain {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 12px;
    color: var(--hw-info);
    font-weight: 500;
    background: var(--hw-info-light);
    padding: 2px 8px;
    border-radius: 10px;
}

/* Temperature Bar */
.hw-temp-bar-wrap {
    height: 6px;
    background: #e8ecef;
    border-radius: 3px;
    position: relative;
    margin: 8px 0 4px;
    overflow: hidden;
}

.hw-temp-bar {
    position: absolute;
    top: 0;
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, #4fc3f7, #ffb74d, #ef5350);
    transition: all 0.4s ease;
}

/* ============================================
   HOURLY FORECAST
   ============================================ */
.hw-hourly-wrap {
    transition: opacity 0.25s ease, max-height 0.35s ease;
    overflow: hidden;
}

.hw-hourly-wrap.hw-hidden {
    opacity: 0;
    max-height: 0 !important;
    margin: 0;
    padding: 0;
}

.hw-hourly-header {
    font-size: 13px;
    font-weight: 600;
    color: var(--hw-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.hw-hourly-scroll {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    padding: 4px 0 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.hw-hourly-scroll::-webkit-scrollbar { display: none; }

.hw-hourly-card {
    min-width: 58px;
    flex-shrink: 0;
    scroll-snap-align: start;
    background: var(--hw-card);
    border-radius: var(--hw-radius-sm);
    border: 1.5px solid var(--hw-border);
    padding: 10px 6px;
    text-align: center;
    cursor: pointer;
    transition: all var(--hw-transition);
}

.hw-hourly-card:hover {
    border-color: var(--hw-green-light);
}

.hw-hourly-card.hw-active {
    border-color: var(--hw-green);
    background: var(--hw-green-50);
}

.hw-hourly-card.hw-rain {
    background: var(--hw-info-light);
    border-color: #b3e5fc;
}

.hw-hourly-time {
    font-size: 12px;
    color: var(--hw-text-muted);
    font-weight: 500;
    margin-bottom: 6px;
}

.hw-hourly-icon {
    width: 28px;
    height: 28px;
    margin: 0 auto 6px;
}

.hw-hourly-temp {
    font-size: 15px;
    font-weight: 600;
    color: var(--hw-text);
}

/* ============================================
   DETAIL PANEL
   ============================================ */
.hw-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.hw-detail-item {
    background: var(--hw-green-50);
    border-radius: var(--hw-radius-sm);
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: background var(--hw-transition);
}

.hw-detail-item:hover {
    background: var(--hw-green-light);
}

.hw-detail-label {
    font-size: 12px;
    color: var(--hw-text-muted);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hw-detail-label i {
    width: 16px;
    height: 16px;
    color: var(--hw-green);
}

.hw-detail-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--hw-text);
    line-height: 1.2;
}

.hw-detail-sub {
    font-size: 12px;
    color: var(--hw-text-secondary);
}

/* Sun arc */
.hw-sun-arc {
    grid-column: 1 / -1;
    background: var(--hw-green-50);
    border-radius: var(--hw-radius-sm);
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hw-sun-time {
    text-align: center;
}

.hw-sun-time-label {
    font-size: 11px;
    color: var(--hw-text-muted);
}

.hw-sun-time-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--hw-text);
}

.hw-sun-bar {
    flex: 1;
    height: 4px;
    background: #e2e8e2;
    border-radius: 2px;
    margin: 0 16px;
    position: relative;
}

.hw-sun-progress {
    height: 100%;
    background: linear-gradient(90deg, #ffb74d, #ff9800);
    border-radius: 2px;
    transition: width 0.5s ease;
}

/* ============================================
   TARLAM SECTION
   ============================================ */
.hw-tarlam-cta {
    background: linear-gradient(135deg, var(--hw-green) 0%, var(--hw-green-dark) 100%);
    border-radius: var(--hw-radius-lg);
    padding: 28px 24px;
    text-align: center;
    color: white;
}

.hw-tarlam-cta h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 8px;
}

.hw-tarlam-cta p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0 0 20px;
}

.hw-tarlam-cta-btn {
    display: inline-block;
    background: white;
    color: var(--hw-green);
    font-weight: 700;
    font-size: 15px;
    padding: 12px 32px;
    border-radius: var(--hw-radius-sm);
    text-decoration: none;
    transition: all var(--hw-transition);
}

.hw-tarlam-cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    color: var(--hw-green);
    text-decoration: none;
}

.hw-tarlam-cta-login {
    display: block;
    margin-top: 12px;
    font-size: 13px;
    color: rgba(255,255,255,0.8);
}

.hw-tarlam-cta-login a {
    color: white;
    font-weight: 600;
    text-decoration: underline;
}

.hw-tarlam-auth {
    background: var(--hw-green-50);
    border-radius: var(--hw-radius);
    padding: 16px;
    border: 1px solid var(--hw-green-light);
}

.hw-tarlam-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 8px;
}

.hw-tarlam-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 15px;
    color: var(--hw-text);
}

.hw-tarlam-title i {
    color: var(--hw-green);
}

.hw-tarlam-actions {
    display: flex;
    gap: 8px;
}

.hw-tarlam-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 6px;
    text-decoration: none;
    transition: all var(--hw-transition);
}

.hw-tarlam-btn-primary {
    background: var(--hw-green);
    color: white;
}

.hw-tarlam-btn-primary:hover { background: var(--hw-green-dark); color: white; text-decoration: none; }

.hw-tarlam-btn-outline {
    background: white;
    color: var(--hw-green);
    border: 1px solid var(--hw-green);
}

.hw-tarlam-btn-outline:hover { background: var(--hw-green-50); color: var(--hw-green); text-decoration: none; }

.hw-tarlam-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hw-tarlam-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    background: white;
    border-radius: var(--hw-radius-sm);
    border: 1px solid var(--hw-border);
    text-decoration: none;
    color: inherit;
    transition: all var(--hw-transition);
}

.hw-tarlam-item:hover {
    border-color: var(--hw-green);
    box-shadow: var(--hw-shadow);
    text-decoration: none;
    color: inherit;
}

.hw-tarlam-item-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hw-tarlam-item-icon {
    width: 32px;
    height: 32px;
    background: var(--hw-green-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hw-green);
    font-size: 14px;
}

.hw-tarlam-item-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--hw-text);
}

.hw-tarlam-item-loc {
    font-size: 12px;
    color: var(--hw-text-muted);
}

.hw-tarlam-item-arrow {
    color: var(--hw-text-muted);
    font-size: 12px;
    transition: transform var(--hw-transition);
}

.hw-tarlam-item:hover .hw-tarlam-item-arrow {
    transform: translateX(3px);
    color: var(--hw-green);
}

/* ============================================
   RADAR & AIR QUALITY
   ============================================ */
.hw-radar-air-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.hw-radar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: linear-gradient(135deg, #1e3a5f, #2d5a87);
    border-radius: var(--hw-radius);
    color: white;
    text-decoration: none;
    transition: all var(--hw-transition);
}

.hw-radar-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--hw-shadow-lg);
    color: white;
    text-decoration: none;
}

.hw-radar-link i { width: 24px; height: 24px; }

.hw-radar-link-text {
    flex: 1;
}

.hw-radar-link-text strong {
    display: block;
    font-size: 15px;
    margin-bottom: 2px;
}

.hw-radar-link-text span {
    font-size: 12px;
    opacity: 0.8;
}

.hw-air-card {
    padding: 16px;
}

.hw-air-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.hw-air-badge {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
}

.hw-air-info-label {
    font-weight: 600;
    font-size: 15px;
    color: var(--hw-text);
}

.hw-air-info-sub {
    font-size: 12px;
    color: var(--hw-text-muted);
}

.hw-air-components {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 12px;
    color: var(--hw-text-secondary);
}

/* ============================================
   EXTENDED FORECAST TABLE
   ============================================ */
.hw-forecast-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 4px;
}

.hw-forecast-row {
    background: var(--hw-card);
    border-radius: var(--hw-radius-sm);
    cursor: pointer;
    transition: background var(--hw-transition);
}

.hw-forecast-row:hover {
    background: var(--hw-green-50);
}

.hw-forecast-row td {
    padding: 10px 12px;
    vertical-align: middle;
}

.hw-forecast-row td:first-child {
    border-radius: var(--hw-radius-sm) 0 0 var(--hw-radius-sm);
}

.hw-forecast-row td:last-child {
    border-radius: 0 var(--hw-radius-sm) var(--hw-radius-sm) 0;
}

.hw-forecast-day {
    font-weight: 600;
    font-size: 14px;
    color: var(--hw-text);
    white-space: nowrap;
}

.hw-forecast-date {
    font-size: 12px;
    color: var(--hw-text-muted);
}

.hw-forecast-icon {
    width: 32px;
    height: 32px;
}

.hw-forecast-desc {
    font-size: 13px;
    color: var(--hw-text-secondary);
    min-width: 100px;
}

.hw-forecast-temps {
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.hw-forecast-max {
    font-size: 16px;
    font-weight: 700;
    color: var(--hw-text);
}

.hw-forecast-sep {
    color: var(--hw-text-muted);
}

.hw-forecast-min {
    font-size: 14px;
    color: var(--hw-text-muted);
}

.hw-forecast-rain {
    font-size: 12px;
    color: var(--hw-info);
    font-weight: 500;
    white-space: nowrap;
}

.hw-forecast-bar-cell {
    width: 120px;
}

/* ============================================
   DISTRICT LINKS
   ============================================ */
.hw-district-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.hw-district-link {
    display: block;
    padding: 14px;
    background: var(--hw-card);
    border-radius: var(--hw-radius-sm);
    border: 1px solid var(--hw-border);
    text-decoration: none;
    color: inherit;
    transition: all var(--hw-transition);
}

.hw-district-link:hover {
    border-color: var(--hw-green);
    transform: translateY(-1px);
    box-shadow: var(--hw-shadow);
    text-decoration: none;
    color: inherit;
}

.hw-district-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--hw-text);
    margin-bottom: 2px;
}

.hw-district-sub {
    font-size: 12px;
    color: var(--hw-text-muted);
}

/* ============================================
   SEO CONTENT
   ============================================ */
.hw-seo-content {
    font-size: 14px;
    line-height: 1.8;
    color: var(--hw-text-secondary);
}

.hw-seo-content p {
    margin-bottom: 12px;
}

.hw-seo-content strong {
    color: var(--hw-text);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .hw-agri-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hw-district-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .hw-detail-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hw-current-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hw-container {
        padding: 0 12px;
    }
    .hw-current {
        padding: 20px 16px;
    }
    .hw-current-temp {
        font-size: 56px;
    }
    .hw-current-icon {
        width: 60px;
        height: 60px;
    }
    .hw-current-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    .hw-district-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hw-radar-air-grid {
        grid-template-columns: 1fr;
    }
    .hw-location-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    .hw-city-select-wrap {
        min-width: 100%;
        max-width: 100%;
    }
    .hw-forecast-bar-cell {
        display: none;
    }
    .hw-section-title {
        font-size: 16px;
    }
    .hw-agri-status {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .hw-current-temp {
        font-size: 48px;
    }
    .hw-current-icon {
        width: 52px;
        height: 52px;
    }
    .hw-current-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .hw-agri-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .hw-agri-card {
        padding: 12px;
    }
    .hw-agri-status {
        font-size: 16px;
    }
    .hw-daily-card {
        min-width: 100px;
        padding: 12px 8px;
    }
    .hw-hourly-card {
        min-width: 52px;
    }
    .hw-detail-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hw-detail-value {
        font-size: 18px;
    }
    .hw-district-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hw-forecast-desc {
        display: none;
    }
    .hw-tarlam-cta {
        padding: 24px 16px;
    }
}
