/* 1. Доступність (Accessibility): прихований текст для кнопок соцсетей */
a[href*="instagram.com"]::after,
a[href*="wa.me"]::after,
.t-toptop::after {
    content: "Social Link"; /* За замовчуванням */
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

a[href*="instagram.com"]::after { content: "Instagram"; }
a[href*="wa.me"]::after { content: "WhatsApp"; }
.t-toptop::after { content: "Go to top"; }

/* 2. Стабільність шрифтів (Fix CLS) */
/* Змушує текст з'являтися миттєво, не чекаючи завантаження файлу шрифту */
@font-face {
  font-display: swap !important;
}

body, h1, h2, h3, h4, h5, h6, p, a, div {
  font-display: swap !important;
}