/* v59 fixes */
#cart-float.cart-float{
  top:28px !important;
  right:18px !important;
}
@media (max-width: 767px){
  #cart-float.cart-float{top:20px !important;right:12px !important;}
}

body.cart-open #cart-float,
body.cart-open #cart-float.cart-float{
  opacity:0 !important;
  visibility:hidden !important;
  pointer-events:none !important;
}

/* Product cards: keep crisp rendering and remove blur on hover */
@media (hover:hover) and (pointer:fine){
  .card.product-card{
    transform:none !important;
    will-change:auto !important;
    backface-visibility:visible !important;
    filter:none !important;
  }
  .card.product-card:hover{
    transform:none !important;
    filter:none !important;
    box-shadow:var(--shadow-sm) !important;
  }
  .card.product-card:hover img,
  .card.product-card:hover .title,
  .card.product-card:hover .price,
  .card.product-card:hover .body{
    filter:none !important;
  }
}

/* Home brands marquee */
body[data-page="home"] #brands-marquee .brands-carousel{position:relative;overflow:hidden;}
body[data-page="home"] #brands-marquee .brands-viewport{
  overflow:hidden !important;
  padding:14px !important;
  background:transparent !important;
  border:none !important;
}
body[data-page="home"] #brands-marquee .brands-track{
  display:flex !important;
  align-items:center !important;
  flex-wrap:nowrap !important;
  width:max-content !important;
  gap:0 !important;
  transform:translate3d(0,0,0);
  will-change:transform;
}
body[data-page="home"] #brands-marquee .brands-group{
  display:flex !important;
  align-items:center !important;
  flex-wrap:nowrap !important;
  gap:28px !important;
  padding-right:28px !important;
  flex:0 0 auto !important;
}
body[data-page="home"] #brands-marquee .brand-chip{
  width:188px !important;
  min-width:188px !important;
  height:88px !important;
  border-radius:18px !important;
  padding:10px 12px !important;
}
body[data-page="home"] #brands-marquee .brand-chip img{
  width:100% !important;
  height:100% !important;
  object-fit:contain !important;
  max-width:none !important;
  max-height:none !important;
  display:block;
}
@media (max-width: 767px){
  body[data-page="home"] #brands-marquee .brands-group{gap:18px !important;padding-right:18px !important;}
  body[data-page="home"] #brands-marquee .brand-chip{width:156px !important;min-width:156px !important;height:76px !important;}
}

/* Home blog cards equal height */
body[data-page="home"] .section.section-articles .list{
  align-items:stretch !important;
  grid-auto-rows:1fr !important;
}
body[data-page="home"] .section.section-articles .article-row{
  height:100% !important;
  min-height:320px !important;
  display:flex !important;
}
body[data-page="home"] .section.section-articles .article-row .title{
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
  min-height:40px;
}
body[data-page="home"] .section.section-articles .article-row .desc{
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
  min-height:36px;
}

/* Similar products on product page */
body[data-page="product"] #similar-grid{
  grid-template-columns:repeat(4,minmax(0,1fr));
}
@media (max-width: 1024px){ body[data-page="product"] #similar-grid{grid-template-columns:repeat(3,minmax(0,1fr));} }
@media (max-width: 767px){ body[data-page="product"] #similar-grid{grid-template-columns:repeat(2,minmax(0,1fr));} }
