.widget-hava {
    background-color: var(--card-bg, #ffffff);
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--shadow-color, rgb(0 0 0 / .06));
    border: 1px solid var(--border-color, transparent);
    margin-bottom: 24px
}

.widget-hava .weather-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color, #eee)
}

.widget-hava .header-icon {
    width: 24px;
    height: 24px;
    background: var(--primary-color, #e30613);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px
}

.widget-hava .header-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color, #333);
    margin: 0
}

.widget-hava .city-select {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid var(--border-color, #ddd);
    font-size: 14px;
    margin-bottom: 16px;
    outline: none;
    background: var(--bg-color, #f9f9f9);
    color: var(--text-color, #333);
    transition: all 0.2s;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8.825L1.175 4 2.238 2.938 6 6.7l3.763-3.762L10.825 4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center
}

.widget-hava .city-select:hover,
.widget-hava .city-select:focus {
    border-color: #aaa;
    background-color: var(--card-bg, #fff)
}

.widget-hava .weather-card {
    background: var(--bg-color, #f8fafc);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    border: 1px solid #fff0;
    transition: all 0.3s
}

.widget-hava .weather-card:hover {
    background: var(--card-bg, #fff);
    border-color: var(--border-color, #eee);
    box-shadow: 0 4px 12px var(--shadow-color, rgb(0 0 0 / .05));
    transform: translateY(-2px)
}

.widget-hava .weather-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 12px
}

.widget-hava .weather-icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgb(0 0 0 / .1))
}

.widget-hava .weather-temp {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-color, #333);
    line-height: 1
}

.widget-hava .weather-desc {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-gray, #666);
    text-transform: capitalize;
    margin-bottom: 4px
}

.widget-hava .weather-city {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color, #e30613);
    opacity: .8
}

.widget-hava .detail-link {
    display: block;
    text-align: center;
    margin-top: 16px;
    font-size: 13px;
    color: var(--text-gray, #666);
    text-decoration: none;
    transition: color 0.2s
}

.widget-hava .detail-link:hover {
    color: var(--primary-color, #e30613);
    text-decoration: underline
}

@media (max-width:600px) {
    .widget-hava {
        padding: 16px
    }
}