.page-header{
    padding:60px 0 30px;
    text-align:center;
}

.page-header h1{
    font-size:38px;
    margin-bottom:10px;
}

.page-header p{
    color:#666;
}

.search-section{
    padding-bottom:40px;
}

.search-form{
    display:flex;
    gap:15px;
    max-width:700px;
    margin:auto;
}

.search-form input{
    flex:1;
    padding:15px;
    border:1px solid #ddd;
    border-radius:12px;
}

.search-form button{
    background:#ff6b00;
    color:#fff;
    border:none;
    padding:0 25px;
    border-radius:12px;
    cursor:pointer;
}

.restoran-list{
    padding:20px 0 80px;
}

.restoran-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.resto-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.resto-card:hover{
    transform:translateY(-6px);
}

.resto-banner img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.resto-content{
    padding:20px;
}

.resto-meta{
    display:flex;
    justify-content:space-between;
    margin-bottom:15px;
}

.rating{
    font-weight:600;
}

.open{
    background:#e8f8ee;
    color:#16803c;
    padding:6px 12px;
    border-radius:20px;
    font-size:13px;
    font-weight:600;
}

.closed{
    background:#fceaea;
    color:#d93025;
    padding:6px 12px;
    border-radius:20px;
    font-size:13px;
    font-weight:600;
}

.resto-content h3{
    margin-bottom:15px;
}

.resto-content p{
    margin-bottom:10px;
    color:#555;
}

.btn-resto{
    display:block;
    text-align:center;
    background:#ff6b00;
    color:#fff;
    text-decoration:none;
    padding:12px;
    border-radius:10px;
    margin-top:20px;
}

.btn-resto:hover{
    background:#e55d00;
}

@media(max-width:768px){

.search-form{
    flex-direction:column;
}

.page-header h1{
    font-size:30px;
}

}

.restoran-result{
    margin-bottom:25px;
    color:#666;
}

.restoran-result strong{
    color:#222;
}

.kategori-filter{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:10px;
    margin-top:20px;
}

.kategori-filter a{
    display:inline-block;
    padding:10px 20px;
    border-radius:30px;
    background:#f5f5f5;
    color:#555;
    text-decoration:none;
    font-size:14px;
    font-weight:500;
    transition:.3s;
}

.kategori-filter a:hover{
    background:#fff0e6;
    color:#ff6b00;
}

.kategori-filter a.active{
    background:#ff6b00;
    color:#fff;
}

@media(max-width:600px){

    .kategori-filter{
        justify-content:flex-start;
        flex-wrap:nowrap;
        overflow-x:auto;
        padding:5px 2px 10px;
        scrollbar-width:none;
    }

    .kategori-filter::-webkit-scrollbar{
        display:none;
    }

    .kategori-filter a{
        flex:0 0 auto;
    }

}

.sort-restoran{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:10px;
    margin-bottom:25px;
}

.sort-restoran label{
    color:#666;
    font-size:14px;
}

.sort-restoran select{
    padding:10px 35px 10px 14px;
    border:1px solid #ddd;
    border-radius:10px;
    background:#fff;
    color:#333;
    cursor:pointer;
}

@media(max-width:600px){

    .sort-restoran{
        justify-content:space-between;
        margin-top:20px;
    }

    .sort-restoran select{
        flex:1;
        max-width:220px;
    }

}

/* ===============================
   PAGINATION
================================ */

.pagination{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:8px;
    margin-top:45px;
}

.pagination a{
    min-width:42px;
    height:42px;
    padding:0 14px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:10px;
    background:#f5f5f5;
    color:#444;
    text-decoration:none;
    font-size:14px;
    font-weight:500;
    transition:.3s;
}

.pagination a:hover{
    background:#fff0e6;
    color:#ff6b00;
}

.pagination a.active{
    background:#ff6b00;
    color:#fff;
}

@media(max-width:600px){

    .pagination{
        gap:6px;
    }

    .pagination a{
        min-width:38px;
        height:38px;
        padding:0 10px;
    }

}