.productrange-main-conatainer {
    margin: clamp(20px, 5vw, 30px);

}

.productrange{
    max-width: 1400px;
    margin: 0 auto;
}

  
.productrange-heading {
    font-size: 45px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 0.95;
    font-family: 'Special Gothic Condensed One',sans-serif;
}
  
  .productrange-heading span {
    color: #0956a4;
  }
   
	.button-Allproduct {
    font-family: "Special Gothic Condensed One",sans-serif;
    display: inline-block;
    background-color: #0956a4;
    color: #fff;
    text-decoration: none;
    padding: 7px 10px;
    font-size: 16px;
    margin-bottom: 10px;
    text-transform: uppercase;
}
  
  .productrange-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin: 20px auto;
    max-width: 100%;
  }
  
  .productrange-item {
    background-color: #000;
    border-radius: 5px;
    position: relative;
    object-fit: cover;
    overflow: hidden;
  }
  
  .productrange-image {
    width: 100%;
    object-fit: cover; /* Ensures the image maintains its aspect ratio without distortion */
}

  
  .label {
    background-color: #0956a4;
    color: #fff;
    font-size: 18px !important;
    text-transform: uppercase;
    padding: 6px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    font-family: 'Special Gothic Condensed One';
	font-weight:400 !important;
}
  
  /* Responsive Design */
  @media (max-width: 1024px) {
    .productrange-container {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .productrange-container {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 480px) {
    .productrange-container {
      display: flex;
      gap: 10px;
      align-items: center;
      flex-wrap: nowrap;/* Prevent items from wrapping */
      overflow-x: scroll;  /* Enable horizontal scrolling */
      scroll-snap-type: x mandatory; /*Ensure snapping behavior*/
      scrollbar-width: thin; /* Optional: to make the scrollbar thinner */
      padding-right: 10px;
      padding-bottom: 20px;
    }
  
    .productrange-item {
      flex: 0 0 auto; /* Prevent item from shrinking */
      width: 70vw; /* Ensure one item takes up most of the viewport */
      scroll-snap-align: start; /* Ensure items snap into place */
    }
  
  
  }
  