.featured-section {
    margin-top: 0;
    margin-bottom: 30px;
    text-align: left;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.featured-section .CatTitle {
    margin-bottom: 1px;
    background-color: var(--button-color);
    background: linear-gradient(to bottom right, var(--button-color), var(--header-bg-color));
    color: var(--page_Text_color);
    padding: 8px;
    font-family:'Segoe UI', Tahoma, Verdana, sans-serif;
    font-weight: bold;
}

.featured-section .category {
  color: var(--page_Text_color);
  padding: 6px;
  display: flex;
  overflow-x:auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Show scrollbar for IE and Edge */
.featured-section .category::-ms-scrollbar {
  display:block;
}

/* Show scrollbar for Firefox */
.featured-section .category::-webkit-scrollbar {
  display:block;
}

/* Set the width and height of the scrollbar */
.featured-section ::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

/* Set the background color of the scrollbar */
.featured-section ::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}

/* Set the color and shape of the scrollbar thumb */
.featured-section ::-webkit-scrollbar-thumb {
  background-color: var(--button-color);
  border-radius: 5px;
}

.featured-section .category .item {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-radius: 4px;
    text-align: center;
    overflow: hidden;
    margin-left: 10px;
    min-width: 0; /* allow items to shrink if necessary */
    flex-shrink: 0; /* prevent items from shrinking too much */
    box-sizing: border-box;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
    cursor: pointer;
    width: 250px;
  }

  .featured-section .category .item .desc-title{
    font-size: 12px;
  }
  
  .featured-section .category .item img {
    width: 100%;
    height: 200px;
    border: 0;
    object-fit: cover;
  }
  
  .featured-section .category .item a {
    text-decoration: none;
    color: var(--page_Text_color);
  }

  .featured-section .category .item h3 {
    margin: 0;
    padding: 10px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
  }

  .featured-section .category .left-span {
    position:sticky;
    display: inline;
    text-align: left;
    left: 0;
    font-size: 2.8em;
    opacity: 0.4;
    cursor: pointer;
    padding-left: 10px;
    margin-top: 15vh;
  }

  .featured-section .category .right-span {
    position:sticky;
    display: inline;
    text-align: right;
    right: 0;
    font-size: 2.8em;
    opacity: 0.4;
    cursor: pointer;
    padding-right: 10px;
    margin-top: 15vh;
  }
  

  /* Products Style */

  .featured-section .ProductsTitle {
    margin-bottom: 1px;
    background-color: var(--button-color);
    background: linear-gradient(to bottom right, var(--button-color), var(--header-bg-color));
    color: var(--page_Text_color);
    padding: 8px;
    font-family:'Segoe UI', Tahoma, Verdana, sans-serif;
    font-weight: bold;
}

.featured-section .product {
    color: var(--page_Text_color);
    padding: 6px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.featured-section .product .item {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-radius: 4px;
    text-align: center;
    overflow: hidden;
  }
  
  .featured-section .product .item img {
    max-width: 200px;
    max-height: 200px;
    border: 0;
    object-fit: cover;
  }
  
  .featured-section .product .item a {
    text-decoration: none;
    color: var(--page_Text_color);
  }

  .featured-section .product .item h3 {
    margin: 0;
    padding: 10px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
  }

  @media screen and (max-width: 768px) {
    .featured-section .category .item {
      width: 100%;
      margin-left: 0;
      margin-right: 10px;
      border-radius: 0;
    }

    .featured-section .category .item:last-child {
      margin-right: 0;
    }
    .featured-section .category {
      padding: 0;
    }

    /* Show scrollbar for IE and Edge */
    .featured-section .category::-ms-scrollbar {
      display:none;
    }
    /* Show scrollbar for Firefox */
    .featured-section .category::-webkit-scrollbar {
      display:none;
    }
  }