
    .products-container {
      max-width: 1120px;
      margin-left: auto;
      margin-right: auto;
      padding: 32px 16px;
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      gap: 32px;
      text-align: center;
    }

    @media (min-width: 640px) {
      .products-container {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 768px) {
      .products-container {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    .product-item {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .product-image {
      width: 250px;
      height: 250px;
      object-fit: cover;
      margin-bottom: 16px;
    }

    .product-category {
      color: #9ca3af; /* gray-400 */
      font-size: 0.875rem; /* text-sm */
      margin-bottom: 4px;
    }

    .product-title {
      font-weight: 700;
      font-size: 1rem;
      margin-bottom: 4px;
    }

    .product-stars {
      display: flex;
      justify-content: center;
      gap: 4px;
      margin-bottom: 4px;
      color: #ffb347;
      font-size: 0.875rem;
    }

    .product-price {
      font-weight: 600;
      font-size: 0.875rem;
      margin-bottom: 16px;
    }

    .product-button {
      background-color: #facc15; /* yellow-400 */
      color: white;
      font-weight: 600;
      font-size: 0.75rem;
      text-transform: uppercase;
      padding: 12px 24px;
      border: none;
      border-radius: 0.375rem;
      cursor: pointer;
      transition: background-color 0.3s ease;
      width: 160px;
    }

    .product-button:hover {
      background-color: #eab308; /* yellow-500 */
    }
