body {
  background-color: #fff;
  overflow: hidden;
}
.site-header {
    z-index: 9999;
    background-color: transparent;
}
.site-footer {
  display: none;
}
.main-navigation,
.main-navigation ul ul {
  background-color: transparent;
}
.noSelect {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.noSelect:focus {
  outline: none !important;
}
.products-container * {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.products-container:focus {
  outline: none !important;
}
.products-container {
  position: fixed;
  height: 100vh;
  width: 100vw;
  top: 0;
  left: 0;
}

.product-item {
  display: block;
  width: 300px;
  height: 300px;
  mix-blend-mode: multiply;
  /* border: 1px solid red;
    line-height: 70px; */
  font-weight: bold;
  position: absolute;
  left: 0px;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  opacity: 0;
  will-change: transform, opacity;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  perspective: 1000px;
  z-index: 10;
  transition: z-index 0s;
  background-color: #fff;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.product-item:hover {
  z-index: 999;
}
.product-image {
  height: 100%;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-info {
  display: none;
  position: absolute;
  bottom: 0;
  width: 100%;
}
