@charset "UTF-8";
* {
  color: var(--text-gray);
}

.product-overview {
  display: flex;
  margin-top: 14rem;
}

.product-overview__info {
  width: 60%;
  padding-left: 10.4rem;
}

.product-overview__gallery {
  width: 40%;
}

.product-gallery__main {
  display: flex;
  justify-content: center;
  position: relative;
}

.product-overview__badges {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 2.8rem;
}

.badge--sale {
  background-color: rgb(255, 72, 66);
  padding: 0.4rem 0.8rem;
  border-radius: 0.6rem;
  -webkit-border-radius: 0.6rem;
  -moz-border-radius: 0.6rem;
  -ms-border-radius: 0.6rem;
  -o-border-radius: 0.6rem;
  text-align: center;
  font-size: 1.2rem;
  align-self: flex-start;
}

.badge--new {
  color: rgb(84, 214, 44);
  font-size: 1.2rem;
  align-self: flex-end;
}

.product-title {
  font-size: 2rem;
  font-style: bold;
  margin-top: 0;
}

.product-subtitle {
  font-size: 1.8rem;
  font-style: bold;
  margin-top: 0;
}

.product-option--colors, .product-option--sizes {
  display: flex;
  justify-content: space-between;
}

.option-label {
  font-size: 1.6rem;
}

.color-options {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
}

.color-swatch {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  margin-right: 0.6rem;
  border: none;
  box-shadow: 0 0 0 0.1rem rgba(0, 0, 0, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease;
  -webkit-transition: transform 150ms ease, box-shadow 150ms ease;
  -moz-transition: transform 150ms ease, box-shadow 150ms ease;
  -ms-transition: transform 150ms ease, box-shadow 150ms ease;
  -o-transition: transform 150ms ease, box-shadow 150ms ease;
}
.color-swatch::after {
  content: "✓";
  color: rgb(24, 24, 27);
  font-size: 1.4rem;
  line-height: 1;
  opacity: 0;
  transition: opacity 120ms ease;
}
.color-swatch.is-selected, .color-swatch[aria-pressed=true], .color-swatch:focus-visible {
  width: 3.6rem;
  height: 3.6rem;
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.12);
  transform: scale(1);
}
.color-swatch.is-selected::after, .color-swatch[aria-pressed=true]::after, .color-swatch:focus-visible::after {
  opacity: 1;
}

.product-option--sizes {
  margin-top: 1.6rem;
}

.size-select, .size-select option {
  width: 14rem;
  height: 4.4rem;
  padding: 0 1rem;
  color: rgb(145, 158, 171);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0.8rem;
  border: 0.1rem solid rgba(145, 158, 171, 0.32);
  box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.06);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

.product-gallery__thumbnails-container {
  position: relative;
  margin-top: 1.6rem;
}

.product-gallery__thumbnails {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
  padding: 0.8rem 0;
  direction: ltr;
}

.product-gallery__thumbnails::-webkit-scrollbar {
  height: 6px;
}

.product-gallery__thumbnails::-webkit-scrollbar-track {
  background: transparent;
}

.product-gallery__thumbnails::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}

.product-gallery__thumbnails::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}

.thumbnail-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #333;
  z-index: 2;
  transition: all 150ms ease;
}

.thumbnail-nav-btn:hover {
  background: #fff;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}

.thumbnail-nav-btn:disabled {
  opacity: 0.3;
  cursor: default;
  box-shadow: none;
}

.thumbnail-nav-btn.is-prev {
  right: -1.6rem;
}

.thumbnail-nav-btn.is-next {
  left: -1.6rem;
}

.thumbnail {
  width: 6.4rem;
  height: 6.4rem;
  overflow: hidden;
  border: 0.2rem solid transparent;
  padding: 0;
  cursor: pointer;
  transition: border-color 120ms ease, transform 120ms ease;
  background: none;
}

.thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.thumbnail.is-active,
.thumbnail[aria-pressed=true] {
  border-color: rgb(0, 171, 85);
  transform: translateY(-2px);
}

.product-tabs {
  margin: 4rem auto;
}

.tabs-nav {
  display: flex;
  gap: 1rem;
  background-color: rgb(179, 219, 218);
  height: 6.4rem;
  margin-bottom: 2.4rem;
  margin-top: 10.4rem;
  padding: 0.8rem 2.4rem;
}

.tab-button {
  background: none;
  border: none;
  padding: 1rem 0;
  margin-left: 4rem;
  cursor: pointer;
  font-size: 1.6rem;
  color: rgb(82, 82, 91);
  font-size: 1.8rem;
}

.tab-button.is-active {
  color: rgb(35, 36, 46);
  border-bottom: 0.1rem solid rgb(35, 36, 46);
  font-style: bold;
}

.tabs-panels {
  margin-top: 2.4rem;
}

.tab-panel {
  display: none;
}
.tab-panel p {
  font-size: 1.4rem;
  text-align: justify;
}

.tab-panel.is-active {
  display: block;
}

.tab-specs {
  list-style: none;
  margin-top: 2.4rem;
}

.tab-specs li {
  display: flex;
  justify-content: flex-start;
  padding: 2rem 1.6rem;
}
.tab-specs li:nth-child(even) {
  background: rgba(179, 219, 218, 0.1);
}
.tab-specs li span {
  margin-left: 8.2rem;
  width: 11.3rem;
  font-size: 1.4rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.reviews-column {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.reviews-list {
  display: grid;
}

.review-card {
  background: #fff;
  height: 20rem;
  padding: 1.6rem;
  padding-bottom: 5rem;
  border: 0.05rem solid rgb(223, 227, 232);
}

.review-card.is-collapsed {
  display: none;
}

.review-head {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 0.8rem;
}

.review-name {
  color: rgb(69, 79, 91);
  font-size: 1.6rem;
  margin-left: 1.6rem;
}

.review-date {
  color: rgb(145, 158, 171);
  font-size: 1.4rem;
}

.review-stars {
  color: #ffb400;
  margin-bottom: 0.6rem;
  font-size: 2rem;
}

.review-body {
  color: #454f5b;
  margin: 0;
}

.review-form {
  padding: 1.4rem;
  border: 0.1rem solid rgb(223, 227, 232);
  background: white;
  display: grid;
  gap: 1rem;
  display: flex;
  flex-wrap: wrap;
  height: auto;
  max-height: 68.3rem;
}

.review-success {
  width: 100%;
  margin: 0;
  color: rgb(0, 134, 132);
  font-size: 1.3rem;
}

.form-error {
  width: 100%;
  margin: 0;
  color: #ff4d4f;
  font-size: 1.2rem;
}

.review-empty {
  color: rgb(145, 158, 171);
  margin: 0;
  padding: 1rem 0;
}

.review-title {
  font-size: 2rem;
  font-style: bold;
  color: rgb(12, 45, 87);
  margin-bottom: 0.8rem;
  width: 100%;
}

.review-message {
  font-size: 1.4rem;
  color: rgb(255, 143, 0);
  margin-bottom: 2.4rem;
  width: 100%;
}

.form-group {
  width: 100%;
  display: flex;
}

.form-label {
  display: flex;
  align-items: center;
  margin-bottom: 0.4rem;
  margin-left: 3.2rem;
  color: rgb(98, 98, 98);
}

.review-input,
.review-textarea,
.review-select {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 0.1rem solid rgb(223, 227, 232);
  background: #fff;
  color: #161c24;
  outline: 0;
}

.review-textarea {
  resize: none;
  height: 16.8rem;
}

.review-submit {
  padding: 1.2rem 3.2rem;
  border: none;
  background: rgb(0, 134, 132);
  color: #fff;
  cursor: pointer;
  margin: 2.4rem auto;
}

.reviews-toggle {
  align-self: flex-start;
  border: none;
  background: transparent;
  color: var(--text-gray);
  cursor: pointer;
  font-size: 1.4rem;
}
.reviews-toggle:hover {
  color: rgb(0, 134, 132);
}

.star-input {
  display: flex;
  gap: 0.4rem;
}

.star-input input {
  display: none;
}

.star-input label {
  cursor: pointer;
  font-size: 2rem;
  color: #c4cdd5;
}
.star-input label span {
  color: inherit;
  transition: color 150ms ease;
}
.star-input label .is-filled {
  color: #ffb400;
}

.product-attributes {
  margin-top: 1.6rem;
}
.product-attributes li {
  margin-bottom: 0.8rem;
}

.attribute-label, attribute-value {
  color: var(--text-gray);
}

.main-media {
  width: 50.3rem;
  height: auto;
  max-height: 67.1rem;
  overflow: hidden;
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.08);
  cursor: pointer;
  position: relative;
}
.main-media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 200ms ease;
}

.main-media.is-zoomed img {
  transform: scale(1.5);
  -webkit-transform: scale(1.5);
  -moz-transform: scale(1.5);
  -ms-transform: scale(1.5);
  -o-transform: scale(1.5);
}

.image-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.82);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
  z-index: 999;
  padding: 2.4rem;
  -webkit-backdrop-filter: blur(0.2rem);
          backdrop-filter: blur(0.2rem);
}
.image-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.image-modal__inner {
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1.4rem 3.2rem rgba(0, 0, 0, 0.18);
  border-radius: 0.8rem;
  overflow: hidden;
}

.image-modal__inner img {
  display: block;
  width: auto;
  height: 90vh;
  max-width: 90vw;
  max-height: 90vh;
  -o-object-fit: contain;
     object-fit: contain;
}

.social-media-list {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2.4rem;
}
.social-media-list li {
  margin-left: 1.6rem;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.social-media-list li a {
  display: inline-block;
  width: 2rem;
  height: 2rem;
}
.social-media-list li a img {
  width: 100%;
  height: 100%;
}

.purchase-perks {
  margin-top: 10.4rem;
  width: 100%;
  height: 10rem;
  background-image: url(../imgs/green-pattern-bg.png);
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.perks-list {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
}

.list-seprator {
  width: 0;
  height: 3.9rem;
  border: 0.1rem dashed rgb(0, 134, 132);
}

.related-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(24rem, 1fr));
  gap: 2.4rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.related-card {
  height: 100%;
}
.related-card figure {
  border: 0.5rem solid white;
  width: 100%;
  height: 78%;
  margin-bottom: 1rem;
}
.related-card figure img {
  width: 100%;
  height: 100%;
}
.related-card h3 {
  margin: 0;
  margin-bottom: 1rem;
}

.related-specs {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.5rem 0;
  list-style: none;
  padding: 0;
  margin: 0;
}

.related-specs li {
  position: relative;
  color: var(--text-gray);
  white-space: nowrap;
  font-size: 1.4rem;
}

.related-specs li::after {
  content: "|";
  position: relative;
  margin: 0 0.8rem;
}

.related-specs li:last-of-type::after {
  content: "";
}

.captcha-field {
  width: 100%;
  padding: 1.2rem;
  display: flex;
  align-items: center;
}
.captcha-field label {
  color: rgb(98, 98, 98);
  font-size: 1.4rem;
  margin-left: 3.2rem;
}
.captcha-field input {
  width: 30%;
  text-align: center;
  background-color: white;
  border: 0.1rem solid rgb(223, 227, 232);
  padding: 1rem 1.2rem;
  outline: 0;
}

@media (max-width: 767px) {
  .product-overview {
    flex-direction: column;
  }
  .product-overview__info, .product-overview__gallery {
    width: 100%;
  }
  .product-overview__info {
    padding-left: 0;
  }
  .product-overview__gallery {
    margin-top: 10rem;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .thumbnail-nav-btn {
    display: none;
  }
  .product-gallery__thumbnails {
    justify-content: flex-start;
  }
}
@media (max-width: 479px) {
  .perks-list {
    height: 100%;
    overflow-x: scroll;
  }
  .perks-list li {
    margin: 1rem;
  }
  .perks-list li span {
    display: inline-block;
    width: -moz-max-content;
    width: max-content;
  }
  .tabs-nav {
    height: auto;
    flex-wrap: wrap;
  }
  .captcha-field input {
    width: 45%;
  }
}

.warranty-pdf-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.8rem 1.6rem;
  margin-top: 0.8rem;
  background: rgb(0, 134, 132);
  color: #fff;
  border-radius: 0.6rem;
  text-decoration: none;
  font-size: 1.4rem;
  transition: background 200ms ease;
}
.warranty-pdf-link:hover {
  background: rgb(0, 110, 108);
}
.warranty-pdf-link svg {
  flex-shrink: 0;
}

/* LTR layout fixes for EN pages */
body.page-single-page[dir=ltr] .product-overview__info {
  padding-left: 0;
  padding-right: 10.4rem;
}
body.page-single-page[dir=ltr] .product-title,
body.page-single-page[dir=ltr] .product-subtitle,
body.page-single-page[dir=ltr] .tab-panel p {
  text-align: left;
}
body.page-single-page[dir=ltr] .color-options {
  flex-direction: row;
}
body.page-single-page[dir=ltr] .color-swatch {
  margin-right: 0;
  margin-left: 0.6rem;
}
body.page-single-page[dir=ltr] .tab-button {
  margin-left: 0;
  margin-right: 4rem;
}
body.page-single-page[dir=ltr] .tab-specs li span {
  margin-left: 0;
  margin-right: 8.2rem;
}
body.page-single-page[dir=ltr] .review-name {
  margin-left: 0;
  margin-right: 1.6rem;
}
body.page-single-page[dir=ltr] .form-label {
  margin-left: 0;
  margin-right: 3.2rem;
}
body.page-single-page[dir=ltr] .captcha-field label {
  margin-left: 0;
  margin-right: 3.2rem;
}
body.page-single-page[dir=ltr] .social-media-list li {
  margin-left: 0;
  margin-right: 1.6rem;
}
body.page-single-page[dir=ltr] .thumbnail-nav-btn.is-prev {
  left: -1.6rem;
  right: auto;
}
body.page-single-page[dir=ltr] .thumbnail-nav-btn.is-next {
  right: -1.6rem;
  left: auto;
}
/*# sourceMappingURL=m_styles.css.map */
