.product-page__breadcrumbs {
  margin-bottom: 24px;
}

.product-info {
  display: flex;
  box-sizing: border-box;
  width: 100%;
  flex-direction: column;
}
.product-info__code-wrap {
  display: inline-flex;
  margin-bottom: 12px;
  align-items: center;
  gap: 6px;
}
.product-info__code {
  color: var(--color-gray-400);
  font-weight: 500;
  font-size: 14px;
  font-family: var(--font-family), serif;
}
.product-info__code--brand {
  color: var(--color-brand);
}
.product-info__copy-btn {
  display: inline-flex;
  padding: 0;
  align-items: center;
  justify-content: center;
  color: var(--color-brand);
  background: none;
  border: none;
  transition: opacity 0.2s ease;
  cursor: pointer;
}
.product-info__copy-btn:hover {
  opacity: 0.7;
}
.product-info__copy-btn svg {
  display: block;
  width: 14px;
  height: 14px;
}
.product-info__title {
  margin: 0 0 12px 0;
  color: var(--color-f-black);
  font-weight: 500;
  font-size: 36px;
  font-family: var(--font-family), serif;
  line-height: 1.2;
}
@media (max-width: 1023px) {
  .product-info__title {
    font-size: 24px;
  }
}
.product-info__subtitle {
  max-width: 90%;
  margin: 0 0 32px 0;
  color: var(--color-gray-600);
  font-size: 14px;
  font-family: var(--font-family), serif;
  line-height: 1.5;
}

.product-kit-link {
  position: relative;
  display: flex;
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 36px;
  padding: 12px;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  background-color: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: 12px;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}
.product-kit-link:has(+ .product-kit-link) {
  margin-bottom: 5px;
}
.product-kit-link--compact .product-kit-link__img-wrap {
  width: 54px;
  height: 54px;
}
.product-kit-link--compact:has(+ .product-kit-link) {
  margin-bottom: 8px;
}
@media (min-width: 1440px) {
  .product-kit-link--compact {
    height: 78px;
  }
}
@media (max-width: 1023px) {
  .product-kit-link {
    margin-bottom: 0;
  }
}
.product-kit-link:hover {
  border-color: var(--color-brand);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}
.product-kit-link:hover .product-kit-link__arrow {
  color: var(--color-brand);
  transform: translate(2px, -2px);
}
.product-kit-link__img-wrap {
  width: 94px;
  height: 94px;
  flex-shrink: 0;
  background-color: var(--color-gray-100);
  border-radius: 8px;
  overflow: hidden;
}
.product-kit-link__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.product-kit-link__content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.product-kit-link__label {
  color: var(--color-gray-400);
  font-size: 12px;
  font-family: var(--font-family), serif, serif;
}
.product-kit-link__code {
  color: var(--color-brand);
  font-weight: 500;
  font-size: 12px;
  font-family: var(--font-family), serif, serif;
}
.product-kit-link__title {
  color: var(--color-black);
  font-weight: 500;
  font-size: 14px;
  font-family: var(--font-family), serif, serif;
}
.product-kit-link__arrow {
  position: absolute;
  top: 16px;
  right: 16px;
  color: var(--color-gray-400);
  transition: color var(--transition-base), transform var(--transition-base);
}

.product-kit-list__title {
  margin: 12px 0 0;
}

.product-action {
  display: flex;
  box-sizing: border-box;
  width: 100%;
  padding: 16px;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
  background-color: var(--color-gray-1);
  border: none;
  border-radius: 0;
}
@media (max-width: 1023px) {
  .product-action {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    height: 80px;
    padding: 20px 32px;
    justify-content: center;
    gap: 20px;
    opacity: 1;
    background-color: var(--color-white);
    border: none;
    border-radius: 0;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
  }
}
.product-action__title {
  display: none;
}
.product-action__desc {
  order: 2;
  margin: 0;
  color: var(--color-bw-100);
  font-weight: 450;
  font-size: 14px;
  font-family: var(--font-family);
  line-height: 20px;
  text-align: center;
}
@media (max-width: 1023px) {
  .product-action__desc {
    display: none;
  }
}
.product-action__btn {
  display: inline-flex;
  box-sizing: border-box;
  width: 100%;
  height: 56px;
  order: 1;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 500;
  font-size: 16px;
  font-family: var(--font-family);
  line-height: 20px;
  text-align: center;
  text-decoration: none;
  background-color: var(--color-red);
  border-radius: 0;
  transition: background-color var(--transition-base);
  cursor: pointer;
}
@media (max-width: 1023px) {
  .product-action__btn {
    height: 40px;
  }
}
.product-action__btn:hover {
  background-color: var(--color-red-darken);
}

.product-specs {
  margin-bottom: 28px;
}
.product-specs p {
  margin: 0 0 16px 0;
  color: var(--color-black);
  font-weight: 500;
  font-size: 18px;
  font-family: var(--font-family), serif, serif;
  line-height: 24px;
  letter-spacing: 0.05em;
}
.product-specs p:not(:first-child) {
  margin-top: 36px;
}
.product-specs ul {
  display: flex;
  margin: 0;
  padding: 0;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}
.product-specs li {
  display: flex;
  align-items: center;
  gap: 14px;
}
.product-specs li::before {
  display: block;
  width: 7px;
  height: 7px;
  margin-top: 1px;
  flex-shrink: 0;
  background-color: var(--marker-color, var(--color-brand));
  border-radius: 2px;
  transform: rotate(45deg);
  content: "";
}
.product-specs li:nth-child(6n+1) {
  --marker-color: #ff723a;
}
.product-specs li:nth-child(6n+2) {
  --marker-color: #f34aff;
}
.product-specs li:nth-child(6n+3) {
  --marker-color: #86c3ef;
}
.product-specs li:nth-child(6n+4) {
  --marker-color: #797979;
}
.product-specs li:nth-child(6n+5) {
  --marker-color: #1bf307;
}
.product-specs li:nth-child(6n+6) {
  --marker-color: #ffcf68;
}
.product-specs li > span {
  color: var(--color-gray-600);
  font-size: 14px;
  font-family: var(--font-family), serif, serif;
  line-height: 1.4;
}
.product-specs ul:nth-of-type(2) li::before {
  width: 8px;
  height: 8px;
  margin-top: 0;
  background-color: var(--Blacks-BW_40, #c2bfbe);
  border-radius: 50px;
  opacity: 1;
  transform: none;
}
.product-specs--standards {
  margin-bottom: 36px;
}

.product-specs__text {
  color: var(--color-gray-600);
  font-size: 14px;
  font-family: var(--font-family), serif, serif;
  line-height: 1.4;
}

.product-layout {
  display: grid;
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 48px;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 1024px) and (max-width: 1440px) {
  .product-layout {
    grid-template-columns: 514px minmax(0, 1fr);
    align-items: start;
    gap: 32px;
    margin-bottom: 64px;
  }
}
@media (min-width: 1441px) {
  .product-layout {
    grid-template-columns: 1.8fr minmax(0, 1fr);
    align-items: start;
    gap: 48px;
    margin-bottom: 72px;
  }
}

.product-gallery {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
}
@media (min-width: 1024px) {
  .product-gallery {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}
@media (max-width: 1023px) {
  .product-gallery {
    order: 1;
  }
}
.product-gallery__list {
  display: grid;
  width: 100%;
  gap: 16px;
}
@media (min-width: 1024px) {
  .product-gallery__list {
    max-width: 1052px;
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (max-width: 1023px) {
  .product-gallery__list {
    display: flex;
    margin-right: calc(var(--gutter-mobile) * -1);
    margin-left: calc(var(--gutter-mobile) * -1);
    padding-right: var(--gutter-mobile);
    padding-bottom: 8px;
    padding-left: var(--gutter-mobile);
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .product-gallery__list::-webkit-scrollbar {
    display: none;
  }
}
.product-gallery__item {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  background-color: var(--color-gray-200);
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .product-gallery__item {
    width: 280px;
    height: 373px;
    flex-shrink: 0;
    border-radius: 12px;
    scroll-snap-align: start;
  }
}
@media (min-width: 1024px) and (max-width: 1440px) {
  .product-gallery__item--main {
    aspect-ratio: 5/7;
    height: auto;
    grid-column: 1/-1;
  }
}
@media (min-width: 1441px) {
  .product-gallery__item--main {
    aspect-ratio: 5/7;
    height: auto;
    grid-column: span 3;
  }
}
@media (min-width: 1024px) and (max-width: 1440px) {
  .product-gallery__item--main-reduced {
    aspect-ratio: 3/4;
    height: auto;
    grid-column: span 3;
  }
}
@media (min-width: 1441px) {
  .product-gallery__item--main-reduced {
    aspect-ratio: 5/7;
    height: auto;
    grid-column: span 3;
  }
}
@media (min-width: 1024px) and (max-width: 1440px) {
  .product-gallery__item--reduced {
    aspect-ratio: 3/4;
    height: auto;
    grid-column: span 3;
  }
}
@media (min-width: 1441px) {
  .product-gallery__item--reduced {
    aspect-ratio: 3/4;
    height: auto;
    grid-column: span 2;
  }
}
@media (min-width: 1024px) and (max-width: 1440px) {
  .product-gallery__item--hide-mid {
    display: none;
  }
}
.product-gallery__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  pointer-events: none;
}
.product-gallery__more-btn {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 5;
  display: flex;
  box-sizing: border-box;
  width: calc(100% - 24px);
  height: 36px;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 500;
  font-size: 14px;
  font-family: var(--font-family), serif, serif;
  background: rgba(17, 16, 16, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background-color var(--transition-base);
  cursor: pointer;
}
@media (max-width: 1023px) {
  .product-gallery__more-btn {
    right: 8px;
    bottom: 8px;
    left: 8px;
    width: calc(100% - 16px);
    font-size: 12px;
  }
}
.product-gallery__expand {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
  display: flex;
  box-sizing: border-box;
  width: 30px;
  height: 30px;
  padding: 0;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
}
.product-gallery__expand svg {
  display: block;
  width: 30px;
  height: 30px;
}
.product-gallery__expand--first {
  top: 8px;
  left: 8px;
  right: auto;
}
@media (min-width: 1441px) {
  .product-gallery__expand--first {
    display: none;
  }
}
@media (max-width: 1440px) {
  .product-gallery__expand--second {
    display: none;
  }
}

.product-info {
  display: flex;
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .product-info {
    position: sticky;
    top: 140px;
    grid-column: 2/3;
    grid-row: 1/4;
  }
}
@media (max-width: 1023px) {
  .product-info {
    order: 2;
  }
}

.product-description {
  position: relative;
  display: flex;
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  padding: 24px;
  flex-direction: column;
  background-color: #fcfcfc;
  border-radius: 8px;
}
@media (min-width: 1024px) {
  .product-description {
    margin-bottom: -24px;
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
@media (max-width: 1023px) {
  .product-description {
    order: 3;
    margin-bottom: -16px;
  }
}
.product-description__marker {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  width: 10px;
  height: 10px;
  background-color: #e42121;
}
.product-description__content {
  display: flex;
  width: 100%;
  min-width: 0;
  flex-direction: column;
}
@media (max-width: 1023px) {
  .product-description__content {
    order: 2;
  }
}
.product-description__title {
  margin: 0 0 20px 0;
  color: var(--color-brand);
  font-weight: 500;
  font-size: 18px;
  font-family: var(--font-family), serif, serif;
  line-height: 24px;
}
.product-description__text-wrap {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 10px;
}
.product-description__text-wrap p {
  margin: 0;
  color: var(--color-bw-100);
  font-family: var(--font-family), serif, serif;
  font-weight: 450;
  letter-spacing: 0;
  font-size: 14px;
  line-height: 20px;
  word-break: break-word;
}
@media (min-width: 1440px) {
  .product-description__text-wrap p {
    font-size: 16px;
    line-height: 24px;
  }
}
.product-description__schemes {
  display: flex;
  box-sizing: border-box;
  width: 100%;
  margin-top: 32px;
  flex-direction: row;
  gap: 16px;
}
@media (max-width: 1023px) {
  .product-description__schemes {
    margin-top: 0;
    margin-bottom: 24px;
    order: 1;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .product-description__schemes::-webkit-scrollbar {
    display: none;
  }
}
.product-description__scheme-item {
  display: flex;
  width: 120px;
  height: 120px;
  padding: 12px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  background-color: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: 8px;
}
@media (max-width: 1023px) {
  .product-description__scheme-item {
    scroll-snap-align: start;
  }
}
.product-description__scheme-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-tabs-section {
  position: relative;
  display: flex;
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  padding: 24px;
  flex-direction: column;
  background-color: #fcfcfc;
  border-radius: 8px;
}
@media (min-width: 1024px) {
  .product-tabs-section {
    margin-bottom: 48px;
    grid-column: 1/2;
    grid-row: 3/4;
  }
}
@media (max-width: 1023px) {
  .product-tabs-section {
    order: 4;
  }
}
.product-tabs-section__marker {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  width: 10px;
  height: 10px;
  background-color: #e42121;
}
.product-tabs-section__header {
  display: flex;
  width: 100%;
  margin-bottom: 24px;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
@media (max-width: 1439px) {
  .product-tabs-section__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
@media (max-width: 1023px) {
  .product-tabs-section__header {
    margin-bottom: 16px;
    gap: 12px;
  }
}
.product-tabs-section__title {
  margin: 0;
  color: var(--color-brand);
  font-weight: 500;
  font-size: 18px;
  font-family: var(--font-family), serif, serif;
  line-height: 24px;
}
.product-tabs-section__content {
  display: flex;
  width: 100%;
  min-width: 0;
  flex-direction: column;
  gap: 12px;
}
.product-tabs-section__highlight {
  margin: 0;
  color: var(--color-black);
  font-weight: 500;
  font-size: 14px;
  font-family: var(--font-family), serif, serif;
}

.product-tabs {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}
.product-tabs__btn {
  display: inline-flex;
  box-sizing: border-box;
  height: 28px;
  padding: 4px 14px;
  align-items: center;
  justify-content: center;
  color: var(--color-bw-100);
  font-weight: 500;
  font-size: 16px;
  font-family: var(--font-family);
  line-height: 20px;
  background-color: var(--color-gray-2);
  border: none;
  border-radius: 0;
  transition: var(--transition-base);
  cursor: pointer;
}
.product-tabs__btn:hover {
  color: var(--color-brand);
}
.product-tabs__btn--active {
  color: var(--color-white);
  background-color: var(--color-red);
}
.product-tabs__btn--active:hover {
  color: var(--color-white);
}

.related-products {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  font-family: var(--font-family), serif;
  overflow: hidden;
}
.related-products__title-container {
  display: flex;
  margin-top: 6px;
  margin-bottom: 40px;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 1024px) and (max-width: 1440px) {
  .related-products__title-container {
    margin-top: 8px;
  }
}
@media (min-width: 1441px) {
  .related-products__title-container {
    margin-top: 10px;
  }
}
@media (max-width: 1023px) {
  .related-products__title-container {
    margin-top: 6px;
    margin-bottom: 24px;
  }
}
.related-products__grid {
  display: flex;
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 122px;
  gap: 24px;
}
@media (min-width: 1920px) {
  .related-products__grid {
    gap: 24px;
  }
}
@media (max-width: 1023px) {
  .related-products__grid {
    margin-right: calc(var(--gutter-mobile) * -1);
    margin-bottom: 60px;
    margin-left: calc(var(--gutter-mobile) * -1);
    padding-right: var(--gutter-mobile);
    padding-bottom: var(--gutter-mobile);
    padding-left: var(--gutter-mobile);
    flex-wrap: nowrap;
    gap: var(--gutter-mobile);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .related-products__grid::-webkit-scrollbar {
    display: none;
  }
}

.solution-card {
  display: flex;
  box-sizing: border-box;
  flex-direction: column;
  text-decoration: none;
}
@media (min-width: 1024px) {
  .solution-card {
    width: calc((100% - 72px) / 4);
    flex-shrink: 0;
  }
}
@media (max-width: 1023px) {
  .solution-card {
    width: 224px;
    flex-shrink: 0;
    scroll-snap-align: start;
  }
}
@media (min-width: 769px) and (max-width: 1023px) {
  .solution-card {
    width: 212px;
  }
}
.solution-card__img-wrap {
  position: relative;
  box-sizing: border-box;
  aspect-ratio: 2/3;
  width: 100%;
  background-color: var(--color-gray-200);
  border-radius: 16px;
  overflow: hidden;
}
@media (min-width: 1920px) {
  .solution-card__img-wrap {
    height: 602px;
  }
}
@media (min-width: 769px) and (max-width: 1023px) {
  .solution-card__img-wrap {
    height: 360px;
  }
}
@media (max-width: 768px) {
  .solution-card__img-wrap {
    height: 363px;
  }
}
.solution-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform var(--transition-base);
}
.solution-card:hover .solution-card__img {
  transform: scale(1.02);
}
.solution-card:hover .solution-card__title {
  color: var(--color-brand);
}
.solution-card__content {
  display: flex;
  width: 100%;
  padding-top: 16px;
  flex-direction: column;
  gap: 4px;
}
.solution-card__category {
  color: var(--color-bw-100);
  font-weight: 450;
  font-size: 14px;
  line-height: 20px;
  font-family: var(--font-family), serif;
  line-height: 1.2;
}
.solution-card__title {
  margin: 0;
  color: var(--color-surface-slot);
  font-weight: 450;
  font-size: 14px;
  line-height: 20px;
  font-family: var(--font-family), serif;
  line-height: 1.4;
  transition: color var(--transition-base);
}

.product-gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-family: var(--font-family), serif, serif;
  background: rgba(0, 0, 0, 0.4509803922);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.product-gallery-lightbox[hidden] {
  display: none;
}
.product-gallery-lightbox__backdrop {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.product-gallery-lightbox__stage {
  position: relative;
  z-index: 2;
  display: flex;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 0 64px;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.product-gallery-lightbox__stage .product-gallery-lightbox__img {
  pointer-events: auto;
}
@media (max-width: 1023px) {
  .product-gallery-lightbox__stage {
    padding: 72px 24px 24px;
  }
}
.product-gallery-lightbox__img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  opacity: 1;
  object-fit: contain;
  transform: scale(1);
  transition: opacity 0.25s ease, transform 0.25s ease;
  user-select: none;
  -webkit-user-drag: none;
}
@media (max-width: 1023px) {
  .product-gallery-lightbox__img {
    width: 100%;
    height: auto;
    max-height: 100%;
  }
}
.product-gallery-lightbox__img--fade {
  opacity: 0;
  transform: scale(0.96);
}
.product-gallery-lightbox__arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: flex;
  box-sizing: border-box;
  width: 56px;
  height: 56px;
  padding: 0;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  background: transparent;
  border: none;
  transform: translateY(-50%);
  transition: color var(--transition-base);
  cursor: pointer;
}
@media (min-width: 1024px) {
  .product-gallery-lightbox__arrow::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140px;
    height: 140px;
    transform: translate(-50%, -50%);
    content: "";
  }
}
.product-gallery-lightbox__arrow:hover {
  color: var(--color-brand);
}
.product-gallery-lightbox__arrow svg {
  display: block;
  width: 40px;
  height: 40px;
}
@media (max-width: 1023px) {
  .product-gallery-lightbox__arrow {
    display: none;
  }
}
.product-gallery-lightbox__arrow--prev {
  left: 32px;
}
@media (max-width: 1023px) {
  .product-gallery-lightbox__arrow--prev {
    left: 16px;
  }
}
.product-gallery-lightbox__arrow--next {
  right: 32px;
}
@media (max-width: 1023px) {
  .product-gallery-lightbox__arrow--next {
    right: 16px;
  }
}
.product-gallery-lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 6;
  display: flex;
  box-sizing: border-box;
  width: 44px;
  height: 44px;
  padding: 0;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  background: transparent;
  border: none;
  transition: color var(--transition-base);
  cursor: pointer;
}
.product-gallery-lightbox__close:hover {
  color: var(--color-brand);
}
.product-gallery-lightbox__close svg {
  display: block;
  width: 24px;
  height: 24px;
}
@media (max-width: 1023px) {
  .product-gallery-lightbox__close {
    top: 16px;
    right: 16px;
  }
}

/*# sourceMappingURL=product-card.css.map */
