 body {
    margin: 0;
    padding-top: 40px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f7f7f7;
    overflow-x: hidden !important;
  }



  .product-row::-webkit-scrollbar {
    display: none !important;
  }


  

  /* Main wrapper */
  .main-wrapper {
    width: 97%;
    margin: 30px auto;
    background: #0a606a;
    padding-bottom: 0px;
    border-radius: 10px;
    padding: 0;
    /* margin-top: 40px; */
  }


  .awning {
    width: 100%;
    height: 1px;
    background: #29a5b4;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }

  .awning div {
    width: 120px;
    height: 60px;
    background: #054e57;
    border-radius: 0 0 60px 60px;
  }

  .heading {
    text-align: center;
    color: white;
    font-size: 30px;
    font-weight: 400;
    margin: 5px 0;
    position: relative;
    top: 20px;
  }

  /* SLIDER */
  .banner-container {
    width: 96%;
    margin: auto;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
  }

  .slider-img {
    width: 100%;
    height: 290px;
    object-fit: contain !important;
    display: none;
  }

  .active-slide {
    display: block;
  }

  /* arrows */
  .arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    background: rgba(0, 0, 0, 0.4);
    color: white;
    padding: 10px 15px;
    font-size: 24px;
    border-radius: 5px;
    user-select: none;
  }

  .left-arrow {
    left: 2px;
  }

  .right-arrow {
    right: 2px;
  }












  

  /* CATEGORY SECTION */

  .category-section {
    display: flex;
    gap: 58px;
    padding: 40px 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    white-space: nowrap;

    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .category-section a {
    text-decoration: none;
  }

  .category-section::-webkit-scrollbar {
    height: 6px;
    display: none;
  }

  .category-section::-webkit-scrollbar-thumb {
    background: #b5b5b5;
    border-radius: 50px;
  }

  .category-card {
    min-width: 120px;
    flex-shrink: 0;
    text-align: center;
  }

  .category-card img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
  }

  .category-card p {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #222;
  }









  


  /* ===========================================
   RESPONSIVE CLEANED VERSION (NO DUPLICATION)
=========================================== */

  /* ======== 768px BELOW (Tablet + Mobile) ======== */
  @media (max-width: 768px) {

 /* BANNER */
    .banner-container {
      width: 95%;
      margin-top: 10px;
    }

    .slider-img {
      height: 100px;
      object-fit: contain !important;
    }

    .arrows {
      padding: 6px 10px;
      font-size: 20px;
    }








    
    /* CATEGORY */
    .category-section {
      gap: 25px;
      padding: 20px 10px;
    }

    .category-card {
      min-width: 90px;
    }

    .category-card img {
      height: 70px;
    }

    .category-card p {
      font-size: 13px;
      margin-top: 6px;
    }





    }