/* Weather Module */
.weather-module { display: flex; flex-direction: column; gap: var(--sp-6); }

.weather-current {
    background: linear-gradient(135deg, var(--bg-card), var(--bg-elevated));
    border: 1px solid var(--border); border-radius: var(--radius-xl);
    padding: var(--sp-8); display: flex; align-items: center;
    justify-content: space-between; gap: var(--sp-6); flex-wrap: wrap;
}

.weather-temp {
    font-size: var(--text-4xl); font-weight: 700;
    font-family: var(--font-mono); color: var(--text-primary);
}

.weather-condition {
    font-size: var(--text-lg); color: var(--text-secondary);
    margin-top: var(--sp-1);
}

.weather-details {
    display: flex; gap: var(--sp-6); flex-wrap: wrap;
}

.weather-detail {
    display: flex; flex-direction: column; gap: var(--sp-1);
}

.weather-detail-label {
    font-size: var(--text-xs); color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 0.05em;
}

.weather-detail-value {
    font-size: var(--text-lg); font-weight: 600;
    font-family: var(--font-mono); color: var(--text-primary);
}

.weather-forecast {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: var(--sp-3);
}

.forecast-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: var(--sp-4);
    text-align: center;
}

.forecast-day {
    font-size: var(--text-sm); font-weight: 600;
    color: var(--text-secondary); margin-bottom: var(--sp-2);
}

.forecast-temp {
    font-size: var(--text-xl); font-weight: 700;
    font-family: var(--font-mono); color: var(--text-primary);
}

.forecast-condition {
    font-size: var(--text-xs); color: var(--text-muted);
    margin-top: var(--sp-1);
}

/* Setup */
.weather-setup {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-xl); padding: var(--sp-8);
    max-width: 480px; margin: var(--sp-8) auto; text-align: center;
}

.weather-setup h3 {
    font-size: var(--text-xl); font-weight: 700;
    margin-bottom: var(--sp-2); color: var(--text-primary);
}

.weather-setup p {
    color: var(--text-muted); margin-bottom: var(--sp-6);
    font-size: var(--text-sm);
}

.weather-setup form {
    display: flex; flex-direction: column; gap: var(--sp-4);
    text-align: left;
}

.weather-setup input {
    padding: var(--sp-3) var(--sp-4); background: var(--bg-input);
    border: 1px solid var(--border); border-radius: var(--radius-md);
    color: var(--text-primary); font-size: var(--text-base);
    font-family: var(--font-sans); outline: none;
}

.weather-setup input:focus { border-color: var(--accent); }

