/* ==========================================
   Premium Weather Section
========================================== */

.ww-destination-weather{
    padding:90px 0;
    background:linear-gradient(180deg,#f8fafc 0%,#ffffff 100%);
}

.ww-weather-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
    margin-top:45px;
}

.ww-weather-card{

    background:#fff;

    border-radius:22px;

    padding:30px;

    border:1px solid var(--line);

    box-shadow:0 12px 35px rgba(15,23,42,.08);

    transition:.35s ease;

}

.ww-weather-card:hover{

    transform:translateY(-8px);

    box-shadow:0 22px 50px rgba(15,23,42,.15);

}

.ww-weather-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:30px;

}

.ww-weather-header h3{

    margin:0;

    font-size:30px;

    font-weight:700;

    color:var(--text);

}

.ww-crowd-badge{

    padding:8px 16px;

    border-radius:50px;

    font-size:13px;

    font-weight:700;

    color:#fff;

}

.ww-crowd-badge.low{
    background:#10b981;
}

.ww-crowd-badge.medium{
    background:var(--gold);
}

.ww-crowd-badge.high{
    background:#ef4444;
}

.ww-weather-stats{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.ww-weather-item{

    display:flex;

    align-items:center;

    gap:18px;

    padding:16px 0;

    border-bottom:1px solid var(--line);

}

.ww-weather-item:last-child{

    border-bottom:none;

}

.ww-weather-icon{

    width:46px;

    height:46px;

    border-radius:14px;

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

}

.ww-weather-icon svg{

    width:24px;

    height:24px;

}

.ww-weather-item strong{

    display:block;

    color:var(--muted);

    font-size:13px;

    margin-bottom:5px;

}

.ww-weather-item p{

    margin:0;

    font-size:18px;

    font-weight:600;

    color:var(--text);

}

@media(max-width:768px){

    .ww-weather-grid{
        grid-template-columns:1fr;
    }

    .ww-weather-header{
        flex-direction:column;
        align-items:flex-start;
        gap:12px;
    }

}