/**
 * product-preview
 ============================================================================ */
.view-product-view-page .pdp-main {
  width: 90%;
  margin: 0 auto;
  display: flex;
  background: #f2f2f0;
  padding: 2% 4% 4%;
}
.view-product-view-page .pdp-main .image-section {
  width: 65%;
}
.view-product-view-page .pdp-main .image-section img {
  width: 100%;
}
.view-product-view-page .pdp-main .content-section {
  width: 60%;
  margin: 0 5% 0 5%;
}
.view-product-view-page .pdp-main .content-section .title-section {
  border-bottom: 1px solid #000;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  margin-bottom: 30px;
  padding-bottom: 10px;
  padding-top: 40px;
  font-family: "Effra", sans-serif;
}
.view-product-view-page .pdp-main .content-section .price-section {
  font-family: "Modern No. 20", "ratiomodern", serif;
  font-size: 21px;
  line-height: 24px;
  margin-bottom: 20px;
  font-variant-ligatures: no-common-ligatures;
}
.view-product-view-page .pdp-main .content-section .description-section {
  font-family: "adobe-caslon-pro", serif;
  font-size: 16px;
  line-height: 22px;
  margin-top: 0;
  margin-bottom: 50px;
}
.view-product-view-page .pdp-main .content-section .add-to-cart-section a {
  font-family: "effra", sans-serif;
  font-size: 15px;
  line-height: normal;
  background: #000;
  color: #fff !important;
  border: 1px solid #828282;
  opacity: 0.9;
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  padding: 8px 0.625rem;
  display: inline-block;
  text-decoration: none;
}
.view-product-view-page .pdp-main .content-section .add-to-cart-section a:hover {
  color: #fff !important;
}
/* second image - on hover jQuery*/
.pdp-main .image-section .img-2 {
  display: none;
}
.product-not-available button, .product-not-available button:hover {
  background: #000 !important;
  color: #fff;
  opacity: 1;
}
.product-not-available button {
  cursor: default;
}

@media (max-width: 767px) {
  .view-product-view-page .pdp-main {
    display: block;
    width: 100%;
  }
  .view-product-view-page .pdp-main .image-section {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }
  .view-product-view-page .pdp-main .content-section {
    width: 100%;
    margin: 0;
  }
}