/* Accessibility — touch targets, contrast (apply_a11y.py) */

/* Minimum 44×44px touch targets */
#pull,
.container-slider__slider .slick-arrow,
.footer_contacts__socials a,
.nav-desktop a,
.container-header nav ul li a {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer_contacts__socials a {
  font-size: 1.35rem;
}

/* Contrast: form footer on semi-transparent panel */
.bg-frontpage__form__footer,
.bg-frontpage__form__footer p {
  color: #424242;
}

/* Contrast: secondary footer/meta text */
.time_address__time span:last-child,
.time_address__address span:last-child a {
  color: #1a1a1a;
}

/* Skip link (visible on focus) */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 100000;
  padding: 12px 20px;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  overflow: visible;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
