.product-card:hover .product-img {
    transform: scale(1.05) !important;
  }
  .product-card {
transition: .3s all ease;
}
  .product-card:hover {
    box-shadow: 0px 0px 8px #d7d7d7;
  }


  .top-ten-card {
    display: grid;
    grid-template-rows: .5fr 1fr .3fr ;
    grid-template-columns: .7fr 1fr;
    gap: 0px;
    /* height: min-content; */
  }

  .top-ten-card > div:nth-child(1) {
    grid-row: 2 / 3;
    grid-column: 1 / 2;
  }

  .top-ten-card > div:nth-child(2) {
    grid-row: 1 / 2;
    grid-column: 1 / 3;
  }

  .top-ten-card > div:nth-child(3) {
    grid-row: 2 / 3;
    grid-column: 2 / 2;
  }

  .top-ten-card > div:nth-child(4) {
    grid-row-start: 3;
   grid-column-start: 1;

   grid-row-end: 4;
   grid-column-end: 3;
  }
  .product-card-img{
    /* height: 120px; */
  }
  

  
  /* Desktop view (≥576px or customize as needed) */
  @media (min-width: 576px) {
    .product-card-img{
        height: 200px;
    }
    .top-ten-card {
      display: grid;
      grid-template-rows: 1fr 1fr 0.5fr;
      grid-template-columns: 0.5fr 1fr;
      gap: 0px;
      height: 100%;
    }
  
    .top-ten-card > div:nth-child(1) {
      grid-row: 1 / 4;
      grid-column: 1 / 2;
    }
  
    .top-ten-card > div:nth-child(2) {
      grid-row: 1 / 2;
      grid-column: 2 / 3;
    }
  
    .top-ten-card > div:nth-child(3) {
      grid-row: 2 / 3;
      grid-column: 2 / 3;
    }
  
    .top-ten-card > div:nth-child(4) {
      grid-row: 3 / 4;
      grid-column: 2 / 3;
    }
  }
  
  .top-ten-card .pd-price{
    font-size: 18px;
}
  /* Mobile view: reorder children */
  @media (max-width: 576px) {
    .modalProductItem{
        width: 100% !important;
    }
    .modalProductItem span{
        font-weight: normal !important;
    }
    .top-ten-card > div:nth-child(1) {
      order: 2;
    }
  
    .top-ten-card > div:nth-child(2) {
      order: 1;
    }
  
    .top-ten-card > div:nth-child(3) {
      order: 3;
    }
  
    .top-ten-card > div:nth-child(4) {
      order: 4;
    }
    .top-ten-card .product-title{
        font-size: 18px !important;
    }
    .top-ten-card .specs-title{
        font-size: 12px !important;
    }
    .top-ten-card .pd-price{
        font-size: 16px !important;
    }
    .top-ten-card .top-sec{
        border-bottom: 1px solid #d7d7d7;
    }
  }
  