/*
Theme Name: Komandir Store
Description: Премиальная тема для магазина экипировки.
Author: Ваш разработчик
Version: 1.0
Text Domain: komandir
*/

/* Базовые сбросы */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: 'Helvetica Neue', Arial, sans-serif; /* Позже подключим нужный шрифт */
    color: #333;
    background-color: #fafafa;
}
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
/* Анимация бегущей строки */
@keyframes marquee {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

.animate-marquee {
  animation: marquee 25s linear infinite;
  display: flex;
  width: max-content;
}
/* Остановка анимации при наведении мыши (по желанию) */
.animate-marquee:hover {
  animation-play-state: paused;
}