/* Videovigilancia — thumbs como Cómputo (sin recorte, tamaño consistente) */
.vv-page .product-grid .p-thumb{
  height: 170px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(0,0,0,.06);
  aspect-ratio: auto !important; /* anula cualquier aspect-ratio heredado */
}
.vv-page .product-grid .p-thumb img{
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;  /* ✅ sin recortes */
  padding: 10px !important;
  display: block;
}
@media (max-width: 560px){
  .vv-page .product-grid .p-thumb{height: 150px;}
  .vv-page .product-grid .p-thumb img{padding: 8px !important;}
}
