.product-detail-container .product-info-row .product-info-wrapper, .product-detail-container, .section-title {
  display: block;
  box-sizing: border-box;
}

.product-detail-container .product-info-row {
  display: flex;
  flex-direction: row;
}

.product-detail-container .product-info-row {
  display: flex;
  align-items: center;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.text-left {
  text-align: left !important;
}

.is-hidden {
  display: none !important;
}

.is-visible {
  display: block !important;
}

.is-invisible {
  visibility: hidden !important;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes scaleIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@media (max-width: 990px) {
  .mobile-hidden {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .desktop-hidden {
    display: none !important;
  }
}

.section-title {
  padding: 0.8em 0;
  font-size: 2em;
  color: #3A3B3B;
  border-bottom: 1px solid #EFEFEF;
  margin-bottom: 1.5em;
}

.product-detail-container {
  font-size: 20px;
  width: 100%;
}
@media (max-width: 1240px) {
  .product-detail-container {
    font-size: 16px;
  }
}
@media (max-width: 990px) {
  .product-detail-container {
    font-size: 14px;
  }
}
.product-detail-container .product-info-row {
  margin-bottom: 2.5em;
}
.product-detail-container .product-info-row .product-cover-wrapper {
  width: 50%;
}
.product-detail-container .product-info-row .product-cover-wrapper .img-wrapper {
  aspect-ratio: 460/356;
}
.product-detail-container .product-info-row .product-cover-wrapper .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-detail-container .product-info-row .product-info-wrapper {
  width: 50%;
  padding: 0 5.65em;
}
.product-detail-container .product-info-row .product-info-wrapper .product-title {
  font-style: normal;
  font-weight: 700;
  font-size: 2em;
  line-height: 1.5;
  color: #3A3B3C;
  letter-spacing: 0.5em;
  position: relative;
  padding-bottom: 0.95em;
}
.product-detail-container .product-info-row .product-info-wrapper .product-title::after {
  content: "";
  display: block;
  width: 2.5em;
  height: 0.3em;
  background: #ED7742;
  position: absolute;
  bottom: 0;
  left: 0;
}
.product-detail-container .product-info-row .product-info-wrapper .product-desc {
  font-family: inherit;
  font-style: normal;
  font-weight: 400;
  font-size: 1em;
  line-height: 1.5;
  color: #252627;
  margin-top: 1.1em;
  white-space: pre-wrap;
}
.product-detail-container .product-content-container {
  margin-bottom: 2.5em;
}
.product-detail-container .product-gallery-container .gallery-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8em;
}
.product-detail-container .product-gallery-container .gallery-list .gallery-item .img-wrapper {
  aspect-ratio: 522/417;
}
.product-detail-container .product-gallery-container .gallery-list .gallery-item .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-detail-container .product-gallery-container.product-images .gallery-list {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1240px) {
  .product-detail-container .product-info-row {
    flex-direction: column;
  }
  .product-detail-container .product-info-row .product-cover-wrapper,
  .product-detail-container .product-info-row .product-info-wrapper {
    width: 100%;
  }
  .product-detail-container .product-info-row .product-info-wrapper {
    padding: 1.5em 0;
  }
  .product-detail-container .product-gallery-container .gallery-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-detail-container .product-gallery-container.product-images .gallery-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 990px) {
  .product-detail-container .product-gallery-container .gallery-list {
    grid-template-columns: 1fr;
  }
  .product-detail-container .product-gallery-container.product-images .gallery-list {
    grid-template-columns: 1fr;
  }
}