.myc-product-details {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  font-family: var(--myc-font-family);
}

.myc-row-sm {
  display: flex;
  align-items: center;
}

.myc-row-lg {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.myc-product-details .myc-title {
  margin: 0;
  font-size: 26px;
  font-weight: 500;
  color: var(--myc-color-blue);
}

.myc-product-details .myc-title .myc-edit-listing {
  position: relative;
  top: -8px;
  cursor: pointer;
}

.myc-product-details .myc-title .myc-edit-listing > i {
  border: 1px solid var(--myc-color-blue);
  border-radius: 50%;
  background: transparent;
  display: inline-block;
  padding: 3px;
  text-align: center;
  font-size: 13px;
  color: var(--myc-color-blue);
}

.myc-product-details .myc-title .myc-edit-listing:hover > i {
  border-color: var(--myc-color-red);
  color: var(--myc-color-red);
}

.myc-product-details .myc-detail-row {
  width: 100%;
  margin-top: 8px;
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  font-weight: 400;
  color: var(--myc-color-gray-02);
}

.myc-product-details .myc-reviews-stars {
  display: flex;
  font-size: 15px;
  color: var(--myc-color-red);
  text-decoration: none;
}

.myc-product-details .myc-reviews-stars:hover {
  color: var(--myc-color-red);
}

.myc-product-details .myc-reviews-stars > i {
  margin-right: 3px;
  font-size: 20px;
}

.myc-product-details .myc-old-price-row .myc-old-price {
  font-size: 15px;
  font-weight: 400;
  color: var(--myc-color-blue);
  text-decoration: line-through;
}

.myc-product-details .myc-old-price-row .myc-discount {
  margin-left: 10px;
  border-radius: 8px;
  background-color: var(--myc-color-gray-01);
  padding: 4px 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--myc-color-red);
}

.myc-product-details .myc-price-row {
  align-items: baseline;
}

.myc-product-details .myc-price-row .myc-price {
  font-size: 34px;
  font-weight: 600;
  color: var(--myc-color-red);
}

.myc-product-details .myc-price-row .myc-hidden-price {
  font-size: 24px;
  font-weight: 600;
  color: var(--myc-color-red);
}

.myc-product-details .myc-price-row .myc-unit {
  font-size: 15px;
  font-weight: 400;
  color: var(--myc-color-blue);
}

.myc-product-details .myc-minimum-order {
  font-size: 15px;
  font-weight: 400;
  color: var(--myc-color-gray-02);
}

.myc-product-details .myc-description {
  margin-top: 30px;
}

.myc-product-details .myc-description .myc-title {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--myc-color-blue);
}

.myc-product-details .myc-description .myc-content {
  margin: 0;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 400;
  color: var(--myc-color-blue);
}

.myc-product-details .myc-description .myc-content ul,
.myc-product-details .myc-description .myc-content ol {
  list-style-position: inside;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 20px;
}

.myc-product-details .myc-description .myc-content > ul,
.myc-product-details .myc-description .myc-content > ol {
  padding-left: 0;
}

.myc-product-details .myc-description .myc-content ul {
  list-style-type: disc;
}

.myc-product-details .myc-description .myc-content ol {
  list-style-type: decimal;
}

.myc-product-details .myc-description .myc-content ul li::marker,
.myc-product-details .myc-description .myc-content ol li::marker {
  color: var(--myc-color-red);
}

.myc-product-details .myc-description .myc-content a {
  font-weight: 500;
  color: var(--myc-color-red);
  transition: opacity 0.2s ease;
}

.myc-product-details .myc-description .myc-content a:hover {
  opacity: 0.5;
}

.myc-product-details .myc-cta-row {
  margin-top: 30px;
}

.myc-product-details .myc-cta-row a {
  border: none;
  border-radius: 8px;
  background-color: var(--myc-color-red);
  padding: 15px 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--myc-color-white);
  text-decoration: none;
  outline: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.myc-product-details .myc-cta-row a:hover {
  background-color: var(--myc-color-light-red);
}

.myc-product-details .myc-cta-row a > i {
  font-size: 20px;
  margin-right: 10px;
}

/*
.myc-product-details .myc-cta-row .myc-instagram {
  border: 1px solid var(--myc-color-red);
  background-color: transparent;
  color: var(--myc-color-red);
}

.myc-product-details .myc-cta-row .myc-instagram:hover {
  background-color: var(--myc-color-red);
  color: var(--myc-color-white);
}
*/

.myc-product-details .myc-cta-row .myc-instagram {
  background-color: var(--myc-color-blue);
}

.myc-product-details .myc-cta-row .myc-instagram:hover {
  background-color: var(--myc-color-light-blue);
}

@media (max-width: 480px) {
  .myc-product-details .myc-row-lg {
    flex-direction: column;
    align-items: flex-start;
  }

  .myc-product-details .myc-row-lg > * {
    margin-top: 3px;
  }

  .myc-product-details .myc-row-lg :first-child {
    margin-top: 0px;
  }

  .myc-product-details .myc-cta-row a {
    width: 100%;
    margin-top: 20px;
  }

  .myc-product-details .myc-cta-row a:first-child {
    margin-top: 0px;
  }
}
