.featured-products-container {
  gap: 50px;
  padding-bottom: 50px;

  @include tablet {
    flex-direction: column;
    padding: 0 50px 50px 50px;
  }

  @include lg-phone {
    flex-direction: column;
    padding: 0 50px 50px 50px;
  }

  @include m-phone {
    flex-direction: column;
    padding: 0 50px 50px 50px;
  }

  @include sm-phone {
    flex-direction: column;
    padding: 0 50px 50px 50px;
  }

  h2 {
    font-size: 55px;
    padding-left: 100px;
    max-width: 400px;
    font-weight: normal;

    @include tablet {
      padding-left: unset;
      font-size: 40px;
      text-align: center;
      max-width: unset;
    }

    @include lg-phone {
      padding-left: unset;
      font-size: 40px;
      text-align: center;
      max-width: unset;
    }

    @include m-phone {
      padding-left: unset;
      font-size: 40px;
      text-align: center;
      max-width: unset;
    }

    @include sm-phone {
      padding-left: unset;
      font-size: 40px;
      text-align: center;
      max-width: unset;
    }
  }

  .featured-products {
    gap: 40px;
    overflow-x: scroll;
    padding: 0 0 100px 0;
    width: 100%;

    &::-webkit-scrollbar {
      height: 5px; // Scrollbar thickness
    }

    &::-webkit-scrollbar-track {
      background: $lightGrey; // Track background
      border-radius: 10px;
    }

    &::-webkit-scrollbar-thumb {
      background: $charcoal; // Scrollbar thumb color
      border-radius: 10px;
      transition: background 0.3s ease;
      cursor: pointer;

      &:hover {
        background: darken($charcoal, 15%); // Darker shade on hover
      }
    }

    @include m-phone {
      gap: 20px;
    }

    @include sm-phone {
      gap: 20px;
    }

    .product-box {
      .product {
        flex-grow: 1;
        width: 450px;
        padding: 20px;
        justify-content: center;

        @include m-phone {
          width: 280px;
        }

        @include sm-phone {
          width: 280px;
        }

        img {
          width: 100%;
        }

        p {
          margin: 5px;
        }

        .product-name {
          text-transform: uppercase;
          font-weight: bold;
        }
      }
      .product-divider {
        width: 1px;
        height: auto;
        background: $lightGrey;
      }
    }
  }
}
