/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote::before, blockquote::after,
q::before, q::after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
@font-face {
  font-family: Mont-bold;
  src: url("/react_phone-catalog/fonts/Mont-Bold.otf");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Mont-regular;
  src: url("/react_phone-catalog/fonts/Mont-Regular.otf");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Mont-semibold;
  src: url("/react_phone-catalog/fonts/Mont-SemiBold.otf");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
.text-h1 {
  font-size: 32px;
  line-height: 41px;
  letter-spacing: -0.01em;
  font-family: Mont-bold, sans-serif;
  font-weight: 700;
  color: var(--color-white);
}
@media (min-width: 640px) {
  .text-h1 {
    font-size: 48px;
    line-height: 56px;
  }
}
.text-h2 {
  font-size: 22px;
  line-height: 31px;
  font-family: Mont-bold, sans-serif;
  font-weight: 700;
  color: var(--color-white);
}
@media (min-width: 640px) {
  .text-h2 {
    font-size: 32px;
    line-height: 41px;
    letter-spacing: -0.01em;
  }
}
.text-h3 {
  font-size: 20px;
  line-height: 26px;
  font-family: Mont-semibold, sans-serif;
  font-weight: 600;
  color: var(--color-white);
}
@media (min-width: 640px) {
  .text-h3 {
    font-size: 22px;
    line-height: 31px;
    font-family: Mont-bold, sans-serif;
    font-weight: 700;
  }
}
.text-h4 {
  font-size: 16px;
  line-height: 20px;
  font-family: Mont-semibold, sans-serif;
  font-weight: 600;
  color: var(--color-white);
}
@media (min-width: 640px) {
  .text-h4 {
    font-size: 20px;
    line-height: 26px;
  }
}
.text-uppercase {
  font-size: 12px;
  line-height: 11px;
  letter-spacing: 0.04em;
  font-family: Mont-bold, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-white);
}
.text-button {
  font-size: 14px;
  line-height: 21px;
  font-family: Mont-semibold, sans-serif;
  font-weight: 600;
  color: var(--color-white);
}
.text-body {
  font-size: 14px;
  line-height: 21px;
  font-family: Mont-regular, sans-serif;
  font-weight: 400;
  color: var(--color-white);
}
.text-small {
  font-size: 12px;
  line-height: 15px;
  font-family: Mont-semibold, sans-serif;
  font-weight: 600;
  color: var(--color-secondary);
}
body {
  background: var(--color-black);
}
.App {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.appContainer {
  flex: 1;
}
* {
  scroll-behavior: smooth;
  transition: background-color var(--time);
}
:root {
  --color-secondary: #75767f;
  --color-icons: #4a4d58;
  --color-elements: #3b3e4a;
  --color-surface-two: #323542;
  --color-surface-one: #161827;
  --color-black: #0f1121;
  --color-white: #f1f2f9;
  --color-accent: #7e63e6;
  --color-green: #27ae60;
  --color-red: #eb5757;
  --color-primary-hover: #947de8;
  --time: 0.5s;
  --card-padding: 24px;
  --card-height: 440px;
  --card-skeleton: linear-gradient(lightgrey var(--card-height), transparent 0);
  --avatar-size: 200px;
  --avatar-position: var(--card-padding) var(--card-padding);
  --avatar-skeleton: radial-gradient(
    circle 100px at center,
    white 99%,
    transparent 0
  );
  --title-height: 32px;
  --title-width: 200px;
  --title-position: var(--card-padding) 180px;
  --title-skeleton: linear-gradient(white var(--title-height), transparent 0);
  --desc-line-height: 16px;
  --desc-line-skeleton: linear-gradient(
    white var(--desc-line-height),
    transparent 0
  );
  --desc-line-1-width: 230px;
  --desc-line-1-position: var(--card-padding) 242px;
  --desc-line-2-width: 180px;
  --desc-line-3-width: 200px;
  --desc-line-2-position: var(--card-padding) 265px;
  --desc-line-3-position: var(--card-padding) 288px;
  --footer-height: 40px;
  --footer-position: 0 calc(var(--card-height) - var(--footer-height));
  --footer-skeleton: linear-gradient(white var(--footer-height), transparent 0);
  --blur-width: 200px;
  --blur-size: var(--blur-width) calc(var(--card-height) - var(--footer-height));
}
:root[data-theme=light] {
  --color-secondary: #5a6573;
  --color-icons: #7f8998;
  --color-elements: #bac3d1;
  --color-surface-two: #d5dce8;
  --color-surface-one: #fff;
  --color-black: #f3f5f9;
  --color-white: #172033;
  --color-accent: #6c58c8;
  --color-primary-hover: #5d4aad;
}
.container {
  width: 86%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1199px) {
  .container {
    max-width: 1136px;
    position: relative;
  }
}
.button {
  padding: 8px;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  text-decoration: none;
  background-color: var(--color-surface-two);
  transition: background-color var(--time);
}
.button:hover {
  background-color: var(--color-icons);
}
.likes-button,
.cart-button {
  display: none;
}
@media (min-width: 640px) {
  .likes-button,
  .cart-button {
    display: block;
  }
}
button {
  cursor: pointer;
}
.invisible {
  visibility: hidden;
  position: absolute;
}
.banner {
  padding-top: 24px;
  padding-bottom: 56px;
}
@media (min-width: 640px) {
  .banner {
    padding-top: 32px;
    padding-bottom: 64px;
  }
}
@media (min-width: 1199px) {
  .banner {
    padding-top: 56px;
    padding-bottom: 80px;
  }
}
.disabled {
  background-color: var(--color-black);
  border: 1px solid var(--color-elements);
}
.disabled:hover {
  background-color: inherit;
}
.heading__icon-left {
  transform: rotate(180deg);
}
.product {
  display: flex;
  gap: 16px;
  list-style: none;
  justify-content: start;
}
@media (min-width: 640px) {
  .product {
    justify-content: space-between;
  }
}
.selected {
  background-color: var(--color-surface-two);
}
.grid-list {
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 40px;
  justify-content: center;
}
@media (min-width: 640px) {
  .grid-list {
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 15px;
  }
}.swiper-pagination-bullet,
.swiper-pagination-bullet-active {
  margin-inline: 5px;
  margin-block: 10px;
  width: 14px;
  height: 4px;
  background-color: var(--color-elements);
}

.swiper-pagination-bullet-active {
  background-color: white;
}

.swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}._icon_3ezpc_1 {
  width: 16px;
}

._iconLight_3ezpc_5 {
  filter: brightness(0) saturate(100%);
}

._linkButton_3ezpc_9 {
  position: absolute;
  top: 8px;
  right: 8px;
  background-color: red;
  color: white;
  border-radius: 999px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  font-size: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

._button_3ezpc_27 {
  display: none;
  color: white;
  position: relative;
  padding: 16px;
  background-color: var(--color-black);
  border: none;
  border-left: 1px solid var(--color-surface-two);
  border-bottom: 2px solid transparent;
  box-sizing: border-box;
}
@media (min-width: 640px) {
  ._button_3ezpc_27 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
  }
}
@media (min-width: 1199px) {
  ._button_3ezpc_27 {
    padding: 24px;
  }
}

._underline_3ezpc_53 {
  border-bottom: 2px solid var(--color-white);
}._header_1gyny_1 {
  margin: 0;
  position: sticky;
  top: 0;
  z-index: 20;
  background-color: var(--color-black);
}

._row_1gyny_9 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 48px;
  padding-left: 16px;
  border-bottom: 1px solid var(--color-surface-two);
}
@media (min-width: 1199px) {
  ._row_1gyny_9 {
    padding-left: 24px;
  }
}

._headerContent_1gyny_23 {
  display: flex;
  align-items: center;
  gap: 24px;
  min-width: 0;
}

._buttons_1gyny_30 {
  display: flex;
  align-items: center;
  margin-left: auto;
  align-self: stretch;
}

._controls_1gyny_37 {
  display: none;
}
@media (min-width: 640px) {
  ._controls_1gyny_37 {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-right: 8px;
  }
}

._desktopSearch_1gyny_49 {
  display: none;
}
@media (min-width: 640px) {
  ._desktopSearch_1gyny_49 {
    display: block;
    width: 280px;
  }
}

._mobileSearch_1gyny_59 {
  border-bottom: 1px solid var(--color-surface-two);
}
@media (min-width: 640px) {
  ._mobileSearch_1gyny_59 {
    display: none;
  }
}

._controlButton_1gyny_68 {
  border: 1px solid var(--color-elements);
  background: var(--color-surface-one);
  color: var(--color-white);
  font-size: 10px;
  line-height: 10px;
  padding: 6px 8px;
  cursor: pointer;
}

._button_1gyny_30 {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
  width: 48px;
  height: 48px;
  padding: 0;
  background-color: var(--color-black);
  border: none;
  border-left: 1px solid var(--color-surface-two);
  cursor: pointer;
  flex-shrink: 0;
}
@media (min-width: 640px) {
  ._button_1gyny_30 {
    display: none;
  }
}
@media (min-width: 1199px) {
  ._button_1gyny_30 {
    width: 64px;
    height: 64px;
  }
}

._icon_1gyny_105 {
  width: 16px;
}

._iconLight_1gyny_109 {
  filter: brightness(0) saturate(100%);
}._logo_1cjqh_1 {
  display: inline-flex;
  align-items: center;
}

._logoImage_1cjqh_6 {
  display: block;
}

._logoImageLight_1cjqh_10 {
  display: block;
  filter: brightness(0) saturate(100%);
}._navigation_c2hw5_1 {
  display: none;
}
@media (min-width: 640px) {
  ._navigation_c2hw5_1 {
    display: flex;
    align-items: center;
    gap: 16px;
  }
}
@media (min-width: 1199px) {
  ._navigation_c2hw5_1 {
    gap: 24px;
  }
}

._navigationMobile_c2hw5_17 {
  display: flex;
  width: 100%;
  justify-content: center;
}

._list_c2hw5_23 {
  display: none;
  margin: 0;
}
@media (min-width: 640px) {
  ._list_c2hw5_23 {
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 32px;
  }
}
@media (min-width: 1199px) {
  ._list_c2hw5_23 {
    gap: 64px;
  }
}

._listMobile_c2hw5_42 {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

._item_c2hw5_52 {
  padding-top: 9px;
  padding-bottom: 20px;
  border-bottom: 2px solid transparent;
  box-sizing: border-box;
}

._itemMobile_c2hw5_59 {
  padding-top: 0;
  padding-bottom: 0;
}

._link_c2hw5_64 {
  box-sizing: border-box;
  text-decoration: none;
  display: inline-block;
  padding: 10px;
}

._underline_c2hw5_71 {
  border-bottom: 2px solid var(--color-white);
}._menu_15tpf_1 {
  position: fixed;
  inset: 0;
  z-index: 10;
  background-color: var(--color-black);
  display: flex;
  flex-direction: column;
}

._header_15tpf_10 {
  border-bottom: 1px solid var(--color-surface-two);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

._logo_15tpf_17 {
  padding-inline: 16px;
  padding-block: 13px;
}

._logoImage_15tpf_22 {
  display: block;
}

._logoImageLight_15tpf_26 {
  filter: brightness(0) saturate(100%);
}

._button_15tpf_30 {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-left: 1px solid var(--color-surface-two);
  width: 57px;
  height: 57px;
  background-color: transparent;
}

._closeIcon_15tpf_41 {
  display: block;
}

._closeIconLight_15tpf_45 {
  filter: brightness(0) saturate(100%);
}

._content_15tpf_49 {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

._controls_15tpf_59 {
  display: flex;
  gap: 8px;
}

._controlButton_15tpf_64 {
  border: 1px solid var(--color-elements);
  background: var(--color-surface-one);
  color: var(--color-white);
  font-size: 11px;
  line-height: 11px;
  padding: 8px;
}

._buttons_15tpf_73 {
  display: flex;
  align-items: center;
  border-top: 1px solid var(--color-surface-two);
}

._iconButton_15tpf_79 {
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  height: 64px;
  border-left: 1px solid var(--color-surface-two);
  background-color: var(--color-black) !important;
}

._iconButton_15tpf_79:first-child {
  border-left: none;
}._wrapper_lyrsb_1 {
  width: 100%;
  padding: 8px 16px;
}
@media (min-width: 640px) {
  ._wrapper_lyrsb_1 {
    padding: 0;
    max-width: 280px;
  }
}

._input_lyrsb_12 {
  width: 100%;
  height: 36px;
  padding: 0 12px;
  border: 1px solid var(--color-elements);
  background: var(--color-surface-one);
  color: var(--color-white);
}
._input_lyrsb_12::placeholder {
  color: var(--color-secondary);
}
._input_lyrsb_12:focus {
  outline: none;
  border-color: var(--color-accent);
}._footer_caauz_1 {
  padding-bottom: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--color-surface-two);
}

._content_caauz_7 {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 640px) {
  ._content_caauz_7 {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

._logo_caauz_20 {
  width: 192px;
}

._logoImage_caauz_24 {
  display: block;
}

._logoImageLight_caauz_28 {
  filter: brightness(0) saturate(100%);
}

._navigation_caauz_32 {
  display: flex;
  align-items: center;
}

._list_caauz_37 {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 640px) {
  ._list_caauz_37 {
    flex-direction: row;
    gap: 13px;
  }
}
@media (min-width: 1199px) {
  ._list_caauz_37 {
    flex-direction: row;
    gap: 106px;
  }
}

._link_caauz_58 {
  text-decoration: none;
}

._button_caauz_62 {
  width: 192px;
  text-decoration: none;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
@media (min-width: 640px) {
  ._button_caauz_62 {
    justify-content: end;
    margin: 0;
  }
}

._wrapper_caauz_78 {
  padding: 8px;
}

._icon_caauz_82 {
  width: 16px;
  height: 16px;
  transform: rotate(-90deg);
}._prevIcon_64bmf_1 {
  transform: rotate(180deg);
}

._prevButton_64bmf_5,
._nextButton_64bmf_6 {
  top: 0;
  z-index: 999;
  position: absolute;
  height: auto;
  display: none;
  transition: background-color var(--time);
}
@media (min-width: 640px) {
  ._prevButton_64bmf_5,
  ._nextButton_64bmf_6 {
    display: initial;
  }
}

._prevButton_64bmf_5 {
  left: 0;
  height: 95%;
}

._nextButton_64bmf_6 {
  right: 0;
  height: 95%;
}

._extra_64bmf_31 {
  height: inherit;
  position: inherit;
}/**
 * Swiper 12.0.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: September 18, 2025
 */

:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
  .swiper-slide,
  .swiper-cube-shadow {
    transform-style: preserve-3d;
  }
}

/* CSS Mode */
.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper::before {
      content: '';
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
  }
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress),
.swiper-watch-progress .swiper-slide-visible {
  .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
  }
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
._slide_1lo3s_1 {
  display: flex;
  align-items: center;
  justify-content: center;
}

._image_1lo3s_7 {
  width: 100%;
}
@media (min-width: 640px) {
  ._image_1lo3s_7 {
    width: 90%;
  }
}

._swiper_1lo3s_16 {
  margin-bottom: 56px;
}
@media (min-width: 640px) {
  ._swiper_1lo3s_16 {
    margin-bottom: 64px;
  }
}
@media (min-width: 640px) {
  ._swiper_1lo3s_16 {
    margin-bottom: 80px;
  }
}._item_9pb76_1 {
  width: 100%;
  max-width: 506px;
  background-color: var(--color-surface-one);
  padding: 32px;
  min-width: 212px;
  transition: border var(--time);
  border: 1px solid transparent;
}

._item_9pb76_1:hover {
  border: 1px solid var(--color-surface-two);
}

._name_9pb76_15 {
  height: 42px;
}

._image_9pb76_19 {
  width: 100%;
  height: 220px;
  object-fit: contain;
  margin-bottom: 24px;
}

._wrapper_9pb76_26 {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

._price_9pb76_34 {
  border-bottom: 1px solid var(--color-elements);
}

._characteristics_9pb76_38 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding-top: 16px;
}

._row_9pb76_46 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

._value_9pb76_52 {
  text-align: end;
}

._action_9pb76_56 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}._actionButtons_11uu8_1 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}._addButton_1ksby_1 {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  flex-grow: 1;
  border: none;
  background-color: var(--color-accent);
}

._hover_1ksby_12:hover {
  background-color: var(--color-primary-hover);
}

._addedToCards_1ksby_16 {
  background-color: var(--color-surface-two);
}._like_14vhg_1 {
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  box-sizing: border-box;
  background-color: var(--color-icons);
}

._like_14vhg_1:hover {
  background-color: var(--color-secondary);
}

._addedToFavorite_14vhg_15 {
  background-color: transparent;
  border: 1px solid var(--color-elements);
}._slide_b7ns7_1 {
  min-width: 212px;
}

._products_b7ns7_5 {
  overflow: hidden;
  margin: 0;
  padding-bottom: 56px;
}
@media (min-width: 640px) {
  ._products_b7ns7_5 {
    padding-bottom: 64px;
  }
}
@media (min-width: 1199px) {
  ._products_b7ns7_5 {
    padding-bottom: 80px;
  }
}

._slider_b7ns7_21 {
  display: flex;
  gap: 16px;
  list-style: none;
  justify-content: start;
}
@media (min-width: 640px) {
  ._slider_b7ns7_21 {
    justify-content: space-between;
  }
}._heading_182jh_1 {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

._buttons_182jh_9 {
  display: flex;
  gap: 16px;
  justify-content: end;
}

._button_182jh_9 {
  padding: 8px;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid transparent;
  box-sizing: border-box;
  text-decoration: none;
  background-color: var(--color-surface-two);
  transition: background-color var(--time);
}

._button_182jh_9:hover {
  background-color: var(--color-icons);
}

._buttonDisabled_182jh_33 {
  background-color: var(--color-black);
  border: 1px solid var(--color-elements);
}

._buttonDisabled_182jh_33:hover {
  background-color: var(--color-black);
}

._iconLeft_182jh_42 {
  transform: rotate(180deg);
}

._iconRight_182jh_46 {
  display: block;
}._category_r7w4w_1 {
  padding-bottom: 56px;
}
@media (min-width: 640px) {
  ._category_r7w4w_1 {
    padding-bottom: 64px;
  }
}
@media (min-width: 1199px) {
  ._category_r7w4w_1 {
    padding-bottom: 80px;
  }
}

._heading_r7w4w_15 {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

._categoryList_r7w4w_23 {
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
@media (min-width: 640px) {
  ._categoryList_r7w4w_23 {
    flex-direction: row;
    justify-content: space-between;
    gap: 16px;
  }
}

._categoryItem_r7w4w_40 {
  list-style: none;
  width: 100%;
  transition: transform var(--time);
}

._categoryItem_r7w4w_40:hover {
  transform: scale(1.08);
  z-index: 19;
}

._categoryLink_r7w4w_51 {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  height: 288px;
  margin-bottom: 24px;
}
@media (min-width: 640px) {
  ._categoryLink_r7w4w_51 {
    height: 187px;
  }
}
@media (min-width: 1199px) {
  ._categoryLink_r7w4w_51 {
    height: 368px;
  }
}

._categoryImage_r7w4w_70 {
  position: absolute;
  right: -10%;
  bottom: -20%;
  height: 100%;
}

._categoryName_r7w4w_77 {
  margin-bottom: 4px;
}._title_f13oc_1 {
  margin-bottom: 24px;
}
@media (min-width: 640px) {
  ._title_f13oc_1 {
    margin-bottom: 32px;
  }
}
@media (min-width: 1199px) {
  ._title_f13oc_1 {
    margin-bottom: 56px;
    margin-top: 56px;
  }
}@keyframes _pulse_1bxwh_1 {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
._shimmer_1bxwh_9 {
  background: linear-gradient(90deg, var(--color-surface-one) 25%, var(--color-elements) 50%, var(--color-surface-one) 75%);
  background-size: 300% 100%;
  animation: _pulse_1bxwh_1 1.2s ease-in-out infinite;
}

._loaderBox_1bxwh_15 {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  ._loaderBox_1bxwh_15 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1199px) {
  ._loaderBox_1bxwh_15 {
    grid-template-columns: repeat(4, 1fr);
  }
}

._card_1bxwh_31 {
  width: 100%;
  min-height: 440px;
  border: 1px solid var(--color-elements);
  border-radius: 8px;
}

._details_1bxwh_38 {
  padding-top: 25px;
  padding-bottom: 56px;
}

._line_1bxwh_43 {
  height: 16px;
  border-radius: 6px;
}

._bread_1bxwh_48 {
  width: min(280px, 100%);
  margin-bottom: 24px;
}

._back_1bxwh_53 {
  width: 70px;
  margin-bottom: 16px;
}

._title_1bxwh_58 {
  width: min(560px, 100%);
  height: 40px;
  margin-bottom: 32px;
}

._topGrid_1bxwh_64 {
  display: grid;
  gap: 24px;
  margin-bottom: 56px;
}
@media (min-width: 640px) {
  ._topGrid_1bxwh_64 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 17px;
  }
}
@media (min-width: 1199px) {
  ._topGrid_1bxwh_64 {
    gap: 64px;
  }
}

._gallery_1bxwh_81 {
  display: flex;
  flex-direction: column-reverse;
  gap: 16px;
}
@media (min-width: 640px) {
  ._gallery_1bxwh_81 {
    display: grid;
    grid-template-columns: 35px minmax(0, 1fr);
  }
}
@media (min-width: 1199px) {
  ._gallery_1bxwh_81 {
    grid-template-columns: 66px minmax(0, 1fr);
  }
}

._thumbs_1bxwh_98 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
@media (min-width: 640px) {
  ._thumbs_1bxwh_98 {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 1fr);
  }
}
@media (min-width: 1199px) {
  ._thumbs_1bxwh_98 {
    gap: 16px;
  }
}

._thumb_1bxwh_98 {
  width: 100%;
  height: 46px;
  border-radius: 4px;
}

._mainImage_1bxwh_121 {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 8px;
}

._meta_1bxwh_127 {
  width: 100%;
  margin-bottom: 12px;
}

._colorsRow_1bxwh_132,
._capacityRow_1bxwh_133 {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

._color_1bxwh_132 {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

._capacity_1bxwh_133 {
  width: 64px;
  height: 32px;
  border-radius: 4px;
}

._price_1bxwh_151 {
  width: 160px;
  height: 40px;
  margin-bottom: 16px;
}

._buttonsRow_1bxwh_157 {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
}

._buttonMain_1bxwh_163 {
  flex: 1;
  height: 40px;
  border-radius: 4px;
}

._buttonIcon_1bxwh_169 {
  width: 40px;
  height: 40px;
  border-radius: 4px;
}

._spec_1bxwh_175 {
  width: 100%;
  margin-bottom: 8px;
}

._bottomGrid_1bxwh_180 {
  display: grid;
  gap: 56px;
}
@media (min-width: 1199px) {
  ._bottomGrid_1bxwh_180 {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

._section_1bxwh_191 {
  width: 180px;
  height: 32px;
  margin-bottom: 24px;
}

._paragraph_1bxwh_197 {
  width: 100%;
  margin-bottom: 12px;
}._breadcrumbs_18b79_1 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  margin-top: 24px;
}
@media (min-width: 640px) {
  ._breadcrumbs_18b79_1 {
    margin-bottom: 40px;
  }
}

._home_18b79_14 {
  flex-shrink: 0;
}

._con_18b79_18 {
  width: 16px;
}

._list_18b79_22 {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

._item_18b79_31 {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

._link_18b79_38 {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 8px;
}

._whiteLink_18b79_45 {
  color: var(--color-white);
}

._itemCut_18b79_49 {
  white-space: nowrap;
  overflow: hidden;
}

._arrow_18b79_54 {
  width: 16px;
}._products_7wtnk_1 {
  overflow: hidden;
  margin: 0;
  padding-bottom: 56px;
}
@media (min-width: 640px) {
  ._products_7wtnk_1 {
    padding-bottom: 64px;
  }
}
@media (min-width: 1199px) {
  ._products_7wtnk_1 {
    padding-bottom: 80px;
  }
}._pagination_1nr0c_1 {
  padding-top: 24px;
  padding-bottom: 64px;
}

._content_1nr0c_6 {
  display: flex;
  align-items: center;
  justify-content: center;
}

._nav_1nr0c_12 {
  display: flex;
  align-items: center;
  gap: 16px;
}

._icon_1nr0c_18 {
  width: 16px;
}

._iconLeft_1nr0c_22 {
  transform: rotate(180deg);
}

._list_1nr0c_26 {
  display: flex;
  align-items: center;
  gap: 8px;
}

._pageNumber_1nr0c_32 {
  background-color: var(--color-surface-one);
}

._pageNumber_1nr0c_32:hover {
  background-color: var(--color-elements);
}

._selected_1nr0c_40 {
  background-color: var(--color-accent);
}._content_1p3qg_1 {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 8px;
}

._head_1p3qg_8 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

._wrapper_1p3qg_15 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
@media (min-width: 640px) {
  ._wrapper_1p3qg_15 {
    width: 340px;
  }
}

._label_1p3qg_27 {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

._dropdown_1p3qg_34 {
  background-color: var(--color-icons);
  height: 40px;
  color: var(--color-white);
}
@media (min-width: 640px) {
  ._dropdown_1p3qg_34 {
    width: 187px;
  }
}
@media (min-width: 640px) {
  ._dropdown_1p3qg_34 {
    width: 176px;
  }
}

@media (min-width: 640px) {
  ._small_1p3qg_51 {
    width: 136px;
  }
}
@media (min-width: 640px) {
  ._small_1p3qg_51 {
    width: 128px;
  }
}._noProducts_1jl1t_1 {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}._favorites_7dvgr_1 {
  padding-top: 24px;
  padding-bottom: 32px;
}

._container_7dvgr_6 {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

._content_7dvgr_12 {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

._products_7dvgr_18 {
  overflow: hidden;
  margin: 0;
  padding-bottom: 56px;
}
@media (min-width: 640px) {
  ._products_7dvgr_18 {
    padding-bottom: 64px;
  }
}
@media (min-width: 1199px) {
  ._products_7dvgr_18 {
    padding-bottom: 80px;
  }
}

@media (min-width: 640px) {
  ._grid_7dvgr_35 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1199px) {
  ._grid_7dvgr_35 {
    grid-template-columns: repeat(4, 1fr);
  }
}._cart_1bgl5_1 {
  padding-top: 24px;
  padding-bottom: 56px;
}

@media (min-width: 1199px) {
  ._content_1bgl5_7 {
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }
}

._tittle_1bgl5_14 {
  margin-bottom: 32px;
}

._cards_1bgl5_18 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}
@media (min-width: 1199px) {
  ._cards_1bgl5_18 {
    flex-grow: 2;
  }
}

._card_1bgl5_18 {
  background-color: var(--color-surface-one);
  padding-block: 16px;
  padding-inline: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 640px) {
  ._card_1bgl5_18 {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

._cardBottom_1bgl5_47,
._cardTop_1bgl5_48 {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (min-width: 640px) {
  ._cardBottom_1bgl5_47,
  ._cardTop_1bgl5_48 {
    width: 50%;
  }
}

._cardBottom_1bgl5_47 {
  width: 100%;
  justify-content: space-between;
}
@media (min-width: 640px) {
  ._cardBottom_1bgl5_47 {
    width: 50%;
  }
}

._iconWrapper_1bgl5_70 {
  display: flex;
  align-items: center;
}

._closeButton_1bgl5_75 {
  align-self: center;
  background-color: transparent;
  border: none;
  cursor: pointer;
}

._countButton_1bgl5_82 {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: var(--color-surface-two);
  cursor: pointer;
}

._cardButtons_1bgl5_93 {
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

._cardPicture_1bgl5_100 {
  width: 80px;
}

._productPrice_1bgl5_104 {
  width: 100px;
}

._incrementIcon_1bgl5_108 {
  transform: rotate(45deg);
}

._count_1bgl5_82 {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
}

._cartSubtext_1bgl5_121 {
  color: var(--color-secondary);
}

._cartSubtext_1bgl5_121::after {
  margin-bottom: 16px;
  margin-top: 16px;
  display: block;
  content: "";
  width: 100%;
  border-bottom: 1px solid var(--color-surface-two);
}
@media (min-width: 1199px) {
  ._cartSubtext_1bgl5_121::after {
    margin-bottom: 24px;
    margin-top: 25px;
  }
}

._checkout_1bgl5_140 {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 24px;
  border: 1px solid var(--color-surface-two);
  min-width: 288px;
}
@media (min-width: 1199px) {
  ._checkout_1bgl5_140 {
    flex-grow: 1;
    min-width: 368px;
  }
}

._checkoutButton_1bgl5_155 {
  border: none;
  background-color: var(--color-accent);
  padding: 13.5px;
  cursor: pointer;
}

._checkoutButton_1bgl5_155:hover {
  background-color: var(--color-primary-hover);
}._overlay_4k2l7_1 {
  position: fixed;
  inset: 0;
  z-index: 20;
  background: rgba(15, 17, 33, 0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

._modal_4k2l7_12 {
  width: min(100%, 420px);
  border: 1px solid var(--color-elements);
  background: var(--color-surface-one);
  padding: 24px;
}

._title_4k2l7_19 {
  margin-bottom: 16px;
}

._message_4k2l7_23 {
  color: var(--color-secondary);
  margin-bottom: 24px;
}

._actions_4k2l7_28 {
  display: flex;
  gap: 8px;
}

._cancel_4k2l7_33,
._confirm_4k2l7_34 {
  border: none;
  padding: 10px;
  flex: 1;
  cursor: pointer;
}

._cancel_4k2l7_33 {
  background: var(--color-surface-two);
}

._confirm_4k2l7_34 {
  background: var(--color-accent);
}

._confirm_4k2l7_34:hover {
  background: var(--color-primary-hover);
}._page_1q97n_1 {
  padding-top: 25px;
  padding-bottom: 56px;
}

._message_1q97n_6 {
  padding-block: 40px;
}

._breadcrumbs_1q97n_10 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  overflow: hidden;
}

._breadcrumbHome_1q97n_18 {
  display: flex;
  align-items: center;
}

._breadcrumbLink_1q97n_23 {
  text-decoration: none;
  text-transform: capitalize;
}

._breadcrumbCurrent_1q97n_28 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

._title_1q97n_34 {
  margin-bottom: 32px;
  text-align: center;
}
@media (min-width: 640px) {
  ._title_1q97n_34 {
    text-align: start;
  }
}

._hero_1q97n_44 {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 56px;
}
@media (min-width: 640px) {
  ._hero_1q97n_44 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 17px;
  }
}
@media (min-width: 1199px) {
  ._hero_1q97n_44 {
    gap: 64px;
    margin-bottom: 80px;
  }
}

._leftHalf_1q97n_64 {
  display: flex;
  flex-direction: column-reverse;
  gap: 16px;
}
@media (min-width: 640px) {
  ._leftHalf_1q97n_64 {
    display: grid;
    grid-template-columns: 35px 1fr;
    align-items: start;
    gap: 60px;
  }
}
@media (min-width: 1199px) {
  ._leftHalf_1q97n_64 {
    grid-template-columns: 66px 1fr;
    gap: 95px;
  }
}

._thumbs_1q97n_84 {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
}
@media (min-width: 640px) {
  ._thumbs_1q97n_84 {
    grid-template-columns: 1fr;
    grid-auto-rows: min-content;
    align-content: start;
    margin: 0;
    width: 35px;
  }
}
@media (min-width: 1199px) {
  ._thumbs_1q97n_84 {
    width: 80px;
    gap: 16px;
  }
}

._thumb_1q97n_84 {
  padding: 0;
  width: 100%;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-elements);
  background: transparent;
  cursor: pointer;
  transition: border var(--time);
}

._thumb_1q97n_84:hover {
  border-color: var(--color-white);
}

._thumbActive_1q97n_125 {
  border-color: var(--color-white);
}

._thumbImage_1q97n_129 {
  padding: 3px;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

._mainImageWrap_1q97n_137 {
  max-width: 100%;
  aspect-ratio: 1/1;
  padding-right: 24px;
  padding-left: 24px;
  margin-bottom: 16px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 640px) {
  ._mainImageWrap_1q97n_137 {
    max-width: 464px;
  }
}

._mainImage_1q97n_137 {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

._purchase_1q97n_162 {
  display: flex;
  flex-direction: column;
  width: 100%;
}

._colorsBlock_1q97n_168 {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-elements);
}

._colorsHeader_1q97n_173 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  padding-bottom: 8px;
  margin-bottom: 8px;
  width: 100%;
}

._productId_1q97n_183 {
  color: var(--color-icons);
  white-space: nowrap;
}

._productIdTablet_1q97n_188 {
  display: inline;
}
@media (min-width: 1199px) {
  ._productIdTablet_1q97n_188 {
    display: none;
  }
}

._idColumn_1q97n_197 {
  display: none;
}
@media (min-width: 1199px) {
  ._idColumn_1q97n_197 {
    display: block;
    padding-top: 2px;
  }
}

._rightHalf_1q97n_207 {
  width: 100%;
}
@media (min-width: 1199px) {
  ._rightHalf_1q97n_207 {
    display: grid;
    grid-template-columns: 1fr 0.5fr;
    place-items: start end;
    column-gap: 16px;
  }
}

._colorsList_1q97n_219 {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

._colorItem_1q97n_228 {
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-elements);
  border-radius: 50%;
  padding: 2px;
}

._colorItemActive_1q97n_236 {
  border-color: var(--color-white);
}

._colorButton_1q97n_240 {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

._colorDisabled_1q97n_247 {
  opacity: 0.5;
}

._capacityBlock_1q97n_251 {
  padding-block: 24px;
  border-bottom: 1px solid var(--color-elements);
}

._capacityList_1q97n_256 {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

._capacityButton_1q97n_265 {
  border: 1px solid var(--color-icons);
  background: transparent;
  color: var(--color-white);
  text-decoration: none;
  padding: 7px 8px 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

._capacityActive_1q97n_276 {
  background: var(--color-white);
  color: var(--color-black);
  border-color: var(--color-white);
}

._capacityDisabled_1q97n_282 {
  opacity: 0.5;
}

._priceWrap_1q97n_286 {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 32px;
  margin-bottom: 16px;
}

._regularPrice_1q97n_294 {
  color: var(--color-secondary);
  text-decoration: line-through;
}

._actions_1q97n_299 {
  margin-bottom: 32px;
}

._buttonRow_1q97n_303 {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
}

._shortSpecs_1q97n_309 {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

._shortSpecsRow_1q97n_318 {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

._shortSpecsRow_1q97n_318 span:last-child {
  color: var(--color-white);
  text-transform: uppercase;
}

._info_1q97n_329 {
  display: grid;
  gap: 56px;
  margin-bottom: 56px;
}
@media (min-width: 1199px) {
  ._info_1q97n_329 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 64px;
    margin-bottom: 80px;
  }
}

._sectionTitle_1q97n_342 {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-elements);
  margin-bottom: 32px;
}

._aboutPart_1q97n_348 {
  margin-bottom: 32px;
}

._aboutPart_1q97n_348 h3 {
  margin-bottom: 16px;
}

._aboutText_1q97n_356 {
  color: var(--color-secondary);
  margin-bottom: 16px;
}

._specsList_1q97n_361 {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

._specsRow_1q97n_370 {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

._specsRow_1q97n_370 span:last-child {
  color: var(--color-white);
  text-align: right;
  text-transform: uppercase;
}

._suggestions_1q97n_382 {
  overflow: hidden;
}._button_uhbnz_1 {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--color-white);
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  margin-bottom: 16px;
}

._arrow_uhbnz_13 {
  transform: rotate(180deg);
}