body{
    background:#efefef;
}

.of-category-bar{
    display:flex;
    gap:12px;
    overflow-x:auto;
    margin-bottom:30px;
    padding:10px 0;
}

.of-category-btn{
    background:#000;
    color:#fff;
    padding:12px 20px;
    border-radius:100px;
    text-decoration:none;
    font-weight:bold;
    white-space:nowrap;
}

.of-category-title{
    margin-top:50px;
    margin-bottom:25px;
    font-size:36px;
    font-weight:900;
}

.of-roost-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.of-roost-card{
    background:#000;
    border-radius:28px;
    overflow:hidden;
    color:#fff;
    min-height:100%;
}

.of-roost-image{
    padding:30px;
    text-align:center;
}

.of-roost-image img{
    max-width:100%;
    height:auto;
}

.of-roost-content{
    padding:25px;
}

.of-roost-content h3{
    font-size:34px;
    margin-bottom:15px;
    text-transform:uppercase;
    font-weight:900;
}

.of-roost-description{
    color:#ccc;
    line-height:1.5;
    margin-bottom:20px;
}

.of-roost-price{
    color:red;
    font-size:32px;
    font-weight:900;
}

@media(max-width:1024px){

    .of-roost-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .of-roost-grid{
        grid-template-columns:1fr;
    }

    .of-roost-content h3{
        font-size:26px;
    }

    

}