/* COLORS */
/* TYPOGRAPHY */
/* ---- MEDIA QUERIES ----- */
.product-info .content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  margin: 12rem 0 0;
}
.product-info .text-content {
  padding: 6.8rem 0 0;
}
.product-info .text-content .heading {
  margin: 0 0 1.3rem;
}
.product-info .text-content .subheading {
  font-size: 2.6rem;
  line-height: 3rem;
  font-weight: 500;
  font-family: "Khand", sans-serif;
  margin: 0 0 2.6rem;
}
.product-info .text-content .tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 3rem 0 0;
}
.product-info .text-content .tag-cloud .tag {
  white-space: nowrap;
}
.product-info .main-image {
  border: 1px solid rgba(207, 212, 217, 0.77);
  overflow: hidden;
  border-radius: 0.9rem;
  position: relative;
}
.product-info .main-image .image-tag {
  position: absolute;
  top: 2.6rem;
  left: 3rem;
}
.product-info .main-image .image-tag:hover {
  background-color: #E7F1FA;
  color: #234867;
  cursor: default;
}
.product-info .video-container {
  margin: 3.3rem 0 0;
}
.product-info .gallery .thumbnails {
  margin: 3.1rem 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.6rem;
}
.product-info .gallery .gallery-thumb {
  border: 1px solid rgba(207, 212, 217, 0.77);
  overflow: hidden;
  border-radius: 0.9rem;
}
.product-info .gallery .gallery-thumb.active {
  border: 1px solid #7CB0E1;
}
.product-info .gallery .gallery-thumb:hover {
  cursor: pointer;
}
.product-info .gallery .gallery-thumb.hidden {
  display: none;
}
.product-info .gallery .gallery-thumb.has-more {
  position: relative;
}
.product-info .gallery .gallery-thumb.has-more::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.product-info .gallery .gallery-thumb.has-more::before {
  content: url("../../../assets/icons/gallery_more.svg");
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  z-index: 2;
}
.product-info .gallery .gallery-thumb.has-more span {
  font-size: 1.9rem;
  color: #fff;
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

@media (max-width: 1280px) {
  .product-info .content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5.7rem;
    margin: 9rem 0 0;
  }
  .product-info .text-content {
    padding: 3.3rem 0 0;
  }
  .product-info .text-content .heading {
    margin: 0 0 0.9rem;
  }
  .product-info .text-content .subheading {
    font-size: 2.2rem;
    line-height: 2.5rem;
    margin: 0 0 2.3rem;
  }
  .product-info .text-content .tag-cloud {
    gap: 0.6rem 0.5rem;
    margin: 2.3rem 0 0;
  }
  .product-info .video-container {
    margin: 2.5rem 0 0;
  }
  .product-info .gallery .thumbnails {
    margin: 2.5rem 0 0;
    gap: 2.9rem;
  }
  .product-info .gallery .gallery-thumb.has-more span {
    font-size: 1.7rem;
    bottom: 3.5rem;
  }
  .product-info .main-image .image-tag {
    top: 2.2rem;
    left: 2.4rem;
  }
}
@media (max-width: 955px) {
  .product-info .gallery .gallery-thumb.has-more span {
    bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .product-info .content {
    gap: 2.9rem;
  }
  .product-info .text-content {
    padding: 3.2rem 0 0;
  }
  .product-info .text-content .heading {
    margin: 0 0 1.1rem;
  }
  .product-info .text-content .subheading {
    margin: 0 0 2rem;
  }
  .product-info .text-content .tag-cloud {
    gap: 0.4rem;
  }
  .product-info .video-container {
    margin: 1.7rem 0 0;
  }
  .product-info .gallery .thumbnails {
    margin: 1.7rem 0 0;
    gap: 1.9rem;
  }
  .product-info .gallery .gallery-thumb.has-more span {
    display: none;
  }
  .product-info .main-image .image-tag {
    top: 1.3rem;
    left: 1.5rem;
  }
}
@media (max-width: 600px) {
  .product-info .content {
    grid-template-columns: 1fr;
    gap: 2.6rem;
  }
  .product-info .text-content {
    padding: 0;
  }
}
@media (max-width: 450px) {
  .product-info .content {
    margin-top: 6.2rem;
    gap: 2.2rem;
    padding: 0 27px;
  }
  .product-info .text-content .heading {
    margin: 0 0 1.1rem;
  }
  .product-info .text-content .subheading {
    margin: 0 0 1.4rem;
  }
  .product-info .text-content .tag-cloud {
    gap: 0.4rem;
  }
  .product-info .video-container {
    margin: 1.7rem 0 0;
  }
  .product-info .gallery .thumbnails {
    margin: 1.5rem 0 0;
    gap: 1.8rem;
  }
}