.contact-fixed {
  position: fixed;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

.btn-primary {
  background-color: #be7e04 !important;
  border: #be7e04 !important;
}
.btn-secondary {
  background-color: #556f03 !important;
  border: #556f03 !important;
}

.img-zoomin {
  transition: 0.5s;
  height: auto;
}

.img-zoomin:hover {
  transform: scale(1.1);
}

.thumbnail img {
  cursor: pointer;
  opacity: 0.6;
  border: 2px solid transparent;
}
.thumbnail img.active {
  border: 2px solid #000;
  opacity: 1;
}

.foto-product-detail {
  /* the coordinate of the zoom */
  --x: 50%;
  --y: 50%;
  /**/
  transform: scale(var(--zoom));
  transform-origin: var(--x) var(--y);
  clip-path: inset(
    calc((1 - 1 / var(--zoom)) * (var(--y)))
      calc((1 - 1 / var(--zoom)) * (100% - var(--x)))
      calc((1 - 1 / var(--zoom)) * (100% - var(--y)))
      calc((1 - 1 / var(--zoom)) * (var(--x)))
  );
  /* width: 200px; */
  cursor: crosshair;
}

.foto-product-detail:hover {
  --zoom: 2; /* control the zoom level */
}

.modal-detail-img-product {
  margin: 0;
  display: grid;
  grid-auto-flow: column;
  grid-gap: 20px;
  place-content: center;
  overflow: hidden;
}

.hero-area .owl-prev,
.hero-area .owl-next {
  padding-top: 0px !important;
}
