/* SINGLE PRODUCT PAGE */

.single-product .single-product-img {
  width: 100%;
  max-height: 400px;
  border: 1px solid var(--lightGrey);
  border-radius: 2px;
  object-fit: contain;
}

.single-product .placeholder-img {
  width: 100%;
  height: 380px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--lightGrey);
  border-radius: 2px;
}

.single-product .product-content-description {
  margin-bottom: 40px;
  color: var(--lightDarkBlue);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2.1rem;
}

.single-product .product-content-details {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  row-gap: 16px;
  column-gap: 24px;
  margin-bottom: 40px;
}

.single-product .product-content-details > div {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--darkBlue);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4rem;
}

.single-product .product-content-details > div > img {
  max-width: 24px;
}

.single-product .product-content-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.single-product .product-content-actions .button-download {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--darkBlue);
  font-size: 1rem;
  line-height: 1.3rem;
  text-decoration: none;
}

.single-product .product-content-actions .button-download:hover {
  text-decoration: underline;
}

.single-product .product-middle-content h3 {
  margin-bottom: 24px;
}

.footer-single-product-print {
  display: none;
}


/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {

  .single-product .product-top-content > .kt-row-column-wrap {
    column-gap: 65px;
  }
}

@media (max-width: 768px) {
  
  .single-product .single-product-img {
    max-height: 320px;
  }
}

@media (max-width: 480px) {

  .single-product .single-product-img {
    max-height: 260px;
  }
}