/* RESET */
*{
    box-sizing:border-box;
}

body{
    margin:0;
    font-family:'Inter', sans-serif;
    background:#0a0a0a;
    color:#fff;
}

/* CONTAINER */
.container{
    max-width:1100px;
    margin:auto;
    padding:20px;
}

/* HEADER */
header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 40px;
    border-bottom:1px solid #1a1a1a;
    background:#0a0a0a;
    position:sticky;
    top:0;
    z-index:999;
}

.logo img{
    height:28px;
}

.nav{
    display:flex;
    align-items:center;
    gap:20px;
}

.nav a{
    color:#ccc;
    text-decoration:none;
    font-size:14px;
}

.nav a:hover{
    color:#fff;
}

/* BUTTON */
.btn{
    background:#FACC15;
    color:#000;
    padding:10px 16px;
    border-radius:10px;
    text-decoration:none;
    font-weight:500;
}

/* CARD */
.card{
    display:flex;
    gap:20px;
    background:#111;
    border:1px solid #1f1f1f;
    border-radius:14px;
    margin-bottom:20px;
    overflow:hidden;
    transition:0.2s;
}

.card:hover{
    transform:translateY(-3px);
    border-color:#333;
}

.card img{
    width:250px;
    height:180px;
    object-fit:cover;
}

.card-content{
    padding:15px;
    flex:1;
}

.title{
    font-size:20px;
    font-weight:600;
    margin-bottom:10px;
}

.price{
    font-size:18px;
    color:#FACC15;
    margin-bottom:10px;
}

.meta{
    font-size:14px;
    color:#aaa;
}

/* SEARCH */
.search-box{
    background:#111;
    padding:25px;
    border-radius:16px;
    border:1px solid #1f1f1f;
    margin:20px 0;
}

.search-grid{
    display:grid;
    grid-template-columns:repeat(5, 1fr);
    gap:15px;
}

.field{
    display:flex;
    flex-direction:column;
    gap:6px;
}

.field label{
    font-size:13px;
    color:#aaa;
}

.field input,
.field select{
    padding:12px;
    border-radius:10px;
    border:1px solid #222;
    background:#0f0f0f;
    color:#fff;
}

.search-bottom{
    margin-top:15px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.check{
    display:flex;
    align-items:center;
    gap:8px;
}

.check input{
    accent-color:#FACC15;
}

button{
    padding:12px 24px;
    background:#FACC15;
    border:none;
    border-radius:10px;
    font-weight:600;
    cursor:pointer;
}