:root {
  --clr-primary-d40: #98711A;
  --clr-primary-hover: #e4aa28;
  --clr-primary: #FDBD2C;
  --clr-primary-40: #FED780;
  --clr-primary-10: #FFF8EA;
  --clr-white: #FFFFFF;
  --clr-white-t10: rgba(255, 255, 255, 0.1);
  --clr-surface-ground: #F0F3F6;
  --clr-surface-dark-ground: #0A0909;
  --clr-black: #08102E;
  --clr-body-text: #0A0909;
  --clr-subtle-text: rgba(10, 9, 9, 0.7);
  --clr-subtle-text2: rgba(10, 9, 9, 0.5);
  --clr-subtle-text3: rgba(10, 9, 9, 0.3);
  --clr-black-text: #0A0909;
  --clr-succes-d40: #14714A;
  --clr-succes-hover: #1EA96F;
  --clr-succes: #21BC7B;
  --clr-succes-40: #7AD7B0;
  --clr-succes-10: #E9F8F2;
  --clr-danger-d40: #961422;
  --clr-danger-hover: #E11F33;
  --clr-danger: #FA2239;
  --clr-danger-40: #fc7a88;
  --clr-danger-10: #ffe9eb;
  --clr-red-dark: #c11f3b;
  --clr-blue: #028be5;
}

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,
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: inherit;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  appearance: none;
}

input,
textarea,
button {
  box-sizing: border-box;
  border: 0;
  outline: 0;
  background: none;
  appearance: none;
}

button,
input[type=submit] {
  cursor: pointer;
  outline: 0;
}

:where(article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section) {
  display: block;
}

ol :where(:not(.list)),
ul :where(:not(.list)) {
  list-style: none;
  margin: 0;
  padding: 0;
}

blockquote,
q {
  quotes: none;
}

blockquote::before, blockquote::after {
  display: none;
}

q::before, q::after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.h1 {
  font-size: 32px;
  line-height: 40px;
}

.h2 {
  font-size: 24px;
  line-height: 32px;
}

.h3 {
  font-size: 20px;
  line-height: 28px;
}

.h4 {
  font-size: 18px;
  line-height: 24px;
}

.h5 {
  font-size: 16px;
  line-height: 24px;
}

.h6 {
  font-size: 14px;
  line-height: 20px;
}

.caption {
  font-size: 12px;
  line-height: 16px;
}

.text-light {
  font-weight: 300;
}

.text-medium {
  font-weight: 500;
}

.text-bold {
  font-weight: 700;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.btn:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}
.btn--primary {
  border-radius: 9999vh;
  background-color: var(--clr-primary);
  color: var(--clr-body-text);
}
.btn--secondary {
  border-radius: 9999vh;
  color: var(--clr-white);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.btn--small {
  padding: 14px 15px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
}
.btn--medium {
  padding: 20px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
}
.btn--big {
  padding: 24px;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

.input + .input {
  margin-top: 20px;
}
.input__label {
  display: grid;
  gap: 4px;
}
.input__name {
  font-weight: 500;
  color: var(--clr-subtle-text2);
  margin-bottom: 4px;
}
.input__error {
  display: none;
  font-weight: 500;
  color: red;
  margin-bottom: 4px;
}
.input__error.active {
  display: block;
}
.input.search-input .input__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  padding: 12px 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: border-color 0.2s ease;
}
.input.search-input .input__label input {
  width: 100%;
}
.input.search-input .input__label:focus-within {
  border-color: var(--clr-primary);
}
.input__field::placeholder {
  font-size: 16px;
  line-height: 22px;
  color: var(--clr-subtle-text2);
  opacity: 0.7;
}
.input:not(.search-input) .input__field {
  padding: 12px 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: border-color 0.2s ease;
}
.input:not(.search-input) .input__field--with-r-arr {
  padding-right: 62px;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.625 18.75L15.375 12L8.625 5.25' stroke='%230A0909' stroke-opacity='0.3' stroke-width='1.25' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-position: calc(100% - 12px) 50%;
  background-repeat: no-repeat;
  background-size: 24px;
}
.input:not(.search-input) .input__field:focus {
  border-color: var(--clr-primary);
}

.input:not(.search-input) .input__field.phone.bg-red,
span.bg-red {
  color: red;
}

.input:not(.search-input) .input__label.error .input__field {
  border-color: red;
}

.file-input__label {
  display: grid;
  gap: 4px;
}
.file-input__name {
  font-weight: 500;
  color: var(--clr-subtle-text2);
  margin-bottom: 4px;
}
.file-input__field {
  display: none;
}
.file-input__custom {
  overflow: hidden;
  cursor: pointer;
  padding: 12px 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  font-size: 16px;
  line-height: 22px;
  transition: border-color 0.2s ease;
}
.file-input__placeholder {
  color: var(--clr-subtle-text2);
  opacity: 0.7;
}
.file-input__selected-file {
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.accordion {
  display: grid;
  gap: 8px;
}
.accordion__item {
  border-radius: 12px;
  background-color: var(--clr-white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
}
.accordion__item.active {
  border-color: var(--clr-surface-ground);
  background-color: var(--clr-surface-ground);
}
.accordion__item-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  padding: 16px;
  position: relative;
  z-index: 1;
  cursor: pointer;
  transition: 0.1s ease;
}
.accordion__item-header::after, .accordion__item-header::before {
  --_size: 22px;
  content: "";
  width: var(--_size);
  min-width: var(--_size);
  height: var(--_size);
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain;
  transition: 0.4s ease;
}
.accordion__item-header::before {
  position: absolute;
  z-index: 1;
  right: 16px;
  top: 16px;
  background-image: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 22 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11 17.875C11.3797 17.875 11.6875 17.5672 11.6875 17.1875L11.6875 4.8125C11.6875 4.4328 11.3797 4.125 11 4.125C10.6203 4.125 10.3125 4.4328 10.3125 4.8125L10.3125 17.1875C10.3125 17.5672 10.6203 17.875 11 17.875Z' fill='%230A0909'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.125 11C4.125 11.3797 4.4328 11.6875 4.8125 11.6875L17.1875 11.6875C17.5672 11.6875 17.875 11.3797 17.875 11C17.875 10.6203 17.5672 10.3125 17.1875 10.3125L4.8125 10.3125C4.4328 10.3125 4.125 10.6203 4.125 11Z' fill='%230A0909'/%3E%3C/svg%3E%0A");
}
.accordion__item-header::after {
  background-image: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 22 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.125 11C4.125 11.3797 4.4328 11.6875 4.8125 11.6875L17.1875 11.6875C17.5672 11.6875 17.875 11.3797 17.875 11C17.875 10.6203 17.5672 10.3125 17.1875 10.3125L4.8125 10.3125C4.4328 10.3125 4.125 10.6203 4.125 11Z' fill='%230A0909'/%3E%3C/svg%3E%0A");
  opacity: 0;
}
.accordion__item.active .accordion__item-header {
  margin-bottom: -20px;
}
.accordion__item.active .accordion__item-header::before {
  opacity: 0;
}
.accordion__item.active .accordion__item-header::after {
  opacity: 1;
}
.accordion__item.active .accordion__item-header::before, .accordion__item.active .accordion__item-header::after {
  transform: rotate(180deg);
}
.accordion__item-body-inner {
  position: relative;
  padding: 16px;
  padding-top: 28px;
  counter-increment: headings;
}
.accordion__item-body-inner ul li,
.accordion__item-body-inner ol li {
  list-style: inherit;
}
.accordion__item-body-inner ol li::marker {
  font-weight: bold;
}

.home-main {
  --clr-active-bg: #FDBD2C;
  margin: 0 calc(var(--container-padding-inline) * -1);
  display: flex;
  align-items: center;
  flex-direction: column;
  background: var(--clr-active-bg);
  padding: 12px var(--container-padding-inline) 40px;
}
.home-main--filters-active {
  --clr-active-bg: #02B36F;
}

.home-tabs {
  display: flex;
  padding: 2px;
  border-radius: 99px;
  background: #ffffff;
  margin-bottom: 16px;
}
.home-tabs__item {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 99px;
  min-width: 114px;
  height: 24px;
  padding: 0 12px;
  box-sizing: border-box;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: none;
  color: rgba(0, 0, 0, 0.8);
}
.home-tabs__item--active {
  background: var(--clr-active-bg);
  color: #ffffff;
}

.home-main__heading {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home-main__heading span {
  font-size: 30px;
  line-height: 28px;
  font-weight: 600;
  color: #fff;
  display: block;
}
.home-main__heading img {
  width: 50%;
  display: block;
}

.home-main__categories .home-main__heading {
  text-shadow: 0 4px 2px #FFA809;
}

.home-main__lists {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.home-main__lists a {
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 0px #FFA809;
  padding: 12px 100px 12px 20px;
}
.home-main__lists a b {
  display: block;
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
}
.home-main__lists a span {
  color: #a7a7a7;
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
}
.home-main__lists a img {
  position: absolute;
  top: 0px;
  right: 6px;
  bottom: 0;
  object-fit: contain;
  object-position: center;
  width: 88px;
}

.home-main__filters .home-main__heading {
  text-shadow: 0 4px 2px #04915B;
}

.home-filters__group {
  margin-bottom: 20px;
}
.home-filters__head {
  font-size: 17px;
  line-height: 32px;
  font-weight: 600;
  color: #ffeea7;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.home-filters__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 10px;
}
.home-filters__item span {
  background: #35C28C;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  box-shadow: 0 4px 0 #04915B;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 44px;
  padding: 12px 12px;
  width: 100%;
  height: 100%;
}
.home-filters__item input {
  display: none !important;
}
.home-filters__item input:checked + span {
  background: #ffffff;
  color: #04915B;
}
.home-filters__items--active .home-filters__item {
  font-size: 14px;
}
.home-filters__btn-submit {
  width: 100%;
  height: 48px;
  border-radius: 12px;
  box-shadow: 0 4px 0 #04915B;
  background: #FDBD2C;
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}

.search-query {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  margin-right: calc(var(--container-padding-inline) * -1);
}
.search-query__head {
  display: inline-flex;
  align-items: center;
}
.search-query__head img {
  min-width: 70px;
  display: block;
}
.swiper-initialized .search-query__items {
  gap: 0px;
  padding-right: calc(var(--container-padding-inline) * 3) !important;
}
.search-query__items {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.search-query__item {
  display: inline-flex;
  height: 46px;
  align-items: center;
  text-align: left;
  padding: 0 16px;
  font-size: 13px;
  line-height: 17px;
  font-weight: bold;
  color: #FBA206;
  border: 1px solid #FDBD2C;
  border-radius: 12px;
  background: #fff;
  white-space: nowrap;
  width: auto;
}
.search-query__arrow {
  width: 26px;
  height: 52px;
  -webkit-border-radius: 99px 0 0 99px;
  -moz-border-radius: 99px 0 0 99px;
  border-radius: 99px 0 0 99px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  margin-top: -26px;
  right: 0;
  z-index: 9;
  box-shadow: 0 0 20px rgba(203, 211, 219, 0.5);
}
.search-query__arrow.swiper-button-disabled {
  display: none;
}

.header {
  background-color: var(--clr-white);
  padding-block: 8px;
  position: sticky;
  z-index: 100;
  top: 0;
}
.header__content {
  gap: 6px;
}
@media screen and (max-width: 360px) {
  .header__content {
    gap: 4px;
  }
}
.header__nav-toggler {
  --icon-size: 20px;
  --_size: 32px;
  width: var(--_size);
  min-width: var(--_size);
  height: var(--_size);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.header__nav-toggler::before {
  --_size: 8px;
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: var(--_size);
  min-width: var(--_size);
  height: var(--_size);
  background-color: var(--clr-primary);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--clr-white);
}
.header__nav-toggler.no-highlight::before {
  display: none;
}
.header__logo {
  margin-right: auto;
}
.header__logo img {
  max-height: 32px;
}
.header__logo--festive img {
  margin: -8px 0;
  max-height: 44px;
}
.header__actions {
  gap: 12px;
}
.header__action {
  --_size: 32px;
  width: var(--_size);
  height: var(--_size);
  position: relative;
  position: relative;
}
.header__action span.hint {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 9px;
  height: 20px;
  line-height: 20px;
  padding: 0 6px;
  font-size: 12px;
}
.header__action[data-count]::after {
  --_counter-size: 16px;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: var(--_counter-size);
  height: var(--_counter-size);
  content: attr(data-count);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 10px;
  line-height: 10px;
  font-weight: 700;
  color: var(--clr-white);
  background-color: var(--clr-danger);
}

.footer {
  --_spacer: 24px;
  background-color: var(--clr-surface-dark-ground);
  color: var(--clr-white);
  position: relative;
  border-radius: 16px 16px 0 0;
  margin-top: auto;
}
.footer__content {
  padding-block: 48px 32px;
}
.footer__up-btn {
  --_size: 48px;
  position: absolute;
  width: var(--_size);
  height: var(--_size);
  background-color: var(--clr-primary);
  color: var(--clr-body-text);
  border-radius: 50%;
  top: calc(var(--_size) / -2);
  right: calc(50% - var(--_size) / 2);
}
.footer__contact {
  gap: 8px;
}
.footer__contact + .footer__contact {
  margin-top: 8px;
}
.footer__contact span {
  opacity: 0.5;
}
.footer__contact a {
  font-weight: 500;
}
.footer__links {
  margin-top: var(--_spacer);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 12px;
}
.footer__socials-line {
  margin-top: var(--_spacer);
  padding-top: var(--_spacer);
  border-top: 1px solid var(--clr-white-t10);
}
.footer__socials {
  gap: 16px;
}
.footer__payment-methods {
  gap: 12px;
}
.footer__copyright {
  margin-top: 16px;
  opacity: 0.5;
  font-size: 12px;
  line-height: 16px;
}

.modal {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 100;
  display: flex;
  align-items: end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s ease-out;
}
.modal.active {
  opacity: 1;
  pointer-events: auto;
}
.modal__content {
  max-height: 90dvh;
  width: 96%;
  background-color: var(--clr-white);
  border-radius: 16px 16px 0 0;
  transform: translateY(100%);
  opacity: 0;
  transition: 0.2s ease-out;
}
@media (min-width: 1240px) {
  .modal__content {
    max-width: var(--container-max-width);
  }
}
.modal--top {
  align-items: start;
}
.modal--top .modal__content {
  transform: translateY(-100%);
  border-radius: 0 0 16px 16px;
}
.modal--transparent .modal__content {
  background-color: transparent;
}
.modal--fill-height .modal__content {
  height: 100%;
}
.modal--fullscreen .modal__content {
  --top-margin:38px;
  height: calc(100% - var(--top-margin));
  max-height: calc(100dvh - var(--top-margin));
}
.modal--black .modal__content {
  background-color: var(--clr-surface-dark-ground);
  color: var(--clr-white);
}
.modal--black .modal__content a:not(.btn) {
  color: var(--clr-primary);
}
.modal.active .modal__content {
  transform: translateY(0);
  opacity: 1;
}
.modal__close-line {
  height: 40px;
  position: relative;
  cursor: pointer;
}
.modal__close-line svg {
  display: none;
}
.modal__close-line::after {
  content: "";
  position: absolute;
  width: 96px;
  height: 6px;
  border-radius: 9999vh;
  background-color: var(--clr-body-text);
  opacity: 0.2;
  top: calc(50% - 3px);
  left: calc(50% - 48px);
}
.modal--black .modal__close-line::after {
  background-color: var(--clr-white);
}
.modal__body {
  max-height: calc(90dvh - 40px);
  overflow: auto;
  padding-inline: 16px;
  padding-bottom: 24px;
}
@media (min-width: 1024px) {
  .modal__body {
    max-width: var(--container-max-width);
    margin-inline: auto;
  }
}
.modal a:not(.btn) {
  text-decoration: underline;
}
.modal--fullscreen .modal__body {
  height: 100%;
  max-height: 100dvh;
}
.modal__btn-close {
  position: fixed;
  z-index: 101;
  top: 3px;
  left: 0;
  right: 0;
  height: 32px;
  color: #ffffff;
  --icon-size: 28px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 5px 0 5px;
}
.modal__btn-close svg {
  color: #fff;
  background: rgba(76, 83, 91, 0.7882352941);
  border-radius: 99px;
}
.modal__close {
  position: fixed;
  z-index: 101;
  top: calc(var(--top-margin) * -1);
  left: 0;
  right: 0;
  height: var(--top-margin);
  color: #ffffff;
  --icon-size: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5px 0 5px;
}
.modal__close:before {
  content: "";
  display: inline-flex;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M15 18L9 12L15 6' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  width: 28px;
  height: 28px;
  margin-top: 76px;
  background-color: rgba(76, 83, 91, 0.7882352941);
  background-position: 2px center;
  background-size: 22px;
  background-repeat: no-repeat;
  border-radius: 99px;
}
.modal__close svg {
  color: #fdbd2c;
  color: #fff;
  background: rgba(76, 83, 91, 0.7882352941);
  border-radius: 99px;
  margin-top: 76px;
}

.modal-product-media {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: -16px;
  margin-bottom: -24px;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  height: 100%;
}
.modal-product-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 100dvh;
}

.info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 0 8px;
}
.info:has(.info__buttons) {
  align-items: stretch;
  text-align: left;
}
.info__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.info__buttons > * {
  flex-grow: 1;
}

.delivery-config__title {
  font-weight: 500;
  line-height: 24px;
  color: var(--clr-surface-dark-ground);
}
.delivery-config__item {
  margin-top: 16px;
  padding: 12px 16px;
  background-color: var(--clr-white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--clr-subtle-text2);
  gap: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 16px;
  line-height: 22px;
  cursor: pointer;
}
.delivery-config__item::after {
  --_size: 24px;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.625 18.75L15.375 12L8.625 5.25' stroke='%230A0909' stroke-opacity='0.3' stroke-width='1.25' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: var(--_size);
  height: var(--_size);
  min-width: var(--_size);
}
.delivery-config__item.disabled, .delivery-config__item[data-disabled] {
  cursor: not-allowed;
  opacity: 0.5;
}
.delivery-config__item + .delivery-config__item {
  margin-top: 8px;
}
.delivery-config__result-item {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.delivery-config__clear {
  color: var(--clr-danger);
  cursor: pointer;
}
.delivery-config__price {
  font-weight: 500;
}
.delivery-config__result-hint {
  margin-top: 8px;
  font-size: 12px;
  line-height: 16px;
  color: var(--clr-subtle-text2);
}
.delivery-config__result-info {
  --icon-size: 20px;
  font-size: 13px;
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--clr-succes-d40);
}

@media screen and (min-width: 680px) {
  .modal-product-media video {
    width: auto;
    height: auto;
    min-height: unset;
  }
}
@media screen and (min-width: 1020px) {
  .modal--wide-center {
    align-items: center;
  }
  .modal--wide-center .modal__content {
    border-radius: 16px;
  }
  .modal--wide-center .modal__close-line {
    height: 24px;
  }
  .modal--wide-center .modal__close-line::after {
    display: none;
  }
  .modal--wide-center .modal__close-line svg {
    display: block;
    color: #fff;
    background: rgba(76, 83, 91, 0.7882352941);
    border-radius: 99px;
    position: absolute;
    top: 4px;
    right: 4px;
  }
}
.category-head {
  padding-top: 20px;
  margin-bottom: 14px;
  display: block;
}
.category-head h1 {
  display: flex;
  gap: 6px;
  align-items: baseline;
  font-size: 30px;
  line-height: 32px;
  color: #353535;
  font-weight: 600;
  margin-bottom: 0;
}
.category-head h1 span {
  display: inline-flex;
  color: #A7A7A7;
  font-size: 16px;
  line-height: 20px;
  white-space: nowrap;
}

.category-tabs {
  margin-inline: calc(var(--container-padding-inline) * -1);
  padding-inline: var(--container-padding-inline);
  padding-top: 5px;
  padding-bottom: 5px;
}
.category-tabs:not(.swiper-initialized) .category-tabs__list {
  display: flex;
  gap: 10px;
}
.category-tabs__item {
  display: inline-flex;
  height: 46px;
  align-items: center;
  text-align: left;
  padding: 0 16px;
  font-size: 13px;
  line-height: 17px;
  font-weight: bold;
  color: #FBA206;
  border: 1px solid #FDBD2C;
  border-radius: 12px;
  background: #fff;
  white-space: nowrap;
  width: auto;
  transition: all ease 0.6s;
}
.category-tabs__item.active {
  color: #fff;
  background: #FBA206;
}
.category-tabs__item.active::after {
  opacity: 1;
}
.category-tabs__arrow {
  width: 26px;
  height: 52px;
  -webkit-border-radius: 99px 0 0 99px;
  -moz-border-radius: 99px 0 0 99px;
  border-radius: 99px 0 0 99px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  margin-top: -26px;
  right: 0;
  z-index: 9;
  box-shadow: 0 0 20px rgba(203, 211, 219, 0.5);
}
.category-tabs__arrow.swiper-button-disabled {
  display: none;
}

.is-sticky--category-tabs .category-tabs {
  position: sticky;
  top: 48px;
  background: #fff;
  z-index: 2;
}
.is-sticky--category-tabs .category-tabs__item {
  height: 38px;
  font-size: 12px;
  line-height: 14px;
}

.category-items {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

@media (max-width: 860px) {
  .category-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.product__gallery {
  position: relative;
  margin-top: 16px;
  margin-inline: calc(var(--container-padding-inline) * -1);
  padding-inline: var(--container-padding-inline);
  overflow: hidden;
}
.product__gallery-item {
  min-height: 262px;
  max-height: 262px;
  width: max-content;
}
.product__gallery-item video, .product__gallery-item img {
  max-height: 262px;
  width: auto;
  object-fit: contain;
  padding: 4px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.product__gallery-item video {
  height: 262px;
  aspect-ratio: 540/940;
  object-fit: cover;
}
.product__gallery-item img {
  aspect-ratio: 262/262;
}
.product__gallery-item--more {
  position: relative;
  overflow: hidden;
}
.product__gallery-item--more .product__gallery-item--more-overlay {
  display: none;
}
.product__gallery-item--more.is-hidden img {
  filter: blur(8px);
  -webkit-filter: blur(8px);
}
.product__gallery-item--more.is-hidden.is-loading:after {
  content: "";
  background: url("../images/loading.gif") center/80px no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.product__gallery-item--more.is-hidden.is-loading span {
  opacity: 0;
}
.product__gallery-item--more.is-hidden .product__gallery-item--more-overlay {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
}
.product__gallery-item--more.is-hidden span {
  height: 56px;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-weight: 500;
  z-index: 9;
  padding: 0 20px;
  background: var(--clr-white);
  color: var(--clr-primary);
}
.product .gallery-desktop .swiper-slide .product__gallery-item {
  opacity: 0.2;
  transform: scale(0.8);
  transition: all 0.5s ease-in-out;
}
.product .gallery-desktop .swiper-slide-active .product__gallery-item {
  opacity: 1;
  transform: scale(1);
}
.product .gallery-desktop .product__gallery-item {
  --height:460px;
  max-height: var(--height);
  height: var(--height);
}
.product .gallery-desktop .product__gallery-item img {
  max-height: var(--height);
  object-fit: contain;
}
.product .gallery-desktop .product__gallery-item video {
  max-height: var(--height);
}
.product .product-gallery {
  position: relative;
  --height:460px;
}
.product .product-gallery__nav-btn {
  position: absolute;
  z-index: 20;
  top: 0px;
  width: 80px;
  height: var(--height);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product .product-gallery__nav-btn span {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--clr-primary);
}
.product .product-gallery__nav-btn span:hover {
  background: var(--clr-primary-40);
}
.product .product-gallery__nav-btn--disabled {
  display: none;
}
.product .product-gallery__nav-btn--prev {
  left: 0px;
  background: linear-gradient(-90deg, rgba(255, 255, 255, 0), #ffffff 90%);
}
.product .product-gallery__nav-btn--next {
  right: 0px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), #ffffff 90%);
}
.product .gallery-thumbs .image {
  cursor: pointer;
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.product .gallery-thumbs .image.swiper-slide-thumb-active {
  border-color: var(--clr-primary);
}
.product .gallery-thumbs .image > * {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product .gallery-thumbs .image img {
  width: 92%;
  height: 92%;
  object-fit: cover;
  border-radius: 12px;
}
.product .swiper {
  overflow: visible;
}
.product .swiper-slide {
  width: auto;
  max-width: 100%;
}
.product__badge {
  position: absolute;
  z-index: 1;
  top: 48px;
  left: 22px;
  border-radius: 30px;
  gap: 10px;
  padding: 4px 8px;
  background-color: #FA2239;
  color: var(--clr-white);
  font-size: 12px;
  font-weight: 600;
  line-height: 22px;
}
.product__name {
  line-height: 28px;
  font-weight: 500;
}
.product__hot-stock {
  margin-bottom: 18px;
  margin-top: -4px;
}
.product__hot-stock .hot-stock {
  --font-size:13px;
}
.product__summary {
  color: var(--clr-subtle-text);
}
.product__stock {
  font-size: 12px;
  line-height: 16px;
  color: var(--clr-primary);
}
.product__props {
  margin-top: 12px;
  border-top: 1px solid rgba(10, 9, 9, 0.1);
  padding-top: 12px;
  display: flex;
}
.product__prop {
  position: relative;
  width: 100%;
  display: grid;
  gap: 4px;
  text-align: center;
  color: var(--clr-subtle-text2);
}
.product__prop + .product__prop::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: -1px;
  width: 1px;
  background-color: rgba(0, 0, 0, 0.1);
}
.product__prop span:first-child {
  font-size: 12px;
  line-height: 16px;
}
.product__prop span:last-child {
  font-weight: 700;
}
.product__buttons {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.product__buy-btn {
  width: 100%;
  height: 52px;
  position: relative;
  gap: 8px;
  box-sizing: border-box;
  padding: 0 8px;
}
.product__buy-btn::after {
  content: "";
  height: 28px;
  width: 1px;
  background-color: currentColor;
  order: 9;
}
.product__buy-btn .svg-icon {
  order: 99;
}
.product__prices {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.product__price {
  display: inline-flex;
  color: var(--clr-dark);
  line-height: 24px;
  vertical-align: top;
  white-space: nowrap;
}
.product__old-price {
  font-size: 16px;
  line-height: 22px;
  opacity: 0.5;
  text-decoration: line-through;
  text-align: left;
  white-space: nowrap;
}
@media screen and (max-width: 1020px) {
  .product__rate {
    margin-top: 12px;
  }
}
.product__badge-sale {
  display: inline-flex;
  position: relative;
  vertical-align: top;
}
.product__badge-sale span {
  -webkit-border-radius: 99px;
  -moz-border-radius: 99px;
  border-radius: 99px;
  color: var(--clr-black);
  font-weight: bold;
  line-height: 14px;
  padding: 4px 6px;
  display: block;
}
.product__badge-sale span.with-svg {
  width: 100%;
  height: 100%;
  color: #ffffff;
  justify-content: center;
  font-size: 13px;
  line-height: 15px;
  font-weight: 500;
  text-align: center;
  display: flex;
  align-items: center;
  position: absolute;
  z-index: 4;
  transform: rotate(-6deg);
}
.product__badge-sale svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.product__stock-hint {
  --icon-size: 20px;
  margin-top: 16px;
  display: flex;
  align-items: center;
  line-height: 24px;
  gap: 8px;
}
.product__stock-hint--stocked {
  color: var(--clr-succes-d40);
}
.product__stock-hint--out-of-stock {
  color: var(--clr-danger);
}
.product__delivery-config {
  margin-top: 10px;
}
.product__info-button {
  --icon-size: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-weight: 500;
  line-height: 24px;
  width: 100%;
}
.product__info-button .svg-icon {
  color: var(--clr-subtle-text3);
}
.product__description {
  margin-top: 24px;
}
.product__description-content {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  transition: 0.3s ease;
}
.product__description-content.expanded {
  -webkit-line-clamp: unset;
}
.product__description-more-btn {
  --icon-size: 20px;
  --_size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--_size);
  height: var(--_size);
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 8px;
  margin-inline: auto;
  overflow: hidden;
  transition: 0.3s ease;
}
.product__description-more-btn.hidden {
  border: 0;
  height: 0;
  width: 0;
  margin-top: 0;
}

@media screen and (max-width: 680px) {
  .action-product .footer {
    padding-bottom: 78px;
  }
  .action-product .sb-chat .sb-chat-btn {
    bottom: 88px;
  }
  .product__buttons {
    z-index: 100;
    position: fixed;
    bottom: 10px;
    left: 12px;
    right: 12px;
    width: auto;
    background: var(--clr-surface-ground);
    border-radius: 99px;
  }
}
.qty {
  display: flex;
  align-items: center;
  justify-content: center;
  --btn-size: 32px;
  background: var(--clr-surface-ground);
  height: 52px;
  border-radius: 99px;
  padding: 0 12px;
}
.qty__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: var(--btn-size);
  height: var(--btn-size);
  min-width: var(--btn-size);
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.qty__value {
  width: calc(var(--btn-size) * 1.5);
  height: var(--btn-size);
  line-height: var(--btn-size);
  text-align: center;
  font-weight: 600;
  font-size: 16px;
}

.delivery-bullets {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 10px;
}
.delivery-bullets__item {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  line-height: 1.2;
}
.delivery-bullets__item img {
  --size:36px;
  height: var(--size);
  width: var(--size);
}
.delivery-bullets__item .icon-info {
  --icon-size: 20px;
  color: var(--clr-subtle-text3);
}
.delivery-bullets__payment {
  display: flex;
  gap: 10px;
  padding-top: 10px;
  line-height: 1.2;
}
.delivery-bullets__payment svg {
  fill: var(--clr-primary);
  width: 20px;
  min-width: 20px;
  height: 20px;
}
.delivery-bullets__payment span {
  height: 32px;
  border-radius: 5px;
  background: #ffffff;
  font-size: 11px;
  line-height: 1.1;
  font-weight: 500;
  display: flex;
  align-items: center;
  color: #566069;
  padding: 0 8px;
  gap: 6px;
}
.delivery-bullets__payment img {
  height: 32px;
}
.delivery-bullets__hint-green {
  color: var(--clr-succes);
  font-weight: 600;
}

.boxed.product__delivery-config {
  border-radius: 12px 12px 0 0;
}

.boxed + .bullet--guarantee {
  margin-top: 0;
  border-radius: 0 0 12px 12px;
}

.bullet {
  display: flex;
  align-items: center;
  padding: 16px;
  border-radius: 12px;
  gap: 16px;
  width: 100%;
  margin-top: 10px;
}
.bullet--guarantee {
  background: var(--clr-primary-10);
  padding: 10px;
}
.bullet--return {
  background: #def8eb;
  background: var(--clr-primary-10);
}
.bullet--card-pay {
  background: var(--clr-succes-10);
}
.bullet__icon-trigger {
  --icon-size: 20px;
  color: var(--clr-subtle-text3);
  width: var(--icon-size);
  min-width: var(--icon-size);
  height: var(--icon-size);
}
.bullet__image {
  --width: 48px;
  width: var(--width);
  min-width: var(--width);
  aspect-ratio: 96/64;
}
.bullet__icon {
  --size: 48px;
  width: var(--size);
  height: var(--size);
  min-height: var(--size);
}
.bullet--guarantee .bullet__icon {
  --size: 76px;
}
.bullet__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.bullet__content--inline {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 10px;
}
.bullet__content-image {
  height: 30px;
}
.bullet__title {
  font-size: 15px;
  font-weight: 500;
  color: var(--clr-black);
  margin-bottom: 4px;
  line-height: 1.2;
}
.bullet__hint {
  display: block;
  font-size: 12px;
  line-height: 1.3;
  color: var(--clr-subtle-text2);
}

@media screen and (min-width: 1020px) {
  .product {
    padding-right: 420px;
    position: relative;
  }
  .product__name {
    margin-top: 0;
  }
  .product .swiper-slide {
    width: calc(60% - 6px);
  }
  .product__gallery-item {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    max-height: 360px;
    aspect-ratio: 262/262;
  }
  .product__gallery-item video, .product__gallery-item img {
    border: none;
    object-fit: cover;
    border-radius: 16px;
    max-height: 360px;
    height: 100%;
  }
  .product__gallery-item img {
    object-fit: contain;
    width: 100%;
  }
  .product--guarantee .product__icon {
    --size: 48px;
  }
  .product__sidebar {
    position: absolute;
    right: 0;
    top: 0;
    width: 380px;
    bottom: 0;
  }
  .product__summary {
    max-height: 160px;
    overflow: auto;
  }
  .product__sidebar-inner {
    position: sticky;
    top: 68px;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #fdbd2c;
  }
}
@media screen and (max-width: 480px) {
  .delivery-bullets {
    gap: 6px;
  }
  .delivery-bullets__item img {
    --size:32px;
  }
  .bullet {
    padding: 10px;
    gap: 10px;
  }
  .bullet--guarantee .bullet__icon {
    --size: 72px;
    margin-bottom: auto;
  }
  .bullet__title {
    font-size: 14px;
  }
  .bullet__hint {
    font-size: 11px;
    line-height: 1.25;
  }
  .bullet__image {
    --width: 48px;
  }
  .bullet__content-image {
    height: 28px;
  }
}
.main--cart {
  --container-max-width: 680px;
}

.cart {
  margin-bottom: 32px;
}
.cart__items {
  display: grid;
  gap: 8px;
}
.cart__item {
  padding: 12px;
  border-radius: 12px;
  background-color: var(--clr-white);
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
}
.cart__item-image img {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
}
.cart__item-name-line {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}
.cart__item-remove {
  --icon-size: 16px;
  width: var(--icon-size);
  height: var(--icon-size);
  min-width: var(--icon-size);
  color: var(--subtle-text3);
  opacity: 0.3;
}
.cart__item-qty-price {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.cart__item-qty {
  display: flex;
  align-items: center;
  gap: 3px;
}
.cart__item-qty > * {
  --_soze: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: var(--_soze);
  height: var(--_soze);
  min-width: var(--_soze);
}
.cart__item-qty-btn {
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.cart__totals {
  display: grid;
  gap: 8px;
}
.cart__totals-item--big {
  margin-top: 6px;
}
.cart__totals-hint {
  color: var(--clr-subtle-text);
}
.cart__delivery-time {
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--clr-succes-d40);
  background-color: var(--clr-succes-10);
}
.cart__inputs-title {
  margin-bottom: 8px;
}
.cart__submit-btn {
  margin-top: 20px;
}

.cart-box {
  padding: 16px;
  background-color: var(--clr-white);
  border-radius: 12px;
}
.cart-box:not(:first-child) {
  margin-top: 24px;
}

.quickorder-body {
  padding-top: 20px;
}
.quickorder-body span {
  display: block;
  font-weight: 500;
  color: var(--clr-subtle-text2);
  margin-bottom: 4px;
}
.quickorder-body textarea {
  padding: 12px 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: border-color 0.2s ease;
  max-width: 100%;
  margin-bottom: 20px;
  width: 100%;
}

.quickorder-button {
  --pulse-color:var(--clr-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  box-sizing: border-box;
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
  padding: 16px;
  animation: pulseShadow 3s infinite;
  border-radius: 9999vh;
  background-color: var(--clr-primary);
  color: var(--clr-body-text);
}

.checkout__address {
  display: grid;
  gap: 8px;
}
.checkout__address > :last-child {
  margin-top: 8px;
}
.checkout__items {
  display: grid;
  gap: 8px;
}
.checkout__item {
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 8px;
}
.checkout__item-name-line {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}
.checkout__item-price {
  white-space: nowrap;
}
.checkout__item-props {
  font-size: 10px;
  line-height: 22px;
  color: var(--clr-subtle-text2);
}
.checkout__items-delivery-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.checkout__items-total {
  margin-top: 16px;
}
.checkout__finalize {
  display: grid;
  gap: 16px;
  font-size: 12px;
  line-height: 16px;
}
.checkout__finalize a {
  color: var(--clr-primary);
}
.checkout__finalize-button {
  --pulse-color:var(--clr-primary);
  width: auto;
  box-sizing: border-box;
  font-size: 14px;
  line-height: 18px;
  padding: 16px;
  animation: pulseShadow 3s infinite;
}
.checkout__finalize-button svg {
  animation: hover-me 0.5s infinite ease-in-out alternate;
}
.checkout__finalize-button.is-fixed {
  z-index: 999;
  position: fixed;
  bottom: 10px;
  left: 10px;
  right: 10px;
}
.checkout__finalize-hints {
  display: grid;
  gap: 8px;
}
@keyframes hover-me {
  100% {
    transform: translate3d(5px, 0, 0);
  }
}

.wheel {
  --_rotation: 0deg;
  margin-block: auto;
  overflow: hidden;
  width: 100%;
  position: relative;
  aspect-ratio: 1;
}
.wheel img {
  width: 100%;
}
.wheel__rotating {
  overflow: hidden;
  transform: rotate(var(--_rotation, 0deg));
  transition: transform 5s cubic-bezier(0, 0, 0, 1);
}
.wheel__rotating svg {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: 0;
}
.wheel__rotating img {
  position: relative;
  z-index: 1;
}
.wheel__static {
  position: absolute;
  z-index: 1;
  inset: 0;
}

:root {
  --icon-size: 24px;
  --font-family: "Onest", sans-serif;
  --container-padding-inline: 16px;
  --container-max-width: 100%;
}
@media (min-width: 1024px) {
  :root {
    --container-max-width: 1200px;
  }
}

* {
  scrollbar-width: thin;
} /* for firefox */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

html, body {
  scroll-behavior: smooth;
  background-color: var(--clr-surface-ground);
  color: var(--clr-body-text);
}

.btn--old-version {
  padding: 8px 12px;
  border-radius: 99px;
  background: var(--clr-surface-ground);
  color: var(--clr-body-text);
  font-size: 14px;
  font-weight: 400;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.btn--old-version svg {
  --icon-size: 16px;
  stroke-width: 1.5px;
  stroke: var(--clr-body-text);
}

.message-alert {
  top: -100%;
  opacity: 1;
  position: fixed;
  z-index: 100999;
  right: calc(50% - var(--container-max-width) * 0.5 + 10px);
  max-width: 40ch;
  border-radius: 6px;
  padding: 6px 16px;
  line-height: 140%;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  background: var(--clr-surface-dark-ground);
  transition: all 0.8s ease;
}
@media screen and (max-width: 1220px) {
  .message-alert {
    right: 10px;
  }
}
.message-alert.message-alert--success {
  background: var(--clr-succes);
}
.message-alert.message-alert--error {
  background: var(--clr-danger);
}
.message-alert.message-alert--info {
  color: var(--clr-surface-ground);
  background: var(--clr-black);
}
.message-alert.is-show {
  top: 50px;
}

@media screen and (max-width: 480px) {
  .message-alert {
    top: -100%;
    text-align: center;
    right: 0;
    left: 0;
    max-width: 100%;
    border-radius: 0px;
    padding: 8px 16px;
    font-size: 14px;
  }
  .message-alert.is-show {
    top: 0;
  }
}
@media screen and (min-width: 1024px) {
  .page-get-order .h4,
  .page-return .h4 {
    justify-content: center;
  }
  .page-get-order .h4 br {
    display: none;
  }
  .page-get-order__content p {
    text-align: center;
    max-width: 80ch;
    margin-left: auto;
    margin-right: auto;
  }
  .form-wrapper {
    max-width: 480px;
    margin: 40px auto !important;
  }
}
.sb-chat {
  z-index: 9 !important;
}

.product-page {
  background-color: #fff;
}

.main--product-page {
  --container-padding-inline:12px;
  margin-top: 12px;
}
.main--product-page .product__gallery {
  margin-top: 0;
}

.main--homepage {
  --container-padding-inline:12px;
}
.main--homepage .main--category {
  margin-top: 12px;
}

html {
  scrollbar-gutter: stable;
}
html.scrollbar-gutter-auto {
  scrollbar-gutter: auto;
}

body, input, textarea, select, button {
  font-family: var(--font-family);
  font-size: 14px;
  line-height: 20px;
  font-feature-settings: "pnum" on, "lnum" on;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
}

strong {
  font-weight: 500;
}

button {
  padding: 0;
  color: inherit;
}

img, video {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

body.modal-opened {
  overflow: hidden;
}

.svg-icon {
  width: var(--icon-size);
  min-width: var(--icon-size);
  height: var(--icon-size);
}

a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  opacity: 0.8;
}

a, .btn {
  transition: 0.2s ease;
  cursor: pointer;
}

.container {
  width: 100%;
  padding-inline: var(--container-padding-inline);
  margin-inline: auto;
  max-width: var(--container-max-width);
}

.boxed {
  padding: 16px;
  background-color: var(--clr-surface-ground);
  border-radius: 12px;
}
.boxed + .boxed {
  margin-top: 10px;
}
.boxed.bg-white {
  background-color: var(--clr-white);
}

.swiper-pagination {
  --_gap: 8px;
  --_button-size: 6px;
  --_active-button-width: 16px;
  --swiper-pagination-color: var(--clr-primary);
  --swiper-pagination-bullet-size: var(--_button-size);
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: calc(var(--_gap) / 2);
  --swiper-pagination-bullet-width: var(--_button-size);
  --swiper-pagination-bullet-height: var(--_button-size);
  --swiper-pagination-bullet-inactive-color: rgba(0 0 0 / 10%);
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-border-radius: 2000vh;
  position: static;
  margin-top: 16px;
}
.swiper-pagination-bullet {
  transition: 0.4s ease;
}
.swiper-pagination-bullet-active {
  --swiper-pagination-bullet-width: var(--_active-button-width);
}

.categories {
  margin-top: 48px;
}
.categories__title {
  margin-bottom: 12px;
}
.categories__items {
  overflow: auto;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 112px;
  gap: 8px;
  margin-inline: calc(var(--container-padding-inline) * -1);
  padding-inline: var(--container-padding-inline);
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--container-padding-inline);
}
.categories__item {
  text-align: center;
  padding: 5px 5px 16px;
  border-radius: 154px;
  background-color: var(--clr-white);
  scroll-snap-align: start;
}
.categories__item-image {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  margin-bottom: 5px;
}
.categories__item-name {
  margin-bottom: 4px;
}
.categories__item-age {
  font-size: 12px;
  line-height: 12px;
  color: var(--clr-subtle-text2);
}

.products-slider {
  margin-top: 24px;
  margin-inline: calc(var(--container-padding-inline) * -1);
  padding-inline: var(--container-padding-inline);
  overflow: hidden;
}
.products-slider + .products-slider {
  margin-top: 48px;
}
.products-slider .swiper {
  margin-top: 12px;
  overflow: visible;
}
.products-slider .swiper-slide {
  width: auto;
  max-width: 100%;
}
.products-slider .swiper-pagination {
  --_button-width: 8px;
  --_button-height: 4px;
  --_active-button-width: 24px;
}

.product-slide {
  padding: 8px;
  background-color: var(--clr-white);
  display: grid;
  border-radius: 6px;
  width: 143px;
}
.product-slide__image {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}
.product-slide__image video, .product-slide__image img {
  width: 100%;
  border-radius: 6px;
  height: 127px;
}
.product-slide__image img:first-child {
  grid-column: span 2;
}
.product-slide__image video:last-child, .product-slide__image video:has(+ .logo) {
  grid-column: span 2;
  height: 127px;
}
.product-slide__image .logo {
  position: absolute;
  border-radius: 0;
  aspect-ratio: initial;
  width: 48px;
  height: auto;
  top: 6px;
  right: 6px;
}
.product-slide__name {
  text-align: center;
  font-size: 12px;
  line-height: 15px;
  margin-top: 16px;
  min-height: 45px;
}
.product-slide__prices {
  margin-top: 8px;
  gap: 8px;
}
.product-slide__old-price {
  font-size: 10px;
  line-height: 18px;
  text-decoration-line: line-through;
  color: var(--clr-subtle-text2);
}
.product-slide__price {
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  color: var(--clr-danger);
}
.product-slide__actions {
  --icon-size: 16px;
  margin-top: 8px;
}
.product-slide__actions > * {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 50%;
  cursor: pointer;
}
.product-slide__actions > *:active, .product-slide__actions > *:active {
  opacity: 0.8;
}
.product-slide__fav:active {
  transform: scale(1.1);
}
.product-slide__fav.active {
  color: var(--clr-primary);
}
.product-slide__add-to-cart {
  background-color: var(--clr-primary);
}

.product-card {
  --_action-button-size: 32px;
  position: relative;
  background-color: var(--clr-white);
  border-radius: 12px;
  overflow: hidden;
}
.product-card:hover {
  opacity: 1;
}
.product-card.is-not-available {
  opacity: 0.3;
}
.product-card--featured {
  padding: 4px;
  grid-column: span 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
}
.product-card__content {
  display: flex;
  flex-direction: column;
}
.product-card__images {
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-card__images .swiper-slide {
  width: 100%;
}
.product-card__images .swiper-pagination {
  --_button-width: 2px;
  --_button-height: 2px;
  --_active-button-width: 12px;
  --_gap: 4px;
  --swiper-pagination-bullet-size: 2px;
  --swiper-pagination-bullet-width: 2px;
  --swiper-pagination-bullet-height: 2px;
  --swiper-pagination-left: 0;
  --swiper-pagination-right: 0;
  --swiper-pagination-bottom: 0;
  --swiper-pagination-top: auto;
  --swiper-pagination-bullet-inactive-color: var(--clr-white);
  margin-top: 0;
  line-height: 2px;
  font-size: 2px;
  position: absolute;
  padding-block: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(38, 23, 48, 0.13) 33.33%, rgba(38, 23, 48, 0.5) 100%);
  border-radius: 0 0 12px 12px;
}
.product-card__images img {
  border-radius: 12px;
  object-fit: cover;
  width: 100%;
  aspect-ratio: 158/200;
}
.product-card--featured .product-card__images {
  flex-grow: 1;
}
.product-card--featured .product-card__images img {
  height: 100%;
  aspect-ratio: unset;
}
.product-card__info {
  padding: 12px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 4px;
}
.product-card__prices {
  display: flex;
  gap: 8px;
  align-items: baseline;
}
.product-card__price {
  font-size: 14px;
  line-height: 18px;
  font-weight: 700;
  color: var(--clr-danger);
}
.product-card__old-price {
  font-size: 10px;
  line-height: 18px;
  text-decoration-line: line-through;
  color: var(--clr-subtle-text2);
}
.product-card__add-to-cart {
  --icon-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--_action-button-size);
  min-width: var(--_action-button-size);
  height: var(--_action-button-size);
  background-color: var(--clr-primary);
  border-radius: 50%;
}
.product-card__add-to-favs {
  --icon-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--_action-button-size);
  height: var(--_action-button-size);
  background-color: rgba(0, 0, 0, 0.25);
  color: var(--clr-white);
  position: absolute;
  z-index: 1;
  top: 6px;
  right: 6px;
  border-radius: 50%;
}
.product-card__add-to-favs:active {
  transform: scale(1.1);
}
.product-card__add-to-favs.active {
  color: var(--clr-primary);
}
.product-card--featured .product-card__add-to-favs {
  top: 12px;
  left: 12px;
  right: auto;
}
.product-card__not_available {
  --icon-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* width: var(--_action-button-size); */
  height: var(--_action-button-size);
  background-color: rgb(250, 34, 57);
  color: var(--clr-white);
  position: absolute;
  z-index: 1;
  top: 6px;
  left: 6px;
  border-radius: 30px;
  padding: 0 8px;
}
.product-card__featured-media img, .product-card__featured-media video {
  display: block;
  aspect-ratio: 158/233;
  max-width: 100%;
  object-fit: cover;
  border-radius: 10px;
  height: 100%;
}

.search-modal {
  padding-inline: 8px;
}

.locations-list {
  margin-top: 16px;
  display: grid;
  gap: 4px;
}
.locations-list__item {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 6px 16px;
  font-size: 14px;
  line-height: 20px;
  border-radius: 8px;
  background-color: rgba(135, 135, 135, 0.1);
}
.locations-list__item.active {
  background-color: var(--clr-surface-dark-ground);
  color: var(--clr-white);
}
.locations-list__item--with-arrow::after {
  --_size: 20px;
  content: "";
  width: var(--_size);
  height: var(--_size);
  min-width: var(--_size);
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.5 4.16666L12.5 9.99999L7.5 15.8333' stroke='%23878787' stroke-opacity='0.5' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.nav-links {
  display: grid;
  padding-block: 16px;
}
.nav-links + .nav-links {
  border-top: 1px solid rgba(10, 9, 9, 0.1);
}
.nav-links__title {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  margin-bottom: 8px;
  letter-spacing: 1px;
  color: var(--clr-subtle-text2);
}
.nav-links__item {
  --icon-size: 26px;
  padding-block: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  line-height: 20px;
  color: #0A0909;
  text-decoration: none !important;
}
.nav-links__item.is-disabled {
  opacity: 0.5;
}
.nav-links__item--big {
  padding-block: 8px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
}
.nav-links__item--big a {
  text-decoration: underline !important;
}
.nav-links__item--big > span {
  display: flex;
  color: var(--clr-subtle-text2);
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
}

.modal-categories a {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--clr-surface-ground);
}
.modal-categories .mcat__icon {
  width: 26px;
  height: 26px;
  display: block;
  -webkit-background-size: 26px 26px;
  background-size: 26px 26px;
}

.page-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-block: 18px;
}

.page-header__back-link {
  position: absolute;
  top: 20px;
  left: 8px;
  width: var(--icon-size);
  height: var(--icon-size);
}

.page-header__title {
  max-width: calc(100% - 120px);
}

.page-header__header-action {
  position: absolute;
  font-size: 14px;
  line-height: 20px;
  top: calc(50% - 10px);
  right: 0;
  color: var(--clr-primary-hover);
}

.page-header--my {
  align-items: center;
  justify-content: space-between;
}

.page-header--my a {
  display: flex;
  gap: 6px;
  justify-content: center;
  align-items: center;
  text-decoration: underline;
}

.page-header--simple {
  align-items: start;
  justify-content: flex-start;
  gap: 12px;
  text-align: left;
}
.page-header--simple .page-header__back-link {
  position: static;
}
.page-header--simple .page-header__header-action {
  position: static;
  margin-left: auto;
}

.spaced-content > * + * {
  margin-top: 8px;
}
.spaced-content b {
  font-weight: bold;
}
.spaced-content .accordion__item-body-inner * + * {
  margin-top: 12px;
}
.spaced-content p a {
  text-decoration: underline;
  font-weight: 500;
}
.spaced-content > * + .accordion, .spaced-content > .accordion + * {
  margin-top: 16px;
}
.spaced-content p {
  line-height: 157%;
}
.spaced-content strong {
  font-weight: bold;
}
.spaced-content .input {
  margin-bottom: 20px;
}
.spaced-content ul li, .spaced-content ol li {
  list-style: inherit;
}
.spaced-content ul li a, .spaced-content ol li a {
  text-decoration: underline;
  font-weight: 500;
}
.spaced-content ul, .spaced-content ol {
  padding-inline-start: 28px;
}
.spaced-content b {
  font-weight: bold;
}
.spaced-content h2 {
  display: flex;
  align-items: baseline;
  gap: 5px;
  font-size: 19px;
  line-height: 22px;
  font-weight: 600;
  margin-bottom: 16px;
}
.spaced-content h3 {
  display: flex;
  align-items: baseline;
  gap: 5px;
  counter-increment: headings;
  font-size: 17px;
  line-height: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}
.spaced-content h3:not(:first-child) {
  margin-top: 20px !important;
}
.spaced-content h3.counter-reset {
  counter-reset: headings;
}
.spaced-content h3.no-counter::before {
  content: none;
}

.tracking-steps {
  display: grid;
  gap: 10px;
  overflow: auto;
  grid-auto-columns: 224px;
  grid-auto-flow: column;
  padding-block: 8px;
}
.tracking-steps__item {
  display: flex;
  gap: 4px;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: var(--clr-subtle-text2);
  position: relative;
  padding-bottom: 14px;
  transition: 0.2s ease;
}
.tracking-steps__item::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  height: 4px;
  background-color: currentColor;
  border-radius: 9999vh;
}
.tracking-steps__item.done {
  color: var(--clr-succes);
}
.tracking-steps__item.done::before {
  --_size: 20px;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='20' height='20' rx='10' fill='%2321BC7B'/%3E%3Cpath d='M13.125 7.5L8.75 12.5L6.875 10.625' stroke='white' stroke-width='0.625' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  display: block;
  width: var(--_size);
  min-width: var(--_size);
  height: var(--_size);
}

.info-icon {
  --_size: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: var(--_size);
  min-width: var(--_size);
  height: var(--_size);
  margin-inline: auto;
  margin-bottom: 16px;
}

.advantages {
  margin-top: 24px;
  overflow: hidden;
  margin-inline: calc(var(--container-padding-inline) * -1);
  padding-inline: var(--container-padding-inline);
}

.advantages .swiper {
  overflow: visible;
}

.advantages__item {
  padding: 16px;
  display: grid;
  gap: 8px;
  background-color: var(--clr-primary-40);
  border-radius: 12px;
}

.advantages__icon svg {
  width: 36px;
  min-width: 36px;
  height: 36px;
}

.advantages__name {
  display: flex;
  align-items: flex-end;
  min-height: 66px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
}

.tiktok {
  margin-top: 48px;
}

.tiktok__title {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.tiktok__slider {
  margin-top: 12px;
}

.tiktok .swiper-slide {
  height: auto;
}

.tiktok video {
  height: 100%;
  border-radius: 14px;
}

.tiktok .swiper-pagination {
  --_gap: 4px;
  --swiper-pagination-color: var(--clr-white);
  --swiper-pagination-bullet-inactive-opacity: .25;
  position: absolute;
  top: 0;
  margin: 0;
  padding: 9px 8px;
  bottom: unset;
  display: flex;
}

.tiktok .swiper-pagination-bullet {
  height: 2px;
  flex-basis: 100%;
}

.offers {
  margin-top: 72px;
}
.offers .swiper-pagination {
  --_button-width: 8px;
  --_button-height: 4px;
  --_active-button-width: 24px;
}

.offer24 {
  margin-top: 24px;
}
.offer24 + .products-slider {
  margin-top: 41px;
}
.offer24__slider {
  margin-top: 12px;
}
.offer24__item {
  background-color: var(--clr-white);
  border-radius: 12px;
}
.offer24__media {
  display: grid;
  grid-template-columns: 184fr 132fr;
  gap: 4px;
  padding: 4px;
}
.offer24__media-item {
  position: relative;
}
.offer24__media-item img, .offer24__media-item video {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.offer24__fav {
  --icon-size: 12px;
  --_size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--_size);
  height: var(--_size);
  background-color: rgba(0, 0, 0, 0.25);
  color: var(--clr-white);
  position: absolute;
  z-index: 1;
  top: 8px;
  left: 8px;
  border-radius: 50%;
}
.offer24__fav:active {
  transform: scale(1.1);
}
.offer24__fav.active {
  color: var(--clr-primary);
}
.offer24__info {
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.offer24__discount {
  --_size: 48px;
  background-image: url("data:image/svg+xml,%3Csvg width='44' height='48' viewBox='0 0 44 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.9004 3.92082C18.1783 -1.30694 25.8217 -1.30694 29.0996 3.92082C30.5743 6.27285 33.1268 7.74059 35.9093 7.83663C42.0938 8.0501 45.9155 14.643 43.0088 20.0842C41.7011 22.5323 41.7011 25.4677 43.0088 27.9158C45.9155 33.357 42.0938 39.9499 35.9093 40.1634C33.1268 40.2594 30.5743 41.7271 29.0996 44.0792C25.8217 49.3069 18.1783 49.3069 14.9004 44.0792C13.4257 41.7271 10.8732 40.2594 8.09073 40.1634C1.90621 39.9499 -1.9155 33.357 0.991153 27.9158C2.2989 25.4677 2.2989 22.5323 0.991153 20.0842C-1.9155 14.643 1.90621 8.0501 8.09073 7.83663C10.8732 7.74059 13.4257 6.27285 14.9004 3.92082Z' fill='%23FA2239'/%3E%3C/svg%3E%0A");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-white);
  line-height: 18px;
  font-weight: 700;
  padding: 4px;
  width: var(--_size);
  min-width: var(--_size);
  height: var(--_size);
}
.offer24__name {
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
}
.offer24__price {
  display: flex;
  gap: 8px;
  align-items: baseline;
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  color: var(--clr-danger);
}
.offer24__price-old {
  text-decoration: line-through;
  font-weight: 400;
  font-size: 10px;
  line-height: 18px;
  color: var(--clr-subtle-text2);
}
.offer24__add-to-cart {
  --icon-size: 24px;
  --_size: 48px;
  margin-left: auto;
  width: var(--_size);
  min-width: var(--_size);
  height: var(--_size);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--clr-primary);
}
.offer24 .swiper-pagination {
  --_button-width: 8px;
  --_button-height: 4px;
  --_active-button-width: 24px;
  margin-top: 9px;
}

.marquee {
  overflow: hidden;
  margin-inline: calc(var(--container-padding-inline) * -1);
  position: relative;
}
.marquee__content {
  display: flex;
  align-items: center;
  white-space: nowrap;
  padding-inline: var(--container-padding-inline);
  padding-block: 16px;
  color: var(--clr-white);
  font-size: 14px;
  line-height: 20px;
  background-color: var(--clr-danger);
}
.marquee__delimiter {
  --_size: 6px;
  display: inline-block;
  width: var(--_size);
  min-width: var(--_size);
  height: var(--_size);
  background-color: var(--clr-white);
  border-radius: 50%;
  margin-inline: 24px;
  margin-bottom: 2px;
}
.marquee__info-button {
  --icon-size: 16px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  color: var(--clr-white);
  background-color: rgba(250, 34, 57, 0.1);
}

main.main {
  margin-bottom: 30px;
}

.swiper-slide.loading .product-slide__image {
  border-radius: 4px;
  display: inline-block;
  background: var(--clr-surface-ground);
  background-size: 400% 400%;
  animation: opacity 3s ease infinite;
  width: 127px;
  height: 127px;
}

.swiper-slide.loading .product-slide__image img {
  opacity: 0;
}

.swiper-slide.loading .product-slide__name {
  border-radius: 4px;
  display: inline-block;
  background: var(--clr-surface-ground);
  background-size: 400% 400%;
  animation: opacity 3s ease infinite;
  width: 100px;
  height: 16px;
  color: transparent;
  justify-self: center;
}

.swiper-slide.loading .product-slide__prices .product-slide__old-price,
.swiper-slide.loading .product-slide__prices .product-slide__price {
  border-radius: 4px;
  display: inline-block;
  background: var(--clr-surface-ground);
  background-size: 400% 400%;
  animation: opacity 3s ease infinite;
  height: 18px;
  color: transparent;
}

.swiper-slide.loading .product-slide__prices .product-slide__old-price {
  min-width: 30px;
}

.swiper-slide.loading .product-slide__prices .product-slide__price {
  min-width: 40px;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes opacity {
  50% {
    opacity: 0.4;
  }
}
.main--category {
  --container-padding-inline:12px;
}

.is-dev .main--category {
  --container-padding-inline:16px;
}

.product-item {
  --_action-button-size: 30px;
  --delay-animation: 0s;
  position: relative;
  background-color: var(--clr-white);
  border-radius: 12px;
  overflow: hidden;
  padding: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.product-item:nth-child(odd) {
  --delay-animation: 1s;
}
.product-item:hover,
.product-item a:hover {
  opacity: 1;
}
.product-item--large {
  --_action-button-size: 48px;
  grid-column: span 2;
}
.product-item__media {
  position: relative;
}
.product-item--large .product-item__media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.product-item:not(.product-item--large) .product-item__media {
  margin: -8px -8px 0;
}
.product-item__media-pictures--gallery {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 8px;
  aspect-ratio: 152/240;
}
.product-item__media-picture img {
  width: 100%;
  border-radius: 12px;
  aspect-ratio: 152/116;
  aspect-ratio: 152/152;
  object-fit: contain;
}
.product-item--large .product-item__media-picture img {
  aspect-ratio: 152/116;
}
.product-item__media-pictures--gallery .product-item__media-picture img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  aspect-ratio: 152/116;
}
.product-item__media-video {
  aspect-ratio: 152/240;
}
.product-item__media-video video {
  background: var(--clr-danger-10);
  border-radius: 12px;
  width: 100%;
  aspect-ratio: 148/234;
}
.product-item__media-video--equal {
  aspect-ratio: 152/152;
}
.product-item__media-video--equal video {
  aspect-ratio: 152/152;
}
.product-item__badge-sale {
  position: absolute;
  bottom: 8px;
  left: 8px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  background: #f0f0f0;
  color: var(--clr-black);
  font-size: 13px;
  font-weight: bold;
  line-height: 14px;
  padding: 4px 6px;
}
.product-item__offers {
  padding-top: 6px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}
.product-item__large .product-item__offers {
  padding-right: 56px;
}
.product-item__title {
  font-size: 12px;
  line-height: 15px;
  font-weight: 500;
  color: var(--clr-body-text);
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
  -webkit-box-orient: vertical;
  max-height: 30px;
  margin-bottom: auto;
}
.product-item__title--one-line {
  margin-bottom: 12px;
  white-space: nowrap;
  height: 15px;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: unset;
  display: block;
  overflow: hidden;
  margin-top: 4px;
  margin-bottom: 4px;
}
.product-item--large .product-item__title--one-line {
  margin-top: 0;
  margin-bottom: 8px !important;
  height: 18px;
}
@keyframes loop-2rows {
  0% {
    transform: translateY(0px);
  }
  45% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  95% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(-40px);
  }
}
@keyframes loop-3rows {
  0% {
    transform: translateY(0px);
  }
  30.000000000000004% {
    transform: translateY(0px);
  }
  33.333333333333336% {
    transform: translateY(-20px);
  }
  63.33333333333334% {
    transform: translateY(-20px);
  }
  66.66666666666667% {
    transform: translateY(-40px);
  }
  96.66666666666667% {
    transform: translateY(-40px);
  }
  100% {
    transform: translateY(-60px);
  }
}
.product-item--large .product-item__title {
  font-size: 14px;
  line-height: 1.3;
  margin-bottom: auto;
  max-height: 42px;
}
.product-item__prices {
  display: flex;
  align-items: baseline;
  gap: 0 8px;
}
.product-item__features {
  font-size: 12px;
  line-height: 18px;
  color: var(--clr-dark);
  white-space: nowrap;
  font-weight: 600;
}
.product-item--large .product-item__prices {
  height: auto;
}
.product-item--large .product-item__features {
  font-size: 14px;
}
.product-item__price {
  font-size: 15px;
  line-height: 23px;
  font-weight: 600;
  color: var(--clr-red-dark);
  white-space: nowrap;
}
.product-item--large .product-item__price {
  font-size: 20px;
  line-height: 30px;
}
.product-item--large .product-item__old-price {
  font-size: 13px;
}
.product-item__old-price {
  font-size: 12px;
  line-height: 18px;
  color: var(--clr-dark);
  white-space: nowrap;
  text-decoration: none;
  font-weight: 600;
  position: relative;
}
.product-item__old-price:after {
  content: "";
  height: 1px;
  background: var(--clr-black);
  top: 50%;
  left: -2px;
  right: -2px;
  position: absolute;
  opacity: 0.5;
}
.product-item__add-to-cart {
  --icon-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--_action-button-size);
  min-width: var(--_action-button-size);
  height: var(--_action-button-size);
  background-color: var(--clr-primary);
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  right: 0;
}
.product-item--large .product-item__add-to-cart {
  --icon-size: 24px;
}
.product-item__add-to-favs {
  --_action-button-size:30px;
  --icon-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--_action-button-size);
  height: var(--_action-button-size);
  background-color: rgba(0, 0, 0, 0.25);
  color: var(--clr-white);
  position: absolute;
  z-index: 1;
  top: 4px;
  right: 4px;
  border-radius: 50%;
}
.product-item__add-to-favs:active {
  transform: scale(1.1);
}
.product-item__add-to-favs.active {
  color: var(--clr-primary);
}
.product-item--large .product-item__add-to-favs {
  --_action-button-size:32px;
  --icon-size: 12px;
  top: 14px;
  right: 14px;
  left: auto;
}

.rate {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 3px 0;
}
.rate .rate__sales {
  color: var(--clr-subtle-text2);
  font-size: 12px;
  white-space: nowrap;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
}

.rating {
  display: flex;
  align-items: center;
  gap: 2px;
}
.rating svg {
  width: 12px;
  min-width: 12px;
  height: 12px;
  fill: var(--clr-primary);
  stroke: unset;
}

.hot-stock {
  --color: #fb7701;
  height: 20px;
  --font-size:12px;
}
.hot-stock--animation-v-scroll {
  overflow: hidden;
}
.hot-stock--animation-v-scroll .hot-stock__inner {
  animation: loop-2rows 6s ease-out infinite;
  animation-delay: var(--delay-animation);
}
.hot-stock--animation-pulse {
  --pulse-color:var(--clr-primary);
}
.hot-stock--animation-pulse.hot-stock--critic {
  --pulse-color:rgb(250 34 57 / 70%);
}
.hot-stock--animation-pulse.hot-stock--high {
  --pulse-color:var(--clr-succes);
}
.hot-stock--animation-pulse .svg-icon {
  animation: pulseShadow 3s infinite;
  border-radius: 99px;
  border: 2px solid #fff;
}
.hot-stock__progress {
  margin-top: 6px;
  height: 8px;
  border-radius: 99px;
  position: relative;
  background: var(--clr-surface-ground);
  overflow: hidden;
}
.hot-stock__progress:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: var(--clr-primary);
}
.hot-stock__progress--5:before {
  width: 5%;
  background: var(--clr-danger);
}
.hot-stock__progress--10:before {
  width: 10%;
  background: var(--clr-danger);
}
.hot-stock__progress--20:before {
  width: 20%;
}
.hot-stock__progress--30:before {
  width: 30%;
}
.hot-stock__progress--40:before {
  width: 40%;
}
.hot-stock__progress--50:before {
  width: 50%;
}
.hot-stock__progress--50:before {
  width: 60%;
}
.hot-stock__progress--90:before {
  width: 90%;
  background: var(--clr-succes);
}
.hot-stock span {
  gap: 4px;
  display: flex;
  align-items: center;
  font-size: var(--font-size);
  height: 20px;
  color: var(--color);
}
.hot-stock--critic {
  --color: var(--clr-danger);
}
.hot-stock--high {
  --color: var(--clr-succes-d40);
}
.hot-stock--high svg {
  --color: #22BC7B;
}
.hot-stock svg {
  width: 15px;
  min-width: 15px;
  height: 15px;
  fill: var(--color);
  margin-bottom: 1px;
}

@media (max-width: 860px) {
  .product-item--large .product-item__title {
    margin-bottom: 8px;
  }
}
.paging-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 30px 0;
}
.paging-nav li {
  list-style: none;
}
.paging-nav a {
  display: flex;
  text-align: center;
  line-height: 36px;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--clr-white);
  color: var(--clr-black);
  font-size: 16px;
  font-weight: bold;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
  border: 1px solid var(--clr-primary-40);
}
.paging-nav a.inline-link {
  background: none;
}
.paging-nav .selected a {
  background: var(--clr-primary-40);
}

@keyframes pulseShadow {
  0% {
    box-shadow: 0 0 0 0 var(--pulse-color);
  }
  40% {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(50, 179, 123, 0);
  }
}
.action-product.is-mobile {
  background: #ffffff;
}
.action-product.is-mobile .main--product-page {
  margin-top: 0;
}
.action-product.is-mobile .main--product-page > .container > .boxed {
  padding: 12px;
}
.action-product.is-mobile .main .container {
  padding: 0;
}

.main-content {
  margin-top: 12px;
}

.orders-list {
  display: flex;
  flex-direction: column;
  gap: 0px;
  margin-bottom: 40px;
}

.main-content--order-page {
  margin-bottom: 40px;
}
.main-content--order-page .s-order__head {
  max-width: 100%;
  width: 100%;
}

.s-order {
  padding: 28px 28px 20px;
  transition: all 0.5s ease;
  border: 1px solid transparent;
}
.s-order:hover {
  border: 1px solid var(--clr-primary);
}
.s-order__info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0 40px;
}
.s-order__head {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  min-width: 268px;
  width: 268px;
}
.s-order__label {
  font-size: 12px;
  color: var(--clr-subtle-text2);
  opacity: 0.8;
}
.s-order__head-group {
  width: calc(50% - 10px);
}
.s-order__number {
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
}
.s-order__badge {
  margin-bottom: 0px;
  white-space: nowrap;
  color: #fff;
  font-weight: 500;
  font-size: 12px;
  line-height: 100%;
  display: inline-flex;
  padding: 6px 12px 6px;
  border-radius: 99px;
}
.s-order__date {
  font-weight: 500;
  font-size: 13px;
  line-height: 20px;
  color: var(--c-dark);
}
.s-order__items {
  flex: auto;
}
.s-order__item {
  padding: 8px 0;
  border-bottom: 1px solid rgba(32, 3, 69, 0.168627451);
  display: flex;
  justify-content: space-between;
}
.s-order__item-name {
  color: var(--clr-black);
  font-weight: 500;
  font-size: 13px;
  line-height: 20px;
}
.s-order__item-qty {
  font-weight: 700;
  font-size: 13px;
  line-height: 20px;
}
.s-order__sum {
  text-align: right;
  padding: 8px 0;
}
.s-order__sum .price {
  font-weight: 700;
  font-size: 13px;
  line-height: 20px;
}
.s-order__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}
.s-order__total .name {
  font-weight: 500;
  font-size: 13px;
  line-height: 20px;
  color: var(--c-dark);
  opacity: 0.8;
}
.s-order__total .price {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
}
.s-order__total--large .name {
  font-size: 17px;
}
.s-order__total--large .price {
  font-size: 20px;
}

.order-group {
  border-bottom: 2px solid var(--c-silver);
}

.order-group .heading-s {
  font-weight: 500;
}

.order-group .heading-s p {
  margin-bottom: 4px;
}

.order-group .heading-s strong {
  font-weight: 500;
  color: var(--clr-black);
}

.my-content--order {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.my-content--order .s-order__head {
  width: 100%;
  min-width: 100%;
}

.order-pin-wrapper h1.heading-m {
  margin-bottom: 0;
}

.order-pin-wrapper .page-message {
  max-width: 60ch;
  margin: 0 auto;
}

.order-pin-wrapper .wa-form {
  max-width: 300px;
  margin: 0 auto;
}

.order-pin-wrapper .wa-form input {
  width: 100%;
  text-align: center;
}

@media screen and (max-width: 760px) {
  .s-order {
    padding: 16px;
  }
  .s-order__head {
    gap: 10px 20px;
  }
  .s-order__info {
    flex-direction: column;
    gap: 20px 0;
  }
  .s-order__info > * {
    width: 100%;
  }
}
.boxed-login {
  max-width: 480px;
  width: 100%;
  margin: 20px auto 60px;
}

#ttc .boxed-login h1 {
  font-size: 19px;
  line-height: 32px;
  font-weight: 600;
  margin-bottom: 16px;
  text-align: center;
}

#ttc .boxed-login h1 + p {
  text-align: center;
  font-weight: 400;
  margin-bottom: 0;
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.4;
}

#ttc .boxed-login input[type=text],
#ttc .boxed-login input[type=email],
#ttc .boxed-login input[type=password],
#ttc .boxed-login select,
#ttc .boxed-login textarea {
  padding: 12px 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: border-color 0.2s ease;
  width: 100%;
  height: 46px;
  box-sizing: border-box;
}

#ttc .wa-forgotpassword-form-wrapper .wa-field .wa-forgotpassword-button {
  width: 100%;
  margin-top: 20px;
  display: block;
}

#ttc .boxed-login input[type=submit] {
  border-radius: 9999vh;
  background-color: var(--clr-primary);
  color: var(--clr-body-text);
  width: 100%;
  height: 52px;
  position: relative;
  gap: 8px;
  box-sizing: border-box;
  padding: 0 8px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
}

#ttc .boxed-login .wa-field .wa-name {
  font-weight: 500;
  color: var(--clr-subtle-text2);
  margin-bottom: 4px;
  font-size: 14px;
  line-height: 20px;
}

#ttc .wa-login-form-wrapper .wa-login-form-fields .wa-login-forgotpassword-url {
  font-weight: 400;
  color: #006bd8;
  margin-bottom: 0;
  margin-top: 4px;
  font-size: 14px;
  line-height: 32px;
}

#ttc .wa-login-form-wrapper .wa-login-form-fields .wa-login-forgotpassword-url:hover {
  color: var(--clr-primary);
}

#ttc .wa-login-form-wrapper .wa-login-form-actions .wa-signup-url,
#ttc .wa-forgotpassword-form-wrapper .wa-forgotpassword-form-actions .wa-login-url,
#ttc .wa-signup-form-wrapper .wa-signup-form-actions .wa-login-url {
  text-align: center;
  font-weight: 400;
  margin-bottom: 0;
  margin-top: 20px;
  font-size: 14px;
  line-height: 32px;
}

#ttc .wa-login-form-wrapper .wa-login-form-actions .wa-signup-url a,
#ttc .wa-forgotpassword-form-wrapper .wa-forgotpassword-form-actions .wa-login-url a,
#ttc .wa-signup-form-wrapper .wa-signup-form-actions .wa-login-url a {
  color: #006bd8;
}

#ttc .wa-login-form-wrapper .wa-login-form-actions .wa-signup-url a:hover,
#ttc .wa-forgotpassword-form-wrapper .wa-forgotpassword-form-actions .wa-login-url a:hover,
#ttc .wa-signup-form-wrapper .wa-signup-form-actions .wa-login-url a:hover {
  color: var(--clr-primary);
}

/**
SCSS Trick:
  .classname {
    :where(&) {
      ...
    }
  }
gives 0 specificity (thanks to :where),
but provides IDE class auto-completions

while simple :where(.classname) { ... }
- does NOT provide IDE auto-completions
 */
:where(.block) {
  display: block;
}

:where(.i-block) {
  display: inline-block;
}

:where(.flex) {
  display: flex;
}

:where(.i-flex) {
  display: inline-flex;
}

:where(.inline) {
  display: inline;
}

:where(.flex.flex-column,
.i-flex.flex-column) {
  flex-direction: column;
}
:where(.flex.flex-align-center,
.i-flex.flex-align-center) {
  align-items: center;
}
:where(.flex.flex-align-end,
.i-flex.flex-align-end) {
  align-items: flex-end;
}
:where(.flex.flex-justify-center,
.i-flex.flex-justify-center) {
  justify-content: center;
}
:where(.flex.flex-justify-end,
.i-flex.flex-justify-end) {
  justify-content: flex-end;
}
:where(.flex.flex-justify-between,
.i-flex.flex-justify-between) {
  justify-content: space-between;
}
:where(.flex.flex-align-start,
.i-flex.flex-align-start) {
  align-items: flex-start;
}
:where(.flex.flex-align-stretch,
.i-flex.flex-align-stretch) {
  align-items: stretch;
}
:where(.flex.flex-center,
.i-flex.flex-center) {
  align-items: center;
  justify-content: center;
}

:where(.float-left) {
  float: left;
}

:where(.float-right) {
  float: right;
}

:where(.position-absolute) {
  position: absolute;
}

:where(.position-relative) {
  position: relative;
}

:where(.position-fixed) {
  position: fixed;
}

:where(.white-space-nowrap) {
  white-space: nowrap;
}

:where(.text-center) {
  text-align: center;
}

:where(.m-center) {
  margin: 0 auto;
}

:where(.w-100) {
  width: 100%;
}

:where(.pointer-events-none) {
  pointer-events: none;
}

:where(.cursor-pointer) {
  cursor: pointer;
}

:where(.caps) {
  text-transform: uppercase;
}

:where(.text-capitalize) {
  text-transform: capitalize;
}

:where(.nowrap) {
  white-space: nowrap;
}

.sys-hide[class~=sys-hide] {
  display: none;
  position: absolute;
  visibility: hidden;
  opacity: 0;
}

:where(.text-right) {
  text-align: right;
}

:where(.text-transform-none) {
  text-transform: none;
}

:where(.c-primary-d40) {
  color: var(--clr-primary-d40);
}

:where(.bg-primary-d40) {
  background-color: var(--clr-primary-d40);
}

:where(.c-primary-hover) {
  color: var(--clr-primary-hover);
}

:where(.bg-primary-hover) {
  background-color: var(--clr-primary-hover);
}

:where(.c-primary) {
  color: var(--clr-primary);
}

:where(.bg-primary) {
  background-color: var(--clr-primary);
}

:where(.c-primary-40) {
  color: var(--clr-primary-40);
}

:where(.bg-primary-40) {
  background-color: var(--clr-primary-40);
}

:where(.c-primary-10) {
  color: var(--clr-primary-10);
}

:where(.bg-primary-10) {
  background-color: var(--clr-primary-10);
}

:where(.c-white) {
  color: var(--clr-white);
}

:where(.bg-white) {
  background-color: var(--clr-white);
}

:where(.c-white-t10) {
  color: var(--clr-white-t10);
}

:where(.bg-white-t10) {
  background-color: var(--clr-white-t10);
}

:where(.c-surface-ground) {
  color: var(--clr-surface-ground);
}

:where(.bg-surface-ground) {
  background-color: var(--clr-surface-ground);
}

:where(.c-surface-dark-ground) {
  color: var(--clr-surface-dark-ground);
}

:where(.bg-surface-dark-ground) {
  background-color: var(--clr-surface-dark-ground);
}

:where(.c-black) {
  color: var(--clr-black);
}

:where(.bg-black) {
  background-color: var(--clr-black);
}

:where(.c-body-text) {
  color: var(--clr-body-text);
}

:where(.bg-body-text) {
  background-color: var(--clr-body-text);
}

:where(.c-subtle-text) {
  color: var(--clr-subtle-text);
}

:where(.bg-subtle-text) {
  background-color: var(--clr-subtle-text);
}

:where(.c-subtle-text2) {
  color: var(--clr-subtle-text2);
}

:where(.bg-subtle-text2) {
  background-color: var(--clr-subtle-text2);
}

:where(.c-subtle-text3) {
  color: var(--clr-subtle-text3);
}

:where(.bg-subtle-text3) {
  background-color: var(--clr-subtle-text3);
}

:where(.c-black-text) {
  color: var(--clr-black-text);
}

:where(.bg-black-text) {
  background-color: var(--clr-black-text);
}

:where(.c-succes-d40) {
  color: var(--clr-succes-d40);
}

:where(.bg-succes-d40) {
  background-color: var(--clr-succes-d40);
}

:where(.c-succes-hover) {
  color: var(--clr-succes-hover);
}

:where(.bg-succes-hover) {
  background-color: var(--clr-succes-hover);
}

:where(.c-succes) {
  color: var(--clr-succes);
}

:where(.bg-succes) {
  background-color: var(--clr-succes);
}

:where(.c-succes-40) {
  color: var(--clr-succes-40);
}

:where(.bg-succes-40) {
  background-color: var(--clr-succes-40);
}

:where(.c-succes-10) {
  color: var(--clr-succes-10);
}

:where(.bg-succes-10) {
  background-color: var(--clr-succes-10);
}

:where(.c-danger-d40) {
  color: var(--clr-danger-d40);
}

:where(.bg-danger-d40) {
  background-color: var(--clr-danger-d40);
}

:where(.c-danger-hover) {
  color: var(--clr-danger-hover);
}

:where(.bg-danger-hover) {
  background-color: var(--clr-danger-hover);
}

:where(.c-danger) {
  color: var(--clr-danger);
}

:where(.bg-danger) {
  background-color: var(--clr-danger);
}

:where(.c-danger-40) {
  color: var(--clr-danger-40);
}

:where(.bg-danger-40) {
  background-color: var(--clr-danger-40);
}

:where(.c-danger-10) {
  color: var(--clr-danger-10);
}

:where(.bg-danger-10) {
  background-color: var(--clr-danger-10);
}

:where(.c-red-dark) {
  color: var(--clr-red-dark);
}

:where(.bg-red-dark) {
  background-color: var(--clr-red-dark);
}

:where(.c-blue) {
  color: var(--clr-blue);
}

:where(.bg-blue) {
  background-color: var(--clr-blue);
}

@font-face {
  font-family: "Onest";
  src: url("../fonts/OnestThin1602-hint.woff") format("woff"), url("../fonts/OnestThin1602-hint.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "Onest";
  src: url("../fonts/OnestLight1602-hint.woff") format("woff"), url("../fonts/OnestLight1602-hint.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Onest";
  src: url("../fonts/OnestRegular1602-hint.woff") format("woff"), url("../fonts/OnestRegular1602-hint.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Onest";
  src: url("../fonts/OnestMedium1602-hint.woff") format("woff"), url("../fonts/OnestMedium1602-hint.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Onest";
  src: url("../fonts/OnestBold1602-hint.woff") format("woff"), url("../fonts/OnestBold1602-hint.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Onest";
  src: url("../fonts/OnestExtraBold1602-hint.woff") format("woff"), url("../fonts/OnestExtraBold1602-hint.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Onest";
  src: url("../fonts/OnestExtraBold1602-hint.woff") format("woff"), url("../fonts/OnestExtraBold1602-hint.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}

/*# sourceMappingURL=main.css.map */
