
/* V149 - Balance related-product rows while preserving 4 cards/row when available */
.v120-product-page .v120-related{
  width:100%!important;
}

.v120-product-page .v120-related-grid{
  width:100%!important;
  margin:0!important;
  align-items:stretch!important;
}

/* Full row: keep exactly 4 equal cards */
.v120-product-page .v120-related-grid.v149-related-count-4{
  grid-template-columns:repeat(4,minmax(0,1fr))!important;
}

/* Incomplete rows: distribute available cards evenly across the full content width */
.v120-product-page .v120-related-grid.v149-related-count-3{
  grid-template-columns:repeat(3,minmax(0,1fr))!important;
  max-width:900px!important;
  margin-inline:auto!important;
}

.v120-product-page .v120-related-grid.v149-related-count-2{
  grid-template-columns:repeat(2,minmax(0,1fr))!important;
  max-width:760px!important;
  margin-inline:auto!important;
}

.v120-product-page .v120-related-grid.v149-related-count-1{
  grid-template-columns:minmax(0,360px)!important;
  justify-content:center!important;
}

/* Keep card internals proportionate and vertically aligned */
.v120-product-page .v120-related .v117-product-card{
  display:flex!important;
  flex-direction:column!important;
  min-width:0!important;
  height:100%!important;
}

.v120-product-page .v120-related .v117-product-body{
  display:flex!important;
  flex:1 1 auto!important;
  flex-direction:column!important;
}

.v120-product-page .v120-related .v117-product-facts{
  min-height:64px!important;
  margin-bottom:4px!important;
}

.v120-product-page .v120-related .v117-price-row{
  margin-top:auto!important;
  min-height:54px!important;
}

.v120-product-page .v120-related .v117-product-actions{
  margin-top:6px!important;
}

/* Prevent price/unit wrapping and keep discount aligned */
.v120-product-page .v120-related .v117-price{
  min-width:0!important;
}
.v120-product-page .v120-related .v117-price strong,
.v120-product-page .v120-related .v117-price small{
  white-space:nowrap!important;
}
.v120-product-page .v120-related .v117-discount{
  flex:0 0 auto!important;
}

/* Tablet: still balanced, with max 3 columns */
@media(max-width:1050px){
  .v120-product-page .v120-related-grid.v149-related-count-4{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
  }
  .v120-product-page .v120-related-grid.v149-related-count-3{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    max-width:none!important;
  }
  .v120-product-page .v120-related-grid.v149-related-count-2{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    max-width:none!important;
  }
}

/* Mobile: keep the established 2 cards/row behavior */
@media(max-width:760px){
  .v120-product-page .v120-related-grid.v149-related-count-4,
  .v120-product-page .v120-related-grid.v149-related-count-3,
  .v120-product-page .v120-related-grid.v149-related-count-2{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    max-width:none!important;
    margin-inline:0!important;
  }

  .v120-product-page .v120-related-grid.v149-related-count-1{
    grid-template-columns:minmax(0,1fr)!important;
  }

  .v120-product-page .v120-related .v117-product-facts{
    min-height:56px!important;
  }
}
