.product-container,
.product-container * {
  user-select: none;
  /* Disable text selection */
}
 /* Highlighted Products Section */
 .highlighted-products {
    margin-top: 20px;
    padding: 20px;
    background-color: var(--background-color);
  }
 
  .highlighted-products h2 {
    margin-bottom: 10px;
    font-size: 1.8rem;
    color: #333;
    text-align: center;
  }
 
  .product-container {
    display: flex;
    /* Switch to flex for horizontal scrolling */
    gap: 10px;
    overflow-x: auto;
    /* Enable horizontal scroll */
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    /* Optional: snap scrolling */
  }
 
  .product-container::-webkit-scrollbar {
    height: 6px;
  }
 
  .product-container::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 3px;
  }
 
  .product-container.active {
    cursor: grabbing;
  }
 
  .product {
    flex: 0 0 calc(25% - 10px);
    /* Set width to 25% to fit four items */
    min-width: 200px;
    padding: 10px;
    background-color: var(--background-color);
    text-align: center;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    scroll-snap-align: center;
    /* Optional: snap to center on scroll */
  }
 
  .product:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 51, 0, 0.3);
  }
 
  .product img {
    width: 100%;
    height: auto;
    max-height: 150px;
    margin-bottom: 10px;
    object-fit: cover;
    pointer-events: none;
  }
 
  .product-name {
    font-size: 1.1rem;
    margin-bottom: 5px;
  }
 
  .product-price {
    font-size: 1rem;
    color: #333;
    font-weight: bold;
  }
 