.produtos-hero{
    padding:74px 0 46px;
    text-align:center;
}

.produtos-hero span{
    display:inline-flex;
    margin-bottom:12px;
    padding:9px 16px;
    border-radius:999px;
    color:var(--rosa-3);
    background:rgba(255,255,255,.62);
    border:1px solid rgba(255,255,255,.78);
    font-size:13px;
    font-weight:900;
    box-shadow:var(--shadow-soft);
}

.produtos-hero h1{
    max-width:780px;
    margin:0 auto;
    font-family:'Playfair Display', serif;
    font-size:clamp(42px, 6vw, 72px);
    line-height:.95;
    letter-spacing:-2px;
    color:#7b087c;
}

.produtos-hero p{
    max-width:620px;
    margin:18px auto 0;
    color:var(--muted);
    font-size:16px;
    line-height:1.7;
    font-weight:600;
}

.catalogo-section{
    padding:26px 0 86px;
}

.catalogo-topo{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    margin-bottom:30px;
}

.filtros-categorias{
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
}

.filtros-categorias button,
.ordenar-select{
    min-height:44px;
    padding:0 18px;
    border-radius:999px;
    background:rgba(255,255,255,.62);
    border:1px solid rgba(255,255,255,.82);
    color:var(--muted);
    font-size:13px;
    font-weight:900;
    box-shadow:var(--shadow-soft);
    outline:none;
    transition:.25s;
}

.filtros-categorias button:hover,
.filtros-categorias button.ativo{
    color:white;
    background:linear-gradient(135deg, var(--rosa-1), var(--lilas-2));
}

.ordenar-select{
    cursor:pointer;
    color:var(--texto);
}

.produtos-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:26px;
}

.produto-card{
    position:relative;
    overflow:hidden;
    border-radius:30px;
    padding:12px;
    background:rgba(255,255,255,.62);
    border:1px solid rgba(255,255,255,.82);
    box-shadow:var(--shadow-soft);
    transition:.25s;
}

.produto-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow);
}

.produto-img{
    position:relative;
    overflow:hidden;
    height:260px;
    border-radius:24px;
    background:#f8dff4;
}

.produto-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.35s;
}

.produto-card:hover .produto-img img{
    transform:scale(1.06);
}

.produto-badge{
    position:absolute;
    top:14px;
    left:14px;
    padding:7px 12px;
    border-radius:999px;
    color:white;
    background:linear-gradient(135deg, var(--rosa-1), var(--lilas-2));
    font-size:11px;
    font-weight:900;
    box-shadow:0 10px 22px rgba(0,0,0,.13);
}

.produto-info{
    padding:16px 6px 4px;
}

.produto-info h3{
    min-height:42px;
    font-size:16px;
    line-height:1.3;
    font-weight:900;
    color:var(--texto);
}

.produto-categoria{
    margin-top:6px;
    color:var(--muted);
    font-size:12px;
    font-weight:800;
}

.produto-preco{
    margin-top:10px;
    color:#8a007c;
    font-size:18px;
    font-weight:900;
}

.produto-actions{
    margin-top:14px;
    display:grid;
    grid-template-columns:1fr 46px;
    gap:10px;
}

.produto-actions .btn-ver{
    min-height:44px;
    border-radius:999px;
    display:grid;
    place-items:center;
    color:white;
    background:linear-gradient(135deg, var(--rosa-1), var(--rosa-3));
    font-size:13px;
    font-weight:900;
    transition:.25s;
}

.produto-actions .btn-cart{
    min-height:44px;
    border-radius:999px;
    display:grid;
    place-items:center;
    background:white;
    color:var(--rosa-3);
    box-shadow:0 10px 22px rgba(217,70,196,.14);
    transition:.25s;
}

.produto-actions button:hover,
.produto-actions a:hover{
    transform:translateY(-2px);
}

@media(max-width:980px){
    .catalogo-topo{
        align-items:flex-start;
        flex-direction:column;
    }

    .ordenar-select{
        width:100%;
    }

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

@media(max-width:620px){
    .produtos-hero{
        padding:44px 0 28px;
        text-align:left;
    }

    .produtos-hero h1{
        font-size:42px;
        letter-spacing:-1px;
    }

    .produtos-hero p{
        margin-left:0;
        margin-right:0;
        font-size:15px;
    }

    .catalogo-section{
        padding-bottom:92px;
    }

    .filtros-categorias{
        width:100%;
        display:grid;
        grid-template-columns:repeat(2, 1fr);
        gap:10px;
    }

    .filtros-categorias button{
        width:100%;
        padding:0 12px;
    }

    .produtos-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .produto-img{
        height:300px;
    }
}