    .products {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      padding: 40px;
      justify-items: center;
    }

    .product {
      text-align: center;
      margin-bottom: 40px;
    }

    .product:hover {
      cursor: pointer;
    }

    .product img {
      width: 100%;
      max-width: 800px;
      height: auto;
      border-radius: 4px;
    }

    .product .title {
      margin-top: 10px;
      font-size: 14px;
      color: #555;
    }

    .product .price {
      margin-top: 5px;
      font-size: 16px;
      font-weight: bold;
      color: #4682B4;
    }

    /* ✅ Mobile: 2 columns, 6 rows */
    @media (max-width: 767px) {
      .products {
        grid-template-columns: repeat(2, 1fr);
      }

      .product img {
        max-width: 100%;
      }

      .product .title {
        font-size: 12px;
      }
    }

    /* Pagination */
    #pagination {
      display: flex;
      gap: 6px;
      justify-content: center;
      margin-top: 20px;
      margin-bottom: 30px;
      flex-wrap: wrap;
    }

    #pagination button {
      padding: 6px 12px;
      border: 1px solid #ccc;
      background: white;
      cursor: pointer;
      border-radius: 4px;
      font-size: 14px;
    }

    #pagination button.active {
      background: #337ab7;
      color: white;
      border-color: #337ab7;
    }

    #pagination button:disabled {
      opacity: 0.5;
      cursor: not-allowed;
    }

    #pagination .dots {
      padding: 6px 12px;
      color: #555;
      border: none;
      background: transparent;
      cursor: default;
    }