/* PRODUCT GRID - MINIMAL */
.product-wrapper {
	padding: 1rem;
}

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

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

.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);
}

.product-item:hover img {
  transform: scale(1.1) rotate(1deg);
}

.item-name {
  text-align: center;
  overflow-wrap: break-word;
  word-wrap: break-word;
  font-size: 1.2rem;
  height: 130px;
  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;
  min-height: 110px;
}
