<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* PRODUCT GRID - MINIMAL */
.grid-item {
  position: relative;
}

.product-wrapper {
	padding: 1rem;
}

.product-wrapper a {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	position: relative;
}

.product-item {
	position: relative;
	padding-top:100%;
	transition: all 1s ease-out;
	background-size: cover;
	background-position: center;
}

.product-item.background-top {
  background-position: top;
}

.product-item.background-bottom {
  background-position: bottom;
}

.product-item.alt-image {
  margin-top: -100%;
  opacity: 0;
  z-index: 2;
}

.product-item img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	max-height: 100%;
	max-width: 100%;
	transition: all 0.2s ease-in, transform 1s ease;
	background-color: rgba(255, 255, 255, 0);
}

.grid-item:hover .alt-image {
  opacity: 1;
}

.item-name {
  text-align: center;
  overflow-wrap: break-word;
  word-wrap: break-word;
  font-size: 1.2rem;
  display: block;
  flex-direction: columns;
  text-transform: uppercase;
}

.old-price {
  opacity: 0.5;
  text-decoration: line-through;
}

.price {
  font-size: 1rem;
}

.grid-item p {
  display: block;
}

.sticker {
  position: absolute;
  top: 0;
  left: 2%;
  z-index: 2;
  pointer-events: none;
}

.sticker li {
  padding: 5px 10px;
  color: #ffffff;
  text-shadow: #ffffff;
  margin: 10px 0;
  z-index: 10;
  text-align: center;
  pointer-events: none;
}

.sticker .pre-order {
  background-color: #0d447d; 
}

.sticker .sale {
  background-color: rgba(91,192,91,.9); 
}

.sticker .sold-out {
  color: black;
  background-color: white; 
}</pre></body></html>