/* PRODUCT GRID - MINIMAL */
.grid-item {
	margin-bottom: 30px;
}

.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;
	overflow: hidden;
}

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

.item-name {
  text-align: center;
  overflow-wrap: break-word;
  word-wrap: break-word;
  display: block;
  flex-direction: columns;
  text-transform: uppercase;
  padding: 0 1vw;
}

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

.grid-item p {
  display: block;
}
