@charset "UTF-8";
/* line 1, theme.reset.scss */
*,
*::before,
*::after {
  box-sizing: border-box; }

/* line 7, theme.reset.scss */
* {
  margin: 0; }

/* line 11, theme.reset.scss */
html {
  font-size: 10px;
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: transparent; }

/* line 21, theme.reset.scss */
html:focus-within {
  scroll-behavior: smooth; }

/* line 25, theme.reset.scss */
body {
  text-rendering: optimizeSpeed; }

/* line 29, theme.reset.scss */
a:not([class]) {
  text-decoration-skip-ink: auto; }

/* line 33, theme.reset.scss */
img,
picture {
  max-width: 100%;
  display: block; }

/* line 39, theme.reset.scss */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
  margin: 0; }

/* line 48, theme.reset.scss */
input[type="number"],
input[type="search"] {
  -moz-appearance: none;
  appearance: none;
  border-radius: 0; }

/* line 55, theme.reset.scss */
input,
button,
textarea,
select {
  font: inherit;
  outline: 0; }

/* line 63, theme.reset.scss */
input,
textarea,
button,
select,
label,
a {
  -webkit-tap-highlight-color: transparent; }

/* line 1, theme.variables.scss */
:root {
  --z-index-outside: 2000;
  --z-index-header: 1000;
  --layout-mt: 0;
  --layout-mb: 0;
  --layout-pt: 0;
  --layout-pb: 0;
  --layout-side-padding: 0;
  --layout-mt-m: 0;
  --layout-mb-m: 0;
  --layout-pt-m: 0;
  --layout-pb-m: 0;
  --layout-side-padding-m: 0;
  --content-max-width: none;
  --grid-columns: 12;
  --grid-gap: 12px;
  --grid-columns-m: 4;
  --grid-gap-m: 12px;
  --color-black: #1D1C1E;
  --color-orange: #FF5429;
  --color-ultramarine: #2A4ED5;
  --color-green: #0EAD58;
  --color-red: #F03D0E;
  --color-gold: #C3A27C;
  --color-light-gold: #F0ECE7;
  --color-blue: #9CD5F3;
  --color-light-blue: #F5F7FD;
  --color-dark-gray: #9D9D9D;
  --color-gray: #DFE0E3;
  --color-middle-gray: #E8E9ED;
  --color-light-gray: #F7F7F7;
  --color-white: #FFFFFF;
  --color-dark-brand: #00524F;
  --alert-error-color: #F03D0E;
  --alert-success-color: #0EAD58;
  --alert-warning-color: #F8C435;
  --main-bg: #FFFFFF;
  --main-color: #000000;
  --backdrop-bg: rgba(29, 28, 30, 0.4);
  --fw-100: 100;
  --fw-200: 200;
  --fw-300: 300;
  --fw-400: 400;
  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;
  --fw-800: 800;
  --fw-900: 900;
  --font-family: 'Helvetica Neue', sans-serif;
  --font-family-heading: Unbounded, sans-serif;
  --font-size: 10px;
  --fw-normal: var(--fw-400);
  --fw-bold: var(--fw-700);
  --shadow: none;
  --radius-xl: 24px;
  --radius-l: 20px;
  --radius-m: 16px;
  --radius-s: 12px;
  --radius-xs: 8px;
  --button-gap: 10px;
  --button-color: var(--color-white);
  --button-bg: var(--color-black);
  --button-border-color: transparent;
  --button-height: 40px;
  --button-side-padding: 24px;
  --button-font-family: var(--font-family-heading);
  --button-font-size: 1.2rem;
  --button-line-height: 1.6rem;
  --input-color: var(--color-black);
  --input-bg: var(--color-white);
  --input-border-color: var(--color-gray);
  --input-height: 48px;
  --input-side-padding: 20px;
  --input-font-family: var(--font-family);
  --input-font-size: 1.6rem;
  --input-line-height: 2.4rem;
  --thumb-ratio: 1;
  --thumb-fit: cover;
  --thumb-bg: transparent;
  --thumb-radius: 0;
  --product-thumb-ratio: 1;
  --product-thumb-fit: cover;
  --product-thumb-bg: transparent;
  --collection-thumb-ratio: 1;
  --collection-thumb-fit: contain;
  --collection-thumb-bg: transparent; }

/* Стили для светлого фона */
/* Стили для темного фона сайта */
/* line 1, theme.grid.scss */
[data-grid] {
  display: grid;
  grid-template-columns: var(--layout-side-padding) 1fr var(--layout-side-padding);
  grid-template-rows: repeat(2, min-content) 1fr repeat(1, min-content);
  min-height: 100vh; }

/* line 8, theme.grid.scss */
[data-grid-item] {
  grid-column: 1 / 4; }

/* line 12, theme.grid.scss */
[data-grid-item="header"] {
  position: relative;
  z-index: var(--z-index-header); }

/* line 17, theme.grid.scss */
[data-grid-item="outside"] {
  position: relative;
  isolation: isolate;
  z-index: var(--z-index-outside); }

/* line 1, theme.layout.scss */
.layout {
  margin-block: var(--layout-mt) var(--layout-mb);
  padding-block: var(--layout-pt) var(--layout-pb);
  padding-inline: var(--layout-side-padding);
  color: var(--layout-color, var(--main-color));
  background-color: var(--layout-bg, transparent); }
  @media (max-width: 1024px) {
    /* line 1, theme.layout.scss */
    .layout {
      margin-block: var(--layout-mt-m) var(--layout-mb-m);
      padding-block: var(--layout-pt-m) var(--layout-pb-m);
      padding-inline: var(--layout-side-padding-m); } }
  /* line 14, theme.layout.scss */
  .layout__content {
    margin-block: 0;
    margin-inline: auto;
    width: 100%;
    max-width: var(--content-max-width); }
  /* line 23, theme.layout.scss */
  .layout[style*="--content-wide:true"] .layout__content, .layout[style*="--content-wide: true"] .layout__content {
    max-width: none; }
  @media (max-width: 1024px) {
    /* line 28, theme.layout.scss */
    .layout[style*="--hide-mobile:true"], .layout[style*="--hide-mobile: true"] {
      display: none !important; } }
  @media (min-width: 1025px) {
    /* line 35, theme.layout.scss */
    .layout[style*="--hide-desktop:true"], .layout[style*="--hide-desktop: true"] {
      display: none !important; } }

/* line 46, theme.layout.scss */
[data-grid-item="outside"] .layout, [data-grid-item="outside"] .layout__content {
  all: unset;
  display: block;
  box-sizing: border-box; }

@font-face {
  font-family: 'Helvetica Neue';
  src: url("HelveticaNeueCyr-Roman.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap; }
@font-face {
  font-family: 'Unbounded';
  src: url("Unbounded-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap; }
@font-face {
  font-family: 'Unbounded';
  src: url("Unbounded-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap; }
/* line 27, theme.font.scss */
h1,
.h1 {
  font-family: var(--font-family-heading);
  font-size: var(--font-size);
  line-height: var(--line-height);
  letter-spacing: 0.04em;
  text-transform: uppercase; }

/* line 27, theme.font.scss */
h2,
.h2 {
  font-family: var(--font-family-heading);
  font-size: var(--font-size);
  line-height: var(--line-height);
  letter-spacing: 0.04em;
  text-transform: uppercase; }

/* line 27, theme.font.scss */
h3,
.h3 {
  font-family: var(--font-family-heading);
  font-size: var(--font-size);
  line-height: var(--line-height);
  letter-spacing: 0.04em;
  text-transform: uppercase; }

/* line 27, theme.font.scss */
h4,
.h4 {
  font-family: var(--font-family-heading);
  font-size: var(--font-size);
  line-height: var(--line-height);
  letter-spacing: 0.04em;
  text-transform: uppercase; }

/* line 27, theme.font.scss */
h5,
.h5 {
  font-family: var(--font-family-heading);
  font-size: var(--font-size);
  line-height: var(--line-height);
  letter-spacing: 0.04em;
  text-transform: uppercase; }

/* line 27, theme.font.scss */
h6,
.h6 {
  font-family: var(--font-family-heading);
  font-size: var(--font-size);
  line-height: var(--line-height);
  letter-spacing: 0.04em;
  text-transform: uppercase; }

/* line 27, theme.font.scss */
h7,
.h7 {
  font-family: var(--font-family-heading);
  font-size: var(--font-size);
  line-height: var(--line-height);
  letter-spacing: 0.04em;
  text-transform: uppercase; }

/* line 39, theme.font.scss */
h1,
.h1 {
  font-weight: var(--fw-700); }

/* line 39, theme.font.scss */
h2,
.h2 {
  font-weight: var(--fw-700); }

/* line 39, theme.font.scss */
h3,
.h3 {
  font-weight: var(--fw-700); }

/* line 47, theme.font.scss */
h4,
.h4 {
  font-weight: var(--fw-500); }

/* line 47, theme.font.scss */
h5,
.h5 {
  font-weight: var(--fw-500); }

/* line 47, theme.font.scss */
h6,
.h6 {
  font-weight: var(--fw-500); }

/* line 47, theme.font.scss */
h7,
.h7 {
  font-weight: var(--fw-500); }

/* line 53, theme.font.scss */
h1,
.h1 {
  --font-size: 4rem;
  --line-height: 4.8rem; }

/* line 59, theme.font.scss */
h2,
.h2 {
  --font-size: 3.2rem;
  --line-height: 4rem; }

/* line 65, theme.font.scss */
h3,
.h3 {
  --font-size: 2.4rem;
  --line-height: 2.8rem; }

/* line 71, theme.font.scss */
h4,
.h4 {
  --font-size: 1.6rem;
  --line-height: 2rem; }

/* line 77, theme.font.scss */
h5,
.h5 {
  --font-size: 1.4rem;
  --line-height: 2rem; }

/* line 83, theme.font.scss */
h6,
.h6 {
  --font-size: 1.2rem;
  --line-height: 1.6rem; }

/* line 89, theme.font.scss */
h7,
.h7 {
  --font-size: 1rem;
  --line-height: 1.6rem; }

@media (max-width: 1024px) {
  /* line 96, theme.font.scss */
  .h1-mobile {
    --font-size: 4rem;
    --line-height: 4.8rem; }

  /* line 101, theme.font.scss */
  .h2-mobile {
    --font-size: 3.2rem;
    --line-height: 4rem; }

  /* line 106, theme.font.scss */
  .h3-mobile {
    --font-size: 2.4rem;
    --line-height: 2.8rem; }

  /* line 111, theme.font.scss */
  .h4-mobile {
    --font-size: 1.6rem;
    --line-height: 2rem; }

  /* line 116, theme.font.scss */
  .h5-mobile {
    --font-size: 1.4rem;
    --line-height: 2rem; }

  /* line 121, theme.font.scss */
  .h6-mobile {
    --font-size: 1.2rem;
    --line-height: 1.6rem; }

  /* line 126, theme.font.scss */
  .h7-mobile {
    --font-size: 1rem;
    --line-height: 1.6rem; } }
/* line 133, theme.font.scss */
.t1 {
  font-size: var(--font-size);
  line-height: var(--line-height); }

/* line 133, theme.font.scss */
.t2 {
  font-size: var(--font-size);
  line-height: var(--line-height); }

/* line 133, theme.font.scss */
.t3 {
  font-size: var(--font-size);
  line-height: var(--line-height); }

/* line 133, theme.font.scss */
.t4 {
  font-size: var(--font-size);
  line-height: var(--line-height); }

/* line 133, theme.font.scss */
.t5 {
  font-size: var(--font-size);
  line-height: var(--line-height); }

/* line 139, theme.font.scss */
.t1 {
  --font-size: 2rem;
  --line-height: 2.4rem; }

/* line 144, theme.font.scss */
.t2 {
  --font-size: 1.8rem;
  --line-height: 2.4rem; }

/* line 149, theme.font.scss */
.t3 {
  --font-size: 1.6rem;
  --line-height: 2.4rem; }

/* line 154, theme.font.scss */
.t4 {
  --font-size: 1.4rem;
  --line-height: 2rem; }

/* line 159, theme.font.scss */
.t5 {
  --font-size: 1.2rem;
  --line-height: 1.6rem; }

@media (max-width: 1024px) {
  /* line 165, theme.font.scss */
  .t1-mobile {
    --font-size: 2rem;
    --line-height: 2.4rem; }

  /* line 170, theme.font.scss */
  .t2-mobile {
    --font-size: 1.8rem;
    --line-height: 2.4rem; }

  /* line 175, theme.font.scss */
  .t3-mobile {
    --font-size: 1.6rem;
    --line-height: 2.4rem; }

  /* line 180, theme.font.scss */
  .t4-mobile {
    --font-size: 1.4rem;
    --line-height: 2rem; }

  /* line 185, theme.font.scss */
  .t5-mobile {
    --font-size: 1.2rem;
    --line-height: 1.6rem; } }
/* line 1, element.icon.scss */
.icon {
  display: block;
  line-height: 0; }
  /* line 5, element.icon.scss */
  .icon svg {
    fill: currentColor;
    fill-rule: evenodd;
    clip-rule: evenodd; }

/* line 12, element.icon.scss */
[data-icon="loader"] {
  animation: spin 2s linear infinite; }

/* line 17, element.icon.scss */
[data-icon="check"] svg {
  fill: transparent;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round; }

/* line 1, element.thumb.scss */
.thumb {
  position: relative;
  isolation: isolate;
  display: block;
  background-color: var(--thumb-bg);
  border-radius: var(--thumb-radius);
  overflow: hidden; }
  /* line 9, element.thumb.scss */
  .thumb::before {
    content: '';
    display: block;
    height: 0;
    padding-top: calc(var(--thumb-ratio) * 100%); }
  /* line 16, element.thumb.scss */
  .thumb img,
  .thumb video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: var(--thumb-fit); }
  /* line 25, element.thumb.scss */
  .thumb_product-image {
    --thumb-ratio: var(--product-thumb-ratio);
    --thumb-fit: var(--product-thumb-fit);
    --thumb-bg: var(--product-thumb-bg); }
  /* line 31, element.thumb.scss */
  .thumb_collection-image {
    --thumb-ratio: var(--collection-thumb-ratio);
    --thumb-fit: var(--collection-thumb-fit);
    --thumb-bg: var(--collection-thumb-bg); }

/* line 1, element.button.scss */
.button {
  display: inline-flex;
  gap: 0 var(--button-gap);
  align-items: center;
  justify-content: center;
  vertical-align: top;
  border: 1px solid var(--button-border-color);
  color: var(--button-color);
  background-color: var(--button-bg);
  height: var(--button-height);
  padding: 0 var(--button-side-padding);
  cursor: pointer;
  font-family: var(--button-font-family);
  font-size: var(--button-font-size);
  line-height: var(--button-line-height);
  font-weight: var(--fw-bold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  border-radius: calc(var(--button-height) / 2); }
  @media (hover: hover) {
    /* line 26, element.button.scss */
    .button:hover, .button.is-primary:hover {
      color: var(--button-color); } }
  /* line 32, element.button.scss */
  .button.is-inverse {
    --button-color: var(--color-black);
    --button-bg: var(--color-white);
    --button-border-color: transparent; }
  /* line 38, element.button.scss */
  .button.is-secondary {
    --button-color: var(--color-black);
    --button-bg: transpatent;
    --button-border-color: var(--color-black); }
  /* line 44, element.button.scss */
  .button.is-add {
    --button-color: var(--color-black);
    --button-bg: var(--color-white);
    --button-side-padding: 18px;
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.1); }
    @media (max-width: 1024px) {
      /* line 44, element.button.scss */
      .button.is-add {
        --button-height: 32px;
        --button-side-padding: 12px; } }
    /* line 55, element.button.scss */
    .button.is-add .icon {
      position: relative;
      isolation: isolate;
      top: -1px; }
      /* line 60, element.button.scss */
      .button.is-add .icon__addon {
        position: absolute;
        inset: auto 0 -2px auto; }
  /* line 67, element.button.scss */
  .button.is-wide {
    display: flex;
    width: 100%; }
  /* line 72, element.button.scss */
  .button.is-large {
    --button-height: 48px; }
  /* line 76, element.button.scss */
  .button.is-disabled, .button[disabled] {
    --button-color: var(--color-dark-gray);
    --button-bg: var(--color-gray);
    --button-border-color: transparent;
    pointer-events: none; }

/* line 1, element.input.scss */
.input {
  display: inline-block;
  vertical-align: top;
  border: 1px solid var(--input-border-color);
  color: var(--input-color);
  background-color: var(--input-bg);
  height: var(--input-height);
  padding: 0 var(--input-side-padding);
  font-family: var(--input-font-family);
  font-size: var(--input-font-size);
  line-height: var(--input-line-height);
  font-weight: var(--fw-normal);
  transition: color 0.2s ease-in-out 0s, border-color 0.2s ease-in-out 0s;
  border-radius: calc(var(--input-height) / 2); }
  /* line 16, element.input.scss */
  .input::placeholder {
    color: var(--color-dark-gray); }
  /* line 20, element.input.scss */
  .input.is-wide {
    display: block;
    width: 100%; }
  /* line 25, element.input.scss */
  .input.is-small {
    --input-height: 32px;
    --input-side-padding: 12px;
    --input-font-size: 1.4rem;
    --input-line-height: 2rem; }

/* line 3, element.checkbox.scss */
input[type="radio"] ~ .checkbox {
  border-radius: 50%; }
  /* line 6, element.checkbox.scss */
  input[type="radio"] ~ .checkbox::after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background-color: currentColor;
    border-radius: inherit;
    transition: opacity 0.2s ease-in-out 0s, scale 0.2s ease-in-out 0s; }
  /* line 16, element.checkbox.scss */
  input[type="radio"] ~ .checkbox .icon {
    display: none; }
/* line 23, element.checkbox.scss */
input[type="radio"]:not(:checked) ~ .checkbox::after {
  opacity: 0;
  scale: 0; }
/* line 32, element.checkbox.scss */
input[type="checkbox"] ~ .checkbox {
  border-radius: 3px; }
/* line 38, element.checkbox.scss */
input[type="checkbox"]:not(:checked) ~ .checkbox .icon {
  opacity: 0; }

/* line 46, element.checkbox.scss */
.checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  border: 1px solid currentColor;
  transition: color 0.2s ease-in-out 0s; }
  /* line 56, element.checkbox.scss */
  .checkbox .icon {
    --icon-stroke-width: 3;
    transition: opacity 0.2s ease-in-out 0s; }

@media (hover: hover) {
  /* line 68, element.checkbox.scss */
  .checkbox-parent:hover > input[type="checkbox"]:not(:checked) ~ .checkbox .icon {
    opacity: 0.2; }
  /* line 76, element.checkbox.scss */
  .checkbox-parent:hover > input[type="radio"]:not(:checked) ~ .checkbox::after {
    opacity: 0.2;
    scale: 0.6; } }

/* line 1, element.product-card.scss */
.product-card {
  position: relative;
  isolation: isolate;
  background-color: var(--color-white);
  border-radius: var(--radius-m);
  display: flex;
  flex-direction: column;
  gap: 12px 0;
  overflow: hidden; }
  /* line 11, element.product-card.scss */
  .product-card__labels {
    position: absolute;
    z-index: 2;
    inset: 8px auto auto 8px;
    pointer-events: none; }
  /* line 18, element.product-card.scss */
  .product-card__image {
    position: relative;
    isolation: isolate;
    overflow: hidden; }
  /* line 24, element.product-card.scss */
  .product-card__info {
    display: flex;
    flex-direction: column;
    gap: 16px 0;
    padding: 0 20px 20px;
    flex: 1; }
  /* line 32, element.product-card.scss */
  .product-card__title {
    flex: 1; }
  /* line 36, element.product-card.scss */
  .product-card__form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2px 8px; }
  /* line 42, element.product-card.scss */
  .product-card__prices {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0 4px; }
  /* line 49, element.product-card.scss */
  .product-card__old-price {
    color: var(--color-orange);
    text-decoration: line-through;
    text-decoration-thickness: 1px; }
    /* line 54, element.product-card.scss */
    .product-card__old-price:empty {
      display: none; }
  /* line 59, element.product-card.scss */
  .product-card__weight {
    flex: 0 0 100%;
    color: var(--color-dark-gray); }

@media (max-width: 1024px) {
  /* line 66, element.product-card.scss */
  .product-card {
    border-radius: var(--radius-s); }
    /* line 69, element.product-card.scss */
    .product-card__info {
      padding: 0 12px 12px; } }
/* line 1, element.collection-card.scss */
.collection-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 16px 0;
  text-align: center; }
  @media (max-width: 768px) {
    /* line 1, element.collection-card.scss */
    .collection-card {
      width: 128px; } }
  @media (max-width: 575px) {
    /* line 1, element.collection-card.scss */
    .collection-card {
      width: 96px; } }
  /* line 17, element.collection-card.scss */
  .collection-card__thumb {
    display: grid;
    place-items: center;
    width: 100%;
    aspect-ratio: 1/var(--collection-thumb-ratio);
    max-width: 180px; }
    @media (max-width: 1024px) {
      /* line 17, element.collection-card.scss */
      .collection-card__thumb {
        width: 180px; } }
    @media (max-width: 768px) {
      /* line 17, element.collection-card.scss */
      .collection-card__thumb {
        width: 120px; } }
    @media (max-width: 575px) {
      /* line 17, element.collection-card.scss */
      .collection-card__thumb {
        width: 88px; } }
    /* line 36, element.collection-card.scss */
    .collection-card__thumb::after {
      content: '';
      width: 100%;
      height: 100%;
      background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' viewBox='0 0 180 180' fill='none' xmlns='http://www.w3.org/2000/svg' class='collection-card__substrate'%3E%3Cpath d='M159.434 158.934C145.091 173.278 118.581 180 90.5 180C62.4191 180 35.909 173.271 21.5657 158.934C7.22238 144.591 0.5 118.081 0.5 90C0.5 61.9191 7.22238 35.409 21.5657 21.0657C35.909 6.72238 62.4191 0 90.5 0C118.581 0 145.091 6.72238 159.434 21.0657C173.778 35.409 180.5 61.9191 180.5 90C180.5 118.081 173.771 144.591 159.434 158.934Z' fill='%23EEE4D7'/%3E%3C/svg%3E");
      background-size: cover;
      grid-column: 1 / -1;
      grid-row: 1 / -1; }
    /* line 46, element.collection-card.scss */
    .collection-card__thumb .thumb {
      width: 100%;
      height: 100%;
      grid-column: 1 / -1;
      grid-row: 1 / -1; }
      /* line 52, element.collection-card.scss */
      .collection-card__thumb .thumb img {
        padding: 32px; }
        @media (max-width: 768px) {
          /* line 52, element.collection-card.scss */
          .collection-card__thumb .thumb img {
            padding: 24px; } }
        @media (max-width: 575px) {
          /* line 52, element.collection-card.scss */
          .collection-card__thumb .thumb img {
            padding: 16px; } }
  /* line 66, element.collection-card.scss */
  .collection-card__title {
    hyphens: auto;
    hyphenate-limit-chars: 8 4 4;
    overflow-wrap: anywhere; }

/* line 1, element.article-card.scss */
.article-card {
  display: flex;
  flex-direction: column;
  gap: 8px 0; }
  /* line 7, element.article-card.scss */
  .article-card__thumb .thumb {
    --thumb-radius: var(--radius-xl); }
  /* line 12, element.article-card.scss */
  .article-card__title {
    flex: 1;
    margin: 8px 0 0; }

/* line 1, element.social.scss */
.social {
  --icon-fill: var(--main-color);
  --icon-stroke: var(--main-color);
  display: inline-flex;
  align-items: center;
  gap: 24px; }

/* line 1, element.labels.scss */
.labels {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  color: var(--color-white); }

/* line 8, element.labels.scss */
.label {
  display: inline-flex;
  padding: 4px 8px;
  border-radius: var(--radius-l); }
  /* line 13, element.labels.scss */
  .label::after {
    content: attr(data-label-title); }
  /* line 17, element.labels.scss */
  .label.is-cold {
    padding: 4px; }
    /* line 20, element.labels.scss */
    .label.is-cold::after {
      display: none; }
  /* line 26, element.labels.scss */
  .label.is-sale ~ .is-sale {
    display: none; }

/* line 2, element.swiper.scss */
.swiper__navigation {
  display: flex;
  justify-content: center;
  gap: 0 4px;
  user-select: none; }
  /* line 8, element.swiper.scss */
  .swiper__navigation:has(.swiper-button-lock) {
    display: none; }
  @media (max-width: 1024px) {
    /* line 2, element.swiper.scss */
    .swiper__navigation {
      display: none; } }
/* line 17, element.swiper.scss */
.swiper__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-gray);
  background-color: var(--color-white);
  color: var(--color-black);
  border-radius: 50%;
  cursor: pointer;
  transition: color 0.2s ease-in-out 0s, background-color 0.2s ease-in-out 0s; }
  /* line 30, element.swiper.scss */
  .swiper__arrow.swiper-button-disabled {
    color: var(--color-dark-gray);
    background-color: var(--color-middle-gray);
    pointer-events: none; }
/* line 37, element.swiper.scss */
.swiper__pagination {
  display: flex;
  justify-content: center;
  gap: 0 4px;
  color: var(--color-dark-gray);
  user-select: none;
  line-height: 0; }
  @media (min-width: 1025px) {
    /* line 37, element.swiper.scss */
    .swiper__pagination {
      display: none; } }
  /* line 49, element.swiper.scss */
  .swiper__pagination .swiper-pagination-bullet {
    display: block;
    border-radius: 0;
    background: none !important;
    width: 8px;
    height: 8px;
    opacity: 1 !important; }
    /* line 57, element.swiper.scss */
    .swiper__pagination .swiper-pagination-bullet svg {
      display: block; }
      /* line 60, element.swiper.scss */
      .swiper__pagination .swiper-pagination-bullet svg path {
        transition: opacity 0.2s ease-in-out 0s; }
        /* line 63, element.swiper.scss */
        .swiper__pagination .swiper-pagination-bullet svg path:nth-child(2) {
          opacity: 0; }
    /* line 72, element.swiper.scss */
    .swiper__pagination .swiper-pagination-bullet-active svg path:nth-child(2) {
      opacity: 1; }

/* line 2, element.text.scss */
.text > *:not(:first-child) {
  margin: 16px 0 0; }
/* line 6, element.text.scss */
.text table {
  background-color: var(--color-white);
  border-radius: var(--radius-s);
  border-collapse: collapse;
  font-size: inherit;
  line-height: inherit;
  border: none !important;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px var(--color-gray); }
  /* line 16, element.text.scss */
  .text table th,
  .text table td {
    padding: 14px 24px;
    border: 1px solid var(--color-gray); }
    @media (max-width: 575px) {
      /* line 16, element.text.scss */
      .text table th,
      .text table td {
        padding: 14px 16px; } }
  /* line 26, element.text.scss */
  .text table:not(:first-child) {
    margin-block: 12px 0; }
/* line 31, element.text.scss */
.text ul,
.text ol {
  margin: 0;
  padding: 0 0 0 24px; }
/* line 38, element.text.scss */
.text ul > li:not(:first-child) {
  margin-block: 4px 0; }
/* line 44, element.text.scss */
.text ol > li:not(:first-child) {
  margin-block: 12px 0; }
/* line 49, element.text.scss */
.text a {
  color: var(--color-orange); }
  @media (hover: hover) {
    /* line 49, element.text.scss */
    .text a {
      transition: color 0.2s ease-in-out 0s; }
      /* line 55, element.text.scss */
      .text a:hover {
        color: var(--color-black); } }
/* line 61, element.text.scss */
.text b,
.text strong {
  font-weight: var(--fw-bold); }
/* line 66, element.text.scss */
.text hr {
  display: block;
  height: 0;
  border: none;
  border-top: 1px solid var(--color-gray); }

/* line 8, theme.scss */
html {
  font-size: var(--font-size);
  background-color: var(--main-bg); }

/* line 13, theme.scss */
body {
  font-size: 1.6rem;
  line-height: 2.2rem;
  color: var(--main-color);
  background-color: var(--main-bg);
  font-family: var(--font-family);
  font-weight: var(--fw-normal); }

/* line 22, theme.scss */
a {
  text-decoration: none;
  color: currentColor;
  text-decoration-skip-ink: none; }
  @media (hover: hover) {
    /* line 28, theme.scss */
    a:hover {
      color: currentColor; } }

/* line 34, theme.scss */
img {
  display: inline-block;
  vertical-align: top;
  max-width: 100%;
  height: auto; }

@keyframes spin {
  100% {
    transform: rotate(360deg); } }
/* line 47, theme.scss */
.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none; }
  /* line 51, theme.scss */
  .hide-scrollbar::-webkit-scrollbar {
    display: none; }

/* line 56, theme.scss */
.initials {
  display: block;
  font-family: var(--font-family-heading);
  text-transform: uppercase;
  border-radius: 50%;
  letter-spacing: 0.04px;
  font-weight: var(--fw-bold); }
