/* ============================================================
   loja-produtos.css — Página /loja/produtos.html
   ============================================================ */

.pg-produtos{padding-top:16px;padding-bottom:60px;}
.pg-produtos *,.pg-produtos *::before,.pg-produtos *::after{box-sizing:border-box;}
.pg-produtos select,.pg-produtos input{max-width:100%;}
.pg-produtos__toolbar .pg-produtos__busca .search-bar{max-width:100%;}
.pg-produtos__toolbar .pg-produtos__busca .search-bar input{min-width:0;}
.pg-produtos__topo{display:flex;flex-direction:column;gap:10px;margin-bottom:14px;}
.pg-produtos__topo h1{font-family:var(--font-serif);font-size:1.3rem;margin:0;text-transform:uppercase;letter-spacing:.04em;}
.pg-produtos__toolbar{display:flex;flex-wrap:wrap;align-items:center;gap:10px;}
.pg-produtos__toolbar .pg-produtos__busca{flex:1;min-width:180px;}
.pg-produtos__toolbar .pg-produtos__busca .search-bar{border-radius:20px;}
.pg-produtos__toolbar .pg-produtos__busca .search-bar input{padding:.3rem .6rem;font-size:.78rem;}
.pg-produtos__toolbar .pg-produtos__busca .search-bar button{background:var(--royal-blue);border-radius:0 20px 20px 0;padding:.3rem .7rem;}
.pg-produtos__toolbar .pg-produtos__busca .search-bar button:hover{background:var(--navy-deep);}
.pg-produtos__toolbar .pg-produtos__ordem{display:flex;align-items:center;gap:6px;}
.pg-produtos__toolbar .pg-produtos__ordem label{font-size:.72rem;color:var(--ink-soft);white-space:nowrap;font-weight:600;}
.pg-produtos__toolbar .pg-produtos__ordem select{min-width:130px;max-width:100%;padding:.3rem .6rem;font-size:.78rem;}

.pg-produtos__grelha{display:grid;grid-template-columns:repeat(5,1fr);gap:var(--product-gap);}
.pg-produtos__grelha .pg-produtos__vazio{grid-column:1/-1;}

.pg-produtos__paginacao{display:flex;justify-content:center;margin-top:20px;}

@media(max-width:1200px){
  .pg-produtos__grelha{grid-template-columns:repeat(4,1fr);}
}
@media(max-width:900px){
  .pg-produtos__grelha{grid-template-columns:repeat(3,1fr);}
  .pg-produtos__toolbar{flex-direction:column;align-items:stretch;}
  .pg-produtos__toolbar .pg-produtos__busca{min-width:0;}
}
@media(max-width:600px){
  .pg-produtos__grelha{grid-template-columns:repeat(2,1fr);gap:6px;}
  .pg-produtos__topo h1{font-size:1.1rem;}
}
@media(max-width:420px){
  .pg-produtos__grelha{grid-template-columns:repeat(2,1fr);gap:6px;}
  .pg-produtos__toolbar .pg-produtos__ordem{flex:1;}
  .pg-produtos__toolbar .pg-produtos__ordem select{min-width:0;width:100%;}
}

/* ---- Filters ---- */
.pg-produtos__filtros{display:flex;flex-wrap:wrap;align-items:flex-end;gap:10px;margin-bottom:14px;padding:10px 14px;background:var(--bg-panel);border-radius:var(--radius);box-shadow:var(--shadow-sm);}
.pg-produtos__filtro-group{display:flex;flex-direction:column;gap:3px;}
.pg-produtos__filtro-group label{font-size:.68rem;font-weight:600;color:var(--ink-soft);text-transform:uppercase;letter-spacing:.04em;}
.pg-produtos__filtro-group select{min-width:140px;padding:.35rem .6rem;font-size:.75rem;}
.pg-produtos__filtro-preco{display:flex;align-items:center;gap:4px;}
.pg-produtos__filtro-preco input{width:80px;max-width:100%;padding:.35rem .5rem;font-size:.75rem;}
.pg-produtos__filtro-preco-sep{color:var(--ink-soft);font-weight:600;font-size:.78rem;}
.pg-produtos__filtros .btn{padding:.4rem .8rem;font-size:.72rem;min-height:30px;}
@media(max-width:640px){
  .pg-produtos__filtros{flex-direction:column;align-items:stretch;}
  .pg-produtos__filtro-group{width:100%;}
  .pg-produtos__filtro-group select{min-width:0;width:100%;}
  .pg-produtos__filtro-preco{width:100%;}
  .pg-produtos__filtro-preco input{width:100%;flex:1;min-width:0;}
  .pg-produtos__filtros .btn{width:100%;justify-content:center;}
}
