@charset "UTF-8";
body {
  background-color: #F8F8F8;
}

.product-header {
  max-width: 1484px;
  margin: 32px auto 0 auto;
  padding: 0 32px;
}

.breadcrumbs {
  margin: 32px 0 24px;
}

.breadcrumbs-list {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
}

.breadcrumb-slash {
  width: 10px;
  min-width: 10px;
  height: 14px;
  fill: #494C54;
}

.breadcrumb-arrow {
  display: none;
}

.breadcrumb-item {
  color: #494C54;
}
.breadcrumb-item a {
  color: #494C54;
  transition: ease 0.3s;
}
.breadcrumb-item a:visited {
  color: #494C54;
}
.breadcrumb-item a:hover {
  color: #64B499;
}
.breadcrumb-item:last-child {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product {
  padding: 50px 50px 56px;
  background-color: white;
  border-top-right-radius: 6px;
  border-top-left-radius: 6px;
  display: flex;
  justify-content: space-between;
  gap: 56px;
  box-shadow: 0 10px 25px -15px rgba(169, 176, 190, 0.2);
}

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 600px;
  min-width: 600px;
  margin: 0 auto;
}

.main-image-container {
  width: 100%;
  height: 550px;
  overflow: hidden;
  position: relative;
  border: 1.2px solid #E6E6E6;
  border-radius: 3px;
}
.main-image-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
  transform-origin: center;
}

.thumbnails {
  display: flex;
  gap: 12px;
  overflow-y: auto;
}

.thumbnail {
  aspect-ratio: 1;
  width: calc((480px - 2px * (var(--thumbnail-count) - 1)) / var(--thumbnail-count));
  max-width: 85px;
  max-height: 100%;
  height: auto;
  object-fit: contain;
  cursor: pointer;
  border: 1.2px solid #E6E6E6;
  border-radius: 3px;
  transition: ease 0.6s;
}
.thumbnail:hover {
  border-color: #494C54;
}
.thumbnail.active {
  border-color: #494C54;
}

.product-body {
  width: 100%;
}

.product-label-block {
  position: absolute;
  left: 0;
  top: 0;
  width: 78px;
  height: 32px;
  text-align: center;
  color: white;
  text-transform: uppercase;
  line-height: 1.2;
  font-family: Bold;
  font-size: 14px;
}
.product-label-block .product-label {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  border-bottom-right-radius: 6px;
}
.product-label-block .green-label {
  background-color: #64B499;
}
.product-label-block .yellow-label {
  background-color: #ffc527;
}
.product-label-block .red-label {
  background-color: #FF3126;
}

.product-availability {
  margin-bottom: 24px;
}
.product-availability .product-available {
  display: flex;
  gap: 6px;
  align-items: center;
  color: #64B499;
}
.product-availability .product-available svg {
  fill: #64B499;
  width: 12px;
  height: 9px;
}
.product-availability .product-unavailable {
  display: flex;
  gap: 6px;
  align-items: center;
  color: #FF3126;
}
.product-availability .product-unavailable svg {
  fill: #FF3126;
  width: 12px;
  height: 12px;
  margin-top: -1px;
}

.buy-btn {
  background-color: #ffc527;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-family: Bold;
  font-size: 18px;
  font-family: Play;
  line-height: 1.65;
  max-width: 250px;
  width: 100%;
  padding: 10px;
  margin-top: 32px;
  transition: ease 0.3s;
}
.buy-btn svg {
  width: 17px;
  height: 16px;
  transition: ease 0.3s;
}
.buy-btn:hover {
  background-color: #64B499;
  cursor: pointer;
  color: white;
}
.buy-btn:hover svg {
  fill: white;
}
.buy-btn.in-cart {
  background: #64B499;
  color: white;
}
.buy-btn.in-cart svg {
  margin-top: 2px;
  fill: white;
}
.buy-btn.in-cart:hover {
  background: #ffc527;
}

.product-attributes {
  border-bottom: 1.2px solid #E6E6E6;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rating {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rating-count, .sku {
  color: #494C54;
}

.product-desc {
  margin: 24px 0;
  color: #494C54;
}

.option {
  margin: 24px 0;
}
.option .h5 {
  margin-bottom: 12px;
}

.option-size-tags {
  display: flex;
  gap: 10px;
}

.option-size-tag {
  background-color: #F8F8F8;
  border-radius: 3px;
  color: rgba(73, 76, 84, 0.5);
  border: 1px solid #F8F8F8;
  padding: 4px 20px;
  transition: ease 0.3s;
}
.option-size-tag:hover {
  border: 1px solid black;
  color: black;
  cursor: pointer;
}
.option-size-tag.active {
  border: 1px solid black;
  color: black;
}

.option-colour {
  display: flex;
  flex-wrap: wrap;
  column-gap: 32px;
  row-gap: 16px;
}

.colour-options {
  display: flex;
  gap: 8px;
}

.colour-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(73, 76, 84, 0.5);
  background-color: #F8F8F8;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid transparent;
  transition: ease 0.3s;
}
.colour-option img {
  aspect-ratio: 100/68;
  max-width: 100px;
}
.colour-option span {
  padding: 3px 0;
  cursor: default;
  transition: ease 0.3s;
}

.variable-colour-option .colour-option:hover {
  border: 1px solid #494C54;
}
.variable-colour-option .colour-option:hover span {
  cursor: pointer;
  color: #494C54;
}

.current-colour-option {
  border: 1px solid #494C54;
}
.current-colour-option span {
  color: #494C54;
}

.product-price {
  font-size: 24px;
  line-height: 1.5;
  margin: 32px 0;
  font-family: Bold;
}

@media (max-width: 1300px) {
  .product {
    padding: 24px;
    gap: 32px;
  }
  .product-gallery {
    width: 500px;
    min-width: 500px;
  }
  .thumbnail {
    width: calc((429px - 2px * (var(--thumbnail-count) - 1)) / var(--thumbnail-count));
  }
}
@media (max-width: 900px) {
  .product-header {
    margin: 16px auto 0 auto;
    padding: 0 16px;
  }
  .product {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  body {
    background-color: white;
  }
  .breadcrumbs {
    margin: 16px 0 24px;
  }
  .breadcrumbs-list {
    gap: 6px;
  }
  .breadcrumbs-list li:nth-child(1) {
    display: none;
  }
  .breadcrumbs-list svg:nth-child(2) {
    display: none;
  }
  .breadcrumb-item {
    display: none;
    font-size: 14px;
  }
  .breadcrumb-item .body {
    font-size: 14px;
  }
  .breadcrumb-slash {
    display: none;
  }
  .breadcrumb-item:nth-last-child(3) {
    display: block;
  }
  .breadcrumb-arrow {
    display: block;
    width: 6px;
    height: 10px;
    margin-bottom: 0.5px;
    fill: #868A96;
  }
  .product {
    padding: 0 0 56px;
  }
  .product-gallery {
    width: 100%;
    max-width: 500px;
    min-width: unset;
    gap: 6px;
  }
  .product-header {
    padding: 0 16px;
  }
  .main-image-container {
    height: 300px;
  }
  .main-image-container {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
  }
  .main-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    transform-origin: center;
  }
  .thumbnails {
    display: flex;
    gap: 6px;
    overflow-y: auto;
    margin-left: -16px;
    margin-right: -16px;
    width: calc(100% + 32px);
    padding-left: 16px;
    padding-right: 16px;
    scrollbar-width: none;
    ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .thumbnails::-webkit-scrollbar {
    display: none;
  }
  .thumbnail {
    aspect-ratio: 1;
    width: 100%;
    max-height: calc((480px - 8px * (var(--thumbnail-count) - 1)) / var(--thumbnail-count));
    height: auto;
    object-fit: contain;
    cursor: pointer;
    transition: ease 0.3s;
  }
  .main-image-container {
    height: 300px;
  }
  .thumbnail {
    width: 60px;
    height: 60px;
  }
  .product-availability {
    margin-bottom: 16px;
  }
  .colour-options {
    flex-wrap: wrap;
  }
}
@media (max-width: 420px) {
  .buy-btn {
    max-width: 100%;
  }
}
.product-tabs-section {
  max-width: 1420px;
  margin: 0 auto 56px;
  padding: 0 50px 50px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  box-shadow: 0 10px 25px -15px rgba(169, 176, 190, 0.2);
  background-color: white;
}

.product-tabs {
  display: flex;
  background-color: #F8F8F8;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}

.desc-tab-title {
  position: relative;
  cursor: pointer;
  text-align: center;
  padding: 16px 0;
  color: rgba(73, 76, 84, 0.5);
  transition: color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  border-left: 1px solid transparent;
  border-top: 1px solid transparent;
  border-right: 1px solid transparent;
  flex: 1 1 30%;
}
.desc-tab-title::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 10px;
  background-color: white;
  left: 0;
  bottom: -1px;
  z-index: 1;
  transition: ease 0.3s;
  opacity: 0;
}
.desc-tab-title.active {
  color: #494C54;
  background-color: white;
  border-left: 1px solid #E6E6E6;
  border-top: 1px solid #E6E6E6;
  border-right: 1px solid #E6E6E6;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
  box-shadow: 10px -5px 15px 0 rgba(169, 176, 190, 0.15);
}
.desc-tab-title.active::after {
  opacity: 1;
}

.product-tabs-body {
  position: relative;
  background-color: white;
}
.product-tabs-body .desc-tab-body {
  opacity: 0;
  transition: opacity 0.3s ease, border 0 ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  visibility: hidden;
  border: 1px solid #E6E6E6;
  border-radius: 3px;
  padding: 32px 48px;
}
.product-tabs-body .desc-tab-body.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.product-features-table {
  margin: 24px 0 48px;
  width: 100%;
}
.product-features-table tr {
  border-bottom: 1px solid #E6E6E6;
}

.product-feature-title {
  max-width: 360px;
  width: 360px;
  padding: 12px 90px 12px 0;
  color: #494C54;
}

.product-feature-value {
  padding: 12px 0;
  color: black;
}

.product-full-desc-title {
  margin-bottom: 24px;
}

.product-full-desc {
  color: #494C54;
}
.product-full-desc p:last-child {
  margin: 0;
}
.product-full-desc ul {
  margin: 0 0 12px 24px;
}
.product-full-desc ul li {
  position: relative;
}
.product-full-desc ul li::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #ffc527;
  left: -14px;
  top: 10px;
}
.product-full-desc a {
  color: #64B499;
  transition: ease 0.3s;
  text-decoration: underline;
}
.product-full-desc a:visited {
  color: #64B499;
}
.product-full-desc a:hover {
  color: #ffc527;
}
.product-full-desc i {
  font-style: italic;
}

.product-feedback {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
}
.product-feedback:last-child {
  margin-bottom: 0;
}

.feed-left-col {
  min-width: 120px;
}

.fee-date {
  color: #494C54;
  margin-top: 12px;
}

.fee-name {
  margin-bottom: 24px;
}

.fee-row {
  display: flex;
  margin-bottom: 12px;
  gap: 16px;
}
.fee-row:last-child {
  margin-bottom: 0;
}

.fee-row-title {
  min-width: 80px;
  color: black;
}

.fee-body, .fee-row-body {
  color: #494C54;
  line-height: 1.65;
}

.star {
  position: relative;
  display: inline-block;
  overflow: hidden;
  color: #E6E6E6;
  font-size: 24px;
}

.star.filled {
  color: #ffc527;
}

.star {
  margin-right: -5px;
}
.star:last-child {
  margin: 0;
}
.star.partial::before {
  content: "★";
  position: absolute;
  left: 0;
  top: 0;
  color: #ffc527;
  width: calc(var(--partial-width) * 100%);
  overflow: hidden;
}

.feedback-btn {
  margin: 135px auto 0 auto;
}

.faq {
  margin-bottom: 32px;
  display: flex;
  gap: 56px;
}
.faq:last-child {
  margin-bottom: 0;
}

.faq-date {
  color: #494C54;
}

.faq-name {
  line-height: 1;
}

.faq-question {
  margin-top: 16px;
  color: #494C54;
}

.faq-answer-block {
  position: relative;
  margin: 26px 0 0 48px;
}

.faq-answer {
  margin-top: 12px;
  color: #494C54;
}

.faq-arrow {
  position: absolute;
  width: 18px;
  height: 20px;
  fill: black;
  left: -32px;
  top: -3px;
}

@media (max-width: 1500px) {
  .product-tabs-section {
    margin: 0 32px 56px;
  }
}
@media (max-width: 1300px) {
  .product-tabs-section {
    margin: 0 32px 56px;
    padding: 0 24px 24px;
  }
}
@media (max-width: 900px) {
  .product-tabs-section {
    margin: 0 16px 56px;
  }
}
@media (max-width: 768px) {
  .product-tabs-section {
    padding: 0;
    margin: 0;
    box-shadow: none;
  }
  .product-tabs {
    flex-wrap: wrap;
  }
  .desc-tab-title {
    flex: 1 1 50%;
  }
  .product-tabs-body .desc-tab-body {
    border: unset;
    padding: 32px 16px 56px;
  }
  .product-features-table {
    margin-top: 14px;
  }
  .product-features-table tr {
    display: flex;
    flex-direction: column;
  }
  .product-feature-title {
    padding: 10px 0 10px;
    width: 100%;
  }
  .product-feature-value {
    padding: 0 0 10px;
  }
  .product-feedback {
    flex-direction: column;
    gap: 16px;
  }
  .feed-left-col {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .fee-name {
    margin-bottom: 16px;
  }
  .fee-row {
    flex-direction: column;
    gap: 8px;
  }
  .feedback-btn {
    margin: 32px auto 0 auto;
  }
  .faq {
    gap: 16px;
    flex-direction: column;
  }
  .faq-answer-block {
    margin: 24px 0 0 32px;
  }
  .faq-answer {
    margin-top: 8px;
  }
  .faq-arrow {
    width: 18px;
    height: 20px;
    left: -26px;
  }
}
.related-products, .viewed-products {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  padding: 100px 32px 88px 32px;
  background: white;
  overflow: hidden;
}

.viewed-products {
  display: none;
}

.related-products-inner {
  max-width: 1420px;
  width: 100%;
  margin: 0 auto;
}

.related-head {
  margin-bottom: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.related-nav {
  display: flex;
  gap: 16px;
}

.related-prev, .related-next, .viewed-prev, .viewed-next {
  position: relative;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(200, 200, 206, 0.5);
  border-radius: 3px;
  cursor: pointer;
  transition: 0.3s;
}
.related-prev svg, .related-next svg, .viewed-prev svg, .viewed-next svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 18px;
  fill: #C8C8CE;
  transition: 0.3s;
}
.related-prev:hover, .related-next:hover, .viewed-prev:hover, .viewed-next:hover {
  background: black;
  border: 1px solid black;
}
.related-prev:hover svg, .related-next:hover svg, .viewed-prev:hover svg, .viewed-next:hover svg {
  fill: white;
}

.related-next svg, .viewed-next svg {
  transform: translate(-50%, -50%) rotate(-180deg);
}

.related-swiper, .viewed-swiper {
  margin: 0 auto;
  overflow: unset !important;
}

.related-product {
  position: relative;
  max-width: 340px;
  height: auto !important;
  background: white;
  border: 1.2px solid #E6E6E6;
  border-radius: 6px;
  box-shadow: 0 0 0 0 transparent;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.3s !important;
}
.related-product:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.related-img {
  display: block;
  max-width: 320px;
  margin: 0 auto;
  aspect-ratio: 1;
}
.related-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-info {
  width: 100%;
  padding: 12px 20px 20px 20px;
}
.related-info .product-availability {
  margin-bottom: 12px;
}

.related-title {
  margin: 12px 0;
}

@media (max-width: 900px) {
  .related-products, .viewed-products {
    padding: 56px 16px;
  }
}
@media (max-width: 768px) {
  .related-products {
    padding: 56px 16px 32px;
  }
  .related-head {
    margin-bottom: 24px;
  }
  .related-nav {
    display: none;
  }
  .related-info {
    padding: 16px 10px;
  }
  .related-info .product-availability {
    display: none;
  }
  .related-title {
    margin: 0 0 12px 0;
  }
}
.feedback-modal .modal-title {
  margin: 0 0 32px 0;
}
.feedback-modal .modal-text {
  color: #494C54;
}
.feedback-modal .modal-product {
  margin: 24px 0 32px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.feedback-modal .m-product-inner {
  display: flex;
  gap: 20px;
}
.feedback-modal .m-product-title {
  max-width: 435px;
  color: #494C54;
}
.feedback-modal .m-product-price {
  flex: 0 0 auto;
}
.feedback-modal .form-group {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feedback-modal .form-group .input {
  margin-bottom: 0;
}
.feedback-modal .input, .feedback-modal .textarea {
  margin-bottom: 16px;
}
.feedback-modal .form-btn {
  margin: 16px 0 0 auto;
}

@media (max-width: 768px) {
  .feedback-modal .modal-title {
    margin: 0 0 16px 0;
  }
  .feedback-modal .modal-text {
    margin-top: 32px;
  }
  .feedback-modal .modal-product {
    margin: 16px 0 24px 0;
  }
  .feedback-modal .m-product-inner {
    gap: 16px;
  }
  .feedback-modal .m-product-price {
    display: none;
  }
  .feedback-modal .form-group {
    width: 100%;
  }
  .feedback-modal .input, .feedback-modal .textarea {
    margin-bottom: 8px;
  }
}
@media (max-width: 480px) {
  .feedback-modal .form-btn {
    margin: 16px auto 0 auto;
    width: 100%;
  }
}
.ask-modal .modal-content {
  max-width: 600px;
}
.ask-modal .modal-close {
  top: 32px;
  right: 32px;
}
.ask-modal .modal-title {
  margin: 0 0 32px 0;
}
.ask-modal .modal-text {
  color: #494C54;
}
.ask-modal .modal-product {
  margin: 24px 0 32px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.ask-modal .m-product-inner {
  display: flex;
  gap: 20px;
}
.ask-modal .m-product-title {
  max-width: 435px;
  color: #494C54;
}
.ask-modal .m-product-price {
  flex: 0 0 auto;
}
.ask-modal .form-group {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ask-modal .form-group .input {
  margin-bottom: 0;
}
.ask-modal .input, .ask-modal .textarea {
  margin-bottom: 16px;
}
.ask-modal .form-btn {
  margin: 16px 0 0 auto;
}

@media (max-width: 768px) {
  .ask-modal .modal-title {
    margin: 0 0 16px 0;
  }
  .ask-modal .modal-text {
    margin-top: 32px;
  }
  .ask-modal .modal-product {
    margin: 16px 0 24px 0;
  }
  .ask-modal .m-product-inner {
    gap: 16px;
  }
  .ask-modal .m-product-price {
    display: none;
  }
  .ask-modal .form-group {
    width: 100%;
  }
  .ask-modal .input, .ask-modal .textarea {
    margin-bottom: 8px;
  }
}
@media (max-width: 480px) {
  .ask-modal .modal-close {
    top: 16px;
    right: 16px;
  }
  .ask-modal .form-btn {
    margin: 16px auto 0 auto;
    width: 100%;
  }
}