/*
Theme Name: Trinity Stores
Theme URI: https://trinitystores.com
Author: Trinity
Description: A brutalist, streetwear-inspired custom theme for WooCommerce.
Version: 1.0
*/

/* Custom animations and hide scrollbar */
@keyframes marquee {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-100%); }
}

.animate-marquee {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}