  /* Smooth product animation */
  .item {
    transition: opacity 0.35s ease, transform 0.35s ease;
  }

  .item.pagination-hidden {
    display: none !important;
  }

  .item.pagination-show {
    animation: productFadeIn 0.5s ease forwards;
  }

  @keyframes productFadeIn {
    from {
      opacity: 0;
      transform: translateY(25px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Pagination design */
  .product-pagination {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 25px;
    flex-wrap: wrap;
  }

  .product-pagination button {
    width: 42px;
    height: 42px;
    border: 1px solid #890c0b;
    background: #ffffff;
    color: #890c0b;
    font-size: 15px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .product-pagination button:hover {
    background: #890c0b;
    color: #ffffff;
    transform: translateY(-3px);
  }

  .product-pagination button.active {
    background: #890c0b;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(137, 12, 11, 0.25);
  }

  /* Mobile */
  @media (max-width: 576px) {
    .product-pagination button {
      width: 38px;
      height: 38px;
    }
  }