/* GCO Weather Plugin */
.gco-card {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    color: #333;
    max-width: 360px;
    margin: 0 auto;
}

/* DETAILED */
.gco-detailed { padding: 24px; }
.gco-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}
.gco-location h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #222;
}
.gco-status {
    font-size: 15px;
    color: #888;
    margin-top: 4px;
    display: block;
}
.gco-target { opacity: 0.5; }
.gco-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}
.gco-icon-big { flex-shrink: 0; opacity: 0.85; }
.gco-temp-main {
    display: flex;
    align-items: flex-start;
    margin-left: 12px;
    flex: 1;
}
.gco-temp-value {
    font-size: 56px;
    font-weight: 300;
    line-height: 1;
    color: #222;
    letter-spacing: -2px;
}
.gco-temp-unit {
    font-size: 20px;
    font-weight: 400;
    color: #666;
    margin-top: 6px;
    margin-left: 2px;
}
.gco-temps-side {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}
.gco-temp-high, .gco-temp-low {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 15px;
    color: #666;
}
.gco-metrics {
    display: flex;
    justify-content: space-around;
    margin-bottom: 24px;
    padding: 0 8px;
}
.gco-metric {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #777;
}
.gco-forecast {
    display: flex;
    justify-content: space-between;
    background: #f8f9fb;
    border-radius: 10px;
    padding: 16px 12px;
}
.gco-forecast-day {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1;
}
.gco-day-name {
    font-size: 11px;
    font-weight: 600;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.gco-day-icon { opacity: 0.7; }
.gco-day-temp {
    font-size: 16px;
    font-weight: 500;
    color: #444;
}

/* COMPACT */
.gco-compact {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 8px 16px;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    max-width: 100%;
}
.gco-compact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #444;
    letter-spacing: 0.5px;
}
.gco-compact-temp { font-weight: 600; }
.gco-compact-city {
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Elementor fixes */
.elementor-widget-gco_weather_detailed .gco-card,
.elementor-widget-gco_weather_compact .gco-card {
    max-width: 100%;
}

@media (max-width: 480px) {
    .gco-compact { flex-wrap: wrap; gap: 8px; }
    .gco-detailed { padding: 16px; }
    .gco-temp-value { font-size: 42px; }
}
