.flash-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 266px;
  height: 68px;
  font-family: 'TildaSans', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 1.55px;
  text-transform: uppercase;
  color: #ffffff;
  background-color: #39010c;
  border: 1px solid #7a2435;
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* полоса */
.flash-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 17%; /* узкая полоска */
  height: 100%;
  background: linear-gradient(
    110deg, 
    rgba(255,255,255,0.05) 0%,   /* слева почти прозрачная */
    rgba(255,255,255,0.15) 50%,  /* середина */
    rgba(255,255,255,0.40) 100%  /* справа ярче */
  );
  transform: skewX(-35deg); /* угол наклона больше вправо */
  animation: flashstripe 1.6s linear infinite; /* быстрее */
}

/* анимация полосы */
@keyframes flashstripe {
  0% { left: -50%; }
  100% { left: 120%; }
}
/* Размер иконок */
.t-sociallinks__item svg {
  width: 32px !important;
  height: 32px !important;
  transition: transform 0.3s ease, fill 0.3s ease;
}

/* Расстояние между иконками */
.t-sociallinks__item {
  margin: 0 12px !important;
}

/* Анимация для ПК */
@media (min-width: 769px) {
  .t-sociallinks__item:hover svg {
    transform: rotate(15deg) scale(1.2); /* вращение + увеличение */
  }

  .t-sociallinks__item:hover svg path {
    fill: #4B0082	!important; /* цвет при наведении */
  }
}

/* Анимация для мобильных: маятниковое качание */
@media (max-width: 768px) {
  .t-sociallinks__item svg {
    animation: mobile-swing 2s ease-in-out infinite;
    transform-origin: center;
  }

  .t-sociallinks__item svg path {
    fill: #4B0082	 !important;
  }

  @keyframes mobile-swing {
    0%   { transform: rotate(0deg); }
    25%  { transform: rotate(30deg); }
    50%  { transform: rotate(0deg); }
    75%  { transform: rotate(-30deg); }
    100% { transform: rotate(0deg); }
  }
}
@media (max-width: 768px) {
  #rec1362042671 .t-sociallinks__item svg {
    width: 44px !important;
    height: 44px !important;
  }

  #rec1362042671 .t-sociallinks__item {
    margin: 0 8px !important; /* уменьшили боковой отступ между иконками */
    transform: translateY(6px); /* опустили иконки вниз */
  }

  #rec1362042671 .t-sociallinks {
    padding-top: 16px !important; /* чуть меньше сверху */
    padding-bottom: 48px !important;
    background-color: #39010c !important;
  }
}

@media (max-width: 768px) {
  #rec1362042671 .t-sociallinks__item svg {
    width: 44px !important;
    height: 44px !important;
  }

  #rec1362042671 .t-sociallinks__item svg path {
    fill: #FFB300 !important; /* золотой цвет */
  }

  #rec1362042671 .t-sociallinks {
    padding-top: 24px !important;
    padding-bottom: 48px !important;
    background-color: #39010c !important; /* тёмный фон Harat’s */
  }
}





