/* Offer listings (/oferti and the category pages): only what paging needs.
   Layout stays the template's (.grid-featured-tours-item, .pagination). */

/* cards beyond the current page (listing.js); without JS every card stays visible */
html.w-mod-js .ih-page-hidden { display: none; }

/* the Previous button sits in the template's empty first pagination cell */
.pagination .w-pagination-previous { display: block; }
.pagination .w-pagination-previous .w-pagination-previous-icon { margin-right: 4px; }

/* cards of a newly opened page fade up like the template's load animation */
@keyframes ih-card-in {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: none; }
}
.ih-page-in { animation: ih-card-in .7s cubic-bezier(.22, .61, .36, 1) both; animation-delay: calc(var(--ih-i, 0) * 80ms); }
@media (prefers-reduced-motion: reduce) { .ih-page-in { animation: none; } }
