.btn {
  font-size: 0.8em;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-weight: 300;
}

.noScroll {
  overflow: hidden !important;
}

.btn {
  display: inline-block;
  color: #fff;
  text-align: center;
  padding: 0.5em 1em;
  white-space: wrap;
  border-radius: 50px;
}

.product__btn-2 {
  position: static;
  margin-top: 1em;
  bottom: 0em;
  right: 0em;
  background-color: rgba(8, 8, 8, 0.95);
  transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 30px 25px -10px rgba(0, 0, 0, 0.15);
}
.product__btn-2:hover {
  box-shadow: 0 36px 28px -20px rgba(0, 0, 0, 0.2);
  background-color: #0d0d0d;
}

.productCard {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  align-content: center;
  width: 100%;
  min-height: 100vh;
  position: relative;
  perspective: 100px;
}
.productCard.morph .container .colorLayer {
  width: 70%;
  transform: none;
  transition-delay: 0s;
}
.productCard.morph .container .colorLayer:after {
  opacity: 1;
  transition-delay: 0.2s;
}
.productCard.morph .container .preview {
  width: 100%;
}
.productCard.morph .container .preview .brand {
  top: 0px;
}
.productCard.morph .container .preview .zoomControl {
  opacity: 0;
  pointer-events: none;
  transition-delay: 0s;
}
.productCard.morph .container .preview .closePreview {
  opacity: 1;
  pointer-events: all;
  transition-delay: 0.3s;
}
.productCard .container {
  width: 90%;
  margin: 0 auto;
  padding: 50px;
  background-color: #f93600;
  border-radius: 20px;
  box-sizing: border-box;
}
.productCard .container .info {
  font-family: Kanit, sans-serif;
  color: white;
  font-weight: 300;
  width: calc(50% - 50px);
}
.productCard .container .info .name {
  font-size: 16px;
  text-transform: uppercase;
}
.productCard .container .info .slogan {
  margin: 10px 0;
  font-size: 30px;
}
.productCard .container .info .price {
  font-size: 25px;
  font-weight: 900;
}
.productCard .container .info .attribs .attrib {
  margin-top: 40px;
}
.productCard .container .info .attribs .attrib.size .optionsactiv .option {
  color: #707070;
  border-color: #707070;
  background-color: #707070;
}
.productCard .container .info .attribs .attrib .header {
  margin-bottom: 5px;
  color: #fff;
  font-weight: 600;
}
.productCard .container .info .attribs .attrib .options {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  align-content: center;
}
.productCard .container .info .attribs .attrib .options .option {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  align-content: center;
  width: 35px;
  height: 35px;
  margin: 10px 10px 0 0;
  font-size: 14px;
  font-weight: 600;
  color: white;
  border-radius: 5px;
  border: 1px solid white;
  cursor: pointer;
  user-select: none;
  transition: ease all 0.3s;
}
.productCard .container .info .attribs .attrib .options .option:hover {
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
}
.productCard .container .colorLayer {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-color: darkgrey;
  transform: rotateY(-8deg);
  transform-origin: right;
  perspective: 100px;
  transition: ease all 0.3s 0.2s;
}
.productCard .container .colorLayer:after {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  width: 50%;
  height: 100%;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.7);
  transition: ease all 0.3s;
}
.productCard .container .preview {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  align-content: center;
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  user-select: none;
  overflow: hidden;
  transition: ease all 0.3s;
}
.productCard .container .preview .brand {
  position: absolute;
  top: 60px;
  width: 100%;
  height: 300px;
  font-size: 8rem;
  text-align: center;
  color: rgba(237, 237, 237, 0.6);
  text-transform: uppercase;
  overflow: hidden;
  transition: ease all 0.3s;
}
.productCard .container .preview .imgs {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  align-content: center;
  width: 100%;
  height: 100%;
}
.productCard .container .preview .imgs img {
  position: absolute;
  top: 0;
  width: 80%;
  height: 100%;
  object-fit: contain;
  transform: translate(50%, -10%) rotate(-20deg);
  opacity: 0;
  pointer-events: none;
  transition: ease all 0.3s;
}
.productCard .container .preview .imgs img.activ {
  opacity: 1;
  transform: none;
}
.productCard .container .preview .zoomControl {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  align-content: center;
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid #fff;
  background-color: rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: ease all 0.3s 0.5s;
}
.productCard .container .preview .zoomControl:before, .productCard .container .preview .zoomControl:after {
  content: "";
  position: absolute;
}
.productCard .container .preview .zoomControl:before {
  top: 20%;
  left: 20%;
  width: 40%;
  height: 40%;
  border-radius: 50%;
  border: 2px solid #fff;
}
.productCard .container .preview .zoomControl:after {
  bottom: 20%;
  right: 20%;
  width: 2px;
  height: 30%;
  background-color: #fff;
  transform: rotate(-45deg);
  transform-origin: bottom left;
}
.productCard .container .preview .closePreview {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  align-content: center;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  opacity: 0;
  cursor: pointer;
  pointer-events: none;
  transition: ease all 0.3s;
}
.productCard .container .preview .closePreview:before, .productCard .container .preview .closePreview:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #fff;
  transform: rotate(45deg);
}
.productCard .container .preview .closePreview:after {
  transform: rotate(-45deg);
}
.productCard .container .preview .movControls {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  align-content: center;
  position: absolute;
  bottom: 150px;
}
.productCard .container .preview .movControls .movControl {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  align-content: center;
  width: 40px;
  height: 30px;
  margin: 0 15px;
  position: relative;
  cursor: pointer;
}
.productCard .container .preview .movControls .movControl.left {
  transform: rotateY(180deg);
}
.productCard .container .preview .movControls .movControl:before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
}
.productCard .container .preview .movControls .movControl:after {
  content: "";
  width: 10px;
  height: 10px;
  border: 2px solid #fff;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
}

@media only screen and (max-width: 768px) {
  body * {
    cursor: default !important;
  }

  .productCard.morph .container .colorLayer {
    width: 100%;
    height: 80vh;
  }
  .productCard.morph .container .preview {
    width: 100%;
    height: calc(80vh - 100px);
  }
  .productCard.morph .container .preview .brand {
    top: 0;
  }
  .productCard .container {
    width: 100%;
  }
  .productCard .container .info {
    font-family: Kanit, sans-serif;
    width: 100%;
    margin-bottom: 450px;
    text-align: center;
  }
  .productCard .container .info .attribs .attrib .options {
    justify-content: center;
  }
  .productCard .container .info .attribs .attrib .options .option {
    margin: 10px;
  }
  .productCard .container .info .buttons {
    justify-content: center;
    margin-top: 10px;
  }
  .productCard .container .info .buttons .button {
    margin: 20px;
  }
  .productCard .container .colorLayer {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 300px;
    transform: none;
  }
  .productCard .container .colorLayer:after {
    top: -20vh;
    right: 0;
    width: 100%;
    height: 20vh;
  }
  .productCard .container .preview {
    top: auto;
    bottom: 50px;
    width: 100%;
    height: 400px;
  }
  .productCard .container .preview .brand {
    top: -10px;
    left: 0;
    text-align: center;
  }
  .productCard .container .preview .closePreview {
    top: 0;
  }
  .productCard .container .preview .movControls {
    bottom: 0;
  }
}
@media only screen and (max-width: 500px) {
  .productCard .container .info {
    margin-bottom: 300px;
  }
  .productCard .container .info .buttons .button {
    width: 100%;
    margin: 20px 0 0 0;
  }
  .productCard .container .colorLayer {
    height: 200px;
  }
  .productCard .container .preview {
    height: 250px;
  }
  .productCard .container .preview .brand {
    height: 200px;
    font-size: 4rem;
  }
}