    /* Your existing styles go here */
    .product-image {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .product-image:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

    .product-card {
      transition: box-shadow 0.3s ease, transform 0.3s ease;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    .product-card:hover {
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
      transform: translateY(-8px);
    }

    .add-to-cart {
      transition: background-color 0.3s ease, transform 0.3s ease;
    }
    .add-to-cart:hover {
      background-color: #27ae60;
      transform: translateY(-2px);
    }

    /* CSS for multi-line truncation */
    .product-description {
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    /* Carousel Styles */
    .carousel-container {
      position: relative;
      width: 100%;
      height: 150px; /* Reduced height to make space for the title */
      overflow: hidden;
      border-radius: 12px;
      margin-bottom: 6px; /* Reduced bottom margin */
    }
    .carousel-images {
      display: flex;
      transition: transform 0.3s ease;
    }
    .carousel-images img {
      width: 100%;
      object-fit: cover;
      border-radius: 12px;
    }
    .carousel-button {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background-color: rgba(0, 0, 0, 0.5);
      color: white;
      padding: 10px;
      border: none;
      cursor: pointer;
      border-radius: 50%;
      z-index: 10;
    }
    .carousel-button-left {
      left: 10px;
    }
    .carousel-button-right {
      right: 10px;
    }

    /* Hero Section */
    .hero {
      background-image: url('https://th.bing.com/th/id/R.daf60b9f84884c9d2ebf8b81d00db598?rik=R5FWIID1RDqzRA&riu=http%3a%2f%2fwww.lowellstudentassociation.org%2fuploads%2f2%2f1%2f6%2f8%2f21682486%2f39082984-595743754156927-1387158884807868416-n_orig.png&ehk=K1RkzKVGrcZNwQ5xt6kPEvMxE2KA%2bIj7t2tDRDFZlQ0%3d&risl=&pid=ImgRaw&r=0');
      background-size: cover;
      background-position: center;
      height: 60vh;
      display: flex;
      justify-content: center;
      align-items: center;
      color: white;
      text-shadow: 0 4px 6px rgba(0, 0, 0, 0.6);
    }
    .hero h1 {
      font-size: 3rem;
      font-weight: 800;
    }
    .hero p {
      font-size: 1.25rem;
      margin-top: 12px;
      font-weight: 500;
    }

    /* Category Filter Styles */
    .category-filter {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 1.5rem;
    }

    .category-filter-item {
      padding: 8px 16px;
      background-color: #f1f5f9;
      border-radius: 12px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .category-filter-item:hover {
      background-color: #34d399;
      color: white;
    }

    .category-filter-item.active {
      background-color: #10b981;
      color: white;
    }

    /* Search Bar Styles */
    .search-bar {
      display: flex;
      gap: 10px;
    }

    .search-bar input {
      padding: 10px;
      border-radius: 8px;
      border: 1px solid #e2e8f0;
    }

    .search-bar button {
      padding: 10px;
      background-color: #3182ce;
      color: white;
      border-radius: 8px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .search-bar button:hover {
      background-color: #2b6cb0;
    }
