*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Roboto", "Helvetica Neue", Arial, "Segoe UI", sans-serif;
  background-color: #f5f5f5;
  color: rgba(0, 0, 0, 0.87);
  -webkit-font-smoothing: antialiased;
}

img {
  vertical-align: middle;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 16px;
}

.page__title {
  font-size: 16px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.87);
  margin: 0 0 16px;
}

.product__list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 13px;
}

.product__item {
  min-width: 0;
}
.product__item.d-block {
  display: block;
}
.product__item.d-none {
  display: none;
}

@media (max-width: 1024px) {
  .product__list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .product__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 480px) {
  .product__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.stardust-tabs-header-wrapper {
  z-index: 999;
  background: #f6f6f6;
  width: 100%;
  position: sticky;
  margin-bottom: 12px;
}

.stardust-tabs-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.0901960784);
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  background-color: #fff;
  border: 0;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.0509803922);
}
@media (max-width: 1199px) {
  .stardust-tabs-header {
    display: grid;
    justify-content: flex-start;
    grid-auto-columns: max-content;
    grid-auto-flow: column;
    grid-gap: 1.5rem;
    overflow: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-snap-stop: always;
    touch-action: manipulation;
    -webkit-overflow-scrolling: touch;
    scroll-padding: 1rem;
    grid-template-columns: unset;
  }
  .stardust-tabs-header::-webkit-scrollbar {
    display: none;
    width: 0;
  }
  .stardust-tabs-header > * {
    scroll-snap-align: start;
  }
}

.stardust-tabs-header__tab {
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.8705882353);
  flex: 1 0 auto;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  flex: auto;
  min-width: 6.25rem;
  padding: 0;
}
.stardust-tabs-header__tab--active {
  color: #ee4d2d;
}
.stardust-tabs-header__tab-title {
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #333;
  text-align: center;
  text-transform: capitalize;
  box-sizing: border-box;
  width: 100%;
  padding: 1.1875rem 0.625rem;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}
.stardust-tabs-header__tab-title--active {
  color: #ee4d2d;
}

.product-card {
  position: relative;
  height: 100%;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 6px;
  box-sizing: border-box;
  overflow: hidden;
  transition: transform 100ms cubic-bezier(0.4, 0, 0.6, 1), box-shadow 100ms cubic-bezier(0.4, 0, 0.6, 1);
}
.product-card:hover {
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.18);
  transform: translateY(-1px);
  z-index: 10;
}
.product-card:active {
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.12);
  transform: translateY(0);
}
.product-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
}
.product-card__media {
  position: relative;
  width: 100%;
  z-index: 0;
  padding-top: 100%;
}
.product-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  pointer-events: none;
}
.product-card__overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 10;
  width: 100%;
}
.product-card__overlay img {
  width: 100%;
  display: block;
}
.product-card__discount {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 30;
  padding: 2px 4px;
  font-size: 12px;
  line-height: 14px;
  font-weight: 500;
  color: #ee4d2d;
  background-color: #feeeea;
  border-bottom-left-radius: 4px;
}
.product-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 8px;
}
.product-card__title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
  min-height: 40px;
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  color: rgba(0, 0, 0, 0.87);
  font-weight: 400;
}
.product-card__promos {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  align-self: auto;
  overflow: hidden;
  gap: 4px;
  margin: 8px 0;
  font-size: 10px;
}
.product-card__flag {
  display: inline-block;
  height: 14px;
  margin-right: 2px;
  vertical-align: text-bottom;
}
.product-card__footer {
  display: flex;
  align-items: center;
  margin-top: auto;
}
.product-card__price {
  flex-shrink: 0;
  display: flex;
  align-items: baseline;
  margin-right: 2px;
  color: #ee4d2d;
  font-weight: 500;
  overflow: hidden;
}
.product-card__currency {
  font-size: 12px;
  margin-right: 1px;
  flex-shrink: 0;
}
.product-card__currency--prefix {
  order: -1;
}
.product-card__price-value {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
}
.product-card__voucher {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  width: 20px;
  height: 20px;
}
.product-card__voucher img {
  width: 20px;
  height: 20px;
  pointer-events: none;
}
.product-card__sold {
  margin-left: auto;
  flex-shrink: 1;
  min-height: 16px;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.87);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ribbons {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.tag {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  line-height: 1.4;
  padding: 1px 4px;
  font-weight: 500;
  white-space: nowrap;
}
.tag--favorite {
  color: #ee4d2d;
  border: 1px solid currentColor;
  border-radius: 2px;
  background: #fff;
}
.tag--mall {
  color: #fff;
  background: #d0011b;
  border-radius: 2px;
}
.tag--flash {
  color: #fff;
  background: #ee4d2d;
  border-radius: 2px;
}
.tag--inline {
  position: relative;
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  height: 16px;
  margin: 1px;
  padding: 2px 4px;
  font-size: 10px;
  line-height: 16px;
  font-weight: 500;
  color: #ee4d2d;
  border-radius: 2px;
  box-shadow: 0 0 0 0.5px #ee4d2d;
  pointer-events: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.flag-label {
  display: inline-flex;
  height: 14px;
  margin-right: 2px;
  border-radius: 2px;
  overflow: hidden;
  vertical-align: text-bottom;
  font-size: 10px;
  line-height: 14px;
}
.flag-label__voucher {
  background: #ffd900;
  color: #ee4d2d;
  padding: 0 3px;
  font-weight: 700;
}
.flag-label__style {
  background: #ee4d2d;
  color: #fff;
  padding: 0 3px;
  font-weight: 500;
}

.product-detail {
  display: flex;
  gap: 35px;
  padding: 15px;
  background-color: #ffffff;
  border-radius: 2px;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.05);
}
.product-detail__gallery {
  flex-shrink: 0;
  width: 450px;
}
.product-detail__image {
  position: relative;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
  cursor: zoom-in;
}
.product-detail__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.product-detail__image.is-fading img {
  opacity: 0;
}
.product-detail__thumbs {
  position: relative;
  margin-top: 8px;
}
.product-detail__thumbs-viewport {
  overflow: hidden;
}
.product-detail__thumbs-track {
  display: flex;
  gap: 8px;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.6, 1);
}
.product-detail__thumb {
  position: relative;
  flex: 0 0 calc((100% - 32px) / 5);
  min-width: 0;
  padding: 0;
  border: 2px solid transparent;
  background: none;
  cursor: pointer;
  transition: border-color 100ms cubic-bezier(0.4, 0, 0.6, 1);
}
.product-detail__thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-detail__thumb:hover, .product-detail__thumb--active {
  border-color: #ee4d2d;
}
.product-detail__thumb-nav {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 20px;
  height: 40px;
  transform: translateY(-50%);
  border: none;
  background-color: rgba(0, 0, 0, 0.2);
  color: #ffffff;
  font-size: 14px;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
}
.product-detail__thumb-nav--prev {
  left: 0;
}
.product-detail__thumb-nav--next {
  right: 0;
}
.product-detail__thumb-nav:hover {
  background-color: rgba(0, 0, 0, 0.4);
}
.product-detail__info {
  flex: 1;
  min-width: 0;
}
.product-detail__title {
  margin: 0;
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.87);
  word-break: break-word;
}
.product-detail__meta {
  display: flex;
  align-items: center;
  margin-top: 10px;
  font-size: 14px;
  flex-wrap: wrap;
  gap: 15px 0;
}
.product-detail__meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
}
.product-detail__meta-item + .product-detail__meta-item {
  margin-left: 15px;
  padding-left: 15px;
  border-left: 1px solid rgba(0, 0, 0, 0.09);
}
.product-detail__rating-score {
  font-size: 16px;
  color: #ee4d2d;
  text-decoration: underline;
}
.product-detail__stars {
  color: #ee4d2d;
  font-size: 14px;
  letter-spacing: 1px;
}
.product-detail__meta-value {
  font-size: 16px;
  text-decoration: underline;
}
.product-detail__meta-label {
  color: rgba(0, 0, 0, 0.54);
}
.product-detail__price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding: 15px 20px;
  background-color: #fafafa;
}
.product-detail__price-current {
  font-size: 30px;
  font-weight: 500;
  color: #ee4d2d;
}
@media (max-width: 767px) {
  .product-detail__price-current {
    font-size: 20px;
  }
}
.product-detail__price-old {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.54);
  text-decoration: line-through;
}
.product-detail__price-discount {
  padding: 2px 4px;
  font-size: 12px;
  font-weight: 600;
  color: #ee4d2d;
  background-color: #feeeea;
  border-radius: 2px;
}
.product-detail__section {
  display: flex;
  margin-top: 25px;
}
.product-detail__section-label {
  flex-shrink: 0;
  width: 110px;
  padding-top: 4px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.54);
}
.product-detail__section-content {
  flex: 1;
  min-width: 0;
}
.product-detail__shipping-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.87);
}
.product-detail__shipping-row svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #26aa99;
}
.product-detail__shipping-fee {
  margin-top: 4px;
  padding-left: 28px;
  font-size: 14px;
  font-weight: 500;
  color: #26aa99;
}
.product-detail__shipping-note {
  margin-top: 4px;
  padding-left: 28px;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.54);
}
.product-detail__variants {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.product-detail__variant {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.87);
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 2px;
  cursor: pointer;
  overflow: hidden;
}
.product-detail__variant:hover {
  color: #ee4d2d;
  border-color: #ee4d2d;
}
.product-detail__variant--active {
  color: #ee4d2d;
  border-color: #ee4d2d;
}
.product-detail__variant--active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 14px 14px;
  border-color: transparent transparent #ee4d2d transparent;
}
.product-detail__variant--active::before {
  content: "";
  position: absolute;
  right: 2px;
  bottom: 3px;
  z-index: 1;
  width: 4px;
  height: 6px;
  border: solid #ffffff;
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}
.product-detail__variant img {
  width: 24px;
  height: 24px;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-detail__swatch {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 2px;
}
.product-detail__qty {
  display: flex;
  align-items: center;
}
.product-detail__qty-btn {
  width: 32px;
  height: 32px;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.87);
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.09);
  cursor: pointer;
}
.product-detail__qty-btn:first-child {
  border-radius: 2px 0 0 2px;
}
.product-detail__qty-input {
  width: 50px;
  height: 32px;
  font-size: 16px;
  text-align: center;
  color: rgba(0, 0, 0, 0.87);
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-left: none;
  border-right: none;
  outline: none;
}
.product-detail__qty-btn:last-of-type {
  border-radius: 0 2px 2px 0;
}
.product-detail__stock {
  margin-left: 15px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.54);
}
.product-detail__actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}
.product-detail__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 48px;
  padding: 0 20px;
  font-size: 14px;
  border-radius: 2px;
  cursor: pointer;
  transition: opacity 100ms cubic-bezier(0.4, 0, 0.6, 1);
}
.product-detail__btn svg {
  width: 20px;
  height: 20px;
}
.product-detail__btn--cart {
  color: #ee4d2d;
  background-color: rgba(238, 77, 45, 0.08);
  border: 1px solid #ee4d2d;
}
.product-detail__btn--cart:hover {
  background-color: rgba(238, 77, 45, 0.05);
}
.product-detail__btn--buy {
  min-width: 180px;
  color: #ffffff;
  background-color: #ee4d2d;
  border: 1px solid #ee4d2d;
}
.product-detail__btn--buy:hover {
  opacity: 0.9;
}

@media (max-width: 850px) {
  .product-detail {
    flex-direction: column;
  }
  .product-detail__gallery {
    width: 100%;
  }
  .product-detail__section-label {
    width: 90px;
  }
  .product-detail__colors,
  .product-detail__sizes {
    flex-direction: column;
    gap: 10px;
  }
}
.product-detail__description {
  padding: 25px 16px;
  background: #fff;
  background-color: #fff;
  border-radius: 2px;
  box-shadow: rgba(0, 0, 0, 0.0509803922) 0px 1px 1px 0px;
  color: rgba(0, 0, 0, 0.8);
  font-size: 14px;
  line-height: 16.8px;
  margin: 15px 0px 0px;
}
@media (max-width: 767px) {
  .product-detail__description {
    padding: 25px;
  }
}
.product-detail__description-title {
  background-color: rgba(0, 0, 0, 0.0196078431);
  color: rgba(0, 0, 0, 0.8705882353);
  font-size: 18px;
  font-weight: 500;
  line-height: 21.6px;
  padding: 14px;
  text-transform: uppercase;
  margin: 0;
}
.product-detail__description-text {
  padding: 15px;
}

@keyframes lightbox-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes lightbox-zoom-in {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox[hidden] {
  display: none;
}
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  animation: lightbox-fade-in 200ms cubic-bezier(0.4, 0, 0.6, 1);
}
.lightbox__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  width: 1156px;
  height: 100%;
  max-width: calc(100vw - 40px);
  max-height: calc(100vh - 40px);
  background-color: #ffffff;
  border-radius: 2px;
  overflow: hidden;
  animation: lightbox-zoom-in 250ms cubic-bezier(0.4, 0, 0.6, 1);
}
.lightbox__close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  font-size: 28px;
  line-height: 40px;
  color: rgba(0, 0, 0, 0.54);
  cursor: pointer;
}
.lightbox__close:hover {
  color: rgba(0, 0, 0, 0.87);
}
.lightbox__stage {
  position: relative;
  flex-shrink: 0;
  width: 848px;
  max-width: 65%;
}
.lightbox__image {
  position: relative;
  width: 100%;
  height: 100%;
  padding-top: 100%;
  background-color: #fafafa;
}
.lightbox__image img,
.lightbox__image video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.lightbox__image img[hidden],
.lightbox__image video[hidden] {
  display: none !important;
}
.lightbox__image.is-fading img, .lightbox__image.is-fading video {
  opacity: 0;
}
.lightbox__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 40px;
  height: 80px;
  transform: translateY(-50%);
  border: none;
  background-color: rgba(0, 0, 0, 0.2);
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
  transition: background-color 100ms cubic-bezier(0.4, 0, 0.6, 1);
}
.lightbox__nav:hover {
  background-color: rgba(0, 0, 0, 0.4);
}
.lightbox__nav--prev {
  left: 0;
}
.lightbox__nav--next {
  right: 0;
}
.lightbox__side {
  flex: 1;
  min-width: 0;
  padding: 20px;
  overflow-y: auto;
}
.lightbox__title {
  margin: 0 0 15px;
  padding-right: 20px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.87);
}
.lightbox__thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.lightbox__thumb {
  position: relative;
  padding: 0;
  border: 2px solid transparent;
  background: none;
  cursor: pointer;
  transition: border-color 100ms cubic-bezier(0.4, 0, 0.6, 1);
}
.lightbox__thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
}
.lightbox__thumb:hover, .lightbox__thumb--active {
  border-color: #ee4d2d;
}

@media (max-width: 700px) {
  .lightbox__dialog {
    flex-direction: column;
  }
  .lightbox__stage {
    width: 100%;
    max-width: 100%;
  }
}
header {
  padding: 10px 16px;
  background: #fff;
  margin-bottom: 16px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
header img {
  width: 120px;
  height: 80px;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}/*# sourceMappingURL=main.css.map */