.offer-pagination {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.offer-pagination[hidden] { display: none; }

.offer-pagination-meta {
  display: grid;
  gap: 3px;
  min-width: 150px;
}

.offer-pagination-meta strong {
  color: var(--ink);
  font-size: 14px;
  font-variant-numeric: tabular-nums;
}

.offer-pagination-meta span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.offer-pagination-controls,
.offer-page-numbers {
  display: flex;
  align-items: center;
  gap: 6px;
}

.offer-page-nav,
.offer-page-number {
  height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  font-variant-numeric: tabular-nums;
}

.offer-page-nav {
  display: inline-flex;
  min-width: 88px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 12px;
}

.offer-page-nav span { font-size: 20px; line-height: 1; }
.offer-page-nav b { font-size: 12px; }
.offer-page-number { width: 38px; padding: 0; }
.offer-page-number.is-active { border-color: var(--cyan); background: var(--cyan); color: #fff; }
.offer-page-nav:disabled { cursor: not-allowed; opacity: 0.38; }
.offer-page-nav:not(:disabled):hover,
.offer-page-number:not(.is-active):hover { border-color: var(--cyan); color: #087f8f; }
.offer-page-ellipsis { width: 18px; color: var(--muted); font-size: 14px; text-align: center; }

@media (max-width: 680px) {
  .offer-pagination {
    min-height: 0;
    align-items: stretch;
    flex-direction: column;
    gap: 11px;
    padding: 12px;
  }

  .offer-pagination-meta {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
  }

  .offer-pagination-controls { justify-content: space-between; }
  .offer-page-nav { width: 38px; min-width: 38px; padding: 0; }
  .offer-page-nav b { display: none; }
  .offer-page-numbers { min-width: 0; justify-content: center; }
  .offer-page-number { width: 34px; height: 36px; }
  .offer-page-ellipsis { width: 12px; }
}
