.single-product-wrapper {
  display: grid;
  grid-template-columns: 640px 1fr;
  grid-gap: 40px 64px;
  margin-bottom: 80px;
}
@media (max-width: 1440px) {
  .single-product-wrapper {
    grid-template-columns: 600px 1fr;
  }
}
@media (max-width: 1366px) {
  .single-product-wrapper {
    grid-template-columns: 520px 1fr;
  }
}
@media (max-width: 1280px) {
  .single-product-wrapper {
    grid-template-columns: 460px 1fr;
  }
}
@media (max-width: 1180px) {
  .single-product-wrapper {
    grid-template-columns: repeat(1, 1fr);
    width: 100%;
    max-width: 600px;
    margin: 0 auto 64px;
  }
}

.single-product-gallery {
	position: relative;
}

.single-product-gallery .add-to-wishlist {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border: 2px solid #f57b20;
	border-radius: 4px;
	background: #fff url(images/fav-orange.svg) center no-repeat;
	background-size: 24px 24px;
	text-indent: -9999px;
	transition: all 0.3s ease;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 2;
}

.single-product-gallery .add-to-wishlist:hover, .single-product-gallery .add-to-wishlist.added {
	background-image: url(images/fav-black.svg);
	border-color: #000;
}

.single-product-gallery .main-photo {
  display: block;
  padding: 24px;
  border: 1px solid #e1e1e1;
}
.single-product-gallery .main-photo a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  height: 100%;
}
.single-product-gallery .main-photo a img {
  height: 100%;
  max-height: 580px;
  width: auto;
}
.single-product-gallery .main-photo a:hover {
  opacity: 0.5;
}

.single-product-data .product-title {
  font-weight: 600;
  margin-bottom: 28px;
  line-height: 1.2;
}
.single-product-data .product-title {
  font-size: 27px;
}
@media screen and (min-width: 768px) {
  .single-product-data .product-title {
    font-size: calc(27px + 9 * (100vw - 768px) / 672);
  }
}
@media screen and (min-width: 1440px) {
  .single-product-data .product-title {
    font-size: 36px;
  }
}
.single-product-data .product-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0 0;
  font-size: 17px;
  margin-bottom: 28px;
}
.single-product-data .product-meta ul {
  list-style: none;
  margin: 0;
}
.single-product-data .product-meta ul li {
  display: flex;
  gap: 0 8px;
}
.single-product-data .product-meta ul li strong {
  width: 100px;
  text-align: right;
  font-weight: 600;
}
.single-product-data .product-meta a {
  color: inherit;
}
.single-product-data .product-meta a:hover {
  text-decoration: underline;
}
.single-product-data .product-meta .status {
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 4px;
}
.single-product-data .product-meta .status button {
  display: inline-flex;
  width: 16px;
  height: 16px;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
}
.single-product-data .product-meta .status button svg {
  width: 16px;
  height: 16px;
}
.single-product-data .product-meta .status.available {
  color: #0BBF59;
}
.single-product-data .product-meta .status.available button svg {
  fill: #0BBF59;
}
.single-product-data .product-meta .status.unavailable {
  color: #e02424;
}
.single-product-data .product-meta .status.unavailable button svg {
  fill: #e02424;
}
@media (max-width: 650px) {
  .single-product-data .product-meta {
    font-size: 15px;
  }
}
@media (max-width: 500px) {
  .single-product-data .product-meta {
    grid-template-columns: repeat(1, 1fr);
  }
}
.single-product-data .product-prices {
  display: flex;
  flex-direction: column;
  gap: 8px 0;
  line-height: 1;
  margin-bottom: 32px;
}
.single-product-data .product-prices .regular-price {
  font-weight: 600;
  color: #000;
}
.single-product-data .product-prices .regular-price {
  font-size: 32px;
}
@media screen and (min-width: 768px) {
  .single-product-data .product-prices .regular-price {
    font-size: calc(32px + 4 * (100vw - 768px) / 672);
  }
}
@media screen and (min-width: 1440px) {
  .single-product-data .product-prices .regular-price {
    font-size: 36px;
  }
}
.single-product-data .product-prices .regular-price.with-sale {
  color: #f57b20;
}
.single-product-data .product-prices .old-price {
  font-size: 17px;
  text-decoration: line-through;
  color: #555555;
  font-style: normal;
}
.single-product-data .product-prices .omnibus-info {
  margin-bottom: 0;
  font-size: 15px;
  color: #555555;
}
.single-product-data .product-add-to-cart-wrap {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px 24px;
  align-items: center;
  margin-bottom: 32px;
}
.single-product-data .product-add-to-cart-wrap .qua-wrap {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  height: 64px;
  width: 100%;
  max-width: 160px;
  overflow: hidden;
  background: #fff;
}
.single-product-data .product-add-to-cart-wrap .qua-wrap button {
  display: flex;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  color: #000;
  border: 1px solid #e1e1e1;
  background: none;
}
.single-product-data .product-add-to-cart-wrap .qua-wrap button.product-increase, .single-product-data .product-add-to-cart-wrap .qua-wrap button.single-product-increase {
  border-left: none;
  border-radius: 0 3px 3px 0;
}
.single-product-data .product-add-to-cart-wrap .qua-wrap button.product-decrease, .single-product-data .product-add-to-cart-wrap .qua-wrap button.single-product-decrease {
  border-right: none;
  border-radius: 3px 0 0 3px;
}
.single-product-data .product-add-to-cart-wrap .qua-wrap button:hover {
  background: #000;
  border-color: #000;
  color: #fff;
}
.single-product-data .product-add-to-cart-wrap .qua-wrap input {
  width: 100%;
  height: 64px;
  border: 1px solid #e1e1e1;
  border-radius: 0;
  text-align: center;
  font-size: 24px;
  color: #000;
  box-sizing: border-box;
}
.single-product-data .product-add-to-cart-wrap .add-to-cart,
.single-product-data .product-add-to-cart-wrap .add-to-cart-unavailable {
  align-items: center;
  justify-content: center;
  border: 0 solid transparent;
  display: inline-flex;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.5;
  min-height: 80px;
  padding: 12px 24px;
  text-align: center;
  transition-duration: 0.2s;
  transition-property: background-color, color, border-color;
  user-select: none;
  vertical-align: middle;
  position: relative;
  box-sizing: border-box;
  border-radius: 4px;
  color: #fff;
  background: #157f38;
  white-space: nowrap;
}
.single-product-data .product-add-to-cart-wrap .add-to-cart span,
.single-product-data .product-add-to-cart-wrap .add-to-cart-unavailable span {
  padding-right: 44px;
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 28px 28px;
  background-image: url(images/arrow-right-long-white.svg);
}
.single-product-data .product-add-to-cart-wrap .add-to-cart:hover {
  background: #0BBF59;
}
.single-product-data .product-add-to-cart-wrap .add-to-cart-unavailable {
  background: #f1f1f1;
  color: #777;
  font-style: normal;
  min-width: 200px;
}
.single-product-data .product-add-to-cart-wrap .add-to-wishlist {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid #f57b20;
  border-radius: 4px;
  background: #fff url(images/fav-orange.svg) center no-repeat;
  background-size: 32px 32px;
  text-indent: -9999px;
  transition: all 0.3s ease;
}
.single-product-data .product-add-to-cart-wrap .add-to-wishlist:hover {
  background-image: url(images/fav-black.svg);
  border-color: #000;
}
.single-product-data .product-add-to-cart-wrap .add-to-wishlist.added {
  background: #f57b20 url(images/fav-white.svg) center no-repeat;
  background-size: 32px 32px;
}
.single-product-data .product-add-to-cart-wrap .add-to-wishlist.added:hover {
  border-color: #e02424;
  background: #fff url(images/close-red.svg) center no-repeat;
  background-size: 24px 24px;
}
@media (max-width: 560px) {
  .single-product-data .product-add-to-cart-wrap {
    grid-template-columns: 1fr 64px;
  }
  .single-product-data .product-add-to-cart-wrap .qua-wrap {
    grid-column: span 2;
  }
}
@media (max-width: 500px) {
  .single-product-data .product-add-to-cart-wrap {
    grid-template-columns: 1fr 56px;
  }
  .single-product-data .product-add-to-cart-wrap .add-to-cart,
  .single-product-data .product-add-to-cart-wrap .add-to-cart-unavailable {
    font-size: 17px;
    min-height: 64px;
  }
  .single-product-data .product-add-to-cart-wrap .add-to-cart span,
  .single-product-data .product-add-to-cart-wrap .add-to-cart-unavailable span {
    padding-right: 32px;
    background-size: 24px 24px;
  }
  .single-product-data .product-add-to-cart-wrap .add-to-wishlist {
    width: 56px;
    height: 56px;
    background-size: 28px 28px;
  }
  .single-product-data .product-add-to-cart-wrap .add-to-wishlist.added {
    background-size: 28px 28px;
  }
  .single-product-data .product-add-to-cart-wrap .add-to-wishlist.added:hover {
    background-size: 20px 20px;
  }
}
.single-product-data .product-add-to-cart-wrap.unavailable-product {
  grid-template-columns: min-content 64px;
}
@media (max-width: 500px) {
  .single-product-data .product-add-to-cart-wrap.unavailable-product {
    grid-template-columns: min-content 56px;
  }
}
.single-product-data .product-delivery-wrap {
  display: block;
  padding: 20px;
  border: 1px solid #e1e1e1;
  background: #f7f7f7;
  font-size: 15px;
  margin-bottom: 32px;
}
.single-product-data .product-delivery-wrap > p:first-child {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}
.single-product-data .product-delivery-wrap .countdown-wrap {
  display: flex;
  gap: 0 8px;
  margin-bottom: 16px;
}
.single-product-data .product-delivery-wrap .countdown-wrap .countdown__timer {
  display: flex;
  gap: 0 6px;
}
.single-product-data .product-delivery-wrap .countdown-wrap .countdown__fallback {
  display: none;
}
.single-product-data .product-delivery-wrap .delivery-costs {
  list-style: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px 0;
}
.single-product-data .product-delivery-wrap .delivery-costs li {
  display: flex;
  justify-content: space-between;
  line-height: 1;
}
.single-product-data .product-tags-wrap p {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 20px;
}
.single-product-data .product-tags-wrap .product-tags {
  list-style: none;
  margin: 0;
  display: flex;
  gap: 16px 24px;
  flex-wrap: wrap;
  font-size: 15px;
}
.single-product-data .product-tags-wrap .product-tags a {
  color: #000;
}
.single-product-data .product-tags-wrap .product-tags a:hover {
  text-decoration: underline;
}

.single-product-reviews-wrap {
  margin-bottom: 64px;
}
.single-product-reviews-wrap .single-product-reviews-title {
  display: block;
  margin-bottom: 24px;
}
.single-product-reviews-wrap .single-product-reviews-title p {
  font-size: 23px;
}
@media screen and (min-width: 768px) {
  .single-product-reviews-wrap .single-product-reviews-title p {
    font-size: calc(23px + 9 * (100vw - 768px) / 672);
  }
}
@media screen and (min-width: 1440px) {
  .single-product-reviews-wrap .single-product-reviews-title p {
    font-size: 32px;
  }
}
.single-product-reviews-wrap .single-product-reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .single-product-reviews-wrap .single-product-reviews {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .single-product-reviews-wrap .single-product-reviews {
    grid-template-columns: repeat(1, 1fr);
  }
}
.single-product-reviews-wrap .single-product-reviews .single-review {
  display: block;
  padding: 24px;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
}
@media (max-width: 1024px) {
  .single-product-reviews-wrap .single-product-reviews .single-review {
    padding: 20px;
  }
}
@media (max-width: 768px) {
  .single-product-reviews-wrap .single-product-reviews .single-review {
    padding: 16px;
    border-radius: 6px;
  }
}
.single-product-reviews-wrap .single-product-reviews .single-review-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  margin-bottom: 24px;
}
.single-product-reviews-wrap .single-product-reviews .single-review-head p {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .single-product-reviews-wrap .single-product-reviews .single-review-head p {
    font-size: 15px;
  }
}
.single-product-reviews-wrap .single-product-reviews .single-review-head .stars {
  display: flex;
  gap: 4px;
}
.single-product-reviews-wrap .single-product-reviews .single-review-head .stars img {
  width: 16px;
}
.single-product-reviews-wrap .single-product-reviews .single-review-desc {
  font-size: 17px;
}
.single-product-reviews-wrap .single-product-reviews .single-review-desc p:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .single-product-reviews-wrap .single-product-reviews .single-review-desc {
    font-size: 15px;
  }
}
/*# sourceMappingURL=product.css.map */
