.pagina-favoritos{
    padding:40px;
}

.pagina-favoritos h1{
    font-size:34px;
    margin-bottom:28px;
}

.lista-favoritos{
    background:#fff;
    border-radius:22px;
    padding:30px;
    min-height:360px;
}

.favoritos-vazio{
    min-height:300px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.favoritos-vazio span{
    font-size:64px;
    margin-bottom:18px;
}

.favoritos-vazio h2{
    font-size:28px;
    margin-bottom:10px;
}

.favoritos-vazio p{
    color:#666;
    margin-bottom:24px;
}

.btn-voltar{
    display:inline-block;
    padding:14px 28px;
    background:#34F6E5;
    color:#000;
    text-decoration:none;
    border-radius:12px;
    font-weight:bold;
}

.grid-favoritos{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:22px;
}

.card-favorito{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 8px 24px rgba(0,0,0,0.06);
}

.card-favorito img{
    width:100%;
    height:180px;
    object-fit:contain;
    background:#eee;
    padding:16px;
}

.info-favorito{
    padding:18px;
}

.info-favorito h3{
    font-size:18px;
    margin-bottom:10px;
}

.info-favorito p{
    color:#555;
    margin-bottom:8px;
}

.info-favorito strong{
    font-size:22px;
    display:block;
    margin-bottom:14px;
}

.acoes-favorito{
    display:flex;
    gap:10px;
}

.acoes-favorito a,
.acoes-favorito button{
    flex:1;
    height:42px;
    border:none;
    border-radius:10px;
    font-weight:bold;
    cursor:pointer;
    text-decoration:none;
    display:flex;
    align-items:center;
    justify-content:center;
}

.acoes-favorito a{
    background:#111;
    color:#fff;
}

.acoes-favorito button{
    background:#34F6E5;
    color:#000;
}

@media(max-width:1000px){
    .grid-favoritos{
        grid-template-columns:repeat(2, 1fr);
    }
}

@media(max-width:600px){
    .grid-favoritos{
        grid-template-columns:1fr;
    }
}
/* =========================================
FAVORITOS PROFISSIONAL
========================================= */

#listaFavoritos{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* CARD */

.card-favorito{
    background: #fff;
    border-radius: 20px;
    padding: 20px;

    display: flex;
    align-items: center;
    gap: 20px;

    box-shadow: 0 5px 15px rgba(0,0,0,0.08);

    transition: 0.3s;
}

.card-favorito:hover{
    transform: translateY(-3px);
}

/* IMAGEM */

.card-favorito img{
    width: 130px;
    height: 130px;
    object-fit: contain;
}

/* INFO */

.card-favorito h3{
    font-size: 26px;
    margin-bottom: 10px;
}

.card-favorito p{
    color: #555;
    margin-bottom: 10px;
}

.card-favorito strong{
    font-size: 28px;
    color: #000;
}

/* ÁREA DIREITA */

.favorito-acoes{
    margin-left: auto;

    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* BOTÃO VER PRODUTO */

.favorito-acoes a{
    background: #000;
    color: #fff;
    text-decoration: none;

    padding: 12px 20px;
    border-radius: 12px;

    font-weight: bold;
    text-align: center;

    transition: 0.3s;
}

.favorito-acoes a:hover{
    opacity: 0.85;
}

/* BOTÃO REMOVER */

.favorito-acoes button{
    background: #ff4d4d;
    color: #fff;

    border: none;

    padding: 12px 20px;
    border-radius: 12px;

    cursor: pointer;

    font-weight: bold;

    transition: 0.3s;
}

.favorito-acoes button:hover{
    opacity: 0.85;
}

/* FAVORITOS VAZIO */

.favoritos-vazio{
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

.favoritos-vazio h2{
    margin-bottom: 10px;
}

.favoritos-vazio a{
    display: inline-block;
    margin-top: 20px;

    background: #34F6E5;
    color: #000;

    padding: 14px 25px;
    border-radius: 12px;

    text-decoration: none;
    font-weight: bold;
}