/* TEST - CUSTOM THEME */

body {
  background: #050505 !important;
}

a,
button {
  transition: all 0.25s ease !important;
}

a:hover,
button:hover {
  transform: translateY(-3px) !important;
  filter: brightness(1.25) !important;
}

img {
  transition: transform 0.4s ease !important;
}

img:hover {
  transform: scale(1.05) !important;
}

::selection {
  background: white !important;
  color: black !important;
}
/* Mobile: 2 products per row */
@media (max-width: 600px) {
  .products {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }
}
/* 2 products per row on mobile */
@media (max-width: 639px) {
  .component [class*="w-full"][class*="sm:w-"] {
    width: calc((100% - 1rem) / 2) !important;
  }
}