*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto
}

body{
    background:#f4f6f8;
    color:#222;
    overflow-x:hidden;
}

/* ================= TOP SEARCH SUMMARY ================= */
.top-bar{
    width:100%;
    background:linear-gradient(90deg,#0b3b74,#041b35);
    padding:14px 0;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
}

.top-bar::-webkit-scrollbar{
    display:none;
}

.top-row{
    display:flex;
    gap:14px;
    padding:0 16px;
    min-width:max-content;
}

/* summary box */
.top-item{
    min-width:170px;
    padding:10px 12px;
    border:1px solid rgba(255,255,255,0.5);
    border-radius:14px;
    background:transparent;
    color:#fff;
    text-align:center;
    flex-shrink:0;
}

/* label */
.top-item span{
    display:block;
    font-size:12px;
    opacity:.85;
    margin-bottom:4px;
}

/* value */
.top-item b,
.top-item strong{
    font-size:15px;
    font-weight:600;
}

/* ================= LAYOUT ================= */
.container{
    padding:12px;
}

.layout{
    display:block;
}

/* ================= FILTERS ================= */
.filters{
    display:none;
    background:#fff;
    padding:16px;
    border-radius:16px;
}

.filters h3{
    margin-bottom:10px;
}

.filters label{
    display:block;
    margin:8px 0;
    font-size:14px;
}

/* ================= TRUST STRIP ================= */
.trust-strip{
    background:linear-gradient(90deg,#0b3b74,#041b35);
    color:#fff;
    padding:14px;
    border-radius:16px;
    display:flex;
    justify-content:space-around;
    margin-bottom:12px;
    font-weight:600;
    font-size:14px;
}

/* ================= CAB CARD ================= */
.cab-card{
    background:#fff;
    border-radius:18px;
    padding:16px;
    margin-bottom:14px;
    display:flex;
    gap:14px;
    box-shadow:0 4px 14px rgba(0,0,0,.06);
}

.cab-img img{
    width:90px;
}

.cab-info{
    flex:1;
}

.cab-info h3{
    font-size:17px;
    margin-bottom:4px;
}

.rating{
    background:#0f9d58;
    color:#fff;
    padding:2px 6px;
    border-radius:6px;
    font-size:12px;
}

.cab-info p{
    font-size:14px;
    color:#555;
}

.fuel-tag{
    background:#00a896;
    color:#fff;
    padding:4px 10px;
    border-radius:14px;
    font-size:12px;
    display:inline-block;
    margin-top:6px;
}

.cab-price{
    text-align:right;
    min-width:120px;
}

.cab-price .off{
    color:#009688;
    font-size:14px;
}

.cab-price h2{
    font-size:22px;
    margin:4px 0;
}

.tax{
    font-size:13px;
    color:#666;
}

.select-btn{
    margin-top:8px;
    width:100%;
    background:#1e73ff;
    color:#fff;
    border:none;
    padding:10px;
    border-radius:10px;
    font-weight:600;
    cursor:pointer;
}

/* ================= MOBILE ================= */
@media(max-width:768px){

    .top-row{
        justify-content:flex-start;
        padding-left:8px;
        padding-right:8px;
    }

    .top-item{
        min-width:155px;
        padding:10px;
        border-radius:12px;
    }

    .top-item b{
        font-size:14px;
    }
}

/* ================= DESKTOP ================= */
@media(min-width:769px){

    .top-bar{
        overflow-x:visible;
    }

    .top-row{
        justify-content:center;
        min-width:100%;
    }

    .top-item{
        min-width:190px;
    }
}

@media(min-width:1024px){

    .layout{
        display:grid;
        grid-template-columns:260px 1fr;
        gap:20px;
        max-width:1200px;
        margin:auto;
    }

    .filters{
        display:block;
    }

    .cab-img img{
        width:110px;
    }
}
.price-box {
    text-align: right;
    margin-bottom: 10px;
}

.discount {
    color: #0a8f6a;
    font-weight: 600;
    font-size: 14px;
}

.discount .old-price {
    color: #0a8f6a;
    text-decoration: line-through;
    margin-left: 6px;
}

.final-price {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin-top: 2px;
}

.tax-line {
    font-size: 14px;
    color: #666;
}