/* Category image cards patch */
.brand-v4-catalog-grid-photo .brand-v4-photo-card{
  display:block;
  padding:0;
  overflow:hidden;
}
.brand-v4-cat-photo{
  position:relative;
  height:180px;
  background:#f8fafc;
  overflow:hidden;
}
.brand-v4-cat-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .35s ease;
}
.brand-v4-photo-card:hover .brand-v4-cat-photo img{
  transform:scale(1.06);
}
.brand-v4-cat-photo:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(8,17,31,0) 40%, rgba(8,17,31,.62) 100%);
}
.brand-v4-cat-photo span{
  position:absolute;
  left:18px;
  bottom:16px;
  z-index:2;
  width:54px;
  height:54px;
  border-radius:18px;
  background:rgba(232,66,44,.92);
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:950;
  box-shadow:0 14px 32px rgba(0,0,0,.22);
}
.brand-v4-photo-card > div:last-child{
  padding:20px 22px 22px;
}
.brand-v4-cat-photo.img-error{
  display:none;
}
.category-image-admin-table textarea{
  min-width:260px;
  min-height:80px;
}
.category-image-admin-table input[name*="image_url"]{
  min-width:330px;
}
.category-admin-thumb{
  display:block;
  width:150px;
  height:90px;
  object-fit:cover;
  border-radius:12px;
  margin-top:8px;
  background:#f8fafc;
  border:1px solid #e5e7eb;
}
@media(max-width:900px){
  .brand-v4-cat-photo{height:210px}
}
