/* El Contraataque · common Pull to Refresh v60 */
.pull-refresh-v60 {
  --pull-distance: 0px;
  position: fixed;
  top: calc(env(safe-area-inset-top) + .55rem);
  left: 50%;
  z-index: 240;
  display: flex;
  min-height: 2.15rem;
  align-items: center;
  gap: .42rem;
  max-width: calc(100vw - 2rem);
  border: 1px solid rgba(56,45,32,.1);
  border-radius: 999px;
  padding: .42rem .68rem;
  color: #5c554e;
  background: rgba(255,255,255,.96);
  box-shadow: 0 .35rem 1rem rgba(43,32,17,.1);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, calc(-3rem + min(var(--pull-distance), 72px) * .65));
  transition: opacity .12s ease, transform .14s ease;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.pull-refresh-v60.is-visible { opacity: 1; }
.pull-refresh-v60 strong { overflow: hidden; max-width: 11rem; font-size: .61rem; font-weight: 850; line-height: 1; text-overflow: ellipsis; white-space: nowrap; }
.pull-refresh-v60__spinner {
  display: block;
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  border: 2px solid rgba(186,110,0,.2);
  border-top-color: #bd7100;
  border-radius: 50%;
}
.pull-refresh-v60.is-armed { color: #a56504; }
.pull-refresh-v60.is-refreshing .pull-refresh-v60__spinner { animation: pull-refresh-v60-spin .72s linear infinite; }
.pull-refresh-v60.is-done .pull-refresh-v60__spinner { border-color: #26a660; }
.pull-refresh-v60.is-error .pull-refresh-v60__spinner { border-color: #c64b3a; }
@keyframes pull-refresh-v60-spin { to { transform: rotate(360deg); } }
@media (min-width: 861px) and (pointer: fine) {
  .phone-frame .pull-refresh-v60 { position: absolute; max-width: calc(100% - 2rem); }
}
@media (prefers-reduced-motion: reduce) {
  .pull-refresh-v60 { transition: none; }
  .pull-refresh-v60.is-refreshing .pull-refresh-v60__spinner { animation-duration: 1.5s; }
}
