@charset "UTF-8";.ui-folder {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ui-folder__title {
  transition: color var(--transition);
  color: var(--wp--preset--color--black);
  font-family: var(--wp--preset--font-family--pt-sans-narrow);
  font-weight: var(--font-weight);
  font-size: var(--font-size);
  line-height: var(--line-height);
}
@media (hover: hover) {
  .ui-folder:not(._selected):hover .folder-icon__body {
    fill: var(--wp--preset--color--white);
  }
  .ui-folder:not(._selected):hover .folder-icon__accent {
    fill: var(--grey-2);
  }
}

.folder-icon__body {
  transition: fill var(--transition);
  fill: var(--grey-2);
}
.folder-icon__accent {
  transition: fill var(--transition);
  fill: var(--grey-3);
}
.folder-icon._selected .folder-icon__body {
  fill: var(--wp--preset--color--orange);
}
.folder-icon._selected .folder-icon__accent {
  fill: var(--orange-dark);
}.navigation {
  display: flex;
  gap: 24px;
}
.navigation__item {
  max-width: 68px;
}.ui-chip {
  flex-shrink: 0;
  list-style: none;
  width: max-content;
  background-color: var(--wp--preset--color--grey);
  border: var(--hq-border-outset);
  font-family: var(--wp--preset--font-family--pt-sans-narrow);
  font-weight: var(--font-weight);
  user-select: none;
}
.ui-chip._clickable {
  cursor: pointer;
  transition: background-color var(--transition);
}
@media (hover: hover) {
  .ui-chip._clickable:hover {
    background-color: var(--orange-dark);
  }
}
.ui-chip._clickable:active {
  background-color: var(--orange-dark);
  border: var(--hq-border-inset);
}
.ui-chip._selected {
  background-color: var(--wp--preset--color--white);
}
.ui-chip:not(.ui-chip._clickable) {
  cursor: auto;
}
.ui-chip._size-m {
  padding: 5px 10px;
  font-size: var(--font-size);
  line-height: var(--line-height);
}
.ui-chip._size-l {
  padding: 10px;
  font-size: var(--font-size-l);
  line-height: var(--line-height-l);
}.filter {
  display: flex;
  gap: 2px;
}
.ui-button {
  border: var(--hq-border-outset);
  transition: background-color var(--transition);
}
.ui-button:focus {
  /* Перекрытие стилей */
  border: var(--hq-border-outset);
}
@media (hover: hover) {
  .ui-button:hover {
    /* Перекрытие стилей */
    border: var(--hq-border-outset);
  }
}
.ui-button._disabled {
  background-color: var(--wp--preset--color--grey);
  cursor: auto;
}
.ui-button:not(:disabled):active {
  border: var(--hq-border-inset);
}
.ui-button._shape-auto {
  width: 100%;
  padding: 9px;
  color: var(--wp--preset--color--white);
  text-shadow: var(--font-shadow);
}
.ui-button._shape-auto:focus {
  /* Перекрытие стилей */
  background-color: var(--wp--preset--color--orange);
}
.ui-button._shape-auto:not(:disabled) {
  background-color: var(--wp--preset--color--orange);
}
@media (hover: hover) {
  .ui-button._shape-auto:not(:disabled):hover {
    background-color: var(--orange-dark);
  }
}
.ui-button._shape-auto:not(:disabled):active {
  background-color: var(--orange-dark);
}
.ui-button._shape-square {
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--wp--preset--color--black);
  background-color: var(--wp--preset--color--grey);
  user-select: none;
}
@media (hover: hover) {
  .ui-button._shape-square:not(:disabled):hover {
    background-color: var(--wp--preset--color--white);
  }
}
.ui-button._shape-square:not(:disabled):active {
  background-color: var(--wp--preset--color--white);
}
.ui-button._shape-square:not(:disabled) svg {
  fill: var(--wp--preset--color--black);
}
.ui-button._shape-square._disabled {
  color: var(--grey-1);
}
.ui-button._shape-square._disabled svg {
  fill: var(--grey-1);
}
.ui-button._shape-square._selected {
  background-color: var(--orange-dark);
  color: var(--wp--preset--color--black);
}
.ui-button._shape-square._selected svg {
  fill: var(--wp--preset--color--black);
}.ui-counter {
  display: flex;
  align-items: center;
}
.ui-counter__value {
  min-width: 40px;
  text-align: center;
  font-family: var(--wp--preset--font-family--druk-wide);
  font-weight: var(--font-weight-l);
  font-size: var(--font-size-l);
  line-height: var(--line-height);
  user-select: none;
}.card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  border: var(--hq-border-outset);
  overflow: hidden;
}
.card .swiper {
  margin-bottom: 12px;
}
.card__image {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.card__navigation .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 0;
  border: 1px solid var(--wp--preset--color--white);
  background: transparent;
  opacity: 1;
}
.card__navigation .swiper-pagination-bullet-active {
  background: var(--wp--preset--color--white);
}
.card__title-container {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--wp--preset--color--white);
  font-family: var(--wp--preset--font-family--druk-wide);
  font-weight: var(--font-weight-l);
  font-size: var(--font-size-xl);
  line-height: var(--line-height-l);
}
.card__title {
  margin: 0 !important;
  color: var(--wp--preset--color--white);
  text-shadow: var(--font-shadow);
}
.card__price {
  margin: 0 !important;
  color: var(--orange-dark);
}
.card__subtitle {
  margin-bottom: 8px;
  color: var(--wp--preset--color--black);
  font-family: var(--wp--preset--font-family--pt-sans-narrow);
  font-weight: var(--font-weight);
  font-size: var(--font-size-l);
  line-height: var(--line-height-l);
}
.card__options-container {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}
.card__options:last-child {
  flex-shrink: 0;
  width: 90px;
}
@media screen and (min-width: 1441px) {
  .card__options:last-child {
    width: 98px;
  }
}
.card__options-title {
  margin-bottom: 8px;
  color: var(--wp--preset--color--black);
  font-family: var(--wp--preset--font-family--pt-sans-narrow);
  font-weight: var(--font-weight-xl);
  font-size: var(--font-size);
  line-height: var(--line-height);
}
.card__options-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.card__actions-container {
  display: flex;
  gap: 8px;
}
.card__actions-cart-button-text {
  font-size: var(--font-size);
  line-height: var(--line-height);
}.pagination {
  display: flex;
  justify-content: center;
  gap: 4px;
  font-family: var(--wp--preset--font-family--pt-sans-narrow);
}
.pagination__ellipsis {
  margin: 0 4px;
  align-self: flex-end;
  text-align: center;
  font-weight: var(--font-weight-xl);
}
.pagination__text {
  font-weight: var(--font-weight-xl);
}
.wysiwyg h3 {
  margin-bottom: 12px;
  font-family: var(--wp--preset--font-family--druk-wide);
  font-weight: var(--font-weight-l);
  font-size: var(--font-size-xl);
  line-height: var(--line-height-l);
}
.wysiwyg p {
  /* Перекрытие стилей */
  margin: 0 0 8px 0;
  font-family: var(--wp--preset--font-family--pt-sans-narrow);
  font-weight: var(--font-weight);
  font-size: var(--font-size-l);
  line-height: var(--line-height-l);
}
.wysiwyg ul {
  margin-bottom: 8px;
  /* Перекрытие стилей */
  padding-left: 16px;
}
.wysiwyg li {
  list-style-type: square;
  font-family: var(--wp--preset--font-family--pt-sans-narrow);
  font-weight: var(--font-weight);
  font-size: var(--font-size-l);
  line-height: var(--line-height-l);
}.info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .info {
    gap: 32px;
  }
}
.info__row {
  display: flex;
  gap: 32px;
}
.info__row._reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 1024px) {
  .info__row {
    flex-direction: column;
  }
  .info__row._reverse {
    flex-direction: column;
  }
}
.info__text {
  flex: 1;
}
.info__image {
  flex: 1;
}
.info__image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}:root {
  /* region Colors */
  --orange-dark: #ff6827;
  --grey-1: #696969;
  --grey-2: #b3b3b3;
  --grey-3: #969696;
  --backdrop-color: #00000033;
  /* endregion */
  /* region Fonts */
  --font-size: 12px;
  --font-size-l: 14px;
  --font-size-xl: 16px;
  --line-height: 14px;
  --line-height-l: 16px;
  --font-weight: 400;
  --font-weight-l: 500;
  --font-weight-xl: 700;
  --font-shadow:
    #000 0px -2px 0px, #000 0px -2px 0px, #000 0px 2px 0px, #000 0px 2px 0px, #000 -2px 0px 0px, #000 2px 0px 0px,
    #000 -2px 0px 0px, #000 2px 0px 0px, #000 -1px -2px 0px, #000 1px -2px 0px, #000 -1px 2px 0px, #000 1px 2px 0px,
    #000 -2px -1px 0px, #000 2px -1px 0px, #000 -2px 1px 0px, #000 2px 1px 0px, #000 -2px -2px 0px, #000 2px -2px 0px,
    #000 -2px 2px 0px, #000 2px 2px 0px;
  /* endregion */
  /* region Borders */
  --hq-border-outset: 2px outset buttonface;
  --hq-border-inset: 2px inset buttonface;
  /* endregion */
  /* region Transitions */
  --duration: 0.15s;
  --transition: var(--duration) ease-in-out;
  /* endregion */
  /* region z-index */
  --z-index-backdrop: 10000;
  --z-index-dropdown: 10001;
  /* endregion */
}.ui-dropdown {
  position: relative;
}
.ui-dropdown__anchor {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px;
  border: var(--hq-border-inset);
  cursor: pointer;
}
.ui-dropdown__anchor-part {
  display: flex;
  align-items: center;
  gap: 4px;
}
.ui-dropdown__backdrop {
  display: none;
  position: fixed;
  z-index: var(--z-index-backdrop);
  inset: 0;
  background-color: var(--backdrop-color);
}
.ui-dropdown__content {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-index-dropdown);
  padding: 8px;
  border: var(--hq-border-inset);
  background-color: var(--wp--preset--color--grey);
}
.ui-dropdown__content-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.ui-dropdown__content-top-actions {
  display: flex;
  gap: 8px;
}
.ui-dropdown__content-close-button {
  border: none;
  background: none;
  padding: 0;
}
@media (hover: hover) {
  .ui-dropdown__content-close-button:hover .ui-dropdown__content-close-button-icon {
    fill: var(--orange-dark);
  }
}
.ui-dropdown__content-close-button-icon {
  transition: fill var(--transition);
}
.ui-dropdown._open .ui-dropdown__backdrop {
  display: block;
}
.ui-dropdown._open .ui-dropdown__content {
  display: block;
}.filter-dropdown {
  max-width: 370px;
}
.filter-dropdown__anchor {
  display: flex;
  align-items: center;
  gap: 4px;
}
.filter-dropdown__anchor-label {
  font-family: var(--wp--preset--font-family--pt-sans-narrow);
  font-weight: var(--font-weight);
  font-size: var(--font-size);
  line-height: var(--line-height);
}
.filter-dropdown__anchor-count {
  color: black;
  background-color: var(--orange-dark);
  padding: 1px 6px;
  font-family: var(--wp--preset--font-family--pt-sans-narrow);
  font-weight: var(--font-weight-xl);
  font-size: var(--font-size);
  line-height: var(--line-height);
  text-align: center;
}
.filter-dropdown__title {
  font-family: var(--wp--preset--font-family--pt-sans-narrow);
  font-weight: var(--font-weight-xl);
  font-size: var(--font-size-xl);
  line-height: var(--line-height-l);
}
.filter-dropdown__title-part {
  text-transform: lowercase;
}
.filter-dropdown__action {
  background: none;
  border: none;
  padding: 0;
  font-family: var(--wp--preset--font-family--pt-sans-narrow);
  font-weight: var(--font-weight);
  font-size: var(--font-size-l);
  line-height: var(--line-height-l);
  text-decoration: underline;
  transition: color var(--transition);
}
@media (hover: hover) {
  .filter-dropdown__action:hover {
    color: var(--orange-dark);
  }
}
.filter-dropdown__rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 420px;
  overflow-y: auto;
  margin-bottom: 12px;
}
.filter-dropdown__row {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}.library__title {
  margin-bottom: 20px !important;
}
.library__navigation {
  margin-bottom: 20px;
  overflow-x: scroll;
}
.library__preview {
  margin-bottom: 12px;
}
.library__preview-title {
  margin-bottom: 8px !important;
  font-family: var(--wp--preset--font-family--druk-wide);
  font-weight: var(--font-weight-l);
  font-size: var(--font-size-xl);
  line-height: var(--line-height-l);
}
.library__preview-description {
  max-width: 444px;
  margin: 0 0 12px 0 !important;
  font-family: var(--wp--preset--font-family--pt-sans-narrow);
  font-weight: var(--font-weight);
  font-size: var(--font-size);
  line-height: var(--line-height);
}
.library__filter {
  margin-bottom: 12px;
}
.library__filter._list {
  overflow-x: scroll;
}
.library__cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}
@media screen and (max-width: 1280px) {
  .library__cards {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 768px) {
  .library__cards {
    grid-template-columns: 1fr;
  }
}
.library__show-more-button {
  display: block;
  margin: 0 auto 24px auto;
  padding: 0;
  border: none;
  background: none;
  font-family: var(--wp--preset--font-family--pt-sans-narrow);
  font-weight: var(--font-weight-xl);
  font-size: var(--font-size-l);
  line-height: var(--line-height-l);
  text-decoration: underline;
  text-decoration-style: solid;
  transition: var(--transition);
}
@media (hover: hover) {
  .library__show-more-button:hover {
    color: var(--wp--preset--color--orange);
  }
}
.library__pagination {
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .library__pagination {
    margin-bottom: 32px;
  }
}