/* LAYOUT */
.layout{
    display:flex;
    gap:20px;
    padding:20px;
    background:#f5f6fa;
}

/* LEFT PANEL */
.filters{
    width:300px;
}

.box{
    background:#fff;
    padding:15px;
    margin-bottom:15px;
    border-radius:8px;
    box-shadow:0 2px 8px rgba(0,0,0,.08);
}

.box label{
    display:block;
    font-weight:600;
    margin-top:8px;
    margin-bottom:5px;
}

.box input, .box select{
    width:100%;
    padding:8px;
    border:1px solid #ddd;
    border-radius:6px;
}

.modify{
    margin-top:10px;
    width:100%;
    background:#2d3250;
    color:white;
    padding:8px;
    border:none;
    border-radius:20px;
}

/* RIGHT CONTENT */
.right-content{
    flex:1;
}

/* CATEGORY */
.category-bar a{
    margin-right:15px;
    text-decoration:none;
    font-weight:600;
    color:#333;
}

/* SORT BAR */
.sort-bar{
    margin:15px 0;
    font-weight:600;
}

.sort-bar span{
    margin-left:15px;
    color:#666;
    cursor:pointer;
}

/* BIKE CARD */
.bike-card{
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:#fff;
    padding:20px;
    margin-bottom:15px;
    border-radius:10px;
    box-shadow:0 2px 8px rgba(0,0,0,.08);
}

.bike-img{
    width:160px;
}

.bike-info{
    flex:1;
    padding-left:20px;
}

.bike-info h3{
    margin:0;
    font-size:20px;
}

.bike-info small{
    color:#666;
}

.details{
    margin-top:10px;
    border:1px solid #ccc;
    padding:6px 14px;
    border-radius:20px;
    background:#fff;
}

/* PRICE BOX */
.price-box{
    text-align:right;
}

.price-box h2{
    margin-bottom:10px;
}

.book-btn{
    background:#2d3250;
    color:white;
    padding:10px 25px;
    border-radius:25px;
    text-decoration:none;
    display:inline-block;
}