.fb-productGrid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
}

.fb-productCard{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 8px 22px rgba(15,23,42,.05);
  transition:transform .25s ease, box-shadow .25s ease;
}

.fb-productCard:hover{
  transform:translateY(-4px);
  box-shadow:0 14px 28px rgba(15,23,42,.10);
}

.fb-productCard__image{
  display:block;
  aspect-ratio:4/2.8;
  background:#f5f7fa;
  overflow:hidden;
}

.fb-productCard__image img{
  width:100%;
  height:100%;
  object-fit:contain;
  transition:transform .35s ease;
  padding:10px;
}

.fb-productCard:hover .fb-productCard__image img{
  transform:scale(1.04);
}

.fb-productCard__body{
  padding:14px 14px 16px;
}

.fb-productCard__brand{
  font-size:11px;
  color:#6b7280;
  margin-bottom:6px;
  text-transform:uppercase;
  letter-spacing:.04em;
}

.fb-productCard__title{
  margin:0 0 8px;
  font-size:16px;
  line-height:1.35;
  font-weight:700;
}

.fb-productCard__title a{
  color:#111827;
  text-decoration:none;
}

.fb-productCard__short{
  margin:0 0 10px;
  color:#4b5563;
  font-size:13px;
  line-height:1.55;
}

.fb-productCard__tags{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  margin-bottom:12px;
}

.fb-productCard__tags span{
  display:inline-flex;
  align-items:center;
  min-height:26px;
  padding:4px 8px;
  border-radius:999px;
  background:#f3f4f6;
  color:#374151;
  font-size:11px;
  line-height:1.2;
}

.fb-productCard__link{
  color:#b91c1c;
  font-weight:700;
  font-size:14px;
  text-decoration:none;
}

@media (max-width: 1200px){
  .fb-productGrid{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }
}

@media (max-width: 991px){
  .fb-productGrid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width: 640px){
  .fb-productGrid{
    grid-template-columns:1fr;
    gap:16px;
  }

  .fb-productCard__title{
    font-size:17px;
  }
}