/* ANSEIO Commerce Components — fase 2 */
.anseio-recent-products{
  width:min(1180px,92vw);
  margin:56px auto;
}
.anseio-recent-grid{
  display:grid;
  grid-template-columns:repeat(6,minmax(0,1fr));
  gap:14px;
}
.anseio-recent-card button{
  width:100%;
  border:1px solid rgba(120,0,7,.14);
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  text-align:left;
  padding:0;
  cursor:pointer;
  box-shadow:0 12px 30px rgba(70,0,12,.08);
}
.anseio-recent-card img{
  width:100%;
  aspect-ratio:3/4;
  object-fit:cover;
  background:#f8eef1;
}
.anseio-recent-card strong,
.anseio-recent-card span{
  display:block;
  padding:0 12px;
}
.anseio-recent-card strong{
  padding-top:10px;
  font-size:.88rem;
  color:#241217;
  line-height:1.25;
}
.anseio-recent-card span{
  padding-bottom:12px;
  padding-top:5px;
  color:#780007;
  font-weight:900;
}
@media(max-width:980px){
  .anseio-recent-grid{grid-template-columns:repeat(3,1fr)}
}
@media(max-width:620px){
  .anseio-recent-products{margin:36px auto}
  .anseio-recent-grid{grid-template-columns:repeat(2,1fr);gap:10px}
}
