.home-new-arrivals {
  // max-width: 1640px;
  width: 100%;
  margin: 0 auto;
  padding: 100px 0;

  .new-arrivals-header {
    width: 100%;

    h2 {
      text-align: center;
    }
  }

  .new-arrivals-container {
    padding: 50px 0;
    width: 100%;

    &::-webkit-scrollbar {
      height: 7px; // 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
      }
    }

    .new-arrivals {
      gap: 40px;

      @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%;
            aspect-ratio: 1 / 1;
            object-fit: contain;
            object-position: center;
          }

          p {
            margin: 5px;
          }

          .product-name {
            text-transform: uppercase;
            font-weight: bold;
          }
        }

        .product-divider {
          width: 1px;
          height: auto;
          background: $lightGrey;
        }
      }
    }
  }
}
