.atlas-product-card{
  direction:rtl;
  max-width:520px;
  margin:16px auto;
  border:1px solid rgba(0,0,0,.08);
  border-radius:18px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 8px 24px rgba(236,72,153,.15);
}
.atlas-product-card a{
  display:grid;
  grid-template-columns:140px 1fr;
  gap:14px;
  padding:14px;
  text-decoration:none;
  color:inherit;
  align-items:center;
}
.atlas-product-card img{
  width:140px;
  height:140px;
  object-fit:cover;
  border-radius:14px;
  border:1px solid rgba(236,72,153,.25);
  background:#fff0f6;
}
.atlas-product-fallback{
  width:140px;
  height:140px;
  border-radius:14px;
  border:1px solid rgba(236,72,153,.25);
  background:#fff0f6;
}
.atlas-product-title{
  display:block;
  font-size:15px;
  line-height:1.7;
  margin:0 0 10px;
  font-weight:700;
}
.atlas-product-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:12px;
  font-size:14px;
  font-weight:700;
  background:#ec4899;
  color:#fff;
  width:fit-content;
}
.atlas-product-card a:hover{ background:rgba(236,72,153,.07) }
.atlas-product-card a:hover .atlas-product-cta{ filter:brightness(.92) }

@media (max-width:480px){
  .atlas-product-card a{ grid-template-columns:1fr; text-align:right }
  .atlas-product-card img,
  .atlas-product-fallback{
    width:100%;
    height:auto;
    aspect-ratio:1/1;
  }
}
