*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#000;
    color:#d6a438;
}

.container{
    display:flex;
    min-height:100vh;
}

/* Sidebar */
.sidebar{
    width:280px;
    padding:40px;
}

.filter-group{
    margin-bottom:30px;
}

.filter-group h3{
    margin-bottom:15px;
    font-size:28px;
}

.filter-group label{
    display:flex;
    gap:10px;
    line-height:1.6;
    cursor:pointer;
    color:#e4b145;
}

.divider{
    height:1px;
    background:#444;
    margin:30px 0;
}

.btn-filtrar{
    width:100%;
    padding:15px;
    margin-top:20px;
    background:#141014;
    color:#fff;
    border:none;
    border-radius:8px;
    font-weight:bold;
    cursor:pointer;
}

.btn-filtrar:hover{
    background:#201820;
}

/* Conteúdo */
.content{
    flex:1;
    padding:20px 40px;
}

.top-bar{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    margin-bottom:30px;
}

.top-bar h1{
    font-size:52px;
    line-height:1.2;
}

.sort{
    display:flex;
    align-items:center;
    gap:10px;
}

.sort select{
    padding:12px 20px;
    border-radius:6px;
    border:none;
    font-size:16px;
}

.products{
    display:flex;
    gap:25px;
    flex-wrap:wrap;
}

.card{
    width:320px;
    background:#f3f3f3;
    border-radius:6px;
    overflow:hidden;
    text-align:center;
    padding-bottom:20px;
}

.card img{
    width:100%;
    height:320px;
    object-fit:cover;
}

.card h4{
    color:#d6a438;
    font-size:18px;
    padding:15px;
    font-weight:500;
}

.stars{
    color:#d6a438;
    margin-bottom:15px;
    font-size:20px;
}

.price{
    color:#d6a438;
    font-size:28px;
    font-weight:bold;
    margin-bottom:10px;
}

.card a{
    color:#d6a438;
    text-decoration:none;
    font-size:14px;
}

.card a:hover{
    text-decoration:underline;
}

/* Responsivo */
@media(max-width:900px){

    .container{
        flex-direction:column;
    }

    .sidebar{
        width:100%;
    }

    .top-bar{
        flex-direction:column;
        gap:20px;
    }

    .products{
        justify-content:center;
    }
}


/* BOTÃO MOBILE */
.mobile-filter-btn{
    display:none;
}

/* MOBILE */
@media (max-width:768px){

    body{
        overflow-x:hidden;
    }

    .container{
        display:block;
    }

    /* Botão filtros */
    .mobile-filter-btn{
        display:flex;
        align-items:center;
        justify-content:center;
        gap:8px;

        position:fixed;
        bottom:20px;
        right:20px;
        z-index:1001;

        background:#d6a438;
        color:#000;

        border:none;
        border-radius:50px;

        padding:14px 22px;
        font-weight:bold;
        cursor:pointer;
    }

    /* Sidebar vira drawer */
    .sidebar{
        position:fixed;
        top:0;
        left:-100%;
        width:280px;
        height:100vh;

        background:#000;
        z-index:1002;

        overflow-y:auto;

        transition:.3s;
        padding:25px;
    }

    .sidebar.active{
        left:0;
    }

    .close-sidebar{
        background:none;
        border:none;
        color:#fff;
        font-size:24px;
        margin-bottom:20px;
        cursor:pointer;
    }

    .overlay{
        position:fixed;
        inset:0;
        background:rgba(0,0,0,.6);
        opacity:0;
        visibility:hidden;
        transition:.3s;
        z-index:1000;
    }

    .overlay.active{
        opacity:1;
        visibility:visible;
    }

    .content{
        padding:20px;
    }

    .top-bar{
        display:flex;
        flex-direction:column;
        align-items:flex-start;
        gap:15px;
    }

    .top-bar h1{
        font-size:28px;
        line-height:1.3;
    }

    .sort{
        width:100%;
    }

    .sort select{
        width:100%;
    }

    .products{
        display:flex;
        flex-direction:column;
        gap:20px;
    }

    .card{
        width:100%;
    }

    .card img{
        height:220px;
    }

    .card h4{
        font-size:15px;
        padding:12px;
    }

    .price{
        font-size:22px;
    }
}