.product-page {
  display: grid;
  font-weight: 300;
}
@media (min-width: 48rem) {
  .product-page {
    max-width: 96vw;
    margin: 0 auto;
 }
}
.product-page h4 {
  display: flex;
  position: relative;
  margin: 0;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 400;
}
.product-page__gallery {
  display: grid;
  grid-auto-columns: auto;
  width: 100vw;
  gap: 0;
  margin: 0 0 3rem;
  grid-column-start: 1;
  grid-column-end: 3;
}
@media (min-width: 48rem) {
  .product-page__gallery {
    grid-template-columns: auto auto;
    width: 50vw;
    margin: 0;
    grid-column: 1;
    grid-row: 1;
 }
}
.product-page__gallery__item {
  padding-bottom: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}
.product-page__gallery__item img {
  width: 100%;
  height: auto;
  border-radius: 0;
}
.product-page__gallery__item:first-child {
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 3;
}
.product-page__gallery__slider {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, .9);
  opacity: 0;
  z-index: -1;
  transition: all 0.3s ease-in-out;
}
.product-page__gallery__slider.active {
  opacity: 1;
  z-index: 1080;
}
.product-page__gallery__slider__item {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}
.product-page__gallery__slider__item.active {
  opacity: 1;
  pointer-events: all;
}
.product-page__gallery__slider .slider-toggle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background-color: transparent;
}
.product-page__gallery__slider .slider-toggle span {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  width: 3rem;
  height: 3rem;
  background-color: rgba(221, 221, 221, 0.5);
  transition: all 0.3s ease;
}
.product-page__gallery__slider .slider-toggle span:hover {
  background-color: rgba(221, 221, 221, 1);
}
.product-page__gallery__slider .slider-toggle span:before, .product-page__gallery__slider .slider-toggle span:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0.5rem;
  width: 2rem;
  height: 1px;
  background-color: #555;
  transform: rotate(315deg);
  z-index: 110;
}
.product-page__gallery__slider .slider-toggle span:after {
  transform: rotate(45deg);
  top: 50%;
}
.product-page__gallery__slider .slider-navigation-button {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  height: 3rem;
  z-index: 1010;
  background: white;
  background: linear-gradient(-90deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
  transition: all 0.3s ease;
}
.product-page__gallery__slider .slider-navigation-button:hover {
  background: linear-gradient(-90deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 100%);
}
.product-page__gallery__slider .slider-navigation-button:before, .product-page__gallery__slider .slider-navigation-button:after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 0.35rem);
  left: 1rem;
  width: 1rem;
  height: 1px;
  background-color: #555;
  transform: rotate(315deg);
  z-index: 110;
}
.product-page__gallery__slider .slider-navigation-button:after {
  transform: rotate(45deg);
  top: calc(50% + 0.35rem);
}
.product-page__gallery__slider .slider-navigation-button.next {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
  left: auto;
  right: 0;
}
.product-page__gallery__slider .slider-navigation-button.next:hover {
  right: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 100%);
}
.product-page__gallery__slider .slider-navigation-button.next:before, .product-page__gallery__slider .slider-navigation-button.next:after {
  left: auto;
  right: 1rem;
}
.product-page__gallery__slider .slider-navigation-button.next:before {
  transform: rotate(45deg);
}
.product-page__gallery__slider .slider-navigation-button.next:after {
  transform: rotate(315deg);
}
.product-page__gallery__slider:hover .slider-navigation-button {
  opacity: 1;
}
.product-page__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100vw;
  margin: 0;
  padding: 0 1rem 1rem 1rem;
  font-size: 1.2rem;
}
@media (min-width: 48rem) {
  .product-page__content {
    width: calc(46vw - 2rem);
    padding: 0 0 1rem 2rem;
    align-items: flex-start;
    justify-content: flex-start;
    grid-column: 2;
    grid-row: 1;
 }
}
.product-page__content__title {
  text-align: center;
}
@media (min-width: 48rem) {
  .product-page__content__title {
    text-align: left;
 }
}
.product-page__content__prices {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 0 1rem;
  font-size: 1.6rem;
  color: #333;
  width: 100%;
  user-select: none;
}
@media (min-width: 48rem) {
  .product-page__content__prices {
    flex-direction: row;
    justify-content: space-between;
    width: auto;
 }
}
@media (min-width: 72rem) {
  .product-page__content__prices {
    font-size: 2rem;
 }
}
.product-page__content__prices__discount {
  display: none;
}
.product-page__content__prices__discount .discount-label {
  padding: 0.5rem 0.75rem;
  color: #fff;
  background-color: #c5312d;
}
.product-page__content__prices__one-time-payment {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
}
@media (min-width: 48rem) {
  .product-page__content__prices__one-time-payment {
    flex-direction: column;
    margin: 0 2rem 0 0;
 }
}
.product-page__content__prices__price {
  display: flex;
}
.product-page__content__prices__price.sale, .product-page__content__prices__price.variation-sale {
  color: #c5312d;
  font-size: 2.4rem;
  line-height: 2rem;
  margin: 0 0 2rem;
}
@media (min-width: 48rem) {
  .product-page__content__prices__price.sale, .product-page__content__prices__price.variation-sale {
    margin: 0 0 1rem;
 }
}
.product-page__content__prices__price.sale + .regular, .product-page__content__prices__price.variation-sale + .regular {
  position: relative;
  align-self: flex-start;
  width: auto;
  margin: 0 1rem 0 0;
}
@media (min-width: 48rem) {
  .product-page__content__prices__price.sale + .regular, .product-page__content__prices__price.variation-sale + .regular {
    font-size: 1.4rem;
    line-height: 1.2rem;
    margin: 0;
 }
}
.product-page__content__prices__price.sale + .regular:after, .product-page__content__prices__price.variation-sale + .regular:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #c5312d;
  top: 52%;
  left: 0;
  transform: rotate(346deg);
}
.product-page__content__prices__or {
  font-size: 1rem;
  color: #666;
  text-transform: uppercase;
  margin: 0 0 1rem;
}
@media (min-width: 48rem) {
  .product-page__content__prices__or {
    margin: 0 2rem 0 0;
 }
}
.product-page__content__prices__esto #esto_calculator {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin: 0;
  padding: 0;
}
.product-page__content__prices__esto #esto_calculator img {
  margin: 0 0 0.5rem;
  padding: 0;
}
.product-page__content__prices__esto #esto_calculator strong {
  font-size: 1rem;
  padding: 0;
}
.product-page__content__people-viewing {
  color: #c5312d;
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin: 0 0 1rem;
}
.product-page__content__people-viewing svg {
  position: relative;
  width: 1rem;
  height: 1rem;
  margin: 0 0.25rem 0 0;
  bottom: -2px;
}
.product-page__content__people-viewing svg * {
  fill: #c5312d;
}
.product-page__content__short-description {
  font-size: 1rem;
  margin: 0 0 2rem;
  background: none;
  background-color: transparent;
  font-family: inherit;
  font-size: 1.2rem;
  padding: 0;
}
.product-page__content__short-description table tr th, .product-page__content__short-description table tr td {
  padding: 0.5rem 1rem;
  border-bottom: 1px solid #eee;
}
.product-page__content__short-description table tr th:last-child, .product-page__content__short-description table tr td:last-child {
  border-bottom: 0;
}
.product-page__content__short-description ul, .product-page__content__short-description ol {
  list-style: none;
  margin: 0 0 0 -1rem;
  padding: 0 0 0 1rem;
  font-size: 1.2rem;
  font-weight: 300;
}
.product-page__content__short-description ul:before, .product-page__content__short-description ol:before {
  content: "⟡";
  color: #cbbe8f;
  margin: 0 0.35rem 0 0;
}
.product-page__content__quantity {
  display: flex;
  flex-direction: column;
}
.product-page__content__quantity__amount {
  display: flex;
  flex-direction: row;
  margin: 0 0 2rem;
}
.product-page__content__quantity__amount input::-webkit-outer-spin-button, .product-page__content__quantity__amount input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.product-page__content__quantity__amount input[type=number] {
  width: 5rem;
  border: 0;
  box-shadow: none;
  padding: 0.25rem 0.5rem;
  -moz-appearance: textfield;
  text-align: center;
  background-color: #fdfdfd;
}
.product-page__content__quantity__amount .qty-change {
  width: 2.4rem;
  height: 2.4rem;
  margin: 0;
  padding: 0;
  line-height: 1rem;
  user-select: none;
  border-radius: 1.2rem;
}
.product-page__content__add-to-cart {
  margin: 0 0 0.5rem;
  user-select: none;
}
.product-page__content__add-to-cart__variations {
  display: flex;
  position: relative;
  flex-direction: row;
  flex-wrap: wrap;
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
}
.product-page__content__add-to-cart__variations__item {
  font-size: 1.1rem;
  margin: 0 0 1rem;
}
.product-page__content__add-to-cart__variations__item__attribute {
  display: flex;
  position: relative;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  margin: 0 0.5rem 0 0;
  padding: 0.25rem;
  color: #555;
  background-color: transparent;
  font-weight: 500;
  border: 1px solid #ddd;
  border-radius: 50%;
  transition: all 0.2s ease-out;
  text-transform: uppercase;
  font-size: 0.65rem;
  line-height: 1rem;
  font-family: 'Roboto Condensed', sans-serif;
}
.product-page__content__add-to-cart__variations__item__attribute:hover, .product-page__content__add-to-cart__variations__item__attribute.selected {
  color: #777;
  background-color: #bbaa6c;
  border: 2px solid #cbbe8f;
  box-shadow: 0 0 0 2px #fff inset;
  outline: 0;
}
.product-page__content__add-to-cart .add_to_cart_button {
  display: flex;
  position: relative;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 8rem;
  height: 3rem;
  margin: 0 auto;
  padding: 1rem 1.6rem;
  color: #fff;
  background-size: 8rem;
  background-position: center, bottom;
  background-repeat: no-repeat, no-repeat;
  background-color: #e8d094;
  border-radius: 2rem;
  text-transform: uppercase;
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  transition: all 0.5s ease-out;
  cursor: pointer;
}
@media (min-width: 48rem) {
  .product-page__content__add-to-cart .add_to_cart_button {
    margin: 0 1.5rem;
 }
}
.product-page__content__add-to-cart .add_to_cart_button:before, .product-page__content__add-to-cart .add_to_cart_button:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: -2rem;
  width: 3rem;
  height: 3rem;
  background-image: url(/wp-content/themes/storefront-child/assets/images/ornament_gold.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 3rem;
  transform: rotate(90deg);
}
.product-page__content__add-to-cart .add_to_cart_button:before {
  right: auto;
  left: -2rem;
  transform: rotate(270deg);
}
.product-page__content__add-to-cart .add_to_cart_button:hover {
  background-color: #926f34;
  transition: all 0.3s ease-in;
}
.product-page__content__add-to-cart .add_to_cart_button.added, .product-page__content__add-to-cart .add_to_cart_button.loading {
  font-size: 0;
  background-image: url('/wp-content/uploads/2023/02/Eclipse-1s-200px.svg');
  background-size: 3rem;
  width: auto;
  min-width: 48px;
  min-height: 48px;
  padding: 0;
  animation: fa-spin 0.75s linear infinite;
  animation-delay: 0.3s;
  transition: all 0.3s ease;
}
@media (min-width: 48rem) {
  .product-page__content__add-to-cart .add_to_cart_button.added, .product-page__content__add-to-cart .add_to_cart_button.loading {
    margin: 0 0;
 }
}
.product-page__content__add-to-cart .add_to_cart_button.added:before, .product-page__content__add-to-cart .add_to_cart_button.loading:before, .product-page__content__add-to-cart .add_to_cart_button.added:after, .product-page__content__add-to-cart .add_to_cart_button.loading:after {
  display: none;
}
.product-page__content__add-to-cart .add_to_cart_button.added {
  animation: none;
  background-image: url('/wp-content/uploads/2023/02/1200px-White_check.svg.png');
  background-size: 1.4rem;
}
.product-page__content__description {
  margin: 0;
}
.product-page__content .posted_in, .product-page__content .tagged_as {
  font-size: 1rem;
}
.product-page__content .posted_in a, .product-page__content .tagged_as a {
  font-weight: 300;
}
.product-page__content .small-info {
  font: 0.75em sans-serif;
  padding: 0 2rem;
  text-align: center;
  opacity: 0.45;
}
@media (min-width: 48rem) {
  .product-page__content .small-info {
    text-align: left;
    padding: 0 2rem 0 0;
 }
}
.product-page__related-products {
  grid-column-start: 1;
  grid-column-end: 3;
  margin: 3rem 0 2rem;
  flex-direction: column;
}
@media (min-width: 48rem) {
  .product-page__related-products {
    margin: 5rem 0 3rem;
    grid-column: 0.3333333333;
    grid-row: 2;
 }
}
.product-page form.cart {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 0 2rem;
}
@media (min-width: 48rem) {
  .product-page form.cart {
    align-items: flex-start;
 }
}
.product-page form.cart .added_to_cart.wc-forward {
  display: none;
}
.widget-area {
  display: none;
}
