@charset "UTF-8";
/* stylelint-disable scss/at-import-partial-extension */
:root {
  --font-family: "Inter Tight", sans-serif;
  --secondary-font: "Garamond", sans-serif;
  --content-width: 1800px;
  --container-offset: 20px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --text: #161616;
  --main-white: #FDFBF4;
  --main-black: #1B1B1B;
  --white: #fff;
  --black: #000;
}
@media (max-width: 640px) {
  :root {
    --container-offset: 15px;
  }
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable value-keyword-case */
@font-face {
  font-family: "Inter Tight";
  src: url("../fonts/../fonts/InterTight-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Inter Tight";
  src: url("../fonts/../fonts/InterTight-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Inter Tight";
  src: url("../fonts/../fonts/InterTight-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Garamond";
  src: url("../fonts/../fonts/itc-garamond_narrow-book.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Garamond";
  src: url("../fonts/../fonts/itc-garamond_narrow-italic.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: italic;
}
/* stylelint-disable declaration-no-important */
/* stylelint-disable no-duplicate-selectors */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  margin: 0;
}

.page {
  font-family: var(--font-family);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  color: var(--text);
  background-color: var(--color-background-light);
}

.page__body {
  margin: 0;
  min-width: 360px;
  min-height: 100%;
  font-weight: 400;
  font-size: 16px;
  background-color: var(--main-white);
}

section {
  overflow: hidden;
  max-width: 100%;
}

img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

a {
  text-decoration: none;
}

.site-container {
  overflow: hidden;
}

.is-hidden {
  display: none !important;
}

.btn-reset {
  border: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}
.input-reset::-webkit-search-decoration, .input-reset::-webkit-search-cancel-button, .input-reset::-webkit-search-results-button, .input-reset::-webkit-search-results-decoration {
  display: none;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}

.centered {
  text-align: center;
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.page--ios .dis-scroll {
  position: relative;
}

a {
  color: inherit;
}

.mb-0 {
  margin-bottom: 0 !important;
}

html:has(.cart-notification) {
  font-size: 8.53px;
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html:has(.cart-notification) {
    font-size: calc(8.53px + 0.0083370536 * (100vw - 1023px));
  }
}
@media (min-width: 1919px) {
  html:has(.cart-notification) {
    font-size: 16px;
  }
}

@media (min-width: 1023px) and (max-width: 1919px) {
  html body .cart-notification {
    position: fixed;
    right: 2.5rem;
    top: 2.5rem;
    z-index: 9999;
    padding: 1.25rem;
    -webkit-box-shadow: 0 0 0 0.0625rem var(--main-black);
    box-shadow: 0 0 0 0.0625rem var(--main-black);
    background: var(--main-white);
  }
  html body .cart-notification__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 1.875rem;
  }
  html body .cart-notification__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  html body .cart-notification__title {
    font-family: var(--secondary-font);
    font-weight: 400;
    font-size: 2.5rem;
    line-height: 1em;
    letter-spacing: -0.03em;
  }
  html body .cart-notification__image img {
    max-height: 100px;
  }
  html body .cart-notification__message {
    color: var(--main-black);
    opacity: 0.5;
  }
  html body .cart-notification__to-cart {
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.1em;
    text-transform: uppercase;
  }
}

.cart-notification {
  position: fixed;
  right: 40px;
  top: 40px;
  z-index: 9999;
  padding: 20px;
  -webkit-box-shadow: 0 0 0 1px var(--main-black);
  box-shadow: 0 0 0 1px var(--main-black);
  background: var(--main-white);
}
.cart-notification__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 30px;
}
.cart-notification__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.cart-notification__title {
  font-family: var(--secondary-font);
  font-weight: 400;
  font-size: clamp(30px, 3.125vw, 60px);
  line-height: 1em;
  letter-spacing: -0.03em;
}
.cart-notification__message {
  color: var(--main-black);
  opacity: 0.5;
}
.cart-notification__to-cart {
  font-weight: 700;
  font-size: clamp(18px, 1.04166vw, 20px);
  line-height: 1.1em;
  text-transform: uppercase;
}

html:has(.cookie) {
  font-size: 8.53px;
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html:has(.cookie) {
    font-size: calc(8.53px + 0.0083370536 * (100vw - 1023px));
  }
}
@media (min-width: 1919px) {
  html:has(.cookie) {
    font-size: 16px;
  }
}

@media (min-width: 1023px) and (max-width: 1919px) {
  html body .cookie {
    position: fixed;
    right: 3.75rem;
    bottom: 1.875rem;
    z-index: 99;
    margin-left: 0.9375rem;
    border: 0.0625rem solid var(--black);
    padding: 1.25rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    background-color: var(--main-white);
    opacity: 0;
    -webkit-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 1024px) {
  html body .cookie {
    right: 1.25rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .cookie {
    right: 1rem;
    bottom: 0.75rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .cookie.active {
    opacity: 1;
  }
  html body .cookie.hidden {
    display: none;
  }
  html body .cookie .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    gap: 1.25rem;
  }
  html body .cookie__text {
    max-width: 34.375rem;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
    text-wrap: balance;
  }
  html body .cookie__close {
    all: unset;
    display: block;
    margin: 0;
    padding: 0;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    font-size: 0.875rem;
    text-decoration: underline;
    text-transform: lowercase;
    background-color: transparent;
    opacity: 0.5;
    cursor: pointer;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .cookie__close {
    font-size: 0.625rem;
  }
}

.cookie {
  position: fixed;
  right: 60px;
  bottom: 30px;
  z-index: 99;
  margin-left: 15px;
  border: 1px solid var(--black);
  padding: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--main-white);
  opacity: 0;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
@media (max-width: 1024px) {
  .cookie {
    right: 20px;
  }
}
@media (max-width: 640px) {
  .cookie {
    right: 16px;
    bottom: 12px;
  }
}
.cookie.active {
  opacity: 1;
}
.cookie.hidden {
  display: none;
}
.cookie .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  gap: 20px;
}
.cookie__text {
  max-width: clamp(330px, 28.6458333333vw, 550px);
  font-size: clamp(12px, 1.0416666667vw, 20px);
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.cookie__close {
  all: unset;
  display: block;
  margin: 0;
  padding: 0;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 14px;
  text-decoration: underline;
  text-transform: lowercase;
  background-color: transparent;
  opacity: 0.5;
  cursor: pointer;
}
@media (max-width: 640px) {
  .cookie__close {
    font-size: 10px;
  }
}

/* stylelint-disable scss/operator-no-unspaced */
/* stylelint-disable keyframes-name-pattern */
/* stylelint-disable declaration-block-single-line-max-declarations */
/* stylelint-disable CssSyntaxError */
/* stylelint-disable scss/double-slash-comment-whitespace-inside */
:root {
  --f-spinner-width: 36px;
  --f-spinner-height: 36px;
  --f-spinner-color-1: rgba(0, 0, 0, 0.1);
  --f-spinner-color-2: rgba(17, 24, 28, 0.8);
  --f-spinner-stroke: 2.75;
}

.f-spinner {
  margin: auto;
  padding: 0;
  width: var(--f-spinner-width);
  height: var(--f-spinner-height);
}

.f-spinner svg {
  vertical-align: top;
  width: 100%;
  height: 100%;
  -webkit-animation: f-spinner-rotate 2s linear infinite;
  animation: f-spinner-rotate 2s linear infinite;
}

.f-spinner svg * {
  fill: none;
  stroke-width: var(--f-spinner-stroke);
}

.f-spinner svg *:first-child {
  stroke: var(--f-spinner-color-1);
}

.f-spinner svg *:last-child {
  stroke: var(--f-spinner-color-2);
  -webkit-animation: f-spinner-dash 2s ease-in-out infinite;
  animation: f-spinner-dash 2s ease-in-out infinite;
}

@-webkit-keyframes f-spinner-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes f-spinner-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes f-spinner-dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
@keyframes f-spinner-dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
.f-throwOutUp {
  -webkit-animation: var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutUp;
  animation: var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutUp;
}

.f-throwOutDown {
  -webkit-animation: var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutDown;
  animation: var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutDown;
}

@-webkit-keyframes f-throwOutUp {
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, calc(var(--f-throw-out-distance, 150px) * -1), 0);
    transform: translate3d(0, calc(var(--f-throw-out-distance, 150px) * -1), 0);
  }
}

@keyframes f-throwOutUp {
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, calc(var(--f-throw-out-distance, 150px) * -1), 0);
    transform: translate3d(0, calc(var(--f-throw-out-distance, 150px) * -1), 0);
  }
}
@-webkit-keyframes f-throwOutDown {
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, var(--f-throw-out-distance, 150px), 0);
    transform: translate3d(0, var(--f-throw-out-distance, 150px), 0);
  }
}
@keyframes f-throwOutDown {
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, var(--f-throw-out-distance, 150px), 0);
    transform: translate3d(0, var(--f-throw-out-distance, 150px), 0);
  }
}
.f-zoomInUp {
  -webkit-animation: var(--f-transition-duration, 0.2s) ease 0.1s both f-zoomInUp;
  animation: var(--f-transition-duration, 0.2s) ease 0.1s both f-zoomInUp;
}

.f-zoomOutDown {
  -webkit-animation: var(--f-transition-duration, 0.2s) ease both f-zoomOutDown;
  animation: var(--f-transition-duration, 0.2s) ease both f-zoomOutDown;
}

@-webkit-keyframes f-zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale(0.975) translate3d(0, 16px, 0);
    transform: scale(0.975) translate3d(0, 16px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1) translate3d(0, 0, 0);
    transform: scale(1) translate3d(0, 0, 0);
  }
}

@keyframes f-zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale(0.975) translate3d(0, 16px, 0);
    transform: scale(0.975) translate3d(0, 16px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1) translate3d(0, 0, 0);
    transform: scale(1) translate3d(0, 0, 0);
  }
}
@-webkit-keyframes f-zoomOutDown {
  to {
    opacity: 0;
    -webkit-transform: scale(0.975) translate3d(0, 16px, 0);
    transform: scale(0.975) translate3d(0, 16px, 0);
  }
}
@keyframes f-zoomOutDown {
  to {
    opacity: 0;
    -webkit-transform: scale(0.975) translate3d(0, 16px, 0);
    transform: scale(0.975) translate3d(0, 16px, 0);
  }
}
.f-fadeIn {
  z-index: 2;
  -webkit-animation: var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeIn;
  animation: var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeIn;
}

.f-fadeOut {
  z-index: 1;
  -webkit-animation: var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeOut;
  animation: var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeOut;
}

@-webkit-keyframes f-fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes f-fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes f-fadeOut {
  100% {
    opacity: 0;
  }
}
@keyframes f-fadeOut {
  100% {
    opacity: 0;
  }
}
.f-fadeFastIn {
  z-index: 2;
  -webkit-animation: var(--f-transition-duration, 0.2s) ease-out both f-fadeFastIn;
  animation: var(--f-transition-duration, 0.2s) ease-out both f-fadeFastIn;
}

.f-fadeFastOut {
  z-index: 2;
  -webkit-animation: var(--f-transition-duration, 0.1s) ease-out both f-fadeFastOut;
  animation: var(--f-transition-duration, 0.1s) ease-out both f-fadeFastOut;
}

@-webkit-keyframes f-fadeFastIn {
  0% {
    opacity: 0.75;
  }
  100% {
    opacity: 1;
  }
}

@keyframes f-fadeFastIn {
  0% {
    opacity: 0.75;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes f-fadeFastOut {
  100% {
    opacity: 0;
  }
}
@keyframes f-fadeFastOut {
  100% {
    opacity: 0;
  }
}
.f-fadeSlowIn {
  z-index: 2;
  -webkit-animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowIn;
  animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowIn;
}

.f-fadeSlowOut {
  z-index: 1;
  -webkit-animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowOut;
  animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowOut;
}

@-webkit-keyframes f-fadeSlowIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes f-fadeSlowIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes f-fadeSlowOut {
  100% {
    opacity: 0;
  }
}
@keyframes f-fadeSlowOut {
  100% {
    opacity: 0;
  }
}
.f-crossfadeIn {
  z-index: 2;
  -webkit-animation: var(--f-transition-duration, 0.2s) ease-out both f-crossfadeIn;
  animation: var(--f-transition-duration, 0.2s) ease-out both f-crossfadeIn;
}

.f-crossfadeOut {
  z-index: 1;
  -webkit-animation: calc(var(--f-transition-duration, 0.2s) * 0.5) linear 0.1s both f-crossfadeOut;
  animation: calc(var(--f-transition-duration, 0.2s) * 0.5) linear 0.1s both f-crossfadeOut;
}

@-webkit-keyframes f-crossfadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes f-crossfadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes f-crossfadeOut {
  100% {
    opacity: 0;
  }
}
@keyframes f-crossfadeOut {
  100% {
    opacity: 0;
  }
}
.f-slideIn.from-next {
  -webkit-animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInNext;
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInNext;
}

.f-slideIn.from-prev {
  -webkit-animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInPrev;
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInPrev;
}

.f-slideOut.to-next {
  -webkit-animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutNext;
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutNext;
}

.f-slideOut.to-prev {
  -webkit-animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutPrev;
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutPrev;
}

@-webkit-keyframes f-slideInPrev {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes f-slideInPrev {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes f-slideInNext {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes f-slideInNext {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes f-slideOutNext {
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes f-slideOutNext {
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes f-slideOutPrev {
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}
@keyframes f-slideOutPrev {
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}
.f-classicIn.from-next {
  z-index: 2;
  -webkit-animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInNext;
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInNext;
}

.f-classicIn.from-prev {
  z-index: 2;
  -webkit-animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInPrev;
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInPrev;
}

.f-classicOut.to-next {
  z-index: 1;
  -webkit-animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutNext;
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutNext;
}

.f-classicOut.to-prev {
  z-index: 1;
  -webkit-animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutPrev;
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutPrev;
}

@-webkit-keyframes f-classicInNext {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-75px);
    transform: translateX(-75px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes f-classicInNext {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-75px);
    transform: translateX(-75px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes f-classicInPrev {
  0% {
    opacity: 0;
    -webkit-transform: translateX(75px);
    transform: translateX(75px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes f-classicInPrev {
  0% {
    opacity: 0;
    -webkit-transform: translateX(75px);
    transform: translateX(75px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes f-classicOutNext {
  100% {
    opacity: 0;
    -webkit-transform: translateX(-75px);
    transform: translateX(-75px);
  }
}
@keyframes f-classicOutNext {
  100% {
    opacity: 0;
    -webkit-transform: translateX(-75px);
    transform: translateX(-75px);
  }
}
@-webkit-keyframes f-classicOutPrev {
  100% {
    opacity: 0;
    -webkit-transform: translateX(75px);
    transform: translateX(75px);
  }
}
@keyframes f-classicOutPrev {
  100% {
    opacity: 0;
    -webkit-transform: translateX(75px);
    transform: translateX(75px);
  }
}
:root {
  --f-button-width: 40px;
  --f-button-height: 40px;
  --f-button-border: 0;
  --f-button-border-radius: 0;
  --f-button-color: #374151;
  --f-button-bg: #f8f8f8;
  --f-button-hover-bg: #e0e0e0;
  --f-button-active-bg: #d0d0d0;
  --f-button-shadow: none;
  --f-button-transition: all 0.15s ease;
  --f-button-transform: none;
  --f-button-svg-width: 20px;
  --f-button-svg-height: 20px;
  --f-button-svg-stroke-width: 1.5;
  --f-button-svg-fill: none;
  --f-button-svg-filter: none;
  --f-button-svg-disabled-opacity: 0.65;
}

.f-button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  border: var(--f-button-border);
  border-radius: var(--f-button-border-radius);
  padding: 0;
  width: var(--f-button-width);
  height: var(--f-button-height);
  -webkit-box-shadow: var(--f-button-shadow);
  box-shadow: var(--f-button-shadow);
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  color: var(--f-button-color);
  background: var(--f-button-bg);
  -webkit-transition: var(--f-button-transition);
  transition: var(--f-button-transition);
  cursor: pointer;
  pointer-events: all;
}

@media (hover: hover) {
  .f-button:hover:not([disabled]) {
    color: var(--f-button-hover-color);
    background-color: var(--f-button-hover-bg);
  }
}
.f-button:active:not([disabled]) {
  background-color: var(--f-button-active-bg);
}

.f-button:focus:not(:focus-visible) {
  outline: none;
}

.f-button:focus-visible {
  outline: none;
  -webkit-box-shadow: inset 0 0 0 var(--f-button-outline, 2px) var(--f-button-outline-color, var(--f-button-color));
  box-shadow: inset 0 0 0 var(--f-button-outline, 2px) var(--f-button-outline-color, var(--f-button-color));
}

.f-button svg {
  width: var(--f-button-svg-width);
  height: var(--f-button-svg-height);
  fill: var(--f-button-svg-fill);
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: var(--f-button-svg-stroke-width);
  -webkit-filter: var(--f-button-svg-filter);
  filter: var(--f-button-svg-filter);
  -webkit-transform: var(--f-button-transform);
  -ms-transform: var(--f-button-transform);
  transform: var(--f-button-transform);
  -webkit-transition: opacity 0.15s ease;
  transition: opacity 0.15s ease;
  pointer-events: none;
}

.f-button[disabled] {
  cursor: default;
}

.f-button[disabled] svg {
  opacity: var(--f-button-svg-disabled-opacity);
}

.f-carousel__nav .f-button.is-prev, .f-carousel__nav .f-button.is-next, .fancybox__nav .f-button.is-prev, .fancybox__nav .f-button.is-next {
  position: absolute;
  z-index: 1;
}

.is-horizontal .f-carousel__nav .f-button.is-prev, .is-horizontal .f-carousel__nav .f-button.is-next, .is-horizontal .fancybox__nav .f-button.is-prev, .is-horizontal .fancybox__nav .f-button.is-next {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.is-horizontal .f-carousel__nav .f-button.is-prev, .is-horizontal .fancybox__nav .f-button.is-prev {
  left: var(--f-button-prev-pos);
}

.is-horizontal .f-carousel__nav .f-button.is-next, .is-horizontal .fancybox__nav .f-button.is-next {
  right: var(--f-button-next-pos);
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-prev, .is-horizontal.is-rtl .fancybox__nav .f-button.is-prev {
  left: auto;
  right: var(--f-button-next-pos);
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-next, .is-horizontal.is-rtl .fancybox__nav .f-button.is-next {
  left: var(--f-button-prev-pos);
  right: auto;
}

.is-vertical .f-carousel__nav .f-button.is-prev, .is-vertical .f-carousel__nav .f-button.is-next, .is-vertical .fancybox__nav .f-button.is-prev, .is-vertical .fancybox__nav .f-button.is-next {
  left: 50%;
  top: auto;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.is-vertical .f-carousel__nav .f-button.is-prev, .is-vertical .fancybox__nav .f-button.is-prev {
  top: var(--f-button-next-pos);
}

.is-vertical .f-carousel__nav .f-button.is-next, .is-vertical .fancybox__nav .f-button.is-next {
  bottom: var(--f-button-next-pos);
}

.is-vertical .f-carousel__nav .f-button.is-prev svg, .is-vertical .f-carousel__nav .f-button.is-next svg, .is-vertical .fancybox__nav .f-button.is-prev svg, .is-vertical .fancybox__nav .f-button.is-next svg {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.f-carousel__nav .f-button:disabled, .fancybox__nav .f-button:disabled {
  pointer-events: none;
}

html.with-fancybox {
  overflow: visible;
  width: auto;
  scroll-behavior: auto;
}

html.with-fancybox body {
  -ms-touch-action: none;
  touch-action: none;
}

html.with-fancybox body.hide-scrollbar {
  overflow: hidden !important;
  margin-right: calc(var(--fancybox-body-margin, 0px) + var(--fancybox-scrollbar-compensate, 0px));
  width: auto;
  overscroll-behavior-y: none;
}

.fancybox__container {
  --fancybox-color: #dbdbdb;
  --fancybox-hover-color: #fff;
  --fancybox-bg: rgba(24, 24, 27, 0.98);
  --fancybox-slide-gap: 10px;
  --f-spinner-width: 50px;
  --f-spinner-height: 50px;
  --f-spinner-color-1: rgba(255, 255, 255, 0.1);
  --f-spinner-color-2: #bbb;
  --f-spinner-stroke: 3.65;
  position: fixed;
  inset: 0;
  z-index: var(--fancybox-zIndex, 1050);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: visible;
  margin: 0;
  outline: none;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  direction: ltr;
  color: #f8f8f8;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
  overscroll-behavior-y: contain;
}

.fancybox__container *, .fancybox__container *::before, .fancybox__container *::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

.fancybox__container::-ms-backdrop {
  background-color: rgba(0, 0, 0, 0);
}

.fancybox__container::backdrop {
  background-color: rgba(0, 0, 0, 0);
}

.fancybox__backdrop {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: var(--fancybox-bg);
  opacity: var(--fancybox-opacity, 1);
  will-change: opacity;
}

.fancybox__carousel {
  position: relative;
  z-index: 10;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  overflow: clip visible;
  min-height: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.fancybox__viewport {
  width: 100%;
  height: 100%;
}

.fancybox__viewport.is-draggable {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.fancybox__viewport.is-dragging {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  height: 100%;
}

.fancybox__slide {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: auto;
  margin: 0 var(--fancybox-slide-gap) 0 0;
  padding: 4px;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -ms-scroll-chaining: none;
  overscroll-behavior: contain;
}

.fancybox__container:not(.is-compact) .fancybox__slide.has-close-btn {
  padding-top: 40px;
}

.fancybox__slide.has-iframe, .fancybox__slide.has-video, .fancybox__slide.has-html5video {
  overflow: hidden;
}

.fancybox__slide.has-image {
  overflow: hidden;
}

.fancybox__slide.has-image.is-animating, .fancybox__slide.has-image.is-selected {
  overflow: visible;
}

.fancybox__slide::before, .fancybox__slide::after {
  content: "";
  -webkit-box-flex: 0;
  -ms-flex: 0 0 0px;
  flex: 0 0 0;
  margin: auto;
}

.fancybox__backdrop:empty, .fancybox__viewport:empty, .fancybox__track:empty, .fancybox__slide:empty {
  display: block;
}

.fancybox__content {
  position: relative;
  z-index: 20;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  margin: 0;
  border-radius: 0;
  padding: 2rem;
  max-width: 100%;
  color: var(--fancybox-content-color, #374151);
  background: var(--fancybox-content-bg, #fff);
  cursor: default;
}

.is-loading .fancybox__content {
  opacity: 0;
}

.is-draggable .fancybox__content {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.can-zoom_in .fancybox__content {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.can-zoom_out .fancybox__content {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.is-dragging .fancybox__content {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox__content [data-selectable], .fancybox__content [contenteditable] {
  cursor: auto;
}

.fancybox__slide.has-image > .fancybox__content {
  padding: 0;
  min-height: 1px;
  background: rgba(0, 0, 0, 0);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: none;
  transition: none;
}

.fancybox__slide.has-image > .fancybox__content > picture > img {
  width: 100%;
  height: auto;
  max-height: 100%;
}

.is-animating .fancybox__content, .is-dragging .fancybox__content {
  will-change: transform, width, height;
}

.fancybox-image {
  display: block;
  margin: auto;
  width: 100%;
  height: 100%;
  min-height: 0;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-filter: blur(0);
  filter: blur(0);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fancybox__caption {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  overflow-wrap: anywhere;
  margin: 0;
  padding: 14px 0 4px;
  max-width: 100%;
  line-height: 1.375;
  color: var(--fancybox-color, currentColor);
  opacity: var(--fancybox-opacity, 1);
  visibility: visible;
  cursor: auto;
}

.is-loading .fancybox__caption, .is-closing .fancybox__caption {
  opacity: 0;
  visibility: hidden;
}

.is-compact .fancybox__caption {
  padding-bottom: 0;
}

.f-button.is-close-btn {
  --f-button-svg-stroke-width: 2;
  position: absolute;
  right: 8px;
  top: 0;
  z-index: 40;
}

.fancybox__content > .f-button.is-close-btn {
  --f-button-width: 34px;
  --f-button-height: 34px;
  --f-button-border-radius: 4px;
  --f-button-color: var(--fancybox-color, #fff);
  --f-button-hover-color: var(--fancybox-color, #fff);
  --f-button-bg: transparent;
  --f-button-hover-bg: transparent;
  --f-button-active-bg: transparent;
  --f-button-svg-width: 22px;
  --f-button-svg-height: 22px;
  position: absolute;
  right: 0;
  top: -38px;
  opacity: 0.75;
}

.is-loading .fancybox__content > .f-button.is-close-btn {
  visibility: hidden;
}

.is-zooming-out .fancybox__content > .f-button.is-close-btn {
  visibility: hidden;
}

.fancybox__content > .f-button.is-close-btn:hover {
  opacity: 1;
}

.fancybox__footer {
  position: relative;
  margin: 0;
  padding: 0;
}

.fancybox__footer .fancybox__caption {
  padding: 24px;
  width: 100%;
  opacity: var(--fancybox-opacity, 1);
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.is-compact .fancybox__footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  background: rgba(24, 24, 27, 0.5);
}

.is-compact .fancybox__footer .fancybox__caption {
  padding: 12px;
}

.is-compact .fancybox__content > .f-button.is-close-btn {
  --f-button-border-radius: 50%;
  --f-button-color: #fff;
  --f-button-hover-color: #fff;
  --f-button-outline-color: #000;
  --f-button-bg: rgba(0, 0, 0, 0.6);
  --f-button-active-bg: rgba(0, 0, 0, 0.6);
  --f-button-hover-bg: rgba(0, 0, 0, 0.6);
  --f-button-svg-width: 18px;
  --f-button-svg-height: 18px;
  --f-button-svg-filter: none;
  right: 5px;
  top: 5px;
}

.fancybox__nav {
  --f-button-width: 50px;
  --f-button-height: 50px;
  --f-button-border: 0;
  --f-button-border-radius: 50%;
  --f-button-color: var(--fancybox-color);
  --f-button-hover-color: var(--fancybox-hover-color);
  --f-button-bg: transparent;
  --f-button-hover-bg: rgba(24, 24, 27, 0.3);
  --f-button-active-bg: rgba(24, 24, 27, 0.5);
  --f-button-shadow: none;
  --f-button-transition: all 0.15s ease;
  --f-button-transform: none;
  --f-button-svg-width: 26px;
  --f-button-svg-height: 26px;
  --f-button-svg-stroke-width: 2.5;
  --f-button-svg-fill: none;
  --f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.5));
  --f-button-svg-disabled-opacity: 0.65;
  --f-button-next-pos: 1rem;
  --f-button-prev-pos: 1rem;
  opacity: var(--fancybox-opacity, 1);
}

.fancybox__nav .f-button::before {
  content: "";
  position: absolute;
  inset: -30px -20px;
  z-index: 1;
}

.is-idle .fancybox__nav {
  -webkit-animation: 0.15s ease-out both f-fadeOut;
  animation: 0.15s ease-out both f-fadeOut;
}

.is-idle.is-compact .fancybox__footer {
  -webkit-animation: 0.15s ease-out both f-fadeOut;
  animation: 0.15s ease-out both f-fadeOut;
  pointer-events: none;
}

.fancybox__slide > .f-spinner {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 30;
  margin: var(--f-spinner-top, calc(var(--f-spinner-width) * -0.5)) 0 0 var(--f-spinner-left, calc(var(--f-spinner-height) * -0.5));
  cursor: pointer;
}

.fancybox-protected {
  position: absolute;
  inset: 0;
  z-index: 40;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fancybox-ghost {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 40;
  width: 100%;
  height: 100%;
  min-height: 0;
  -o-object-fit: contain;
  object-fit: contain;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fancybox-focus-guard {
  position: fixed;
  outline: none;
  opacity: 0;
  pointer-events: none;
}

.fancybox__container:not([aria-hidden]) {
  opacity: 0;
}

.fancybox__container.is-animated[aria-hidden=false] > *:not(.fancybox__backdrop, .fancybox__carousel), .fancybox__container.is-animated[aria-hidden=false] .fancybox__carousel > *:not(.fancybox__viewport), .fancybox__container.is-animated[aria-hidden=false] .fancybox__slide > *:not(.fancybox__content) {
  -webkit-animation: var(--f-interface-enter-duration, 0.25s) ease 0.1s backwards f-fadeIn;
  animation: var(--f-interface-enter-duration, 0.25s) ease 0.1s backwards f-fadeIn;
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop {
  -webkit-animation: var(--f-backdrop-enter-duration, 0.35s) ease backwards f-fadeIn;
  animation: var(--f-backdrop-enter-duration, 0.35s) ease backwards f-fadeIn;
}

.fancybox__container.is-animated[aria-hidden=true] > *:not(.fancybox__backdrop, .fancybox__carousel), .fancybox__container.is-animated[aria-hidden=true] .fancybox__carousel > *:not(.fancybox__viewport), .fancybox__container.is-animated[aria-hidden=true] .fancybox__slide > *:not(.fancybox__content) {
  -webkit-animation: var(--f-interface-exit-duration, 0.15s) ease forwards f-fadeOut;
  animation: var(--f-interface-exit-duration, 0.15s) ease forwards f-fadeOut;
}

.fancybox__container.is-animated[aria-hidden=true] .fancybox__backdrop {
  -webkit-animation: var(--f-backdrop-exit-duration, 0.35s) ease forwards f-fadeOut;
  animation: var(--f-backdrop-exit-duration, 0.35s) ease forwards f-fadeOut;
}

.has-iframe .fancybox__content, .has-map .fancybox__content, .has-pdf .fancybox__content, .has-youtube .fancybox__content, .has-vimeo .fancybox__content, .has-html5video .fancybox__content {
  -ms-flex-negative: 1;
  flex-shrink: 1;
  overflow: visible;
  min-height: 1px;
  max-width: 100%;
}

.has-iframe .fancybox__content, .has-map .fancybox__content, .has-pdf .fancybox__content {
  width: calc(100% - 120px);
  height: 90%;
}

.fancybox__container.is-compact .has-iframe .fancybox__content, .fancybox__container.is-compact .has-map .fancybox__content, .fancybox__container.is-compact .has-pdf .fancybox__content {
  width: 100%;
  height: 100%;
}

.has-youtube .fancybox__content, .has-vimeo .fancybox__content, .has-html5video .fancybox__content {
  width: 960px;
  height: 540px;
  max-width: 100%;
  max-height: 100%;
}

.has-map .fancybox__content, .has-pdf .fancybox__content, .has-youtube .fancybox__content, .has-vimeo .fancybox__content, .has-html5video .fancybox__content {
  padding: 0;
  color: #fff;
  background: rgba(24, 24, 27, 0.9);
}

.has-map .fancybox__content {
  background: #e5e3df;
}

.fancybox__html5video, .fancybox__iframe {
  display: block;
  border: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
}

.fancybox-placeholder {
  position: absolute !important;
  clip-path: inset(50%) !important;
  overflow: hidden !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  width: 1px !important;
  height: 1px !important;
  white-space: nowrap !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
}

.f-carousel__thumbs {
  --f-thumb-width: 96px;
  --f-thumb-height: 72px;
  --f-thumb-outline: 0;
  --f-thumb-outline-color: #5eb0ef;
  --f-thumb-opacity: 1;
  --f-thumb-hover-opacity: 1;
  --f-thumb-selected-opacity: 1;
  --f-thumb-border-radius: 2px;
  --f-thumb-offset: 0;
  --f-button-next-pos: 0;
  --f-button-prev-pos: 0;
}

.f-carousel__thumbs.is-classic {
  --f-thumb-gap: 8px;
  --f-thumb-opacity: 0.5;
  --f-thumb-hover-opacity: 1;
  --f-thumb-selected-opacity: 1;
}

.f-carousel__thumbs.is-modern {
  --f-thumb-gap: 4px;
  --f-thumb-extra-gap: 16px;
  --f-thumb-clip-width: 46px;
}

.f-thumbs {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  overflow: hidden;
  margin: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-perspective: 1000px;
  perspective: 1000px;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.f-thumbs .f-spinner {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  border-radius: 2px;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ebeff2), to(#e2e8f0));
  background-image: linear-gradient(#ebeff2, #e2e8f0);
}

.f-thumbs .f-spinner svg {
  display: none;
}

.f-thumbs.is-vertical {
  height: 100%;
}

.f-thumbs__viewport {
  overflow: hidden;
  width: 100%;
  height: auto;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.f-thumbs__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.f-thumbs__slide {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: visible;
  margin: 0;
  padding: 0;
  width: var(--f-thumb-width);
  height: var(--f-thumb-height);
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  cursor: pointer;
}

.f-thumbs__slide.is-loading img {
  opacity: 0;
}

.is-classic .f-thumbs__viewport {
  height: 100%;
}

.is-modern .f-thumbs__track {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.is-modern .f-thumbs__track::before {
  content: "";
  position: absolute;
  left: calc((var(--f-thumb-clip-width, 0)) * -0.5);
  top: 0;
  bottom: 0;
  width: calc(var(--width, 0) * 1px + var(--f-thumb-clip-width, 0));
  cursor: pointer;
}

.is-modern .f-thumbs__slide {
  width: var(--f-thumb-clip-width);
  -webkit-transform: translate3d(calc(var(--shift, 0) * -1px), 0, 0);
  transform: translate3d(calc(var(--shift, 0) * -1px), 0, 0);
  -webkit-transition: none;
  transition: none;
  pointer-events: none;
}

.is-modern.is-resting .f-thumbs__slide {
  -webkit-transition: -webkit-transform 0.33s ease;
  transition: -webkit-transform 0.33s ease;
  transition: transform 0.33s ease;
  transition: transform 0.33s ease, -webkit-transform 0.33s ease;
}

.is-modern.is-resting .f-thumbs__slide__button {
  -webkit-transition: clip-path 0.33s ease;
  transition: clip-path 0.33s ease;
}

.is-using-tab .is-modern .f-thumbs__slide:focus-within {
  -webkit-filter: drop-shadow(-1px 0 0 var(--f-thumb-outline-color)) drop-shadow(2px 0 0 var(--f-thumb-outline-color)) drop-shadow(0 -1px 0 var(--f-thumb-outline-color)) drop-shadow(0 2px 0 var(--f-thumb-outline-color));
  filter: drop-shadow(-1px 0 0 var(--f-thumb-outline-color)) drop-shadow(2px 0 0 var(--f-thumb-outline-color)) drop-shadow(0 -1px 0 var(--f-thumb-outline-color)) drop-shadow(0 2px 0 var(--f-thumb-outline-color));
}

.f-thumbs__slide__button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  overflow: hidden;
  margin: 0 -100%;
  outline: none;
  border: 0;
  border-radius: var(--f-thumb-border-radius);
  padding: 0;
  width: var(--f-thumb-width);
  height: 100%;
  background: rgba(0, 0, 0, 0);
  opacity: var(--f-thumb-opacity);
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  cursor: pointer;
  pointer-events: auto;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

.f-thumbs__slide__button:hover {
  opacity: var(--f-thumb-hover-opacity);
}

.f-thumbs__slide__button:focus:not(:focus-visible) {
  outline: none;
}

.f-thumbs__slide__button:focus-visible {
  outline: none;
  opacity: var(--f-thumb-selected-opacity);
}

.is-modern .f-thumbs__slide__button {
  --clip-path: inset( 0 calc( ((var(--f-thumb-width, 0) - var(--f-thumb-clip-width, 0))) * (1 - var(--progress, 0)) * 0.5 ) round var(--f-thumb-border-radius, 0) );
  clip-path: var(--clip-path);
}

.is-classic .is-nav-selected .f-thumbs__slide__button {
  opacity: var(--f-thumb-selected-opacity);
}

.is-classic .is-nav-selected .f-thumbs__slide__button::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 10;
  border: var(--f-thumb-outline, 0) solid var(--f-thumb-outline-color, transparent);
  border-radius: var(--f-thumb-border-radius);
  height: auto;
  -webkit-animation: f-fadeIn 0.2s ease-out;
  animation: f-fadeIn 0.2s ease-out;
}

.f-thumbs__slide__img {
  position: absolute;
  inset: 0;
  overflow: hidden;
  margin: 0;
  border-radius: var(--f-thumb-border-radius);
  padding: var(--f-thumb-offset);
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -o-object-fit: cover;
  object-fit: cover;
  pointer-events: none;
}

.f-thumbs.is-horizontal .f-thumbs__track {
  padding: 8px 0 12px;
}

.f-thumbs.is-horizontal .f-thumbs__slide {
  margin: 0 var(--f-thumb-gap) 0 0;
}

.f-thumbs.is-vertical .f-thumbs__track {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0 8px;
}

.f-thumbs.is-vertical .f-thumbs__slide {
  margin: 0 0 var(--f-thumb-gap) 0;
}

.fancybox__thumbs {
  --f-thumb-width: 96px;
  --f-thumb-height: 72px;
  --f-thumb-border-radius: 2px;
  --f-thumb-outline: 2px;
  --f-thumb-outline-color: #ededed;
  position: relative;
  opacity: var(--fancybox-opacity, 1);
  -webkit-transition: max-height 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  transition: max-height 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.fancybox__thumbs.is-classic {
  --f-thumb-gap: 8px;
  --f-thumb-opacity: 0.5;
  --f-thumb-hover-opacity: 1;
}

.fancybox__thumbs.is-classic .f-spinner {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0.05)));
  background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.fancybox__thumbs.is-modern {
  --f-thumb-gap: 4px;
  --f-thumb-extra-gap: 16px;
  --f-thumb-clip-width: 46px;
  --f-thumb-opacity: 1;
  --f-thumb-hover-opacity: 1;
}

.fancybox__thumbs.is-modern .f-spinner {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0.05)));
  background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.fancybox__thumbs.is-horizontal {
  padding: 0 var(--f-thumb-gap);
}

.fancybox__thumbs.is-vertical {
  padding: var(--f-thumb-gap) 0;
}

.is-compact .fancybox__thumbs {
  --f-thumb-width: 64px;
  --f-thumb-clip-width: 32px;
  --f-thumb-height: 48px;
  --f-thumb-extra-gap: 10px;
}

.fancybox__thumbs.is-masked {
  max-height: 0 !important;
}

.is-closing .fancybox__thumbs {
  -webkit-transition: none !important;
  transition: none !important;
}

.fancybox__toolbar {
  --f-progress-color: var(--fancybox-color, rgba(255, 255, 255, 0.94));
  --f-button-width: 46px;
  --f-button-height: 46px;
  --f-button-color: var(--fancybox-color);
  --f-button-hover-color: var(--fancybox-hover-color);
  --f-button-bg: rgba(24, 24, 27, 0.65);
  --f-button-hover-bg: rgba(70, 70, 73, 0.65);
  --f-button-active-bg: rgba(90, 90, 93, 0.65);
  --f-button-border-radius: 0;
  --f-button-svg-width: 24px;
  --f-button-svg-height: 24px;
  --f-button-svg-stroke-width: 1.5;
  --f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.15));
  --f-button-svg-fill: none;
  --f-button-svg-disabled-opacity: 0.65;
  z-index: 20;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted", "Segoe UI", "Liberation Sans", sans-serif;
  text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.5));
  color: var(--fancybox-color, currentColor);
  opacity: var(--fancybox-opacity, 1);
  pointer-events: none;
}

.fancybox__toolbar :focus-visible {
  z-index: 1;
}

.fancybox__toolbar.is-absolute, .is-compact .fancybox__toolbar {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
}

.is-idle .fancybox__toolbar {
  -webkit-animation: 0.15s ease-out both f-fadeOut;
  animation: 0.15s ease-out both f-fadeOut;
  pointer-events: none;
}

.fancybox__toolbar__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-flex-line-pack: start;
  align-content: flex-start;
}

.fancybox__toolbar__column.is-left, .fancybox__toolbar__column.is-right {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
}

.fancybox__toolbar__column.is-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.fancybox__infobar {
  padding: 0 5px;
  -webkit-font-smoothing: subpixel-antialiased;
  font-variant-numeric: tabular-nums;
  font-size: 17px;
  line-height: var(--f-button-height);
  text-align: center;
  cursor: default;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fancybox__infobar span {
  padding: 0 5px;
}

.fancybox__infobar:not(:first-child, :last-child) {
  background: var(--f-button-bg);
}

[data-fancybox-toggle-slideshow] {
  position: relative;
}

[data-fancybox-toggle-slideshow] .f-progress {
  height: 100%;
  opacity: 0.3;
}

[data-fancybox-toggle-slideshow] svg g:first-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

[data-fancybox-toggle-slideshow] svg g:last-child {
  display: none;
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:first-child {
  display: none;
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

[data-fancybox-toggle-fullscreen] svg g:first-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

[data-fancybox-toggle-fullscreen] svg g:last-child {
  display: none;
}

:-webkit-full-screen [data-fancybox-toggle-fullscreen] svg g:first-child {
  display: none;
}

:-ms-fullscreen [data-fancybox-toggle-fullscreen] svg g:first-child {
  display: none;
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:first-child {
  display: none;
}

:-webkit-full-screen [data-fancybox-toggle-fullscreen] svg g:last-child {
  display: -webkit-box;
  display: flex;
}

:-ms-fullscreen [data-fancybox-toggle-fullscreen] svg g:last-child {
  display: -ms-flexbox;
  display: flex;
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.f-progress {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 30;
  height: 3px;
  background: var(--f-progress-color, var(--f-carousel-theme-color, #0091ff));
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0;
  -ms-transform-origin: 0;
  transform-origin: 0;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* stylelint-disable selector-pseudo-element-no-unknown */
.footer {
  padding: 0 0 35px;
}
.footer .container {
  position: relative;
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-grid-columns: 435px 415px 435px;
  grid-template-columns: 435px 415px 435px;
  -ms-grid-rows: 1fr 20px;
  grid-template-rows: 1fr 20px;
  padding-top: 60px;
  row-gap: 55px;
}
@media (max-width: 1350px) {
  .footer .container {
    -ms-grid-columns: 335px 330px 435px;
    grid-template-columns: 335px 330px 435px;
  }
}
@media (max-width: 1200px) {
  .footer .container {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-grid-columns: 0.85fr 1fr;
    grid-template-columns: 0.85fr 1fr;
    -ms-grid-rows: 165px 190px;
    grid-template-rows: 165px 190px;
    padding-top: 65px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    gap: 50px 60px;
  }
}
@media (max-width: 768px) {
  .footer .container {
    -ms-grid-columns: 0.9fr 1fr;
    grid-template-columns: 0.9fr 1fr;
  }
}
@media (max-width: 720px) {
  .footer .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: left;
    -ms-flex-align: left;
    align-items: left;
    padding-top: 30px;
    gap: 60px;
  }
}
.footer .container::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  width: calc(100% - 40px);
  height: 2px;
  background-color: var(--main-black);
}
.footer__img {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1/3;
}
.footer__img svg {
  fill: var(--text);
}
@media (max-width: 1350px) {
  .footer__img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .footer__img svg {
    width: 100%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}
@media (max-width: 1200px) {
  .footer__img {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 2;
    grid-row: 2;
  }
  .footer__img svg {
    width: 305px;
    height: 190px;
  }
}
@media (max-width: 720px) {
  .footer__img {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .footer__img svg {
    width: 100%;
    height: 100%;
  }
}
.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 100px;
}
@media (max-width: 1350px) {
  .footer__links {
    gap: 50px;
  }
}
@media (max-width: 1200px) {
  .footer__links {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
  }
}
@media (max-width: 720px) {
  .footer__links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    gap: 35px;
  }
}
.footer__links-col, .footer__links-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 1200px) {
  .footer__links-col, .footer__links-wrapper {
    gap: 0;
  }
}
.footer__links-col a, .footer__links-wrapper a {
  font-size: 16px;
  letter-spacing: -0.02em;
  color: var(--main-black);
}
@media (max-width: 1200px) {
  .footer__links-col a, .footer__links-wrapper a {
    font-size: 14px;
    white-space: nowrap;
  }
}
.footer__links-col:not(:first-child) {
  position: relative;
}
.footer__links-col:not(:first-child)::after, .footer__links-col:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: -20px;
  display: none;
  width: 100%;
  height: 1px;
  background-color: var(--text);
  opacity: 0.2;
}
@media (max-width: 720px) {
  .footer__links-col:not(:first-child)::after, .footer__links-col:not(:first-child)::before {
    display: block;
  }
}
.footer__links-col:not(:first-child)::before {
  top: unset;
  bottom: -12px;
}
.footer__links-wrapper {
  overflow: hidden;
  max-height: 100%;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
@media (max-width: 720px) {
  .footer__links-wrapper {
    max-height: 0;
  }
}
@media (max-width: 1200px) {
  .footer__links-wrapper {
    margin: 5px 0 0;
    gap: 8px;
  }
}
.footer__links-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 0 14px;
  font-weight: 700;
  font-size: clamp(18px, 1.0416666667vw, 20px);
  line-height: 1.1em;
  text-transform: uppercase;
}
@media (max-width: 1200px) {
  .footer__links-title {
    margin: 0;
    font-size: 16px;
  }
}
.footer__links-toggle {
  display: none;
  fill: var(--text);
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
@media (max-width: 720px) {
  .footer__links-toggle {
    display: block;
  }
}
.footer__links-toggle.active {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
@media (max-width: 720px) {
  .footer__email {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}
.footer__email p {
  margin: 0;
  padding: 0;
  max-width: 90%;
  font-size: 16px;
  line-height: 1.2em;
  letter-spacing: -0.02em;
}
@media (max-width: 1200px) {
  .footer__email p {
    font-size: 14px;
  }
}
@media (max-width: 720px) {
  .footer__email p {
    margin: 0 0 10px;
    max-width: 310px;
    font-size: 12px;
  }
}
.footer__email-title {
  margin: 0 0 14px;
  font-weight: 700;
  font-size: clamp(16px, 1.0416666667vw, 20px);
  line-height: 1.1em;
  text-transform: uppercase;
}
@media (max-width: 720px) {
  .footer__email-title {
    margin: 0 0 10px;
    font-size: 14px;
  }
}
.footer__input-group {
  margin: 35px 0 0;
}
@media (max-width: 1200px) {
  .footer__input-group {
    margin: 20px 0 0;
  }
}
@media (max-width: 720px) {
  .footer__input-group {
    margin: 25px 0 0;
  }
}
.footer__email-input {
  all: unset;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  padding: 12px;
  width: 100%;
  color: var(--main-white);
  background-color: var(--main-black);
}
.footer__email-input::input-placeholder {
  opacity: 1;
}
@media (max-width: 740px) {
  .footer__email-input {
    width: auto;
  }
}
@media (max-width: 720px) {
  .footer__email-input {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 13px;
    width: 100%;
    font-size: 12px;
  }
}
.footer__input-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media (max-width: 1200px) {
  .footer__input-buttons {
    gap: 5px;
  }
}
@media (max-width: 740px) {
  .footer__input-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (max-width: 720px) {
  .footer__input-buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.footer__input-buttons input[type=text] {
  all: unset;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  padding: 12px;
  width: 100%;
  color: var(--main-white);
  background-color: var(--main-black);
}
.footer__input-buttons input[type=text]::input-placeholder {
  opacity: 1;
}
@media (max-width: 740px) {
  .footer__input-buttons input[type=text] {
    width: auto;
  }
}
@media (max-width: 720px) {
  .footer__input-buttons input[type=text] {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 13px;
    width: 100%;
    font-size: 12px;
  }
}
.footer__input-buttons button {
  all: unset;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding: 12px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--main-white);
  background-color: var(--main-black);
}
@media (max-width: 1200px) {
  .footer__input-buttons button {
    font-size: 14px;
  }
}
@media (max-width: 720px) {
  .footer__input-buttons button {
    padding: 13px 23px;
    font-size: 12px;
  }
}
.footer__checkbox-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 10px 0 0;
  gap: 8px;
}
.footer__checkbox-wrapper input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}
.footer__checkbox-wrapper .checkbox-emulator {
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border: 1px solid rgba(0, 0, 0, 0.5);
  width: 15px;
  height: 15px;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
  cursor: pointer;
}
.footer__checkbox-wrapper .checkbox-emulator::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  border: solid var(--main-black);
  border-width: 0 2px 2px 0;
  width: 4px;
  height: 8px;
  opacity: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.footer__checkbox-wrapper input:checked + .checkbox-emulator::after {
  opacity: 1;
}
.footer__checkbox-wrapper .checkbox-label {
  font-size: 14px;
  color: var(--text);
  opacity: 0.5;
}
@media (max-width: 1200px) {
  .footer__checkbox-wrapper .checkbox-label {
    font-size: 11px;
  }
}
.footer__checkbox-wrapper .checkbox-label a {
  position: relative;
}
.footer__checkbox-wrapper .checkbox-label a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background-color: var(--text);
  opacity: 0.5;
}
.footer__message-error {
  margin-top: 10px;
  color: #de0500;
}
.footer__message-success {
  margin-top: 20px;
  font-size: 1.5em;
}
.footer__credits {
  display: -ms-grid;
  display: grid;
  -ms-grid-column: 2;
  -ms-grid-column-span: 2;
  grid-column: 2/4;
  -ms-grid-row: 2;
  grid-row: 2;
  -ms-grid-columns: 0.82fr 1.6fr 1fr 0.5fr;
  grid-template-columns: 0.82fr 1.6fr 1fr 0.5fr;
}
@media (max-width: 1440px) {
  .footer__credits {
    -ms-grid-columns: 0.82fr 0.85fr 1fr 0.5fr;
    grid-template-columns: 0.82fr 0.85fr 1fr 0.5fr;
  }
}
@media (max-width: 1350px) {
  .footer__credits {
    -ms-grid-columns: 0.56fr 0.85fr 1fr 0.5fr;
    grid-template-columns: 0.56fr 0.85fr 1fr 0.5fr;
  }
}
@media (max-width: 1200px) {
  .footer__credits {
    -ms-grid-row-align: end;
    align-self: end;
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 2;
    grid-row: 2;
    -ms-grid-columns: auto auto;
    grid-template-columns: auto auto;
    -ms-grid-rows: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    height: 50px;
    max-width: 315px;
    gap: 15px 50px;
  }
}
@media (max-width: 720px) {
  .footer__credits {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-item-align: start;
    align-self: flex-start;
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
    overflow-x: scroll;
    padding: 15px 0;
    height: auto;
    max-width: 90vw;
    gap: 30px;
  }
  .footer__credits::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 130vw;
    height: 1px;
    max-width: var(--container-width);
    background-color: var(--text);
    opacity: 0.2;
  }
}
@media (max-width: 720px) and (max-width: 400px) {
  .footer__credits::after {
    width: 150vw;
  }
}
@media (max-width: 720px) {
  .footer__credits::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    width: 130vw;
    height: 1px;
    max-width: var(--container-width);
    background-color: var(--text);
    opacity: 0.2;
  }
}
@media (max-width: 720px) and (max-width: 400px) {
  .footer__credits::before {
    width: 150vw;
  }
}
.footer__credits a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 14px;
  color: var(--text);
  opacity: 0.5;
}
@media (max-width: 800px) {
  .footer__credits a {
    white-space: nowrap;
  }
}
.footer__credits-link--dev {
  justify-self: flex-end;
}
@media (max-width: 1200px) {
  .footer__credits-link--dev {
    -ms-grid-column-align: unset;
    justify-self: unset;
  }
}
.footer__credits-link--design {
  justify-self: flex-end;
  padding-right: 90px;
}
@media (max-width: 1200px) {
  .footer__credits-link--design {
    -ms-grid-column-align: unset;
    justify-self: unset;
    padding: 0;
  }
}

body:has(.hero) .header__ul li {
  color: var(--main-white);
}
body:has(.hero) .header__logo {
  fill: var(--main-white);
}
body:has(.hero) .header > .container::before {
  background-color: var(--main-white);
}
body:has(.hero) .header__ul li::after {
  background-color: var(--main-white);
}

.screen-reader-text {
  /* stylelint-disable-next-line declaration-no-important */
  position: absolute !important;
  clip-path: inset(50%);
  overflow: hidden;
  /* stylelint-disable-next-line declaration-no-important */
  overflow-wrap: normal !important;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  /* stylelint-disable-next-line declaration-no-important */
  word-wrap: normal !important;
  clip: rect(1px, 1px, 1px, 1px);
}

.header {
  position: absolute;
  top: 46px;
  width: 100%;
  max-width: 100%;
}
@media (max-width: 1200px) {
  .header {
    top: 30px;
  }
}
.header .container {
  position: relative;
  height: 55px;
}
.header .container::before {
  content: "";
  position: absolute;
  left: var(--container-offset);
  bottom: 0;
  width: calc(100% - var(--container-offset) - var(--container-offset));
  height: 2px;
  background-color: var(--text);
}
@media (max-width: 1200px) {
  .header .container {
    height: auto;
  }
  .header .container::before {
    content: "";
    bottom: -23px;
  }
}
.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.header__nav--mob {
  display: none;
}
@media (max-width: 1200px) {
  .header__nav {
    display: none;
  }
  .header__nav--mob {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.header__logo {
  position: absolute;
  left: 50%;
  top: 0;
  fill: var(--text);
  -webkit-transform: translate(-50%, -36%);
  -ms-transform: translate(-50%, -36%);
  transform: translate(-50%, -36%);
}
@media (max-width: 1440px) {
  .header__logo {
    width: 126px;
  }
}
.header__ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
  gap: clamp(65px, 5.2083333333vw, 100px);
}
.header__ul li {
  position: relative;
  font-weight: 700;
  font-size: clamp(14px, 1.0416666667vw, 20px);
  line-height: 1.1em;
  text-transform: uppercase;
}
@media (min-width: 1025px) {
  .header__ul li:hover::after {
    opacity: 1;
    -webkit-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
    transform: translateY(-1px);
  }
  .header__ul li::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background-color: var(--text-black);
    opacity: 0;
    -webkit-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
    -webkit-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
  }
}
.header__ul .cart-link {
  position: relative;
}
.header__ul .cart-link .count {
  position: absolute;
  right: 0;
  top: 0;
  font-weight: 400;
  font-size: 0.875rem;
  -webkit-transform: translate(55%, -85%);
  -ms-transform: translate(55%, -85%);
  transform: translate(55%, -85%);
}
@media (max-width: 1200px) {
  .header__ul {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
  }
}

.mob-header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 101;
  display: none;
  width: 100vw;
  height: 101dvh;
  background-color: var(--main-white);
  -webkit-transform: translateX(-101%);
  -ms-transform: translateX(-101%);
  transform: translateX(-101%);
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
.mob-header.active {
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}
@media (max-width: 1200px) {
  .mob-header {
    display: block;
  }
}
.mob-header .container {
  position: static;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}
.mob-header .container::before {
  content: unset;
}
.mob-header__logo {
  width: 19.91vh;
  height: 5.74vh;
}
.mob-header__logo svg {
  width: 100%;
  height: 100%;
}
.mob-header__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin: 3.7vh 0 0;
  border-bottom: 0.09vh solid var(--text);
  padding: 0 0 2.31vh;
  width: 100%;
}
.mob-header__top a {
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
}
.mob-header__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 13.89vh 0 0;
  gap: 9.26vh;
}
@media (max-width: 640px) {
  .mob-header__body {
    margin: 4.63vh 0 0;
    gap: 20.96vh;
  }
}
.mob-header__menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: center;
  gap: 4.17vh;
}
@media (max-width: 640px) {
  .mob-header__menu ul {
    gap: 25px;
  }
}
.mob-header__menu ul li a {
  position: relative;
  font-weight: 700;
  font-size: 30px;
  text-transform: uppercase;
}
@media (max-width: 640px) {
  .mob-header__menu ul li a {
    font-size: 20px;
  }
}
.mob-header__menu ul li a sup {
  position: absolute;
  right: -1.5em;
  top: -1em;
  font-weight: 400;
  font-size: 14px;
}
@media (max-width: 640px) {
  .mob-header__menu ul li a sup {
    font-size: 10px;
  }
}
.mob-header__bottom {
  position: absolute;
  left: 50%;
  bottom: 3.7vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  list-style-type: none;
  margin: 0;
  padding: 0;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  gap: 1.48vh;
}
@media (max-width: 640px) {
  .mob-header__bottom {
    font-size: 20px;
  }
}
.mob-header__bottom li a {
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
}
@media (max-width: 640px) {
  .mob-header__bottom li a {
    font-size: 14px;
  }
}

.present-hint {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99;
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 20px;
  width: 100vw;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.5);
}
.present-hint__container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  border: 1px solid var(--black);
  width: 960px;
  background-color: var(--main-white);
}
@media (min-width: 1921px) {
  .present-hint__container {
    width: 55%;
  }
}
@media (max-width: 1024px) {
  .present-hint__container {
    width: 728px;
  }
}
@media (max-width: 640px) {
  .present-hint__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    justify-items: space-between;
    padding: 30px 16px 0;
    height: 80vh;
    min-height: 640px;
    max-height: 667px;
    gap: 15px;
  }
}
.present-hint__container > * {
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.present-hint__form {
  padding: 57px 40px;
  width: 51.56%;
}
@media (max-width: 1024px) {
  .present-hint__form {
    padding: 28px 30px 28px 20px;
    width: 64%;
  }
}
@media (max-width: 640px) {
  .present-hint__form {
    padding: 0;
    width: 100%;
  }
}
.present-hint__title {
  position: relative;
  z-index: 2;
  margin: 0;
  margin: 0 0 50px;
  font-family: var(--secondary-font);
  font-weight: 400;
  font-size: clamp(30px, 3.125vw, 60px);
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .present-hint__title {
    margin: 0 0 35px;
  }
}
@media (max-width: 640px) {
  .present-hint__title {
    margin: 0 0 20px;
  }
}
.present-hint__input-group {
  margin: 20px 0 0;
  border-bottom: 1px solid var(--black);
}
@media (max-width: 1024px) {
  .present-hint__input-group {
    margin: 15px 0 0;
  }
}
.present-hint__input-group input {
  all: unset;
  padding: 10px 0;
  font-weight: 500;
  font-size: clamp(16px, 1.0416666667vw, 20px);
  line-height: 1.2em;
}
.present-hint__submit {
  all: unset;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 60px 0 0;
  padding: 12px 0;
  width: 100%;
  font-weight: 600;
  font-size: clamp(14px, 0.8333333333vw, 16px);
  text-transform: uppercase;
  color: var(--main-white);
  background-color: var(--text);
  -webkit-transition: opacity 0.2s ease 0s;
  transition: opacity 0.2s ease 0s;
  will-change: opacity;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .present-hint__submit {
    margin: 50px 0 0;
  }
}
@media (max-width: 640px) {
  .present-hint__submit {
    margin: 30px 0 0;
  }
}
.present-hint__submit:hover, .present-hint__submit:active {
  opacity: 0.7;
}
.present-hint__picture {
  width: 48.44%;
}
@media (max-width: 1024px) {
  .present-hint__picture {
    width: 36%;
  }
}
@media (max-width: 640px) {
  .present-hint__picture {
    width: 100%;
  }
}
.present-hint__picture img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}
.present-hint__checkbox-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 10px 0 0;
  gap: 5px;
}
@media (max-width: 1024px) {
  .present-hint__checkbox-wrapper {
    gap: 8px;
  }
}
@media (max-width: 640px) {
  .present-hint__checkbox-wrapper {
    gap: 12px;
  }
}
.present-hint__checkbox-wrapper input {
  display: none;
}
.present-hint__checkbox-wrapper .checkbox-emulator {
  position: relative;
  display: inline-block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border: 1px solid rgba(0, 0, 0, 0.5);
  width: 15px;
  height: 15px;
  cursor: pointer;
}
@media (max-width: 1200px) {
  .present-hint__checkbox-wrapper .checkbox-emulator {
    width: 12px;
    height: 12px;
  }
}
.present-hint__checkbox-wrapper .checkbox-emulator::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  display: block;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  background-color: transparent;
  -webkit-transition: background-color 0.2s ease 0s;
  transition: background-color 0.2s ease 0s;
  will-change: background-color;
}
.present-hint__checkbox-wrapper .checkbox-emulator[data-checkbox-status=true]::before {
  background-color: rgba(0, 0, 0, 0.5);
}
.present-hint__checkbox-wrapper .checkbox-label {
  font-size: 14px;
  color: var(--text);
  opacity: 0.5;
}
@media (max-width: 1200px) {
  .present-hint__checkbox-wrapper .checkbox-label {
    font-size: 11px;
  }
}
@media (max-width: 640px) {
  .present-hint__checkbox-wrapper .checkbox-label {
    font-size: 10px;
  }
}
.present-hint__checkbox-wrapper .checkbox-label a {
  position: relative;
}
.present-hint__checkbox-wrapper .checkbox-label a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background-color: var(--text);
  opacity: 0.5;
}
.present-hint__close {
  position: absolute;
  right: 45px;
  top: 50px;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .present-hint__close {
    right: 30px;
    top: 24px;
  }
}
@media (max-width: 640px) {
  .present-hint__close {
    right: 15px;
    top: 38px;
  }
}
.present-hint__close svg {
  fill: var(--text);
}

.woocommerce-notices-wrapper {
  display: none;
}

.notice-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.notice-modal--visible {
  opacity: 1;
  visibility: visible;
}
.notice-modal__content {
  position: relative;
  overflow-y: auto;
  border: 1px solid var(--text);
  padding: 2rem;
  width: 450px;
  max-width: 40%;
  max-height: 80%;
  font-family: var(--font-family);
  color: var(--text);
  background: var(--main-white);
}
@media (max-width: 768px) {
  .notice-modal__content {
    max-width: 90%;
  }
}
.notice-modal__content .woocommerce-error {
  list-style: none;
  margin: 0;
  padding: 0;
}
.notice-modal__content .woocommerce-error li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 0.9rem;
  text-align: center;
}
.notice-modal__content .button,
.notice-modal__content .notice-modal__close {
  display: block;
  margin: 10px 0 0;
  border: 1px solid var(--text);
  padding: 9px 0;
  width: 100%;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--text);
  background: none;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  cursor: pointer;
}
.notice-modal__content .button {
  color: var(--main-white);
  background-color: var(--text);
}
.notice-modal__close {
  background: none;
}

@media (max-width: 640px) {
  .notice-modal__content {
    padding: 1.5rem;
    width: 90%;
  }
}
.blockUI {
  /* stylelint-disable-next-line declaration-no-important */
  display: none !important;
}

html:has(.cart-form) {
  font-size: 8.53px;
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html:has(.cart-form) {
    font-size: calc(8.53px + 0.0083370536 * (100vw - 1023px));
  }
}
@media (min-width: 1919px) {
  html:has(.cart-form) {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .cart-form__empty {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media (min-width: 1023px) and (max-width: 1919px) {
  html body .cart-form {
    margin: 12.8125rem 0 1.875rem;
    min-height: 34.0625rem;
  }
  html body .cart-form__empty .wc-empty-cart-message {
    font-family: var(--secondary-font);
    font-weight: 500;
    font-size: 3.75rem;
    text-align: center;
  }
  html body .cart-form__empty .return-to-shop {
    position: relative;
    font-family: var(--secondary-font);
    font-weight: 500;
    font-size: 3.75rem;
    text-align: center;
  }
  html body .cart-form__empty .return-to-shop a {
    position: relative;
  }
  html body .cart-form__empty .return-to-shop a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0.125rem;
    background-color: var(--text);
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 1024px) {
  html body .cart-form {
    margin: 7.8125rem 0 0;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .cart-form {
    margin: 6.5625rem 0 0;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .cart-form .container {
    position: relative;
  }
  html body .cart-form__title {
    margin: 0;
    font-weight: 400;
    font-size: 3.75rem;
  }
  html body .cart-form__form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  html body .cart-form__items-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 2.5rem 0 0;
    gap: 1.25rem;
  }
  html body .cart-form-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.25rem;
  }
  html body .cart-form-item .quantity {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: auto 0 0;
    gap: 0.3125rem;
  }
  html body .cart-form-item__title, html body .cart-form-item__size, html body .cart-form-item__price, html body .cart-form-item__quantity {
    margin: 0;
  }
  html body .cart-form-item__data {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 27.5rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 1250px) {
  html body .cart-form-item__data {
    width: 25rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 1024px) {
  html body .cart-form-item__data {
    width: 50%;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .cart-form-item__img {
    border: 0.0625rem solid var(--text);
    min-width: 13rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 1024px) {
  html body .cart-form-item__img {
    min-width: 50%;
    max-height: 25.9375rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .cart-form-item__img img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
  }
  html body .cart-form-item__title {
    max-width: calc(100% - 3.75rem);
    font-size: 1.25rem;
    text-wrap: balance;
  }
  html body .cart-form-item__collection {
    margin: 1.25rem 0 0;
    opacity: 0.5;
  }
  html body .cart-form-item__size {
    opacity: 0.5;
  }
  html body .cart-form-item__quantity-selector {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: auto 0 0;
    gap: 0.3125rem;
  }
  html body .cart-form-item__quantity-remove, html body .cart-form-item__quantity-add, html body .cart-form-item__quantity {
    all: unset;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    outline: unset;
    width: 11.55%;
    height: 2.0625rem;
    -webkit-box-shadow: unset;
    box-shadow: unset;
    font-size: 1.25rem;
    text-align: center;
    color: var(--main-white);
    background-color: var(--text);
    cursor: pointer;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .cart-form-item__quantity-remove, html body .cart-form-item__quantity-add, html body .cart-form-item__quantity {
    border: 0.0625rem solid var(--text);
    height: 1.5rem;
    min-width: 2.125rem;
    font-size: 0.875rem;
    color: var(--text);
    background-color: var(--main-white);
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .cart-form-item__quantity {
    width: 33.24%;
  }
  html body .cart-form-item__quantity::-webkit-outer-spin-button, html body .cart-form-item__quantity::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .cart-form-item__quantity {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .cart-form-item__price {
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 1.875rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .cart-form-item__price {
    left: 0;
    right: unset;
    bottom: 2.5rem;
    font-size: 1.25rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .cart-form-item__remove {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1rem;
    opacity: 0.5;
    cursor: pointer;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 1024px) {
  html body .cart-form-item__remove {
    font-size: 0.875rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .cart-form-item__remove button {
    border: none;
    font-size: inherit;
    background: transparent;
  }
}

.cart-form {
  margin: 205px 0 30px;
  min-height: 545px;
}
.cart-form__empty .wc-empty-cart-message {
  font-family: var(--secondary-font);
  font-weight: 500;
  font-size: clamp(20px, 3.125vw, 60px);
  text-align: center;
}
.cart-form__empty .return-to-shop {
  position: relative;
  font-family: var(--secondary-font);
  font-weight: 500;
  font-size: clamp(20px, 3.125vw, 60px);
  text-align: center;
}
.cart-form__empty .return-to-shop a {
  position: relative;
}
.cart-form__empty .return-to-shop a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: var(--text);
}
@media (max-width: 1024px) {
  .cart-form {
    margin: 125px 0 0;
  }
}
@media (max-width: 640px) {
  .cart-form {
    margin: 105px 0 0;
  }
}
.cart-form .container {
  position: relative;
}
.cart-form__title {
  margin: 0;
  font-weight: 400;
  font-size: clamp(30px, 3.125vw, 60px);
}
.cart-form__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.cart-form__items-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 40px 0 0;
  gap: 20px;
}

.cart-form-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.cart-form-item .quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: auto 0 0;
  gap: 5px;
}
.cart-form-item__title, .cart-form-item__size, .cart-form-item__price, .cart-form-item__quantity {
  margin: 0;
}
.cart-form-item__data {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 440px;
}
@media (max-width: 1250px) {
  .cart-form-item__data {
    width: 400px;
  }
}
@media (max-width: 1024px) {
  .cart-form-item__data {
    width: 50%;
  }
}
.cart-form-item__img {
  border: 1px solid var(--text);
  min-width: 208px;
}
@media (max-width: 1024px) {
  .cart-form-item__img {
    min-width: 50%;
    max-height: 415px;
  }
}
.cart-form-item__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.cart-form-item__title {
  max-width: calc(100% - 60px);
  font-size: 20px;
  text-wrap: balance;
}
.cart-form-item__collection {
  margin: 20px 0 0;
}
.cart-form-item__collection, .cart-form-item__size {
  opacity: 0.5;
}
.cart-form-item__quantity-selector {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: auto 0 0;
  gap: 5px;
}
.cart-form-item__quantity-remove, .cart-form-item__quantity-add, .cart-form-item__quantity {
  all: unset;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  outline: unset;
  width: 11.55%;
  height: 33px;
  -webkit-box-shadow: unset;
  box-shadow: unset;
  font-size: 20px;
  text-align: center;
  color: var(--main-white);
  background-color: var(--text);
  cursor: pointer;
}
@media (max-width: 640px) {
  .cart-form-item__quantity-remove, .cart-form-item__quantity-add, .cart-form-item__quantity {
    border: 1px solid var(--text);
    height: 24px;
    min-width: 34px;
    font-size: 14px;
    color: var(--text);
    background-color: var(--main-white);
  }
}
.cart-form-item__quantity {
  width: 33.24%;
}
.cart-form-item__quantity::-webkit-outer-spin-button, .cart-form-item__quantity::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
@media (max-width: 640px) {
  .cart-form-item__quantity {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
}
.cart-form-item__price {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 30px;
}
@media (max-width: 640px) {
  .cart-form-item__price {
    left: 0;
    right: unset;
    bottom: 40px;
    font-size: 20px;
  }
}
.cart-form-item__remove {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 16px;
  opacity: 0.5;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .cart-form-item__remove {
    font-size: 14px;
  }
}
.cart-form-item__remove button {
  border: none;
  font-size: inherit;
  background: transparent;
}

.recommendations {
  margin: 250px 0;
}
@media (max-width: 1024px) {
  .recommendations {
    margin: 200px 0;
  }
}
@media (max-width: 640px) {
  .recommendations {
    margin: 150px 0 200px;
  }
}
.recommendations__title {
  margin: 0;
  max-width: 57%;
  font-family: var(--secondary-font);
  font-weight: 300;
  font-size: clamp(130px, 9.375vw, 180px);
  line-height: 0.75em;
  letter-spacing: -0.05em;
  text-align: right;
}
@media (max-width: 1320px) {
  .recommendations__title {
    max-width: 750px;
  }
}
@media (max-width: 1024px) {
  .recommendations__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    letter-spacing: -0.06em;
    text-align: left;
  }
  .recommendations__title span {
    display: block;
    text-align: right;
  }
}
@media (max-width: 720px) {
  .recommendations__title {
    font-size: 115px;
  }
}
@media (max-width: 640px) {
  .recommendations__title {
    font-size: 68px;
    text-align: center;
  }
  .recommendations__title span {
    text-align: center;
  }
}
.recommendations__title span {
  text-shadow: -1px -1px 0 var(--main-white), 1px -1px 0 var(--main-white), -1px 1px 0 var(--main-white), 1px 1px 0 var(--main-white);
}

.recommendations-swiper {
  overflow: hidden;
  margin: 123px 0 0;
}
@media (max-width: 1024px) {
  .recommendations-swiper {
    margin: 70px 0 0;
  }
}
@media (max-width: 640px) {
  .recommendations-swiper {
    margin: 65px 0 0;
  }
}
@media (min-width: 769px) {
  .recommendations-swiper .swiper-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
  }
}
@media (max-width: 769px) {
  .recommendations-swiper .swiper-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .recommendations-swiper.swiper-initialized {
    overflow: hidden;
  }
}

.recommendatinos-slide {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 24.17%;
  max-width: 435px;
}
@media (max-width: 1024px) {
  .recommendatinos-slide {
    width: 50%;
  }
}
@media (max-width: 640px) {
  .recommendatinos-slide {
    width: 256px;
  }
}
.recommendatinos-slide__img {
  border: 1px solid var(--black);
  max-height: 580px;
  aspect-ratio: 435/580;
}
.recommendatinos-slide__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}
.recommendatinos-slide__title {
  margin: 10px 0 0;
}
.recommendatinos-slide__title, .recommendatinos-slide__price {
  font-weight: 500;
  font-size: clamp(16px, 1.0416666667vw, 20px);
  text-align: center;
}

@media (min-width: 641px) {
  .recommendations__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .recommendations__title span:nth-child(1) {
    text-align: left;
  }
}
html:has(.cart-summary) {
  font-size: 8.53px;
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html:has(.cart-summary) {
    font-size: calc(8.53px + 0.0083370536 * (100vw - 1023px));
  }
}
@media (min-width: 1919px) {
  html:has(.cart-summary) {
    font-size: 16px;
  }
}

@media (min-width: 1023px) and (max-width: 1919px) {
  html body .cart-summary {
    position: absolute;
    right: 0.9375rem;
    top: 0;
    padding: 1.25rem;
    width: 37%;
    color: var(--main-white);
    background: var(--text);
  }
  html body .cart-summary .cart-summary__proceed-button {
    color: var(--text);
  }
  html body .cart-summary .cart-summary__proceed-button--black {
    color: inherit;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 1560px) {
  html body .cart-summary {
    width: 42%;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 1250px) {
  html body .cart-summary {
    width: 32%;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 1024px) {
  html body .cart-summary {
    position: static;
    margin: 3.125rem 0 0;
    padding: 1.5625rem;
    width: 100%;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .cart-summary {
    padding: 0.9375rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .cart-summary__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  html body .cart-summary__title h2 {
    margin: 0;
    font-weight: 400;
    font-size: 3.75rem;
    line-height: 1em;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .cart-summary__title h2 {
    font-size: 1.25rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .cart-summary__subtotal-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 2.5rem 0 0;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .cart-summary__subtotal-wrapper {
    margin: 0.9375rem 0 0;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .cart-summary__subtotal-wrapper h3 {
    margin: 0;
    font-weight: 400;
    font-size: 1.25rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .cart-summary__subtotal-wrapper h3 {
    font-size: 0.75rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .cart-summary__subtotal-wrapper span {
    margin: 0;
    font-weight: 400;
    font-size: 1.25rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .cart-summary__subtotal-wrapper span {
    font-size: 0.75rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .cart-summary__total-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 2.5rem 0 3.125rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 1024px) {
  html body .cart-summary__total-wrapper {
    margin: 3.125rem 0;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .cart-summary__total-wrapper {
    margin: 1.25rem 0 0.625rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .cart-summary__total-wrapper h3 {
    margin: 0;
    font-weight: 400;
    font-size: 1.875rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .cart-summary__total-wrapper h3 {
    font-size: 1.25rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .cart-summary__total-wrapper span {
    margin: 0;
    font-weight: 400;
    font-size: 1.875rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .cart-summary__total-wrapper span {
    font-size: 1.25rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .cart-summary__promocode-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr auto;
    grid-template-columns: 1fr auto;
    margin: 1.25rem 0 0;
    gap: 0.9375rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 1024px) {
  html body .cart-summary__promocode-wrapper {
    margin: 1.875rem 0 0;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .cart-summary__promocode-wrapper {
    margin: 0.9375rem 0 0;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .cart-summary__promocode-wrapper label {
    font-size: 1.25rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .cart-summary__promocode-wrapper label {
    font-size: 0.75rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .cart-summary__promocode-wrapper input {
    all: unset;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    border-bottom: 0.0625rem solid rgba(253, 251, 244, 0.2);
    font-size: 1.25rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .cart-summary__promocode-wrapper input {
    font-size: 0.75rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .cart-summary__discount-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 2.5rem 0 0;
  }
  html body .cart-summary__discount-wrapper-totals {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  html body .cart-summary__discount-wrapper-coupons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 0.375rem;
    gap: 0.75rem;
  }
  html body .cart-summary__discount-wrapper-coupons .coupon-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 0.0625rem solid var(--main-white);
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    gap: 0.375rem;
  }
  html body .cart-summary__discount-wrapper-coupons .coupon-item__remove {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    width: 1rem;
    height: 1rem;
    background: var(--main-white);
    opacity: 0.5;
  }
  html body .cart-summary__items-wrapper {
    margin: 3.125rem 0 0;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 1024px) {
  html body .cart-summary__items-wrapper {
    margin: 2.5rem 0 0;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .cart-summary__items-title {
    font-size: 1.25rem;
  }
  html body .cart-summary__items-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow: auto;
    margin: 1.25rem 0 0;
    padding-right: 0.375rem;
    max-height: 40.625rem;
    gap: 1.25rem;
    scrollbar-color: var(--main-white) transparent;
    scrollbar-width: thin;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 1024px) {
  html body .cart-summary__items-list {
    margin: 0.9375rem 0 0;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .cart-summary__items-list {
    margin: 0.625rem 0 0;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .cart-summary__items-list::-webkit-scrollbar {
    width: 0.25rem;
  }
  html body .cart-summary__items-list::-webkit-scrollbar-thumb {
    border-radius: 0.25rem;
    background: var(--main-white);
  }
  html body .cart-summary__package-checkbox-wrapper {
    margin: 0;
  }
  html body .cart-summary__package-checkbox-wrapper input {
    display: none;
  }
  html body .cart-summary__package-checkbox-wrapper span {
    display: block;
    border: 0.0625rem solid var(--main-white);
    width: 1.5rem;
    height: 1.5rem;
  }
  html body .cart-summary__package-title {
    font-size: 1.25rem;
  }
  html body .cart-summary__package-tooltip {
    border-radius: 50%;
    width: 1.3125rem;
    height: 1.3125rem;
    font-size: 0.875rem;
  }
  html body .cart-summary__proceed-button {
    all: unset;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 0.0625rem solid transparent;
    padding: 0.875rem 0;
    width: 100%;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    background-color: var(--main-white);
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
    cursor: pointer;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .cart-summary__proceed-button {
    padding: 0.625rem 0;
    font-size: 0.75rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .cart-summary__proceed-button--black {
    margin: 0.625rem 0 0;
    border: 0.0625rem solid var(--main-white);
    color: var(--main-white);
    background-color: var(--text);
  }
  html body .cart-summary__proceed-button--coupon {
    padding: 0.875rem 1.25rem;
    width: auto;
    font-size: 0.75rem;
  }
  html body .cart-summary__submit-disclaimer {
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.2em;
    opacity: 0.5;
  }
}

.cart-summary {
  position: absolute;
  right: 15px;
  top: 0;
  padding: 20px;
  width: 37%;
  color: var(--main-white);
  background: var(--text);
}
@media (max-width: 1560px) {
  .cart-summary {
    width: 42%;
  }
}
@media (max-width: 1250px) {
  .cart-summary {
    width: 32%;
  }
}
@media (max-width: 1024px) {
  .cart-summary {
    position: static;
    margin: 50px 0 0;
    padding: 25px;
    width: 100%;
  }
}
@media (max-width: 640px) {
  .cart-summary {
    padding: 15px;
  }
}
.cart-summary__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.cart-summary__title h2 {
  margin: 0;
  font-weight: 400;
  font-size: clamp(30px, 3.125vw, 60px);
  line-height: 1em;
}
@media (max-width: 640px) {
  .cart-summary__title h2 {
    font-size: 20px;
  }
}
.cart-summary__subtotal-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 40px 0 0;
}
@media (max-width: 640px) {
  .cart-summary__subtotal-wrapper {
    margin: 15px 0 0;
  }
}
.cart-summary__subtotal-wrapper h3 {
  margin: 0;
  font-weight: 400;
  font-size: clamp(16px, 1.0416666667vw, 20px);
}
@media (max-width: 640px) {
  .cart-summary__subtotal-wrapper h3 {
    font-size: 12px;
  }
}
.cart-summary__subtotal-wrapper span {
  margin: 0;
  font-weight: 400;
  font-size: clamp(16px, 1.0416666667vw, 20px);
}
@media (max-width: 640px) {
  .cart-summary__subtotal-wrapper span {
    font-size: 12px;
  }
}
.cart-summary__total-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 40px 0 50px;
}
@media (max-width: 1024px) {
  .cart-summary__total-wrapper {
    margin: 50px 0;
  }
}
@media (max-width: 640px) {
  .cart-summary__total-wrapper {
    margin: 20px 0 10px;
  }
}
.cart-summary__total-wrapper h3 {
  margin: 0;
  font-weight: 400;
  font-size: clamp(30px, 1.5625vw, 30px);
}
@media (max-width: 640px) {
  .cart-summary__total-wrapper h3 {
    font-size: 20px;
  }
}
.cart-summary__total-wrapper span {
  margin: 0;
  font-weight: 400;
  font-size: clamp(30px, 1.5625vw, 30px);
}
@media (max-width: 640px) {
  .cart-summary__total-wrapper span {
    font-size: 20px;
  }
}
.cart-summary__promocode-wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr auto;
  grid-template-columns: 1fr auto;
  margin: 20px 0 0;
  gap: 15px;
}
@media (max-width: 1024px) {
  .cart-summary__promocode-wrapper {
    margin: 30px 0 0;
  }
}
@media (max-width: 640px) {
  .cart-summary__promocode-wrapper {
    margin: 15px 0 0;
  }
}
.cart-summary__promocode-wrapper label {
  font-size: clamp(16px, 1.0416666667vw, 20px);
}
@media (max-width: 640px) {
  .cart-summary__promocode-wrapper label {
    font-size: 12px;
  }
}
.cart-summary__promocode-wrapper input {
  all: unset;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  border-bottom: 1px solid rgba(253, 251, 244, 0.2);
  font-size: clamp(16px, 1.0416666667vw, 20px);
}
@media (max-width: 640px) {
  .cart-summary__promocode-wrapper input {
    font-size: 12px;
  }
}
.cart-summary__discount-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 40px 0 0;
}
.cart-summary__discount-totals {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.cart-summary__discount-coupons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 6px;
  gap: 12px;
}
.cart-summary__discount-coupons .coupon-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid var(--main-white);
  padding: 4px 8px;
  font-size: 14px;
  gap: 6px;
}
.cart-summary__discount-coupons .coupon-item__remove {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  opacity: 0.5;
}
.cart-summary__items-wrapper {
  margin: 50px 0 0;
}
@media (max-width: 1024px) {
  .cart-summary__items-wrapper {
    margin: 40px 0 0;
  }
}
.cart-summary__items-title {
  font-size: clamp(16px, 1.0416666667vw, 20px);
}
.cart-summary__items-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden scroll;
  margin: 20px 0 0;
  padding: 0 6px 0 0;
  max-height: 650px;
  gap: 20px;
  scrollbar-color: var(--main-white) transparent;
  scrollbar-width: thin;
}
@media (max-width: 1024px) {
  .cart-summary__items-list {
    margin: 15px 0 0;
  }
}
@media (max-width: 640px) {
  .cart-summary__items-list {
    margin: 10px 0 0;
  }
}
.cart-summary__items-list::-webkit-scrollbar {
  width: 4px;
}
.cart-summary__items-list::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background: var(--main-white);
}
.cart-summary__package-checkbox-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
}
.cart-summary__package-checkbox-wrapper input {
  display: none;
}
.cart-summary__package-checkbox-wrapper span {
  display: block;
  border: 1px solid var(--main-white);
  width: 24px;
  height: 24px;
}
.cart-summary__proceed-button {
  all: unset;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 14px 0;
  width: 100%;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--text);
  background-color: var(--main-white);
  -webkit-transition: opacity 0.2s ease 0s;
  transition: opacity 0.2s ease 0s;
  will-change: opacity;
  cursor: pointer;
}
@media (max-width: 640px) {
  .cart-summary__proceed-button {
    padding: 10px 0;
    font-size: 12px;
  }
}
.cart-summary__proceed-button:hover {
  opacity: 0.8;
}
.cart-summary__proceed-button--black {
  margin: 10px 0 0;
  border: 1px solid var(--main-white);
  color: var(--main-white);
  background-color: var(--text);
}
.cart-summary__proceed-button--coupon {
  padding: 14px 20px;
  width: inherit;
  font-size: 12px;
}
.cart-summary__submit-disclaimer {
  font-weight: 400;
  font-size: clamp(14px, 0.8333333333vw, 16px);
  line-height: 1.2em;
  opacity: 0.5;
}

html:has(.catalog-grid) {
  font-size: 8.53px;
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html:has(.catalog-grid) {
    font-size: calc(8.53px + 0.0083370536 * (100vw - 1023px));
  }
}
@media (min-width: 1919px) {
  html:has(.catalog-grid) {
    font-size: 16px;
  }
}

@media (min-width: 1023px) and (max-width: 1919px) {
  html body .catalog-grid {
    margin: 14.0625rem 0 0;
  }
  html body .catalog-grid .container {
    display: -ms-grid;
    display: grid;
    grid-auto-rows: -webkit-min-content;
    grid-auto-rows: min-content;
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    -ms-grid-rows: -webkit-min-content;
    -ms-grid-rows: min-content;
    grid-template-rows: -webkit-min-content;
    grid-template-rows: min-content;
    gap: 6rem 1.25rem;
  }
  html body .catalog-grid__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 1.25rem;
    line-height: 1.2em;
    color: var(--text);
  }
  html body .catalog-grid__item .price {
    white-space: nowrap;
  }
  html body .catalog-grid__item img {
    display: block;
    border: 0.125rem solid var(--text);
    width: 100%;
    height: 51.025rem;
    -o-object-fit: cover;
    object-fit: cover;
  }
  html body .catalog-grid__item p {
    margin: 0.375rem 0 0;
    text-align: center;
  }
  html body .catalog-grid__item p:nth-child(1) {
    margin: 1.25rem 0 0;
  }
}

.catalog-grid {
  margin: 225px 0 0;
}
@media (max-width: 1024px) {
  .catalog-grid {
    margin: 120px 0 0;
  }
}
@media (max-width: 640px) {
  .catalog-grid {
    margin: 50px 0 0;
  }
}
.catalog-grid .container {
  display: -ms-grid;
  display: grid;
  grid-auto-rows: -webkit-min-content;
  grid-auto-rows: min-content;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: -webkit-min-content;
  -ms-grid-rows: min-content;
  grid-template-rows: -webkit-min-content;
  grid-template-rows: min-content;
  gap: 96px 20px;
}
@media (max-width: 1024px) {
  .catalog-grid .container {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 50px 20px;
  }
}
@media (max-width: 640px) {
  .catalog-grid .container {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
  }
}
.catalog-grid__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1.2em;
  color: var(--text);
}
.catalog-grid__item .price {
  white-space: nowrap;
}
.catalog-grid__item img {
  display: block;
  border: 2px solid var(--text);
  width: 100%;
  height: 698px;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 1024px) {
  .catalog-grid__item img {
    height: 470px;
  }
}
.catalog-grid__item p {
  margin: 6px 0 0;
  text-align: center;
}
@media (max-width: 1024px) {
  .catalog-grid__item p {
    margin: 2px 0 0;
  }
}
@media (max-width: 640px) {
  .catalog-grid__item p {
    margin: 0;
    line-height: 1em;
    text-align: left;
  }
}
.catalog-grid__item p:nth-child(1) {
  margin: 20px 0 0;
}
@media (max-width: 1024px) {
  .catalog-grid__item p:nth-child(1) {
    margin: 10px 0 0;
  }
}
@media (max-width: 640px) {
  .catalog-grid__item p:nth-child(1) {
    margin: 0;
  }
}

@media (max-width: 640px) {
  .catalog-grid__item {
    grid-column: auto;
    grid-row: auto;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    gap: 10px;
  }
  .catalog-grid__item img {
    border: 1px solid var(--text);
  }
  .catalog-grid__item div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
  }
  .catalog-grid__item div p {
    margin: 0;
    font-weight: 400;
    font-size: 12px;
  }
  /* stylelint-disable-next-line no-duplicate-selectors */
  .catalog-grid__item img {
    height: 430px;
  }
  .catalog-grid__item:nth-child(11n+1),
  .catalog-grid__item:nth-child(11n+2),
  .catalog-grid__item:nth-child(11n+3),
  .catalog-grid__item:nth-child(11n+6),
  .catalog-grid__item:nth-child(11n+7) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
  }
  .catalog-grid__item:nth-child(11n+4),
  .catalog-grid__item:nth-child(11n+8),
  .catalog-grid__item:nth-child(11n+10) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
  }
  .catalog-grid__item:nth-child(11n+5),
  .catalog-grid__item:nth-child(11n+9),
  .catalog-grid__item:nth-child(11n+11) {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
  }
  .catalog-grid__item:nth-child(11n+4) img,
  .catalog-grid__item:nth-child(11n+5) img,
  .catalog-grid__item:nth-child(11n+8) img,
  .catalog-grid__item:nth-child(11n+9) img,
  .catalog-grid__item:nth-child(11n+10) img,
  .catalog-grid__item:nth-child(11n+11) img {
    height: 250px;
  }
}
/* stylelint-disable no-duplicate-selectors */
html:has(.catalog-header) {
  font-size: 8.53px;
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html:has(.catalog-header) {
    font-size: clamp(8.53px, 8.53px + 0.0083370536 * (100vw - 1023px), 16px);
  }
}
@media (min-width: 1919px) {
  html:has(.catalog-header) {
    font-size: 16px;
  }
}

@media (min-width: 1023px) and (max-width: 1919px) {
  html body .catalog-headers {
    margin: 13.125rem 0 0;
  }
  html body .catalog-header__title {
    font-size: clamp(8.125rem, 9.375vw, 11.25rem);
  }
  html body .catalog-header .catalog-header__collection {
    padding-left: 8.2vw;
  }
  html body .catalog-header__slogan {
    font-size: 1.25rem;
  }
  html body .catalog-header__slogan--bottom {
    max-width: 32.5rem;
    font-size: 1.25rem;
  }
  html body [data-catalog-header=all] .catalog-header__collection {
    padding-left: 17vw;
  }
  html body [data-catalog-header=all] .catalog-header__all-collections {
    border: 0.125rem solid var(--text);
    border-radius: 25rem/6.25rem;
    padding: 1.25rem 1.4375rem;
    font-size: 1.25rem;
  }
}

.catalog-headers {
  overflow: visible;
  margin: 210px 0 0;
}
@media (max-width: 1024px) {
  .catalog-headers {
    margin: 120px 0 0;
  }
}

.catalog-header {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.catalog-header:not(.active) {
  display: none;
}
@media (max-width: 640px) {
  .catalog-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px;
  }
}
.catalog-header__title {
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  margin: 0;
  width: 70%;
  font-family: var(--secondary-font);
  font-weight: 400;
  font-size: clamp(130px, 9.375vw, 180px);
  line-height: 0.65;
  letter-spacing: -0.02em;
}
.catalog-header__title .catalog-header__collection {
  display: inline-block;
  padding: 0 0 0 8.2vw;
  text-shadow: -1px -1px 0 var(--main-white), 1px -1px 0 var(--main-white), -1px 1px 0 var(--main-white), 1px 1px 0 var(--main-white);
}
@media (min-width: 1025px) {
  .catalog-header__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (max-width: 640px) {
  .catalog-header__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    font-size: 68px;
    line-height: 0.75;
    text-align: center;
  }
  .catalog-header__title .catalog-header__collection {
    padding: 0;
  }
}
.catalog-header__slogan {
  position: absolute;
  left: 75.8%;
  top: 0;
  margin: 0;
  margin-bottom: -10px;
  padding: 0;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2em;
  text-transform: uppercase;
  text-wrap: balance;
}
@media (max-width: 1024px) {
  .catalog-header__slogan {
    font-size: 14px;
  }
}
@media (max-width: 640px) {
  .catalog-header__slogan {
    position: static;
  }
}
.catalog-header__slogan--bottom {
  top: unset;
  bottom: 0;
  max-width: 520px;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2em;
  letter-spacing: -0.02em;
  text-transform: unset;
}

[data-catalog-header=all] .catalog-header__title {
  display: block;
}
[data-catalog-header=all] .all-italic {
  font-style: italic;
}
@media (max-width: 1024px) {
  [data-catalog-header=all].catalog-header {
    display: -ms-grid;
    display: grid;
    grid-row: min-content min-content;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    row-gap: 25px;
  }
  [data-catalog-header=all].catalog-header:not(.active) {
    display: none;
  }
  [data-catalog-header=all] .catalog-header__title {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    width: 100%;
    font-size: 16vw;
  }
  [data-catalog-header=all] .catalog-header__slogan {
    position: static;
    -ms-grid-row-align: end;
    -ms-grid-column-align: end;
    place-self: end;
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 2;
    grid-row: 2;
    font-size: 16px;
  }
  [data-catalog-header=all] .catalog-header__slogan--bottom {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 2;
    grid-row: 2;
    font-size: 16px;
  }
}
@media (max-width: 1024px) and (max-width: 640px) {
  [data-catalog-header=all] .catalog-header__slogan {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    -ms-grid-row: 2;
    grid-row: 2;
  }
  [data-catalog-header=all] .catalog-header__slogan--bottom {
    -ms-grid-row-align: start;
    -ms-grid-column-align: start;
    place-self: start;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    -ms-grid-row: 2;
    grid-row: 2;
    max-width: 250px;
  }
}
@media (max-width: 640px) {
  [data-catalog-header=all].catalog-header {
    row-gap: 52px;
  }
  [data-catalog-header=all] .catalog-header__title {
    display: block;
  }
}
[data-catalog-header=all] .catalog-header__collection {
  position: relative;
  z-index: 5;
  display: inline-block;
  padding: 0 0 0 17vw;
  text-shadow: -1px -1px 0 var(--main-white), 1px -1px 0 var(--main-white), -1px 1px 0 var(--main-white), 1px 1px 0 var(--main-white);
}
@media (max-width: 640px) {
  [data-catalog-header=all] .catalog-header__collection {
    padding: 0;
    text-shadow: -1px -1px 0 var(--main-white), 1px -1px 0 var(--main-white), -1px 1px 0 var(--main-white), 1px 1px 0 var(--main-white), -2px 0 0 var(--main-white), 2px 0 0 var(--main-white), 0 -2px 0 var(--main-white), 0 2px 0 var(--main-white);
  }
}
[data-catalog-header=all] .catalog-header__all-collections {
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 7;
  border: 2px solid var(--text);
  border-radius: 400px/100px;
  padding: 20px 23px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: normal;
  white-space: nowrap;
  text-transform: uppercase;
  color: var(--text);
  background-color: var(--main-white);
  -webkit-transform: translateY(-10%);
  -ms-transform: translateY(-10%);
  transform: translateY(-10%);
}
@media (max-width: 1024px) {
  [data-catalog-header=all] .catalog-header__all-collections {
    top: 30%;
    border-radius: 416px/135px;
    font-size: 16px;
  }
}
@media (max-width: 640px) {
  [data-catalog-header=all] .catalog-header__all-collections {
    left: 50%;
    top: 38%;
    -webkit-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
  }
}

.gifts {
  margin: 250px 0;
}
@media (max-width: 1024px) {
  .gifts {
    overflow: hidden;
    margin: 240px 0 200px;
    max-width: 100vw;
  }
}
@media (max-width: 640px) {
  .gifts {
    overflow: visible;
    margin: 270px 0 172px;
  }
}
.gifts .container {
  position: relative;
}
.gifts__inner {
  position: relative;
  width: 100%;
  height: 1234px;
}
@media (max-width: 1024px) {
  .gifts__inner {
    height: 1187px;
  }
}
@media (max-width: 640px) {
  .gifts__inner {
    height: auto;
    min-height: 623px;
  }
}
.gifts__bg {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  border: 2px solid var(--text);
  width: 100%;
  height: 100%;
}
.gifts__bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
@media (max-width: 1024px) {
  .gifts__bg {
    border: 1px solid var(--text);
    width: 100%;
  }
}
@media (max-width: 640px) {
  .gifts__bg {
    height: 503px;
  }
}
.gifts__content-wrapper {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 40px;
  width: 100%;
  height: 100%;
}
@media (max-width: 1024px) {
  .gifts__content-wrapper {
    padding: 35px 10px 0;
  }
}
@media (max-width: 640px) {
  .gifts__content-wrapper {
    position: absolute;
    left: 0;
    top: 0;
  }
}
.gifts__header {
  max-width: 56.46vw;
}
@media (max-width: 1200px) {
  .gifts__header {
    max-width: 49vw;
  }
}
@media (max-width: 1024px) {
  .gifts__header {
    width: 98%;
    height: 100%;
    max-width: unset;
  }
}
@media (max-width: 640px) {
  .gifts__header {
    position: absolute;
    left: 50%;
    top: 0;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    -webkit-transform: translate(-50%, -85%);
    -ms-transform: translate(-50%, -85%);
    transform: translate(-50%, -85%);
  }
}
.gifts__slogan {
  position: absolute;
  right: 75px;
  top: 70px;
  z-index: 4;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 360px;
  color: var(--main-white);
  fill: var(--main-white);
}
.gifts__slogan-inner {
  font-weight: 700;
  font-size: clamp(14px, 1.0416666667vw, 20px);
  line-height: 1.2em;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .gifts__slogan {
    left: 19px;
    right: unset;
    top: 295px;
    height: 52px;
    max-width: 250px;
    text-wrap: balance;
  }
}
@media (max-width: 640px) {
  .gifts__slogan {
    left: 15px;
    right: unset;
    top: unset;
    bottom: 18.5%;
    width: 300px;
    max-width: unset;
    font-weight: 500;
    font-size: 12px;
  }
}
.gifts__choose {
  position: absolute;
  right: 90px;
  top: 216px;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 360px;
  color: var(--main-white);
  fill: var(--main-white);
  gap: 30px;
}
@media (max-width: 1440px) {
  .gifts__choose {
    top: 180px;
  }
}
@media (max-width: 1200px) {
  .gifts__choose {
    top: 125px;
  }
}
@media (max-width: 1024px) {
  .gifts__choose {
    right: 13px;
    top: 254px;
    max-width: 340px;
    gap: 15px;
  }
}
@media (max-width: 640px) {
  .gifts__choose {
    left: 15px;
    top: unset;
    bottom: 0;
    max-width: unset;
    color: var(--text);
    fill: var(--text);
  }
  .gifts__choose a {
    color: var(--text);
  }
}
@media (max-width: 1024px) {
  .gifts__choose svg {
    width: 21px;
    height: 19px;
  }
}
.gifts__choose-descr {
  font-size: clamp(14px, 1.0416666667vw, 20px);
  line-height: 1.2em;
  letter-spacing: -0.02em;
}
@media (max-width: 1024px) {
  .gifts__choose-descr {
    font-size: 16px;
    line-height: 1.2em;
    letter-spacing: -0.02em;
  }
}
@media (max-width: 640px) {
  .gifts__choose-descr {
    font-size: 14px;
    line-height: 1.2em;
  }
}
.gifts__choose-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 700;
  font-size: clamp(14px, 1.0416666667vw, 20px);
  line-height: 1.2em;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--main-white);
  -webkit-transition: opacity 0.2s ease 0s;
  transition: opacity 0.2s ease 0s;
  will-change: opacity;
  cursor: pointer;
  gap: 11px;
}
.gifts__choose-link:hover {
  opacity: 0.5;
}
@media (max-width: 1024px) {
  .gifts__choose-link {
    font-size: 16px;
    line-height: 1.2em;
    letter-spacing: -0.02em;
  }
}
@media (max-width: 640px) {
  .gifts__choose-link {
    font-size: 14px;
    line-height: 1.2em;
  }
}
.gifts__texts {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-grid-columns: 507px 400px;
  grid-template-columns: 507px 400px;
  -ms-grid-rows: auto 1fr;
  grid-template-rows: auto 1fr;
  max-width: 60%;
  color: var(--main-white);
  gap: 20px 40px;
}
@media (max-width: 1460px) {
  .gifts__texts {
    -ms-grid-columns: 1.05fr 1fr;
    grid-template-columns: 1.05fr 1fr;
    max-width: 60%;
  }
}
@media (max-width: 1024px) {
  .gifts__texts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 425px;
  }
}
@media (max-width: 640px) {
  .gifts__texts {
    position: absolute;
    bottom: 0;
    color: var(--text);
    gap: 20px;
  }
}
.gifts__logo {
  position: absolute;
  left: 40px;
  bottom: 40px;
  z-index: 2;
}
@media (max-width: 1460px) {
  .gifts__logo {
    display: none;
  }
}
.gifts__logo svg {
  fill: var(--main-white);
}
.gifts__text-title, .gifts__mail {
  -ms-flex-item-align: end;
  -ms-grid-row-align: end;
  align-self: end;
  font-weight: 700;
  font-size: clamp(16px, 1.0416666667vw, 20px);
  line-height: 1.2em;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .gifts__text-title, .gifts__mail {
    text-wrap: balance;
  }
}
@media (max-width: 640px) {
  .gifts__text-title, .gifts__mail {
    font-size: 14px;
  }
}
@media (max-width: 1024px) {
  .gifts__mail {
    position: absolute;
    right: 18px;
    bottom: 85px;
  }
}
@media (max-width: 640px) {
  .gifts__mail {
    position: static;
    -ms-flex-item-align: start;
    -ms-grid-row-align: start;
    align-self: start;
    -webkit-box-ordinal-group: 100;
    -ms-flex-order: 99;
    order: 99;
  }
}
.gifts__text {
  font-size: clamp(16px, 1.0416666667vw, 20px);
  line-height: 1.2em;
  letter-spacing: -0.02em;
}
@media (max-width: 640px) {
  .gifts__text {
    font-size: 14px;
  }
}
.gifts__colors {
  position: absolute;
  right: 50px;
  bottom: 40px;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media (max-width: 1024px) {
  .gifts__colors {
    display: none;
  }
}
.gifts__color {
  border: 1px solid var(--white);
  width: 36px;
  height: 36px;
}
@media (max-width: 1024px) {
  .gifts__color {
    display: none;
  }
}
.gifts__color--white {
  background-color: var(--white);
}
.gifts__color--green {
  background-color: #1C4C2D;
}

/* stylelint-disable no-duplicate-selectors */
html:has(.catalog-selectors) {
  font-size: 8.53px;
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html:has(.catalog-selectors) {
    font-size: clamp(8.53px, 8.53px + 0.0083370536 * (100vw - 1023px), 16px);
  }
}
@media (min-width: 1919px) {
  html:has(.catalog-selectors) {
    font-size: 16px;
  }
}

@media (min-width: 1023px) and (max-width: 1919px) {
  html body .catalog-selectors {
    margin: 12.875rem 0 0;
    max-width: 100vw;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 1024px) {
  html body .catalog-selectors {
    margin: 6.4375rem 0 0;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .catalog-selectors {
    margin: 8.125rem 0 0;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .catalog-selectors__header {
    display: none;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .catalog-selectors__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
  }
  html body .catalog-selectors__header svg {
    width: 1.3125rem;
    height: 1.1875rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .catalog-selectors__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .catalog-selectors__list {
    overflow: visible;
    margin: 0.9375rem 0 0;
    gap: 0;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .catalog-select {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    min-width: 27.1875rem;
    min-height: 43.5625rem;
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.2em;
    text-transform: uppercase;
    color: var(--text);
    opacity: 1;
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
    will-change: opacity;
    cursor: pointer;
    gap: 1.25rem;
  }
  html body .catalog-select:not(.active) {
    opacity: 0.3;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 1024px) {
  html body .catalog-select {
    height: auto;
    min-width: 10.9375rem;
    min-height: auto;
    font-weight: 500;
    font-size: 0.75rem;
    gap: 0.625rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .catalog-select {
    min-width: 16rem;
    gap: 0.9375rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .catalog-select__img-wrapper {
    border: 0.125rem solid var(--text);
    width: 100%;
    height: 40.9375rem;
  }
  html body .catalog-select__img-wrapper img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 1024px) {
  html body .catalog-select__img-wrapper {
    border: 0.0625rem solid var(--text);
    height: 16.4375rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .catalog-select__img-wrapper {
    height: 24.0625rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .catalogs-selectors__swiper {
    opacity: 1;
    -webkit-transition: opacity 0.25s ease 0s;
    transition: opacity 0.25s ease 0s;
  }
  html body .catalogs-selectors__swiper.swiper-initialized {
    opacity: 1;
  }
  html body .catalog-select__title {
    font-weight: 600;
  }
}

.catalog-selectors {
  overflow: hidden;
  margin: 206px 0 0;
  max-width: 100vw;
}
@media (max-width: 1024px) {
  .catalog-selectors {
    margin: 103px 0 0;
  }
}
@media (max-width: 640px) {
  .catalog-selectors {
    margin: 130px 0 0;
  }
}
.catalog-selectors__header {
  display: none;
}
@media (max-width: 640px) {
  .catalog-selectors__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
  }
  .catalog-selectors__header svg {
    width: 21px;
    height: 19px;
  }
}
.catalog-selectors__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 640px) {
  .catalog-selectors__list {
    overflow: visible;
    margin: 15px 0 0;
    gap: 0;
  }
}

.catalog-select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  min-width: 435px;
  min-height: 697px;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 1;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  will-change: opacity;
  cursor: pointer;
  gap: 20px;
}
.catalog-select:not(.active) {
  opacity: 0.3;
}
@media (max-width: 1024px) {
  .catalog-select {
    height: auto;
    min-width: 175px;
    min-height: auto;
    font-weight: 500;
    font-size: 12px;
    gap: 10px;
  }
}
@media (max-width: 640px) {
  .catalog-select {
    min-width: 256px;
    gap: 15px;
  }
}
.catalog-select__img-wrapper {
  border: 2px solid var(--text);
  width: 100%;
  height: 655px;
}
.catalog-select__img-wrapper img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media (max-width: 1024px) {
  .catalog-select__img-wrapper {
    border: 1px solid var(--text);
    height: 263px;
  }
}
@media (max-width: 640px) {
  .catalog-select__img-wrapper {
    height: 385px;
  }
}

.catalogs-selectors__swiper {
  opacity: 1;
  -webkit-transition: opacity 0.25s ease 0s;
  transition: opacity 0.25s ease 0s;
}
.catalogs-selectors__swiper.swiper-initialized {
  opacity: 1;
}

.catalog-select__title {
  font-weight: 600;
}

.checkout-info {
  position: absolute;
  right: 15px;
  top: 0;
  padding: 25px 20px;
  width: 37%;
  color: var(--main-white);
  background: var(--text);
  /* stylelint-disable-next-line no-duplicate-selectors */
}
@media (max-width: 1560px) {
  .checkout-info {
    width: 42%;
  }
}
@media (max-width: 1024px) {
  .checkout-info {
    position: static;
    margin: 50px 0 0;
    padding: 30px 20px;
    width: 100%;
  }
}
.checkout-info__total-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 40px 0 0;
  gap: 20px;
}
.checkout-info__total-wrapper .cart-summary__discount-wrapper {
  margin: 0;
}
.checkout-info .cart-summary__discount-totals, .checkout-info__subtotal, .checkout-info__delivery, .checkout-info__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.checkout-info .cart-summary__discount-totals h2, .checkout-info__subtotal h2, .checkout-info__delivery h2, .checkout-info__title h2 {
  margin: 0;
  font-weight: 400;
  font-size: 30px;
  line-height: 2em;
}
@media (max-width: 1024px) {
  .checkout-info .cart-summary__discount-totals h2, .checkout-info__subtotal h2, .checkout-info__delivery h2, .checkout-info__title h2 {
    line-height: 1.2em;
  }
}
@media (max-width: 640px) {
  .checkout-info .cart-summary__discount-totals h2, .checkout-info__subtotal h2, .checkout-info__delivery h2, .checkout-info__title h2 {
    font-size: 20px;
  }
}
.checkout-info .cart-summary__discount-totals-total, .checkout-info__subtotal-total, .checkout-info__delivery-total, .checkout-info__title-total {
  font-size: 30px;
  line-height: 2em;
}
@media (max-width: 1024px) {
  .checkout-info .cart-summary__discount-totals-total, .checkout-info__subtotal-total, .checkout-info__delivery-total, .checkout-info__title-total {
    line-height: 1.2em;
  }
}
@media (max-width: 640px) {
  .checkout-info .cart-summary__discount-totals-total, .checkout-info__subtotal-total, .checkout-info__delivery-total, .checkout-info__title-total {
    font-size: 20px;
  }
}
.checkout-info__promocode-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 20px 0 0;
  gap: 15px;
}
@media (max-width: 1024px) {
  .checkout-info__promocode-wrapper {
    margin: 50px 0 0;
  }
}
.checkout-info__promocode-wrapper label {
  font-size: clamp(16px, 1.0416666667vw, 20px);
}
@media (max-width: 640px) {
  .checkout-info__promocode-wrapper label {
    font-size: 14px;
  }
}
.checkout-info__promocode-wrapper input {
  all: unset;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  border-bottom: 1px solid rgba(253, 251, 244, 0.2);
  font-size: clamp(16px, 1.0416666667vw, 20px);
}
@media (max-width: 640px) {
  .checkout-info__promocode-wrapper input {
    font-size: 14px;
  }
}
.checkout-info__items-wrapper {
  margin: 50px 0 0;
}
@media (max-width: 1024px) {
  .checkout-info__items-wrapper {
    margin: 40px 0 0;
  }
}
.checkout-info__items-title {
  font-size: clamp(16px, 1.0416666667vw, 20px);
}
.checkout-info__items-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden scroll;
  margin: 20px 0 0;
  padding: 0 6px 0 0;
  max-height: 650px;
  gap: 20px;
  scrollbar-color: var(--main-white) transparent;
  scrollbar-width: thin;
  /* Scrollbar styles */
}
@media (max-width: 1024px) {
  .checkout-info__items-list {
    margin: 15px 0 0;
  }
}
@media (max-width: 640px) {
  .checkout-info__items-list {
    margin: 10px 0 0;
  }
}
.checkout-info__items-list::-webkit-scrollbar {
  width: 4px;
}
.checkout-info__items-list::-webkit-scrollbar-track {
  background: transparent;
}
.checkout-info__items-list::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background: var(--main-white);
}
.checkout-info__items-list::-webkit-scrollbar-thumb:hover {
  background: rgba(var(--main-white), 0.8);
}
.checkout-info__total-wrapper {
  margin: 40px 0 0;
}
.checkout-info__package {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 40px 0 0;
  font-size: clamp(16px, 1.0416666667vw, 20px);
}
.checkout-info__package-checkbox-wrapper {
  margin: 0;
}
.checkout-info__package-checkbox-wrapper input {
  display: none;
}
.checkout-info__package-checkbox-wrapper span {
  display: block;
  border: 1px solid var(--main-white);
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.checkout-info__package-checkbox-wrapper input[type=checkbox] {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}
.checkout-info__package-checkbox-wrapper input[type=checkbox]:checked + .radio-emulator::before {
  opacity: 1;
}
.checkout-info__package-checkbox-wrapper input[type=checkbox]:checked ~ .checkout-info__package-checkbox-wrapper .checkout-info__package-title {
  font-weight: 700;
  color: var(--black);
}
.checkout-info__package-checkbox-wrapper .radio-emulator {
  position: relative;
  display: inline-block;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
  cursor: pointer;
  pointer-events: none;
}
.checkout-info__package-checkbox-wrapper .radio-emulator::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  background-color: var(--main-white);
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
@media (max-width: 1024px) {
  .checkout-info__package-checkbox-wrapper .radio-emulator::before {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 640px) {
  .checkout-info__package-checkbox-wrapper .radio-emulator::before {
    width: 13px;
    height: 13px;
  }
}
.checkout-info__package-title {
  margin: 0 0 0 10px;
  font-size: clamp(16px, 1.0416666667vw, 20px);
}
.checkout-info__package-tooltip {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 0 0 5px;
  border-radius: 50%;
  width: 21px;
  height: 21px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2em;
  color: var(--text);
  background-color: var(--main-white);
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.checkout-info__submit-button {
  all: unset;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 20px 0 0;
  padding: 14px 0;
  width: 100%;
  font-weight: 600;
  font-size: clamp(14px, 0.8333333333vw, 16px);
  text-transform: uppercase;
  color: var(--text);
  background-color: var(--main-white);
  -webkit-transition: opacity 0.2s ease 0s;
  transition: opacity 0.2s ease 0s;
  will-change: opacity;
  cursor: pointer;
}
.checkout-info__submit-button:hover {
  opacity: 0.8;
}
.checkout-info__submit-disclaimer {
  font-weight: 400;
  font-size: clamp(14px, 0.8333333333vw, 16px);
  line-height: 1.2em;
  opacity: 0.5;
}

.checkout-info__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  gap: 20px;
}
.checkout-info__item-img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border: 1px solid var(--black);
  width: 187px;
  height: 234px;
}
@media (max-width: 1024px) {
  .checkout-info__item-img {
    width: 127px;
    height: 159px;
  }
}
@media (max-width: 640px) {
  .checkout-info__item-img {
    width: 111px;
    height: 140px;
  }
}
.checkout-info__item-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.checkout-info__item-data {
  position: relative;
  display: -ms-grid;
  display: grid;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-grid-columns: 1fr 0.4fr;
  grid-template-columns: 1fr 0.4fr;
  -ms-grid-rows: -webkit-min-content -webkit-min-content -webkit-min-content;
  -ms-grid-rows: min-content min-content min-content;
  grid-template-rows: -webkit-min-content -webkit-min-content -webkit-min-content;
  grid-template-rows: min-content min-content min-content;
}
@media (max-width: 640px) {
  .checkout-info__item-data {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
.checkout-info__item-title {
  font-size: clamp(16px, 1.0416666667vw, 20px);
}
@media (max-width: 640px) {
  .checkout-info__item-title {
    font-size: 14px;
  }
}
.checkout-info__item-price {
  -ms-grid-row-align: flex-start;
  -ms-grid-column-align: flex-end;
  place-self: flex-start flex-end;
  font-size: clamp(16px, 1.0416666667vw, 20px);
}
@media (max-width: 640px) {
  .checkout-info__item-price {
    position: absolute;
    left: 0;
    bottom: 0;
    font-size: 14px;
  }
}
.checkout-info__item-collection {
  margin: 20px 0 0;
  font-size: clamp(14px, 0.8333333333vw, 16px);
  opacity: 0.5;
}
@media (max-width: 640px) {
  .checkout-info__item-collection {
    margin: 13px 0 0;
  }
}
.checkout-info__item-quantity {
  justify-self: flex-end;
  font-size: clamp(14px, 0.8333333333vw, 16px);
  opacity: 0.5;
}
@media (max-width: 640px) {
  .checkout-info__item-quantity {
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 14px;
  }
}
.checkout-info__item-size {
  font-size: clamp(14px, 0.8333333333vw, 16px);
  opacity: 0.5;
}

.checkout-info__package-tooltip:hover .package-tooltip,
.checkout-info__package-tooltip:active .package-tooltip {
  opacity: 1;
}

.package-tooltip {
  position: absolute;
  left: 0;
  top: -15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border: 1px solid var(--main-white);
  padding: 15px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  min-width: 660px;
  min-height: 190px;
  background-color: var(--text);
  opacity: 0;
  -webkit-transform: translate(-100%, -100%);
  -ms-transform: translate(-100%, -100%);
  transform: translate(-100%, -100%);
  -webkit-transition: opacity 0.2s ease 0s;
  transition: opacity 0.2s ease 0s;
  will-change: opacity;
  cursor: auto;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  gap: 20px;
}
@media (max-width: 1024px) {
  .package-tooltip {
    min-width: 560px;
    -webkit-transform: translate(-38%, -100%);
    -ms-transform: translate(-38%, -100%);
    transform: translate(-38%, -100%);
  }
}
@media (max-width: 768px) {
  .package-tooltip {
    min-width: 80vw;
  }
}
@media (max-width: 680px) {
  .package-tooltip {
    padding: 12px;
    -webkit-transform: translate(-45%, -100%);
    -ms-transform: translate(-45%, -100%);
    transform: translate(-45%, -100%);
  }
}
@media (max-width: 640px) {
  .package-tooltip {
    min-width: 320px;
    min-height: 150px;
  }
}
@media (max-width: 530px) {
  .package-tooltip {
    -webkit-transform: translate(-90%, -100%);
    -ms-transform: translate(-90%, -100%);
    transform: translate(-90%, -100%);
  }
}
.package-tooltip.active {
  opacity: 1;
}
.package-tooltip__descr-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.package-tooltip__descr-wrapper div {
  font-weight: 400;
  font-size: clamp(12px, 0.8333333333vw, 16px);
  line-height: 1.2em;
  color: var(--main-white);
}
@media (max-width: 640px) {
  .package-tooltip__descr-wrapper div {
    font-size: 10px;
  }
}
.package-tooltip__image {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .package-tooltip__image {
    position: absolute;
    right: 12px;
    bottom: 0;
    width: 100px;
    height: 90px;
  }
}

.fee {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

/* stylelint-disable color-named */
.customer-info {
  margin: 205px 0 250px;
}
@media (max-width: 1024px) {
  .customer-info {
    margin: 125px 0 205px;
  }
}
@media (max-width: 640px) {
  .customer-info {
    margin: 107px 0 200px;
  }
}
.customer-info .container {
  position: relative;
}
.customer-info__title {
  margin: 0;
  padding: 0;
  max-width: 50%;
  font-weight: 400;
  font-size: clamp(30px, 3.125vw, 60px);
  line-height: 1em;
}

.checkout-form {
  /* stylelint-disable-next-line declaration-no-important */
  position: static !important;
  margin: 0;
  max-width: 50%;
}
@media (max-width: 1024px) {
  .checkout-form {
    max-width: 100%;
  }
}
.checkout-form .woocommerce-invalid input.input-text {
  border-color: red;
}
.checkout-form .checkout-inline-error-message {
  display: block;
  margin-top: 8px;
  font-size: 0.75em;
  color: red;
}
.checkout-form__section {
  margin: 60px 0 0;
}
@media (max-width: 1024px) {
  .checkout-form__section {
    margin: 40px 0 0;
  }
}
@media (max-width: 640px) {
  .checkout-form__section {
    margin: 50px 0 0;
  }
}
.checkout-form__section-title {
  margin: 0;
  font-weight: 600;
  font-size: clamp(16px, 1.0416666667vw, 20px);
  line-height: 1em;
  text-transform: uppercase;
}
@media (max-width: 640px) {
  .checkout-form__section-title {
    font-size: 14px;
  }
}
.checkout-form__section-subtitle {
  margin: 20px 0 0;
  font-size: clamp(14px, 0.8333333333vw, 16px);
  opacity: 0.3;
}
@media (max-width: 640px) {
  .checkout-form__section-subtitle {
    font-size: 12px;
  }
}
.checkout-form__section-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  margin: 30px 0 0;
  gap: 30px 20px;
}
@media (max-width: 640px) {
  .checkout-form__section-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
}
.checkout-form__input-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0;
}
.checkout-form__input-group--long {
  -ms-grid-column-span: 2;
  grid-column: span 2;
}
.checkout-form__input-group label {
  font-size: clamp(14px, 0.8333333333vw, 16px);
  line-height: 1.2em;
  opacity: 0.3;
}
@media (max-width: 640px) {
  .checkout-form__input-group label {
    font-size: 12px;
  }
}
.checkout-form__input-group textarea,
.checkout-form__input-group input {
  all: unset;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 10px 0 0;
  border-bottom: 1px solid var(--black);
  padding: 10px 0;
  width: 100%;
  font-size: clamp(16px, 1.0416666667vw, 20px);
}
@media (max-width: 1024px) {
  .checkout-form__input-group textarea,
  .checkout-form__input-group input {
    margin: 0;
  }
}
@media (max-width: 640px) {
  .checkout-form__input-group textarea,
  .checkout-form__input-group input {
    font-size: 14px;
  }
}

.payment-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 20px 0 0;
  border-bottom: 1px solid var(--black);
  padding: 0 0 20px;
  max-width: 100%;
  gap: 20px;
}
@media (max-width: 1024px) {
  .payment-group {
    margin: 10px 0 0;
    padding: 0 0 10px;
  }
}
@media (max-width: 640px) {
  .payment-group {
    gap: 10px;
  }
}
.payment-group__title-wrapper {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  max-width: 90%;
}
.payment-group__title {
  font-weight: 500;
  font-size: clamp(16px, 1.0416666667vw, 20px);
  line-height: 1.2em;
}
@media (max-width: 640px) {
  .payment-group__title {
    font-size: 14px;
  }
}
.payment-group__subtitle {
  margin: 3px 0 0;
  font-size: clamp(12px, 0.8333333333vw, 16px);
  line-height: 1.2em;
  opacity: 0.3;
}
.payment-group__logo {
  margin: 0 0 0 auto;
}
.payment-group__checkbox-wrapper {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.payment-group__checkbox-wrapper input {
  display: none;
}
.payment-group__checkbox-wrapper span {
  position: relative;
  display: inline-block;
  border: 1px solid var(--black);
  width: 37px;
  height: 37px;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .payment-group__checkbox-wrapper span {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 640px) {
  .payment-group__checkbox-wrapper span {
    width: 25px;
    height: 25px;
  }
}
.payment-group__checkbox-wrapper span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 23px;
  height: 23px;
  background-color: var(--black);
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.2s ease 0s;
  transition: opacity 0.2s ease 0s;
  will-change: opacity;
}
@media (max-width: 1024px) {
  .payment-group__checkbox-wrapper span::before {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 640px) {
  .payment-group__checkbox-wrapper span::before {
    width: 13px;
    height: 13px;
  }
}
.payment-group__checkbox-wrapper span[data-custom-radio-emulator=true]::before {
  opacity: 1;
}
.payment-group__checkbox-wrapper input[type=radio] {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}
.payment-group__checkbox-wrapper input[type=radio]:checked + .radio-emulator::before {
  opacity: 1;
}
.payment-group__checkbox-wrapper input[type=radio]:checked ~ .payment-group__title-wrapper .payment-group__title {
  font-weight: 700;
  color: var(--black);
}
.payment-group__checkbox-wrapper .radio-emulator {
  position: relative;
  display: inline-block;
  border: 1px solid var(--black);
  width: 37px;
  height: 37px;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
  cursor: pointer;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .payment-group__checkbox-wrapper .radio-emulator {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 640px) {
  .payment-group__checkbox-wrapper .radio-emulator {
    width: 25px;
    height: 25px;
  }
}
.payment-group__checkbox-wrapper .radio-emulator::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 23px;
  height: 23px;
  background-color: var(--black);
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
@media (max-width: 1024px) {
  .payment-group__checkbox-wrapper .radio-emulator::before {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 640px) {
  .payment-group__checkbox-wrapper .radio-emulator::before {
    width: 13px;
    height: 13px;
  }
}
.payment-group:hover .radio-emulator {
  border-color: #666;
}

.ballet-intro {
  overflow: hidden;
  max-width: 100%;
}
.ballet-intro__title {
  margin: 155px 0 0;
  font-family: var(--secondary-font);
  font-size: 12.5vw;
  letter-spacing: -0.04em;
  white-space: nowrap;
  text-align: center;
}
@media (min-width: 1921px) {
  .ballet-intro__title {
    font-size: 241px;
  }
}
@media (max-width: 1025px) {
  .ballet-intro__title {
    margin: 10.58vw 0 0;
    font-size: 12.74vw;
  }
}
@media (max-width: 640px) {
  .ballet-intro__title {
    margin: 29.33vw 0 0;
    font-size: 24vw;
    line-height: 0.67em;
    white-space: wrap;
  }
  .ballet-intro__title span {
    text-shadow: -1px -1px 0 var(--main-white), 1px -1px 0 var(--main-white), -1px 1px 0 var(--main-white), 1px 1px 0 var(--main-white);
  }
}
.ballet-intro__inner {
  position: relative;
  margin: 48px 0 0;
  min-height: 30.05vw;
}
@media (min-width: 1921px) {
  .ballet-intro__inner {
    min-height: 577px;
  }
}
@media (max-width: 991px) {
  .ballet-intro__inner {
    min-height: 74.48vw;
  }
}
@media (max-width: 640px) {
  .ballet-intro__inner {
    min-height: 194.67vw;
  }
}
.ballet-intro__ratio, .ballet-intro__meccas, .ballet-intro__art {
  border: 2px solid var(--black);
}
@media (max-width: 991px) {
  .ballet-intro__ratio, .ballet-intro__meccas, .ballet-intro__art {
    border-width: 1px;
  }
}
.ballet-intro__ratio {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  width: 23.39vw;
  height: 29.8vw;
}
@media (min-width: 1921px) {
  .ballet-intro__ratio {
    right: 0;
    top: 0;
    width: 449px;
    height: 575px;
  }
}
@media (max-width: 991px) {
  .ballet-intro__ratio {
    left: unset;
    right: 0;
    top: unset;
    bottom: 6.64vw;
    width: 46.09vw;
    height: 30.73vw;
  }
}
@media (max-width: 640px) {
  .ballet-intro__ratio {
    left: 0;
    right: unset;
    top: 23.47vw;
    bottom: unset;
    width: 92vw;
    height: 62.13vw;
  }
}
.ballet-intro__ratio img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}
.ballet-intro__meccas {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  width: 33.96vw;
  height: 27.03vw;
}
@media (min-width: 1921px) {
  .ballet-intro__meccas {
    width: 652px;
    height: 519px;
  }
}
@media (max-width: 991px) {
  .ballet-intro__meccas {
    left: 48.96vw;
    top: unset;
    bottom: 0;
    width: 13.67vw;
    height: 17.45vw;
    -webkit-transform: translateX(-2px);
    -ms-transform: translateX(-2px);
    transform: translateX(-2px);
  }
}
@media (max-width: 640px) {
  .ballet-intro__meccas {
    left: 0;
    top: 65.87vw;
    bottom: unset;
    width: 21.07vw;
    height: 30.67vw;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.ballet-intro__meccas img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}
.ballet-intro__art {
  position: absolute;
  left: 32.66vw;
  bottom: 0;
  z-index: 4;
  width: 12.14vw;
  height: 17.5vw;
}
@media (min-width: 1921px) {
  .ballet-intro__art {
    left: 627px;
    bottom: 0;
    width: 233px;
    height: 336px;
  }
}
@media (max-width: 991px) {
  .ballet-intro__art {
    left: 0;
    top: 0;
    bottom: unset;
    width: 46.09vw;
    height: 74.48vw;
  }
}
@media (max-width: 640px) {
  .ballet-intro__art {
    left: 0;
    top: unset;
    bottom: 0;
    width: 39.4vw;
    height: 55.2vw;
  }
}
.ballet-intro__art img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}
.ballet-intro__text {
  position: absolute;
  right: 24.42vw;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 23.44vw;
  font-size: 1.04vw;
  line-height: 1.2em;
  letter-spacing: -0.02em;
  color: var(--black);
  gap: 1.1em;
}
@media (min-width: 1921px) {
  .ballet-intro__text {
    right: 469px;
    bottom: 0;
    max-width: 450px;
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .ballet-intro__text {
    left: unset;
    right: 0;
    top: 0;
    bottom: unset;
    max-width: 46.09vw;
    font-size: 2.08vw;
  }
}
@media (max-width: 640px) {
  .ballet-intro__text {
    left: 0;
    right: unset;
    top: 0;
    max-width: 92vw;
    font-size: 3.73vw;
  }
}
.ballet-intro__text p {
  margin: 0;
}
@media (max-width: 640px) {
  .ballet-intro__text p:nth-child(2) {
    margin: calc(71.2vw - 1.1em) 0 0;
  }
  .ballet-intro__text p:nth-child(2), .ballet-intro__text p:nth-child(3) {
    padding: 0 0 0 26.4vw;
  }
}
.ballet-intro__linked {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 30vw;
  font-weight: 600;
  font-size: 1.04vw;
  line-height: 1.2em;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  gap: 0;
}
.ballet-intro__linked a {
  display: inline-block;
  overflow: hidden;
  max-width: 100%; /* или конкретная ширина, например 200px */
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media (min-width: 1921px) {
  .ballet-intro__linked {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .ballet-intro__linked {
    left: unset;
    right: 0;
    font-size: 2.08vw;
  }
}
@media (max-width: 640px) {
  .ballet-intro__linked {
    max-width: 50vw;
    font-size: 3.4vw;
  }
}

.base-intro {
  margin: 205px 0 0;
}
@media (max-width: 1024px) {
  .base-intro {
    margin: 150px 0 0;
  }
}
@media (max-width: 1024px) {
  .base-intro {
    margin: 100px 0 0;
  }
}
.base-intro__title {
  margin: 0;
  font-family: var(--secondary-font);
  font-weight: 300;
  font-size: clamp(98px, 13.0208333333vw, 240px);
  line-height: 1em;
  letter-spacing: -0.04em;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
}
@media (max-width: 768px) {
  .base-intro__title {
    white-space: unset;
  }
}
@media (max-width: 640px) {
  .base-intro__title {
    margin: 0;
    font-size: 90px;
    line-height: 0.75em;
  }
  .base-intro__title span {
    text-shadow: -1px -1px 0 var(--main-white), 1px -1px 0 var(--main-white), -1px 1px 0 var(--main-white), 1px 1px 0 var(--main-white);
  }
}
.base-intro__grid {
  display: -ms-grid;
  display: grid;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-grid-columns: 36.53% 24% 24% 11.56%;
  grid-template-columns: 36.53% 24% 24% 11.56%;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  margin: 50px 0 0;
}
@media (max-width: 1440px) {
  .base-intro__grid {
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
    -ms-grid-columns: 36% 24% 24% 11.56%;
    grid-template-columns: 36% 24% 24% 11.56%;
  }
}
@media (max-width: 1024px) {
  .base-intro__grid {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: 250px 166px 155px;
    grid-template-rows: 250px 166px 155px;
    gap: 20px;
  }
}
@media (max-width: 640px) {
  .base-intro__grid {
    -ms-grid-rows: -webkit-min-content 345px 166px;
    -ms-grid-rows: min-content 345px 166px;
    grid-template-rows: -webkit-min-content 345px 166px;
    grid-template-rows: min-content 345px 166px;
    margin: 40px 0 0;
  }
}
@media (min-width: 1025px) {
  .base-intro__grid > div {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
  }
}
.base-intro__lay-pic {
  -ms-grid-row-align: end;
  -ms-grid-column-align: center;
  place-self: end center;
  border: 2px solid var(--black);
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media (max-width: 1024px) {
  .base-intro__lay-pic {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
    border: 1px solid var(--black);
    height: 100%;
    max-height: 170px;
  }
}
@media (max-width: 640px) {
  .base-intro__lay-pic {
    -ms-grid-row-align: end;
    align-self: end;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3/4;
    width: 100%;
    height: 166px;
  }
}
.base-intro__lay-pic img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}
@media (max-width: 1024px) {
  .base-intro__lay-pic img {
    height: 100%;
  }
}
.base-intro__matrix-pic {
  -ms-grid-row-align: end;
  -ms-grid-column-align: center;
  place-self: end center;
  border: 2px solid var(--black);
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media (max-width: 1024px) {
  .base-intro__matrix-pic {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    grid-row: 1/4;
    border: 1px solid var(--black);
    width: 100%;
    height: 100%;
    max-height: 625px;
  }
}
@media (max-width: 640px) {
  .base-intro__matrix-pic {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
  }
}
.base-intro__matrix-pic img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 1024px) {
  .base-intro__matrix-pic img {
    height: 100%;
  }
}
.base-intro__squat-pic {
  border: 2px solid var(--black);
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media (max-width: 1024px) {
  .base-intro__squat-pic {
    -ms-grid-row-align: end;
    -ms-grid-column-align: end;
    place-self: end end;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3/4;
    border: 1px solid var(--black);
    width: 105px;
    height: 155px;
  }
}
@media (max-width: 640px) {
  .base-intro__squat-pic {
    -ms-grid-row-align: self-start;
    align-self: self-start;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
    width: 80px;
    height: 111px;
  }
}
.base-intro__squat-pic img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 1024px) {
  .base-intro__squat-pic img {
    height: 100%;
  }
}
.base-intro__descr {
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-column: 3/4;
  font-size: clamp(14px, 1.0416666667vw, 20px);
  line-height: 1.2em;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.base-intro__descr p {
  margin: 0;
}
.base-intro__descr p:not(:first-child) {
  margin: 1.2em 0 0;
}
@media (max-width: 1024px) {
  .base-intro__descr {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
    font-size: 16px;
  }
}
@media (max-width: 640px) {
  .base-intro__descr {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
    max-width: calc(100% - 90px);
    font-size: 14px;
  }
}
.base-intro__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-grid-row-align: end;
  -ms-grid-column-align: start;
  place-self: end start;
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-column: 3/4;
  font-weight: 600;
  font-size: clamp(14px, 1.0416666667vw, 20px);
  line-height: 1.2em;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .base-intro__links {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3/4;
    max-width: calc(100% - 120px);
    font-size: 16px;
  }
}
@media (max-width: 640px) {
  .base-intro__links {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3/4;
    max-width: 100%;
    font-size: 14px;
  }
}

.chess-intro {
  margin: 205px 0 0;
}
@media (max-width: 1024px) {
  .chess-intro {
    margin: 150px 0 0;
  }
}
@media (max-width: 1024px) {
  .chess-intro {
    margin: 100px 0 0;
  }
}
.chess-intro__title {
  margin: 0;
  font-family: var(--secondary-font);
  font-weight: 300;
  font-size: clamp(98px, 13.0208333333vw, 240px);
  line-height: 1em;
  letter-spacing: -0.04em;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
}
@media (max-width: 768px) {
  .chess-intro__title {
    white-space: unset;
  }
}
@media (max-width: 640px) {
  .chess-intro__title {
    margin: 0;
    font-size: 90px;
    line-height: 0.75em;
  }
  .chess-intro__title span {
    text-shadow: -1px -1px 0 var(--main-white), 1px -1px 0 var(--main-white), -1px 1px 0 var(--main-white), 1px 1px 0 var(--main-white);
  }
}
.chess-intro__grid {
  position: relative;
  margin: 50px 0 0;
  height: 1000px;
}
@media (max-width: 1560px) {
  .chess-intro__grid {
    height: 850px;
  }
}
@media (max-width: 1025px) {
  .chess-intro__grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: -webkit-min-content -webkit-min-content -webkit-min-content;
    -ms-grid-rows: min-content min-content min-content;
    grid-template-rows: -webkit-min-content -webkit-min-content -webkit-min-content;
    grid-template-rows: min-content min-content min-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    gap: 20px;
  }
}
@media (max-width: 640px) {
  .chess-intro__grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
  }
}
.chess-intro__skirt-pic {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  border: 2px solid var(--black);
  width: 36.83%;
  height: 1000px;
}
@media (max-width: 1560px) {
  .chess-intro__skirt-pic {
    height: 850px;
  }
}
@media (max-width: 1024px) {
  .chess-intro__skirt-pic {
    position: static;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/3;
    border: 1px solid var(--black);
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 640px) {
  .chess-intro__skirt-pic {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: 50%;
    height: auto;
    min-height: 253px;
    aspect-ratio: 167/253;
  }
}
.chess-intro__skirt-pic img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}
.chess-intro__sofa-pic {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  border: 2px solid var(--black);
  width: 36.56%;
  height: 457px;
}
@media (max-width: 1560px) {
  .chess-intro__sofa-pic {
    height: 340px;
  }
}
@media (max-width: 1024px) {
  .chess-intro__sofa-pic {
    position: static;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    -ms-grid-row: 2;
    -ms-grid-row-span: 2;
    grid-row: 2/4;
    border: 1px solid var(--black);
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 640px) {
  .chess-intro__sofa-pic {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
    width: 100%;
    height: auto;
  }
}
.chess-intro__sofa-pic img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}
.chess-intro__descr, .chess-intro__dog-pic {
  display: none;
}
@media (max-width: 1024px) {
  .chess-intro__descr, .chess-intro__dog-pic {
    display: block;
  }
}
@media (max-width: 1024px) {
  .chess-intro__descr {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
  }
  .chess-intro__descr p {
    font-size: 16px;
    letter-spacing: -0.02em;
  }
  .chess-intro__descr p:not(:first-child) {
    margin: 1.2em 0 0;
  }
}
@media (max-width: 640px) {
  .chess-intro__descr {
    display: contents;
  }
  .chess-intro__descr p {
    margin: 0;
    font-size: 14px;
  }
  .chess-intro__descr p:not(:first-child) {
    margin: 0;
  }
  .chess-intro__descr p:first-child {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    max-width: 92.17%;
  }
  .chess-intro__descr p:nth-child(2) {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .chess-intro__descr p:nth-child(3) {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
}
.chess-intro__dog-pic {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 3;
  border: 1px solid var(--black);
  width: 105px;
  height: auto;
  -webkit-transform: translateX(-110%);
  -ms-transform: translateX(-110%);
  transform: translateX(-110%);
}
.chess-intro__dog-pic img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 640px) {
  .chess-intro__dog-pic {
    left: unset;
    right: 0;
    top: 32.2%;
    bottom: unset;
    width: 80px;
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
  }
}
.chess-intro__float-wrapper {
  position: absolute;
  left: 33.33%;
  bottom: 0;
  z-index: 3;
  padding: 0 0 0 85px;
  max-width: 41.33%;
}
@media (max-width: 1560px) {
  .chess-intro__float-wrapper {
    max-width: 51%;
  }
}
@media (max-width: 1024px) {
  .chess-intro__float-wrapper {
    display: none;
  }
}
.chess-intro__float-wrapper p {
  font-size: clamp(16px, 1.0416666667vw, 20px);
  text-wrap: balance;
}
.chess-intro__float-wrapper p:not(:first-child) {
  margin: 1.2em 0 0;
}
.chess-intro__float-wrapper-faker {
  display: inline;
  float: left;
  margin: 20px 20px 0 0;
  width: 209px;
  height: 427px;
}
.chess-intro__float-wrapper img {
  position: absolute;
  left: 0;
  bottom: 0;
  border: 2px solid var(--text);
}
@media (max-width: 1024px) {
  .chess-intro__float-wrapper img {
    border: 1px solid var(--black);
  }
}
.chess-intro__links {
  position: absolute;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 36.56%;
  font-weight: 600;
  font-size: clamp(16px, 1.0416666667vw, 20px);
  line-height: 1.2em;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .chess-intro__links {
    position: static;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3/4;
    width: 100%;
    height: 100%;
    max-width: calc(100% - 110px);
  }
}
@media (max-width: 640px) {
  .chess-intro__links {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
    font-size: 14px;
  }
}

.collection-form {
  margin: 255px 0 0;
}
@media (max-width: 1024px) {
  .collection-form {
    margin: 200px 0 0;
  }
}
@media (max-width: 640px) {
  .collection-form {
    margin: 150px 0 0;
  }
}
.collection-form .container {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-grid-columns: 61.22% 13.56% 24.17%;
  grid-template-columns: 61.22% 13.56% 24.17%;
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
}
@media (max-width: 1024px) {
  .collection-form .container {
    -ms-grid-columns: 49% 50%;
    grid-template-columns: 49% 50%;
    -ms-grid-rows: 150px 200px;
    grid-template-rows: 150px 200px;
    row-gap: 50px;
  }
}
@media (max-width: 640px) {
  .collection-form .container {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: 150px -webkit-min-content;
    -ms-grid-rows: 150px min-content;
    grid-template-rows: 150px -webkit-min-content;
    grid-template-rows: 150px min-content;
  }
}
.collection-form__title {
  position: relative;
  z-index: 1;
  -ms-flex-item-align: start;
  align-self: flex-start;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media (max-width: 1024px) {
  .collection-form__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
  }
}
@media (max-width: 640px) {
  .collection-form__title {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 1;
    grid-row: 1;
    height: 100%;
  }
}
.collection-form__title h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  font-family: var(--secondary-font);
  font-weight: 300;
  font-size: clamp(130px, 9.375vw, 180px);
  line-height: 1em;
  letter-spacing: -0.03em;
}
@media (max-width: 1024px) {
  .collection-form__title h2 {
    font-size: 16.93vw;
    white-space: nowrap;
  }
}
@media (max-width: 650px) {
  .collection-form__title h2 {
    font-size: 100px;
    /* stylelint-disable-next-line declaration-no-important */
    white-space: unset !important;
  }
}
@media (max-width: 640px) {
  .collection-form__title h2 {
    left: 10px;
    display: block;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 1;
    grid-row: 1;
    height: 100%;
    font-size: 68px;
    line-height: 0.75em;
  }
}
.collection-form__title h2::after {
  content: "style";
  position: absolute;
  right: 24%;
  bottom: 0;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 2px solid var(--text);
  border-radius: 430px/145px;
  width: clamp(174px, 10.78125vw, 207px);
  height: clamp(57px, 2.96875vw, 70px);
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(16px, 1.0416666667vw, 20px);
  letter-spacing: 0;
  text-transform: uppercase;
  background-color: var(--main-white);
  -webkit-transform: translate(0, 40%);
  -ms-transform: translate(0, 40%);
  transform: translate(0, 40%);
}
@media (max-width: 1600px) {
  .collection-form__title h2::after {
    border-radius: 429px/140px;
  }
}
@media (max-width: 1024px) {
  .collection-form__title h2::after {
    right: 13%;
    border: 1px solid var(--text);
  }
}
@media (max-width: 640px) {
  .collection-form__title h2::after {
    right: 10%;
    width: 167px;
    height: 49px;
    font-size: 14px;
    -webkit-transform: translate(0, 0%);
    -ms-transform: translate(0, 0%);
    transform: translate(0, 0%);
  }
}
.collection-form__title h2 span {
  font-style: italic;
}
@media (max-width: 640px) {
  .collection-form__title h2 span {
    position: relative;
    left: -10px;
    text-shadow: -2px -2px 0 var(--main-white), 2px -2px 0 var(--main-white), -2px 2px 0 var(--main-white), 2px 2px 0 var(--main-white);
  }
}
.collection-form__image {
  -ms-grid-row-align: start;
  -ms-grid-column-align: start;
  place-self: start;
  height: 100%;
}
.collection-form__image img {
  display: block;
  height: 100%;
}
@media (max-width: 1024px) {
  .collection-form__image {
    -ms-grid-row-align: center;
    -ms-grid-column-align: center;
    place-self: center center;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    -ms-grid-row: 2;
    grid-row: 2;
    width: 156px;
    height: 196px;
  }
}
@media (max-width: 640px) {
  .collection-form__image {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    -ms-grid-row: 1;
    grid-row: 1;
    width: 116px;
    height: 146px;
  }
}
.collection-form__form {
  margin: 0;
}
.collection-form__form .footer__email-title {
  margin: 0 0 100px;
  font-weight: 600;
}
@media (max-width: 1024px) {
  .collection-form__form .footer__email-title {
    margin: 0 0 15px;
  }
}
@media (max-width: 640px) {
  .collection-form__form .footer__email-title {
    margin: 0 0 5px;
    font-weight: 700;
  }
  .collection-form__form .footer__email-title span {
    display: none;
  }
}
@media (max-width: 640px) {
  .collection-form__form .footer__email-title .footer__input-group {
    margin: 0 0 20px;
  }
}
.collection-form__form button {
  font-weight: 600;
}
@media (max-width: 1024px) {
  .collection-form__form {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 2;
    grid-row: 2;
  }
}
@media (max-width: 640px) {
  .collection-form__form {
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    grid-column: 1/4;
    -ms-grid-row: 2;
    grid-row: 2;
  }
}

@media (min-width: 1026px) and (max-width: 1919px) {
  .collection-form {
    margin: 13.28vw 0 0;
  }
  .collection-form .container {
    -ms-grid-columns: 61.22% 13.56% 24.17%;
    grid-template-columns: 61.22% 13.56% 24.17%;
  }
  .collection-form__title h2 {
    font-size: 9.38vw;
    letter-spacing: -0.03em;
  }
  .collection-form__title h2::after {
    right: 24%;
    border-radius: 22.4vw/7.55vw;
    width: 10.78vw;
    height: 3.64vw;
    font-size: 1.04vw;
  }
  .collection-form__image {
    height: 100%;
  }
  .collection-form__image img {
    height: 100%;
  }
  .collection-form__form .footer__email-title {
    margin: 0 0 5.21vw;
  }
}
/*
  медиазапрос нa 1600px будет уменьшать все картинки и отступы для ноутбуков
  медиазапрос нa 1024px выдает планшетную версию
  медиазапрос нa 640px выдает мобильную версию
*/
.collection-nostalgie-intro {
  overflow: visible;
  margin: 200px 0 0;
}
@media (max-width: 1024px) {
  .collection-nostalgie-intro {
    margin: 90px 0 0;
  }
}
.collection-nostalgie-intro__inner-container {
  position: relative;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.collection-nostalgie-intro__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
}
@media (max-width: 1024px) {
  .collection-nostalgie-intro__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
  }
}
.collection-nostalgie-intro__title {
  overflow: visible;
  margin: 0 0 70px;
  font-family: var(--secondary-font);
  font-weight: 300;
  font-size: clamp(98px, 13.0208333333vw, 240px);
  line-height: 1em;
  letter-spacing: -0.04em;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
}
@media (max-width: 768px) {
  .collection-nostalgie-intro__title {
    font-size: 98px;
    white-space: nowrap;
  }
}
@media (max-width: 767px) {
  .collection-nostalgie-intro__title {
    font-size: 90px;
  }
}
@media (max-width: 690px) {
  .collection-nostalgie-intro__title {
    white-space: unset;
  }
}
@media (max-width: 640px) {
  .collection-nostalgie-intro__title {
    margin: 0 0 250px;
    font-size: 90px;
    white-space: unset;
  }
}
.collection-nostalgie-intro__absolute-photo {
  position: absolute;
  right: 0;
  top: 0.76em;
  border: 2px solid var(--black);
  font-size: clamp(98px, 13.0208333333vw, 240px);
  line-height: 1em;
}
@media (max-width: 1600px) {
  .collection-nostalgie-intro__absolute-photo {
    width: 23vw;
  }
}
@media (max-width: 1024px) {
  .collection-nostalgie-intro__absolute-photo {
    left: 0;
    right: unset;
    top: unset;
    bottom: 0;
    border: 1px solid var(--black);
    width: 229px;
    height: 245px;
    font-size: 20px;
  }
}
@media (max-width: 640px) {
  .collection-nostalgie-intro__absolute-photo {
    left: 50%;
    top: 1.8em;
    bottom: unset;
    width: 167px;
    height: 188px;
    font-size: 90px;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
}
.collection-nostalgie-intro__absolute-photo picture, .collection-nostalgie-intro__absolute-photo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.collection-nostalgie-intro__float {
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding: 0 0 0 210px;
  width: 1055px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media (max-width: 1600px) {
  .collection-nostalgie-intro__float {
    padding: 0 0 0 15vw;
    width: 55vw;
  }
}
@media (max-width: 1024px) {
  .collection-nostalgie-intro__float {
    padding: 0;
    width: 100%;
  }
}
.collection-nostalgie-intro__float-text {
  margin: 0;
  max-width: 840px;
  font-size: clamp(16px, 1.0416666667vw, 20px);
  line-height: 1.2em;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
@media (max-width: 1024px) {
  .collection-nostalgie-intro__float-text {
    max-width: unset;
  }
}
@media (max-width: 640px) {
  .collection-nostalgie-intro__float-text {
    min-height: calc(150px + 3.6em);
    font-size: 14px;
  }
}
.collection-nostalgie-intro__float-large {
  float: left;
  margin: 17px 17px 0 -210px;
  border: 2px solid var(--black);
  width: 660px;
  height: 922px;
}
@media (max-width: 1600px) {
  .collection-nostalgie-intro__float-large {
    margin: 17px 17px 0 -15vw;
    width: 31vw;
    height: 56.5rem;
  }
}
@media (max-width: 1024px) {
  .collection-nostalgie-intro__float-large {
    margin: 20px 20px 0 0;
    border: 1px solid var(--black);
    width: calc(50% - 10px);
    height: 666px;
  }
}
@media (max-width: 640px) {
  .collection-nostalgie-intro__float-large {
    width: 80px;
    height: 147px;
  }
}
.collection-nostalgie-intro__float-large img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.collection-nostalgie-intro__float-small {
  position: absolute;
  right: 0;
  bottom: 0;
  border: 2px solid var(--black);
  width: 370px;
  height: 472px;
}
@media (max-width: 1600px) {
  .collection-nostalgie-intro__float-small {
    width: calc(24vw - 17px);
  }
}
@media (max-width: 1024px) {
  .collection-nostalgie-intro__float-small {
    border: 1px solid var(--black);
    width: calc(50% - 10px);
  }
}
@media (max-width: 640px) {
  .collection-nostalgie-intro__float-small {
    position: static;
    display: block;
    margin: 40px 0 0;
    width: 100%;
    height: 443px;
  }
  .collection-nostalgie-intro__float-small img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
  }
}
.collection-nostalgie-intro__float-small img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.collection-nostalgie-intro__texts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 480px;
  max-width: 437px;
  font-size: clamp(16px, 1.0416666667vw, 20px);
}
@media (max-width: 1600px) {
  .collection-nostalgie-intro__texts {
    width: 23vw;
    height: 440px;
  }
}
@media (max-width: 1024px) {
  .collection-nostalgie-intro__texts {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: -webkit-min-content 245px;
    -ms-grid-rows: min-content 245px;
    grid-template-rows: -webkit-min-content 245px;
    grid-template-rows: min-content 245px;
    width: 100%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    max-width: unset;
    gap: 40px 20px;
  }
}
@media (max-width: 640px) {
  .collection-nostalgie-intro__texts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 14px;
    gap: 0;
  }
}
.collection-nostalgie-intro__texts .collection-nostalgie-intro__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 1024px) {
  .collection-nostalgie-intro__texts .collection-nostalgie-intro__links {
    -ms-grid-row-align: end;
    align-self: end;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
  }
}
@media (max-width: 640px) {
  .collection-nostalgie-intro__texts .collection-nostalgie-intro__links {
    -ms-flex-item-align: start;
    align-self: flex-start;
  }
}
.collection-nostalgie-intro__texts p {
  padding: 0;
  font-size: inherit;
  gap: 40px;
}
.collection-nostalgie-intro__texts p:not(:first-child) {
  margin: 0 0 40px;
}
.collection-nostalgie-intro__texts p:first-child {
  margin: 0 0 auto;
}
@media (max-width: 1024px) {
  .collection-nostalgie-intro__texts p:not(:first-child) {
    margin: 0;
  }
  .collection-nostalgie-intro__texts p:first-child {
    margin: 0;
  }
}
@media (max-width: 640px) {
  .collection-nostalgie-intro__texts p:not(:first-child) {
    margin: 0 0 30px;
  }
  .collection-nostalgie-intro__texts p:first-child {
    margin: 0 0 20px;
  }
}
.collection-nostalgie-intro__texts a {
  font-weight: 600;
  font-size: inherit;
  text-transform: uppercase;
  color: inherit;
}
.collection-nostalgie-intro__texts a[data-sold-out=true] {
  opacity: 0.5;
}

.collection-others {
  margin: 185px 0 250px;
}
@media (max-width: 1024px) {
  .collection-others {
    margin: 165px 0 200px;
  }
}
.collection-others .title {
  font-weight: 600;
}
.collection-others .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 65px;
}
@media (max-width: 1024px) {
  .collection-others .container {
    gap: 60px;
  }
}
@media (max-width: 640px) {
  .collection-others .container {
    gap: 15px;
  }
}
.collection-others__title {
  width: 100%;
  font-size: clamp(30px, 3.125vw, 60px);
  letter-spacing: -0.02em;
  text-align: center;
}
.collection-others__title button {
  all: unset;
  display: none;
}
.collection-others__title span {
  display: none;
}
@media (max-width: 640px) {
  .collection-others__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
  }
  .collection-others__title span {
    display: inline;
  }
  .collection-others__title button {
    display: block;
  }
}
.collection-others__swiper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  width: 100%;
  height: 785px;
}
@media (max-width: 1600px) {
  .collection-others__swiper {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}
.collection-others__swiper .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 640px) {
  .collection-others__swiper:not(.swiper__initilized) .swiper-wrapper {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
  }
}
.collection-others__collection {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  max-width: 568px;
  font-weight: 500;
  font-size: clamp(16px, 1.0416666667vw, 20px);
  text-transform: uppercase;
  gap: 20px;
}
@media (max-width: 640px) {
  .collection-others__collection {
    width: 255px;
    height: 415px;
  }
}
.collection-others__collection img {
  display: block;
  border: 2px solid var(--black);
  width: 100%;
  height: 740px;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 1600px) {
  .collection-others__collection img {
    height: auto;
    aspect-ratio: 586/741;
  }
}
@media (max-width: 1024px) {
  .collection-others__collection img {
    border: 1px solid var(--black);
    aspect-ratio: 230/300;
  }
}

@media (min-width: 1025px) and (max-width: 1919px) {
  .collection-others {
    margin: calc(165px + 0.0223713647 * (100vw - 1025px)) 0 calc(200px + 0.0559284116 * (100vw - 1025px));
  }
  .collection-others .container {
    gap: calc(40px + 0.0279642058 * (100vw - 1025px));
  }
  .collection-others__title {
    font-size: calc(30px + 0.033557047 * (100vw - 1025px));
  }
  .collection-others__collection {
    font-size: calc(16px + 0.0044742729 * (100vw - 1025px));
  }
  .collection-others__collection img {
    height: calc(500px + 0.2684563758 * (100vw - 1025px));
  }
}
.collection-pattern {
  margin: 250px 0 0;
}
@media (max-width: 1024px) {
  .collection-pattern {
    margin: 200px 0 0;
  }
}
@media (max-width: 650px) {
  .collection-pattern {
    margin: 150px 0 0;
  }
}
.collection-pattern__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 0 40px;
  width: 100%;
}
.collection-pattern__item-name {
  font-family: var(--secondary-font);
  font-size: clamp(30px, 3.125vw, 60px);
}
.collection-pattern__item-name span {
  font-style: italic;
}
.collection-pattern__item-buy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 600;
  font-size: clamp(16px, 1.0416666667vw, 20px);
  text-transform: uppercase;
  color: inherit;
  -webkit-transition: opacity 0.2s ease 0s;
  transition: opacity 0.2s ease 0s;
  will-change: opacity;
  cursor: pointer;
  gap: 10px;
}
.collection-pattern__item-buy:hover {
  opacity: 0.5;
}
.collection-pattern__item-buy svg {
  fill: var(--text);
}

@media (min-width: 1025px) {
  .collection-pattern__gallery--one {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
  .collection-pattern__gallery--one a {
    display: block;
    border: 2px solid var(--text);
    height: 100%;
    max-height: 1397px;
  }
  .collection-pattern__gallery--one a img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
  }
  .collection-pattern__gallery--one .row-1 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 0.37fr 0.63fr;
    grid-template-columns: 0.37fr 0.63fr;
    -ms-grid-rows: 942px;
    grid-template-rows: 942px;
    max-width: 1800px;
    gap: 25px;
  }
  .collection-pattern__gallery--one .row-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    height: 942px;
    gap: 20px;
  }
  .collection-pattern__gallery--one .row-2 a {
    width: 33.3%;
  }
  .collection-pattern__gallery--one .row-3 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 0.755fr 0.244fr;
    grid-template-columns: 0.755fr 0.244fr;
    -ms-grid-rows: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    height: 1397px;
    gap: 20px;
  }
  .collection-pattern__gallery--one .row-3 a:first-child {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/3;
  }
  .collection-pattern__gallery--two {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
  .collection-pattern__gallery--two a {
    display: block;
    border: 2px solid var(--text);
    height: 100%;
    max-height: 1397px;
  }
  .collection-pattern__gallery--two a img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
  }
  .collection-pattern__gallery--two .row-1 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 0.37fr 0.63fr;
    grid-template-columns: 0.37fr 0.63fr;
    -ms-grid-rows: 942px;
    grid-template-rows: 942px;
    max-width: 1800px;
    gap: 25px;
  }
  .collection-pattern__gallery--two .row-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    height: 942px;
    gap: 20px;
  }
  .collection-pattern__gallery--two .row-2 a {
    width: 33.3%;
  }
  .collection-pattern__gallery--two .row-3 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 0.755fr 0.244fr;
    grid-template-columns: 0.755fr 0.244fr;
    -ms-grid-rows: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    height: 1397px;
    gap: 20px;
  }
  .collection-pattern__gallery--two .row-3 a:first-child {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/3;
  }
}
@media (max-width: 1024px) {
  .collection-pattern__gallery--one,
  .collection-pattern__gallery--two {
    display: -ms-grid;
    display: grid;
    grid-auto-rows: 528px 942px 528px 528px;
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    -ms-grid-rows: 712px;
    grid-template-rows: 712px;
    gap: 20px;
  }
}
@media (max-width: 1024px) and (max-width: 640px) {
  .collection-pattern__gallery--one,
  .collection-pattern__gallery--two {
    grid-auto-rows: 261px 601px 261px 261px;
    -ms-grid-rows: 515px;
    grid-template-rows: 515px;
    gap: 10px;
  }
}
@media (max-width: 1024px) {
  .collection-pattern__gallery--one .row-1, .collection-pattern__gallery--one .row-2, .collection-pattern__gallery--one .row-3,
  .collection-pattern__gallery--two .row-1,
  .collection-pattern__gallery--two .row-2,
  .collection-pattern__gallery--two .row-3 {
    display: contents;
  }
  .collection-pattern__gallery--one a,
  .collection-pattern__gallery--two a {
    display: block;
    -ms-grid-column-span: 2;
    grid-column: span 2;
    border: 2px solid var(--text);
    height: 100%;
    max-height: 1397px;
  }
  .collection-pattern__gallery--one a img,
  .collection-pattern__gallery--two a img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
  }
  .collection-pattern__gallery--one [data-number="1"],
  .collection-pattern__gallery--two [data-number="1"] {
    -ms-grid-column: 1;
    -ms-grid-column-span: 4;
    grid-column: 1/5;
  }
  .collection-pattern__gallery--one [data-number="4"],
  .collection-pattern__gallery--two [data-number="4"] {
    -ms-grid-column: 1;
    -ms-grid-column-span: 4;
    grid-column: 1/5;
  }
  .collection-pattern__gallery--two {
    grid-auto-rows: repeat(10, 528px 712px 942px 529px 529px);
  }
}
@media (max-width: 1024px) and (max-width: 640px) {
  .collection-pattern__gallery--two {
    -ms-grid-rows: (262px 515px 601px 262px 262px)[10];
    grid-template-rows: repeat(10, 262px 515px 601px 262px 262px);
    gap: 10px;
  }
}
@media (max-width: 1024px) {
  .collection-pattern__gallery--two [data-number="1"] {
    -ms-grid-column-span: 2;
    grid-column: span 2;
  }
  .collection-pattern__gallery--two [data-number="3"] {
    -ms-grid-column: 1;
    -ms-grid-column-span: 4;
    grid-column: 1/5;
  }
  .collection-pattern__gallery--two [data-number="4"] {
    -ms-grid-column: 1;
    -ms-grid-column-span: 4;
    grid-column: 1/5;
  }
}
@media (min-width: 1025px) and (max-width: 1919px) {
  .collection-pattern {
    margin: 13.02vw 0 0;
  }
  .collection-pattern__gallery--one .row-1,
  .collection-pattern__gallery--two .row-1 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 0.37fr 0.63fr;
    grid-template-columns: 0.37fr 0.63fr;
    -ms-grid-rows: 49.1vw;
    grid-template-rows: 49.1vw;
    max-width: 1800px;
    gap: 25px;
  }
  .collection-pattern__gallery--one .row-2,
  .collection-pattern__gallery--two .row-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    height: 49.1vw;
    gap: 20px;
  }
  .collection-pattern__gallery--one .row-2 a,
  .collection-pattern__gallery--two .row-2 a {
    width: 33.3%;
  }
  .collection-pattern__gallery--one .row-3,
  .collection-pattern__gallery--two .row-3 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 0.755fr 0.244fr;
    grid-template-columns: 0.755fr 0.244fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
    height: auto;
    gap: 20px;
  }
  .collection-pattern__gallery--one .row-3 a:first-child,
  .collection-pattern__gallery--two .row-3 a:first-child {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/3;
    height: 100%;
  }
  .collection-pattern__gallery--one a,
  .collection-pattern__gallery--two a {
    display: block;
    border: 2px solid var(--text);
    height: 100%;
  }
  .collection-pattern__gallery--one a img,
  .collection-pattern__gallery--two a img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
  }
}
.golf-intro {
  margin: 205px 0 0;
}
@media (max-width: 1024px) {
  .golf-intro {
    margin: 150px 0 0;
  }
}
@media (max-width: 1024px) {
  .golf-intro {
    margin: 100px 0 0;
  }
}
.golf-intro__title {
  margin: 0;
  font-family: var(--secondary-font);
  font-weight: 300;
  font-size: clamp(98px, 13.0208333333vw, 240px);
  line-height: 1em;
  letter-spacing: -0.04em;
  white-space: nowrap;
  text-align: center;
  text-transform: capitalize;
}
@media (max-width: 768px) {
  .golf-intro__title {
    white-space: unset;
  }
}
@media (max-width: 640px) {
  .golf-intro__title {
    margin: 0;
    font-size: 90px;
    line-height: 0.75em;
  }
  .golf-intro__title span {
    text-shadow: -1px -1px 0 var(--main-white), 1px -1px 0 var(--main-white), -1px 1px 0 var(--main-white), 1px 1px 0 var(--main-white);
  }
}
.golf-intro__grid {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 24.17% 23.94% 24.17%;
  grid-template-columns: 24.17% 23.94% 24.17%;
  -ms-grid-rows: 202px 389px;
  grid-template-rows: 202px 389px;
  margin: 50px 0 0;
  gap: 20px;
}
@media (max-width: 1024px) {
  .golf-intro__grid {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: 140px 379px 40px;
    grid-template-rows: 140px 379px 40px;
    margin: 0;
    margin: 50px 0 0;
  }
}
@media (max-width: 760px) {
  .golf-intro__grid {
    -ms-grid-rows: 160px 379px 40px;
    grid-template-rows: 160px 379px 40px;
  }
}
@media (max-width: 640px) {
  .golf-intro__grid {
    -ms-grid-rows: auto 250px auto;
    grid-template-rows: auto 250px auto;
  }
}
.golf-intro__children-picture {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1/3;
  border: 2px solid var(--black);
  width: 100%;
  height: 100%;
}
.golf-intro__children-picture img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 1024px) {
  .golf-intro__children-picture {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    grid-row: 1/4;
    border: 1px solid var(--black);
  }
}
@media (max-width: 640px) {
  .golf-intro__children-picture {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
  }
}
.golf-intro__grass-picture {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
  border: 2px solid var(--black);
  width: 100%;
  height: 100%;
}
.golf-intro__grass-picture img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 1024px) {
  .golf-intro__grass-picture {
    display: none;
    border: 1px solid var(--black);
  }
}
.golf-intro__descr {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
  margin: 0 0 10px;
  font-size: clamp(16px, 1.0416666667vw, 20px);
  line-height: 1.2em;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.golf-intro__descr p {
  margin: 0;
}
.golf-intro__descr p:not(:first-child) {
  margin: 1.2em 0 0;
}
@media (max-width: 640px) {
  .golf-intro__descr {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
    font-size: 14px;
  }
}
.golf-intro__links {
  position: absolute;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 435px;
  font-weight: 600;
  font-size: clamp(16px, 1.0416666667vw, 20px);
  line-height: 1.2em;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .golf-intro__links {
    position: static;
    width: 100%;
  }
}
@media (max-width: 640px) {
  .golf-intro__links {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3/4;
    font-size: 14px;
  }
}
.golf-intro__sitting-picture {
  position: absolute;
  right: 0;
  bottom: 120px;
  border: 2px solid var(--black);
}
@media (max-width: 1540px) {
  .golf-intro__sitting-picture {
    scale: 0.95;
  }
}
@media (max-width: 1024px) {
  .golf-intro__sitting-picture {
    position: static;
    border: 1px solid var(--black);
    scale: 1;
  }
}
@media (max-width: 640px) {
  .golf-intro__sitting-picture {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
  }
}
.golf-intro__sitting-picture img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

[data-sold-out=true] {
  opacity: 0.5;
}

.triathlon-intro {
  overflow: hidden;
  max-width: 100%;
}
.triathlon-intro__title {
  margin: 155px 0 0;
  font-family: var(--secondary-font);
  font-size: 12.5vw;
  letter-spacing: -0.04em;
  white-space: nowrap;
  text-align: center;
}
@media (min-width: 1921px) {
  .triathlon-intro__title {
    font-size: 241px;
  }
}
@media (max-width: 1025px) {
  .triathlon-intro__title {
    margin: 10.58vw 0 0;
    font-size: 12.74vw;
  }
}
@media (max-width: 640px) {
  .triathlon-intro__title {
    margin: 29.33vw 0 0;
    font-size: 24vw;
    line-height: 0.67em;
    white-space: wrap;
  }
  .triathlon-intro__title span {
    text-shadow: -1px -1px 0 var(--main-white), 1px -1px 0 var(--main-white), -1px 1px 0 var(--main-white), 1px 1px 0 var(--main-white);
  }
}
.triathlon-intro__inner {
  position: relative;
  margin: 56px 0 0;
  min-height: 34.4vw;
}
@media (min-width: 1921px) {
  .triathlon-intro__inner {
    min-height: 661px;
  }
}
@media (max-width: 1024px) {
  .triathlon-intro__inner {
    margin: 4.1vw 0 0;
    min-height: 84.38vw;
  }
}
@media (max-width: 640px) {
  .triathlon-intro__inner {
    margin: 10.67vw 0 0;
    min-height: 201vw;
  }
}
.triathlon-intro__suc-img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  border: 2px solid var(--black);
  width: 22.7vw;
  height: 34.4vw;
}
@media (max-width: 1024px) {
  .triathlon-intro__suc-img {
    width: 46.2vw;
    height: 75vw;
  }
}
@media (max-width: 640px) {
  .triathlon-intro__suc-img {
    top: unset;
    bottom: 0;
    width: 44.8vw;
    height: 72.53vw;
  }
}
.triathlon-intro__suc-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}
.triathlon-intro__jump-img {
  position: absolute;
  left: 35.4vw;
  top: 0.1vw;
  z-index: 1;
  border: 2px solid var(--black);
  width: 12.9vw;
  height: 17.2vw;
}
@media (max-width: 1500px) {
  .triathlon-intro__jump-img {
    left: 39.4vw;
  }
}
@media (max-width: 1024px) {
  .triathlon-intro__jump-img {
    left: unset;
    right: 27.86vw;
    top: unset;
    bottom: 0;
    width: 18.23vw;
    height: 26.69vw;
  }
}
@media (max-width: 640px) {
  .triathlon-intro__jump-img {
    left: 23.73vw;
    right: unset;
    top: 51.73vw;
    bottom: unset;
    width: 21.07vw;
    height: 30.67vw;
  }
}
.triathlon-intro__jump-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}
.triathlon-intro__green-img {
  position: absolute;
  right: 23.7vw;
  bottom: 0.4vw;
  z-index: 1;
  border: 2px solid var(--black);
  width: 22.4vw;
  height: 29.4vw;
}
@media (max-width: 1024px) {
  .triathlon-intro__green-img {
    right: 0;
    top: unset;
    bottom: 0;
    width: 29.82vw;
    height: 35.8vw;
  }
}
@media (max-width: 640px) {
  .triathlon-intro__green-img {
    right: 0;
    top: 27.2vw;
    bottom: unset;
    width: 44.8vw;
    height: 55.2vw;
  }
}
.triathlon-intro__green-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}
.triathlon-intro__text {
  position: absolute;
  right: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 34.5vw;
  font-weight: 400;
  font-size: 1.04vw;
  line-height: 1.2em;
  letter-spacing: -0.02em;
  gap: 0.5em;
}
@media (max-width: 1024px) {
  .triathlon-intro__text {
    max-width: 46.09vw;
    font-size: 2.08vw;
  }
}
@media (max-width: 640px) {
  .triathlon-intro__text {
    left: 0;
    right: unset;
    top: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    font-size: 3.73vw;
  }
}
.triathlon-intro__text p {
  margin-top: 0;
  margin-bottom: 0;
}
.triathlon-intro__text p:nth-child(2),
.triathlon-intro__text p:nth-child(3) {
  margin: 0 0 0 11.8vw;
}
@media (max-width: 1024px) {
  .triathlon-intro__text p:nth-child(2),
  .triathlon-intro__text p:nth-child(3) {
    margin: 0;
  }
}
@media (max-width: 640px) {
  .triathlon-intro__text p:nth-child(2) {
    margin: 67.73vw 0 0;
  }
}
@media (max-width: 640px) {
  .triathlon-intro__text p:nth-child(3) span {
    display: block;
    padding: 0 0 0 47.47vw;
  }
}
.triathlon-intro__linked {
  position: absolute;
  left: 23.6vw;
  bottom: 0;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-transform: uppercase;
}
@media (min-width: 1921px) {
  .triathlon-intro__linked {
    left: 454px;
  }
}
@media (max-width: 1024px) {
  .triathlon-intro__linked {
    left: 0;
    bottom: 0;
    max-width: 40vw;
  }
}
@media (max-width: 640px) {
  .triathlon-intro__linked {
    left: unset;
    right: 0;
    bottom: 0;
    max-width: 50vw;
    font-size: 3.73vw;
  }
}
.triathlon-intro__linked a {
  font-weight: 600;
  font-size: 1.04vw;
  line-height: 1.2em;
  letter-spacing: -0.02em;
}
@media (min-width: 1921px) {
  .triathlon-intro__linked a {
    font-size: 20px;
  }
}
@media (max-width: 1024px) {
  .triathlon-intro__linked a {
    font-size: 2.08vw;
  }
}
@media (max-width: 640px) {
  .triathlon-intro__linked a {
    font-size: 3.73vw;
  }
}
@media (min-width: 1920px) {
  .triathlon-intro__title {
    margin: 205px 0 0;
    font-size: 241px;
  }
  .triathlon-intro__inner {
    margin: 56px 0 0;
  }
  .triathlon-intro__suc-img {
    border: 1px solid var(--black);
    width: 436px;
    height: 661px;
  }
  .triathlon-intro__jump-img {
    left: 679px;
    top: 2px;
    border: 1px solid var(--black);
    width: 248px;
    height: 331px;
  }
  .triathlon-intro__green-img {
    right: 455px;
    bottom: 8px;
    border: 1px solid var(--black);
    width: 431px;
    height: 565px;
  }
  .triathlon-intro__text {
    max-width: 662px;
    font-size: 20px;
  }
  .triathlon-intro__text p:nth-child(2),
  .triathlon-intro__text p:nth-child(3) {
    margin-left: 227px;
  }
}

.docs-content {
  margin: 60px 0 clamp(400px, 31.25vw, 600px);
  min-height: 600px;
}
@media (max-width: 640px) {
  .docs-content {
    margin: 40px 0 clamp(100px, 31.25vw, 600px);
  }
}

.docs-content-tab h1 {
  margin: 0 0 clamp(15px, 1.3020833333vw, 25px);
  font-weight: 700;
  font-size: clamp(16px, 1.0416666667vw, 20px);
  text-transform: uppercase;
  text-wrap: balance;
}
.docs-content-tab h2,
.docs-content-tab p,
.docs-content-tab ul,
.docs-content-tab li,
.docs-content-tab a {
  margin: 0;
  padding: 0;
  font-size: clamp(12px, 0.7291666667vw, 14px);
}
.docs-content-tab a {
  text-decoration: underline;
}
.docs-content-tab h2 {
  margin: 1.2em 0 0;
  text-transform: uppercase;
}

.docs-tabs {
  margin: clamp(70px, 8vw, 116px) 0 0;
}
@media (max-width: 1024px) {
  .docs-tabs {
    margin: clamp(40px, 6vw, 70px) 0 0;
  }
}
@media (max-width: 640px) {
  .docs-tabs {
    margin: clamp(20px, 4vw, 40px) 0 0;
  }
}
.docs-tabs .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 1024px) {
  .docs-tabs .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
}
.docs-tabs a {
  font-weight: 500;
  font-size: clamp(14px, 1.0416666667vw, 20px);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--main-black);
  opacity: 0.5;
  -webkit-transition: opacity 0.2s ease 0s;
  transition: opacity 0.2s ease 0s;
  text-wrap: balance;
}
.docs-tabs a.active {
  opacity: 1;
}

.docs-title {
  margin: clamp(150px, 12vw, 205px);
}
@media (max-width: 1024px) {
  .docs-title {
    margin: clamp(110px, 10vw, 150px);
  }
}
@media (max-width: 640px) {
  .docs-title {
    margin: clamp(80px, 8vw, 110px);
  }
}
.docs-title h1 {
  margin: 0;
  padding: 0;
  font-family: var(--secondary-font);
  font-weight: 300;
  font-size: clamp(40px, 9.375vw, 180px);
  line-height: 1.3em;
  letter-spacing: -0.04em;
  text-align: center;
}

.docs {
  min-height: 100vh;
}

html:has(.front-collections) {
  font-size: 8.53px;
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html:has(.front-collections) {
    font-size: calc(8.53px + 0.0083370536 * (100vw - 1023px));
  }
}
@media (min-width: 1919px) {
  html:has(.front-collections) {
    font-size: 16px;
  }
}

@media (min-width: 1023px) and (max-width: 1919px) {
  html body .front-collections {
    margin: 1.25rem 0 0;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .front-collections {
    margin: 0.9375rem 0 0;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .front-collections .container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1.25rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (min-width: 1024px) {
  html body .front-collections .container--no-padding {
    padding: 0;
    max-width: 120rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .front-collections .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.front-collections {
  margin: 20px 0 0;
}
@media (max-width: 640px) {
  .front-collections {
    margin: 15px 0 0;
  }
}
.front-collections .container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}
@media (min-width: 1024px) {
  .front-collections .container--no-padding {
    padding: 0;
    max-width: 1920px;
  }
}
@media (max-width: 640px) {
  .front-collections .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

html:has(.front-collection) {
  font-size: 8.53px;
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html:has(.front-collection) {
    font-size: calc(8.53px + 0.0083370536 * (100vw - 1023px));
  }
}
@media (min-width: 1919px) {
  html:has(.front-collection) {
    font-size: 16px;
  }
}

@media (min-width: 1023px) and (max-width: 1919px) {
  html body .front-collection {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1.875rem 3.75rem;
    height: 110vh;
    max-height: 69.375rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 991px) {
  html body .front-collection {
    border: 0.0625rem solid var(--text);
    padding: 1.25rem;
    height: 32.5rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .front-collection {
    padding: 0.9375rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .front-collection div {
    position: relative;
    z-index: 3;
  }
  html body .front-collection img {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  html body .front-collection__name {
    font-family: var(--secondary-font);
    font-weight: 400;
    font-size: 3.75rem;
    line-height: 1em;
    letter-spacing: -0.03em;
  }
  html body .front-collection__colors {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.625rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 991px) {
  html body .front-collection__colors {
    gap: 0.3125rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .front-collection__color {
    border: 0.0625rem solid var(--text);
    width: 2.25rem;
    height: 2.25rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 991px) {
  html body .front-collection__color {
    width: 1.25rem;
    height: 1.25rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .front-collection__color--green {
    background-color: #747143;
  }
  html body .front-collection__color--white {
    background-color: #FDFBF4;
  }
}

.front-collection {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 30px 60px;
  height: 110vh;
  max-height: 1110px;
}
@media (max-width: 991px) {
  .front-collection {
    border: 1px solid var(--text);
    padding: 20px;
    height: 520px;
  }
}
@media (max-width: 640px) {
  .front-collection {
    padding: 15px;
  }
}
.front-collection div {
  position: relative;
  z-index: 3;
}
.front-collection img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.front-collection__name {
  font-family: var(--secondary-font);
  font-weight: 400;
  font-size: clamp(30px, 3.125vw, 60px);
  line-height: 1em;
  letter-spacing: -0.03em;
}
.front-collection__colors {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media (max-width: 991px) {
  .front-collection__colors {
    gap: 5px;
  }
}
.front-collection__color {
  border: 1px solid var(--text);
  width: 36px;
  height: 36px;
}
@media (max-width: 991px) {
  .front-collection__color {
    width: 20px;
    height: 20px;
  }
}
.front-collection__color--green {
  background-color: #747143;
}
.front-collection__color--white {
  background-color: #FDFBF4;
}

html:has(.front-recommendation) {
  font-size: 8.53px;
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html:has(.front-recommendation) {
    font-size: calc(8.53px + 0.0083370536 * (100vw - 1023px));
  }
}
@media (min-width: 1919px) {
  html:has(.front-recommendation) {
    font-size: 16px;
  }
}

@media (min-width: 1023px) and (max-width: 1919px) {
  html body .front-recommendation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 27.1875rem;
    height: 45.5rem;
    gap: 0.625rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 1024px) {
  html body .front-recommendation {
    height: 25.625rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .front-recommendation {
    width: 16.125rem;
    height: 25rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .front-recommendation__img {
    border: 0.125rem solid #000;
    height: 41.125rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 1024px) {
  html body .front-recommendation__img {
    border: 0.0625rem solid #000;
    height: 22.25rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .front-recommendation__img {
    height: 22.125rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .front-recommendation__img img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  html body .front-recommendation p {
    margin: 0;
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1em;
    text-align: center;
    color: var(--main-black);
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 1024px) {
  html body .front-recommendation p:not(:last-child) {
    margin-bottom: -0.375rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .front-recommendation p {
    font-size: 0.75rem;
  }
}

.front-recommendation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 435px;
  height: 93svh;
  gap: 10px;
}
@media (max-width: 1024px) {
  .front-recommendation {
    height: 410px;
  }
}
@media (max-width: 640px) {
  .front-recommendation {
    width: 258px;
    height: 400px;
  }
}
.front-recommendation__img {
  border: 2px solid #000;
  aspect-ratio: 9/16;
}
@media (max-width: 1024px) {
  .front-recommendation__img {
    border: 1px solid #000;
  }
}
.front-recommendation__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.front-recommendation p {
  margin: 0;
  font-weight: 500;
  font-size: clamp(16px, 1.0416666667vw, 20px);
  line-height: 1em;
  text-align: center;
  color: var(--main-black);
}
@media (max-width: 1024px) {
  .front-recommendation p:not(:last-child) {
    margin-bottom: -6px;
  }
}
@media (max-width: 640px) {
  .front-recommendation p {
    font-size: 12px;
  }
}

html:has(.hero) {
  font-size: 8.53px;
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html:has(.hero) {
    font-size: calc(8.53px + 0.0083370536 * (100vw - 1023px));
  }
}
@media (min-width: 1919px) {
  html:has(.hero) {
    font-size: 16px;
  }
}

@media (min-width: 1023px) and (max-width: 1919px) {
  html body .hero {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    height: 100vh;
    background-image: -webkit-image-set(url("../img/front-page/hero.jpg") 1x, url("../img/front-page/hero2x.jpg") 2x);
    background-image: image-set(url("../img/front-page/hero.jpg") 1x, url("../img/front-page/hero2x.jpg") 2x);
    background-position: top center;
    background-size: cover;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 991px) {
  html body .hero {
    background-image: url("../img/front-page/herotablet.jpg");
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .hero {
    background-image: url("../img/front-page/heromobile.jpg");
    background-position: center center;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .hero__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 37rem;
    max-width: 90vw;
  }
  html body .hero__title {
    margin: 2.5rem 0 0;
    padding: 0;
    font-weight: 700;
    font-size: 2.625rem;
    line-height: 1em;
    text-align: center;
    text-transform: uppercase;
    color: var(--main-white);
  }
  html body .hero__title span {
    display: block;
    font-family: var(--secondary-font);
    font-weight: 400;
    font-style: italic;
    font-size: 3.25rem;
    line-height: 2.625rem;
    text-transform: lowercase;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 768px) {
  html body .hero__title {
    margin: 1.875rem 0 0;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .hero__title {
    margin: 1.25rem 0 0;
    font-size: 1.625rem;
  }
  html body .hero__title span {
    font-size: 2.125rem;
    line-height: 1.6875rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .hero__slogan {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 2.5rem 0 3.75rem;
    color: var(--main-white);
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 768px) {
  html body .hero__slogan {
    margin: 2.3125rem 0 3.875rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .hero__slogan img {
    display: block;
    height: 2.3125rem;
    -o-object-fit: contain;
    object-fit: contain;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .hero__slogan img {
    width: 4.5625rem;
    height: 1.5625rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .hero__slogan-part {
    max-width: 12.9375rem;
    font-weight: 700;
    font-size: 1.25rem;
    text-transform: uppercase;
  }
  html body .hero__slogan-part:not(:first-child) {
    text-align: right;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .hero__slogan-part {
    max-width: 7.9375rem;
    font-size: 0.875rem;
  }
}

.hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  height: 100vh;
  background-image: -webkit-image-set(url("../img/front-page/hero.jpg") 1x, url("../img/front-page/hero2x.jpg") 2x);
  background-image: image-set(url("../img/front-page/hero.jpg") 1x, url("../img/front-page/hero2x.jpg") 2x);
  background-position: top center;
  background-size: cover;
}
@media (max-width: 991px) {
  .hero {
    background-image: url("../img/front-page/herotablet.jpg");
  }
}
@media (max-width: 640px) {
  .hero {
    background-image: url("../img/front-page/heromobile.jpg");
    background-position: center center;
  }
}
.hero__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: clamp(480px, 30.8333333333vw, 592px);
  max-width: 90vw;
}
.hero__title {
  margin: 40px 0 0;
  padding: 0;
  font-weight: 700;
  font-size: clamp(36px, 2.1875vw, 42px);
  line-height: 1em;
  text-align: center;
  text-transform: uppercase;
  color: var(--main-white);
}
.hero__title span {
  display: block;
  font-family: var(--secondary-font);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(47px, 2.7083333333vw, 52px);
  line-height: 42px;
  text-transform: lowercase;
}
@media (max-width: 768px) {
  .hero__title {
    margin: 30px 0 0;
  }
}
@media (max-width: 640px) {
  .hero__title {
    margin: 20px 0 0;
    font-size: 26px;
  }
  .hero__title span {
    font-size: 34px;
    line-height: 27px;
  }
}
.hero__slogan {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 40px 0 60px;
  color: var(--main-white);
}
@media (max-width: 768px) {
  .hero__slogan {
    margin: 37px 0 62px;
  }
}
.hero__slogan img {
  display: block;
  height: 37px;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 640px) {
  .hero__slogan img {
    width: 73px;
    height: 25px;
  }
}
.hero__slogan-part {
  max-width: clamp(155px, 10.78125vw, 207px);
  font-weight: 700;
  font-size: clamp(16px, 1.0416666667vw, 20px);
  text-transform: uppercase;
}
.hero__slogan-part:not(:first-child) {
  text-align: right;
}
@media (max-width: 640px) {
  .hero__slogan-part {
    max-width: 127px;
    font-size: 14px;
  }
}

.front-recommendations {
  margin: 250px 0;
}
@media (max-width: 1024px) {
  .front-recommendations {
    margin: 200px 0;
  }
}
.front-recommendations .container {
  position: relative;
}
.front-recommendations__next {
  position: absolute;
  right: 20px;
  top: -25px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.front-recommendations__swiper {
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.front-recommendations__swiper .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

html:has(.page-404) {
  font-size: 8.53px;
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html:has(.page-404) {
    font-size: calc(8.53px + 0.0083370536 * (100vw - 1023px));
  }
}
@media (min-width: 1919px) {
  html:has(.page-404) {
    font-size: 16px;
  }
}

@media (min-width: 1023px) and (max-width: 1919px) {
  html body .page-404 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 12.5rem 0 8.125rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 1024px) {
  html body .page-404 {
    margin: 12.5rem 0 9.375rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .page-404 .container {
    position: relative;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  html body .page-404 h1 {
    position: relative;
    left: -0.625rem;
    margin: 0;
    padding: 0;
    font-weight: 400;
    font-size: 25rem;
    line-height: 0.8em;
    letter-spacing: -0.04em;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 710px) {
  html body .page-404 h1 {
    left: 0;
    font-size: 13.3125rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .page-404__back {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    border: 0.125rem solid var(--text);
    border-radius: 50%;
    padding: 3.125rem 3.375rem;
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.2em;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    background-color: var(--main-white);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 1024px) {
  html body .page-404__back {
    border: 0.0625rem solid var(--text);
    padding: 2.5rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 710px) {
  html body .page-404__back {
    top: unset;
    bottom: 0;
    padding: 1.4375rem 0.9375rem;
    font-size: 0.875rem;
    white-space: nowrap;
    -webkit-transform: translate(-47%, 45%);
    -ms-transform: translate(-47%, 45%);
    transform: translate(-47%, 45%);
  }
}

.page-404 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 200px 0 130px;
}
@media (max-width: 1024px) {
  .page-404 {
    margin: 200px 0 150px;
  }
}
.page-404 .container {
  position: relative;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.page-404 h1 {
  position: relative;
  left: -10px;
  margin: 0;
  padding: 0;
  font-weight: 400;
  font-size: clamp(400px, 23.0729166667vw, 443px);
  line-height: 0.8em;
  letter-spacing: -0.04em;
}
@media (max-width: 710px) {
  .page-404 h1 {
    left: 0;
    font-size: 213px;
  }
}
.page-404__back {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  border: 2px solid var(--text);
  border-radius: 50%;
  padding: 50px 54px;
  font-weight: 500;
  font-size: clamp(16px, 1.0416666667vw, 20px);
  line-height: 1.2em;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  background-color: var(--main-white);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media (max-width: 1024px) {
  .page-404__back {
    border: 1px solid var(--text);
    padding: 40px;
  }
}
@media (max-width: 710px) {
  .page-404__back {
    top: unset;
    bottom: 0;
    padding: 23px 15px;
    font-size: 14px;
    white-space: nowrap;
    -webkit-transform: translate(-47%, 45%);
    -ms-transform: translate(-47%, 45%);
    transform: translate(-47%, 45%);
  }
}

html:has(.about-brand) {
  font-size: 8.53px;
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html:has(.about-brand) {
    font-size: calc(8.53px + 0.0083370536 * (100vw - 1023px));
  }
}
@media (min-width: 1919px) {
  html:has(.about-brand) {
    font-size: 16px;
  }
}

@media (min-width: 1023px) and (max-width: 1919px) {
  html body .about-brand {
    overflow: visible;
    margin: 18rem 0 0;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 1200px) {
  html body .about-brand {
    margin: 16.4375rem 0 0;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .about-brand {
    margin: 6.875rem 0 0;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .about-brand__container-inner {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 25rem 1fr 27.1875rem;
    grid-template-columns: 25rem 1fr 27.1875rem;
    -ms-grid-rows: (auto)[4];
    grid-template-rows: repeat(4, auto);
    gap: 2.5rem 1.25rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 1200px) {
  html body .about-brand__container-inner {
    -ms-grid-columns: 50% 50%;
    grid-template-columns: 50% 50%;
    width: calc(100% - 1.25rem);
    gap: 1.25rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .about-brand__container-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    gap: 0;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .about-brand__title {
    position: relative;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    -webkit-transform: translateY(-45%);
    -ms-transform: translateY(-45%);
    transform: translateY(-45%);
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 1200px) {
  html body .about-brand__title {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
    -webkit-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    transform: translateY(-70%);
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .about-brand__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin: 0 0 1.25rem;
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .about-brand__title h2 {
    margin: 0;
    padding: 0;
    font-family: var(--secondary-font);
    font-weight: 400;
    font-size: 11.25rem;
    line-height: 1;
    letter-spacing: -0.03em;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .about-brand__title h2 {
    font-size: 4.375rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .about-brand__title span {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    display: inline-block;
    border: 0.125rem solid var(--text);
    border-radius: 200%/200%;
    padding: 1.5rem 3.4375rem;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.1em;
    white-space: nowrap;
    text-transform: uppercase;
    background-color: var(--main-white);
    -webkit-transform: translateY(40%);
    -ms-transform: translateY(40%);
    transform: translateY(40%);
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 1200px) {
  html body .about-brand__title span {
    border: 0.0625rem solid var(--text);
    padding: 1.1875rem 2.9375rem;
    -webkit-transform: translate(0.625rem, 3.5625rem);
    -ms-transform: translate(0.625rem, 3.5625rem);
    transform: translate(0.625rem, 3.5625rem);
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .about-brand__title span {
    left: 50%;
    padding: 0.9375rem 3.125rem;
    font-size: 0.875rem;
    -webkit-transform: translateX(-50%) translateY(70%);
    -ms-transform: translateX(-50%) translateY(70%);
    transform: translateX(-50%) translateY(70%);
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .about-brand__main-img {
    -ms-grid-row-align: flex-end;
    -ms-grid-column-align: end;
    place-self: flex-end end;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    grid-row: 1/-1;
    border: 0.125rem solid var(--text);
    max-width: 41.375rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 1600px) {
  html body .about-brand__main-img {
    height: 100%;
    max-width: 28.125rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 1200px) {
  html body .about-brand__main-img {
    -ms-grid-row-align: unset;
    -ms-grid-column-align: unset;
    place-self: unset;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/3;
    border: 0.0625rem solid var(--text);
    max-width: none;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .about-brand__main-img {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin: 0 0 2.5rem;
    height: 28.25rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .about-brand__main-img img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
  }
  html body .about-brand__secondary-img {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3/4;
    border: 0.125rem solid var(--text);
    max-width: 25rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 1200px) {
  html body .about-brand__secondary-img {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3/4;
    border: 0.0625rem solid var(--text);
    width: 100%;
    height: 30.625rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .about-brand__secondary-img {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
    margin: 0 0 2.5rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .about-brand__secondary-img img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
  }
  html body .about-brand__slogan {
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-column: 3/4;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.1em;
    text-transform: uppercase;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 1200px) {
  html body .about-brand__slogan {
    -ms-grid-column-align: end;
    justify-self: end;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    -webkit-transform: translateY(calc(-px2rem(20) - 100%));
    -ms-transform: translateY(calc(-px2rem(20) - 100%));
    transform: translateY(calc(-px2rem(20) - 100%));
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .about-brand__slogan {
    display: none;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .about-brand__theme-txt {
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-column: 3/4;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
    margin: 2.5rem 0 0;
    font-size: 1rem;
    line-height: 1.2em;
    letter-spacing: -0.02em;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 1200px) {
  html body .about-brand__theme-txt {
    -ms-grid-row-align: end;
    align-self: end;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
    margin: 0;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .about-brand__theme-txt {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    margin: 0 0 2.5rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .about-brand__subtitle {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    grid-row: 4/5;
    margin: 0 0 7.1875rem;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.1em;
    text-transform: uppercase;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 1200px) {
  html body .about-brand__subtitle {
    -ms-grid-row-align: end;
    align-self: end;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
    margin: 0 0 6.875rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 710px) {
  html body .about-brand__subtitle {
    margin: 0 0 7.5rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .about-brand__subtitle {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    margin: 0 0 0.9375rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .about-brand__lower-texts {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
    grid-column: 1/-1;
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    grid-row: 4/5;
    -ms-grid-columns: 25rem 1fr 27.1875rem;
    grid-template-columns: 25rem 1fr 27.1875rem;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    gap: 1.25rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 1200px) {
  html body .about-brand__lower-texts {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    -ms-grid-columns: 50% 50%;
    grid-template-columns: 50% 50%;
    width: calc(100% - 1.25rem);
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .about-brand__lower-texts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
    gap: 0.9375rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .about-brand__lower-texts p {
    margin: 0;
    font-size: 1.25rem;
    line-height: 1.2em;
    letter-spacing: -0.02em;
    text-wrap: balance;
  }
  html body .about-brand__lower-texts p:last-child {
    grid-column: -2/-1;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .about-brand__lower-texts p {
    font-size: 0.875rem;
    text-wrap: unset;
  }
}

.about-brand {
  overflow: visible;
  margin: 288px 0 0;
}
@media (max-width: 1200px) {
  .about-brand {
    margin: 263px 0 0;
  }
}
@media (max-width: 640px) {
  .about-brand {
    margin: 110px 0 0;
  }
}
.about-brand__container-inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 400px 1fr 435px;
  grid-template-columns: 400px 1fr 435px;
  -ms-grid-rows: auto auto auto auto;
  grid-template-rows: auto auto auto auto;
  gap: 40px 20px;
}
@media (max-width: 1200px) {
  .about-brand__container-inner {
    -ms-grid-columns: 50% 50%;
    grid-template-columns: 50% 50%;
    width: calc(100% - 20px);
    gap: 20px;
  }
}
@media (max-width: 640px) {
  .about-brand__container-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    gap: 0;
  }
}
.about-brand__title {
  position: relative;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -webkit-transform: translateY(-45%);
  -ms-transform: translateY(-45%);
  transform: translateY(-45%);
}
@media (max-width: 1200px) {
  .about-brand__title {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
    -webkit-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    transform: translateY(-70%);
  }
}
@media (max-width: 640px) {
  .about-brand__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin: 0 0 20px;
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
  }
}
.about-brand__title h2 {
  margin: 0;
  padding: 0;
  font-family: var(--secondary-font);
  font-weight: 400;
  font-size: clamp(130px, 9.375vw, 180px);
  line-height: 1;
  letter-spacing: -0.03em;
}
@media (max-width: 640px) {
  .about-brand__title h2 {
    font-size: 70px;
  }
}
.about-brand__title span {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  display: inline-block;
  border: 2px solid var(--text);
  border-radius: 200%/200%;
  padding: 24px 55px;
  font-weight: 700;
  font-size: clamp(16px, 0.8333333333vw, 24px);
  line-height: 1.1em;
  white-space: nowrap;
  text-transform: uppercase;
  background-color: var(--main-white);
  -webkit-transform: translateY(40%);
  -ms-transform: translateY(40%);
  transform: translateY(40%);
}
@media (max-width: 1200px) {
  .about-brand__title span {
    border: 1px solid var(--text);
    padding: 19px 47px;
    -webkit-transform: translate(10%, 57%);
    -ms-transform: translate(10%, 57%);
    transform: translate(10%, 57%);
  }
}
@media (max-width: 640px) {
  .about-brand__title span {
    left: 50%;
    padding: 15px 50px;
    font-size: 14px;
    -webkit-transform: translateX(-50%) translateY(70%);
    -ms-transform: translateX(-50%) translateY(70%);
    transform: translateX(-50%) translateY(70%);
  }
}
.about-brand__main-img {
  -ms-grid-row-align: flex-end;
  -ms-grid-column-align: end;
  place-self: flex-end end;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  grid-row: 1/-1;
  border: 2px solid var(--text);
  max-width: 662px;
}
@media (max-width: 1600px) {
  .about-brand__main-img {
    height: 100%;
    max-width: 450px;
  }
}
@media (max-width: 1200px) {
  .about-brand__main-img {
    -ms-grid-row-align: unset;
    -ms-grid-column-align: unset;
    place-self: unset;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/3;
    border: 1px solid var(--text);
    max-width: unset;
  }
}
@media (max-width: 640px) {
  .about-brand__main-img {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin: 0 0 40px;
    height: 452px;
  }
}
.about-brand__main-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.about-brand__secondary-img {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  grid-row: 3/4;
  border: 2px solid var(--text);
  max-width: 400px;
}
@media (max-width: 1200px) {
  .about-brand__secondary-img {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3/4;
    border: 1px solid var(--text);
    width: 100%;
    height: 490px;
    max-width: unset;
  }
}
@media (max-width: 640px) {
  .about-brand__secondary-img {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
    margin: 0 0 40px;
  }
}
.about-brand__secondary-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.about-brand__slogan {
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-column: 3/4;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
  font-weight: 700;
  font-size: clamp(16px, 0.8333333333vw, 20px);
  line-height: 1.1em;
  text-transform: uppercase;
}
@media (max-width: 1200px) {
  .about-brand__slogan {
    -ms-grid-column-align: end;
    justify-self: end;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    -webkit-transform: translateY(calc(-20px - 100%));
    -ms-transform: translateY(calc(-20px - 100%));
    transform: translateY(calc(-20px - 100%));
  }
}
@media (max-width: 640px) {
  .about-brand__slogan {
    display: none;
  }
}
.about-brand__theme-txt {
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-column: 3/4;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
  margin: 40px 0 0;
  font-size: 20px;
  line-height: 1.2em;
  letter-spacing: -0.02em;
}
@media (max-width: 1200px) {
  .about-brand__theme-txt {
    -ms-grid-row-align: end;
    align-self: end;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
    margin: 0;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    font-size: 16px;
  }
}
@media (max-width: 640px) {
  .about-brand__theme-txt {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    margin: 0 0 40px;
    font-size: 14px;
  }
}
.about-brand__subtitle {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 4;
  -ms-grid-row-span: 1;
  grid-row: 4/5;
  margin: 0 0 115px;
  font-weight: 700;
  font-size: clamp(16px, 0.8333333333vw, 20px);
  line-height: 1.1em;
  text-transform: uppercase;
}
@media (max-width: 1200px) {
  .about-brand__subtitle {
    -ms-grid-row-align: end;
    align-self: end;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
    margin: 0 0 110px;
  }
}
@media (max-width: 710px) {
  .about-brand__subtitle {
    margin: 0 0 120px;
  }
}
@media (max-width: 640px) {
  .about-brand__subtitle {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    margin: 0 0 15px;
  }
}
.about-brand__lower-texts {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  grid-column: 1/-1;
  -ms-grid-row: 4;
  -ms-grid-row-span: 1;
  grid-row: 4/5;
  -ms-grid-columns: 400px 1fr 435px;
  grid-template-columns: 400px 1fr 435px;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  gap: 20px;
}
@media (max-width: 1200px) {
  .about-brand__lower-texts {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    -ms-grid-columns: 50% 50%;
    grid-template-columns: 50% 50%;
    width: calc(100% - 20px);
  }
}
@media (max-width: 640px) {
  .about-brand__lower-texts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
    gap: 15px;
  }
}
.about-brand__lower-texts p {
  margin: 0;
  font-size: clamp(16px, 0.8333333333vw, 20px);
  line-height: 1.2em;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.about-brand__lower-texts p:last-child {
  grid-column: -2/-1;
}
@media (max-width: 640px) {
  .about-brand__lower-texts p {
    font-size: 14px;
    text-wrap: unset;
  }
}

#collabs {
  scroll-margin-top: 150px; /* высота фиксированного шапочника + небольшой запас */
}

html:has(.collabs) {
  font-size: 8.53px;
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html:has(.collabs) {
    font-size: calc(8.53px + 0.0083370536 * (100vw - 1023px));
  }
}
@media (min-width: 1919px) {
  html:has(.collabs) {
    font-size: 16px;
  }
}

@media (min-width: 1023px) and (max-width: 1919px) {
  html body .collabs {
    margin: 19.375rem 0 15.625rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 1024px) {
  html body .collabs {
    overflow: hidden;
    margin: 15rem 0 12.5rem;
    max-width: 100vw;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .collabs {
    overflow: visible;
    margin: 16.875rem 0 10.75rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .collabs__inner {
    position: relative;
    width: 100%;
    height: 77.125rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 1024px) {
  html body .collabs__inner {
    height: 74.1875rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .collabs__inner {
    height: auto;
    min-height: 54.0625rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .collabs__bg {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    border: 0.125rem solid var(--text);
    width: 100%;
    height: 100%;
  }
  html body .collabs__bg img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 1024px) {
  html body .collabs__bg {
    border: 0.0625rem solid var(--text);
    width: 100vw;
    -webkit-transform: translateX(-1.25rem);
    -ms-transform: translateX(-1.25rem);
    transform: translateX(-1.25rem);
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .collabs__bg {
    width: 101.5vw;
    height: 32.9375rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .collabs__content-wrapper {
    position: relative;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 2.5rem;
    width: 100%;
    height: 100%;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 1024px) {
  html body .collabs__content-wrapper {
    padding: 2.8125rem 0 3.4375rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .collabs__content-wrapper {
    position: absolute;
    left: 0;
    top: 0;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 1460px) {
  html body .collabs__header {
    width: 75%;
    height: auto;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 1024px) {
  html body .collabs__header {
    width: 100%;
    height: 100%;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .collabs__header {
    position: absolute;
    left: 50%;
    top: 0;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    -webkit-transform: translate(-50%, -85%);
    -ms-transform: translate(-50%, -85%);
    transform: translate(-50%, -85%);
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .collabs__slogan {
    position: absolute;
    right: 4.6875rem;
    top: 15rem;
    z-index: 2;
    max-width: 22.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.2em;
    text-transform: uppercase;
    color: var(--main-white);
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 1024px) {
  html body .collabs__slogan {
    right: 0.625rem;
    top: 2.625rem;
    height: 3.25rem;
    max-width: 15.625rem;
    text-wrap: balance;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 850px) {
  html body .collabs__slogan {
    right: -0.9375rem;
    font-size: 1.8vw;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 768px) {
  html body .collabs__slogan {
    right: -1.25rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 758px) {
  html body .collabs__slogan {
    right: -2.8125rem;
    font-size: 0.75rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 680px) {
  html body .collabs__slogan {
    right: -3.125rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .collabs__slogan {
    left: 0;
    right: unset;
    top: unset;
    bottom: 44%;
    width: 18.75rem;
    max-width: unset;
    font-weight: 500;
    font-size: 0.75rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .collabs__texts {
    display: -ms-grid;
    display: grid;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-grid-columns: 31.6875rem 25rem;
    grid-template-columns: 31.6875rem 25rem;
    -ms-grid-rows: auto 1fr;
    grid-template-rows: auto 1fr;
    max-width: 60%;
    color: var(--main-white);
    gap: 1.25rem 2.5rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 1460px) {
  html body .collabs__texts {
    -ms-grid-columns: 1.05fr 1fr;
    grid-template-columns: 1.05fr 1fr;
    max-width: 60%;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 1024px) {
  html body .collabs__texts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 26.5625rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .collabs__texts {
    position: absolute;
    bottom: 0;
    color: var(--text);
    gap: 1.25rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .collabs__logo {
    position: absolute;
    right: 16.0625rem;
    bottom: 2.5rem;
    z-index: 2;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 1460px) {
  html body .collabs__logo {
    right: 12.5rem;
    width: 8.125rem;
    height: 2.8125rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 1024px) {
  html body .collabs__logo {
    right: 9.0625rem;
    width: 4.8125rem;
    height: 1.625rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .collabs__logo {
    left: 0;
    right: unset;
    top: unset;
    bottom: 42%;
    width: 3.625rem;
    height: 1.25rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .collabs__logo svg {
    fill: var(--main-white);
  }
  html body .collabs__text-title, html body .collabs__mail {
    -ms-flex-item-align: end;
    -ms-grid-row-align: end;
    align-self: end;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.2em;
    text-transform: uppercase;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 1024px) {
  html body .collabs__text-title, html body .collabs__mail {
    text-wrap: balance;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .collabs__text-title, html body .collabs__mail {
    font-size: 0.875rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 1024px) {
  html body .collabs__mail {
    position: absolute;
    right: 1.125rem;
    bottom: 5.3125rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .collabs__mail {
    position: static;
    -ms-flex-item-align: start;
    -ms-grid-row-align: start;
    align-self: start;
    -webkit-box-ordinal-group: 100;
    -ms-flex-order: 99;
    order: 99;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .collabs__text {
    font-size: 1.25rem;
    line-height: 1.2em;
    letter-spacing: -0.02em;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .collabs__text {
    font-size: 0.875rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .collabs__colors {
    position: absolute;
    right: 3.125rem;
    bottom: 2.5rem;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.625rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 1024px) {
  html body .collabs__colors {
    right: 1.25rem;
    gap: 0.3125rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .collabs__colors {
    right: 1.25rem;
    bottom: 2.625rem;
    gap: 0.3125rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .collabs__color {
    border: 0.0625rem solid var(--white);
    width: 2.25rem;
    height: 2.25rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 1024px) {
  html body .collabs__color {
    width: 1.25rem;
    height: 1.25rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .collabs__color--white {
    background-color: var(--white);
  }
  html body .collabs__color--green {
    background-color: #1C4C2D;
  }
}

.collabs {
  margin: 310px 0 250px;
}
@media (max-width: 1024px) {
  .collabs {
    overflow: hidden;
    margin: 240px 0 200px;
    max-width: 100vw;
  }
}
@media (max-width: 640px) {
  .collabs {
    overflow: visible;
    margin: 270px 0 172px;
  }
}
.collabs__inner {
  position: relative;
  width: 100%;
  height: 1234px;
}
@media (max-width: 1024px) {
  .collabs__inner {
    height: 1187px;
  }
}
@media (max-width: 640px) {
  .collabs__inner {
    height: auto;
    min-height: 865px;
  }
}
.collabs__bg {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  border: 2px solid var(--text);
  width: 100%;
  height: 100%;
}
.collabs__bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
@media (max-width: 1024px) {
  .collabs__bg {
    border: 1px solid var(--text);
    width: 100vw;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}
@media (max-width: 640px) {
  .collabs__bg {
    width: 101.5vw;
    height: 527px;
  }
}
.collabs__content-wrapper {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 40px;
  width: 100%;
  height: 100%;
}
@media (max-width: 1024px) {
  .collabs__content-wrapper {
    padding: 45px 0 55px;
  }
}
@media (max-width: 640px) {
  .collabs__content-wrapper {
    position: absolute;
    left: 0;
    top: 0;
  }
}
@media (max-width: 1460px) {
  .collabs__header {
    width: 75%;
    height: auto;
  }
}
@media (max-width: 1024px) {
  .collabs__header {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 640px) {
  .collabs__header {
    position: absolute;
    left: 50%;
    top: 0;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    -webkit-transform: translate(-50%, -85%);
    -ms-transform: translate(-50%, -85%);
    transform: translate(-50%, -85%);
  }
}
.collabs__slogan {
  position: absolute;
  right: 75px;
  top: 240px;
  z-index: 2;
  max-width: 360px;
  font-weight: 700;
  font-size: clamp(14px, 1.0416666667vw, 20px);
  line-height: 1.2em;
  text-transform: uppercase;
  color: var(--main-white);
}
@media (max-width: 1460px) and (max-width: 1440px) {
  .collabs__slogan {
    right: -10px;
    height: 45px;
  }
}
@media (max-width: 1024px) {
  .collabs__slogan {
    right: 10px;
    top: 42px;
    height: 52px;
    max-width: 250px;
    text-wrap: balance;
  }
}
@media (max-width: 850px) {
  .collabs__slogan {
    right: -15px;
    font-size: 1.8vw;
  }
}
@media (max-width: 768px) {
  .collabs__slogan {
    right: -20px;
  }
}
@media (max-width: 758px) {
  .collabs__slogan {
    right: -45px;
    font-size: 12px;
  }
}
@media (max-width: 680px) {
  .collabs__slogan {
    right: -50px;
  }
}
@media (max-width: 640px) {
  .collabs__slogan {
    left: 0;
    right: unset;
    top: unset;
    bottom: 44%;
    width: 300px;
    max-width: unset;
    font-weight: 500;
    font-size: 12px;
  }
}
.collabs__texts {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-grid-columns: 507px 400px;
  grid-template-columns: 507px 400px;
  -ms-grid-rows: auto 1fr;
  grid-template-rows: auto 1fr;
  max-width: 60%;
  color: var(--main-white);
  gap: 20px 40px;
}
@media (max-width: 1460px) {
  .collabs__texts {
    -ms-grid-columns: 1.05fr 1fr;
    grid-template-columns: 1.05fr 1fr;
    max-width: 60%;
  }
}
@media (max-width: 1024px) {
  .collabs__texts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 425px;
  }
}
@media (max-width: 640px) {
  .collabs__texts {
    position: absolute;
    bottom: 0;
    color: var(--text);
    gap: 20px;
  }
}
.collabs__logo {
  position: absolute;
  right: 257px;
  bottom: 40px;
  z-index: 2;
}
@media (max-width: 1460px) {
  .collabs__logo {
    right: 200px;
    width: 130px;
    height: 45px;
  }
}
@media (max-width: 1024px) {
  .collabs__logo {
    right: 145px;
    width: 77px;
    height: 26px;
  }
}
@media (max-width: 640px) {
  .collabs__logo {
    left: 0;
    right: unset;
    top: unset;
    bottom: 42%;
    width: 58px;
    height: 20px;
  }
}
.collabs__logo svg {
  fill: var(--main-white);
}
.collabs__text-title, .collabs__mail {
  -ms-flex-item-align: end;
  -ms-grid-row-align: end;
  align-self: end;
  font-weight: 700;
  font-size: clamp(16px, 1.0416666667vw, 20px);
  line-height: 1.2em;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .collabs__text-title, .collabs__mail {
    text-wrap: balance;
  }
}
@media (max-width: 640px) {
  .collabs__text-title, .collabs__mail {
    font-size: 14px;
  }
}
@media (max-width: 1024px) {
  .collabs__mail {
    position: absolute;
    right: 18px;
    bottom: 85px;
  }
}
@media (max-width: 640px) {
  .collabs__mail {
    position: static;
    -ms-flex-item-align: start;
    -ms-grid-row-align: start;
    align-self: start;
    -webkit-box-ordinal-group: 100;
    -ms-flex-order: 99;
    order: 99;
  }
}
.collabs__text {
  font-size: clamp(16px, 1.0416666667vw, 20px);
  line-height: 1.2em;
  letter-spacing: -0.02em;
}
@media (max-width: 640px) {
  .collabs__text {
    font-size: 14px;
  }
}
.collabs__colors {
  position: absolute;
  right: 50px;
  bottom: 40px;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media (max-width: 1024px) {
  .collabs__colors {
    right: 20px;
    gap: 5px;
  }
}
@media (max-width: 640px) {
  .collabs__colors {
    right: 20px;
    bottom: 42%;
    gap: 5px;
  }
}
.collabs__color {
  border: 1px solid var(--white);
  width: 36px;
  height: 36px;
}
@media (max-width: 1024px) {
  .collabs__color {
    width: 20px;
    height: 20px;
  }
}
.collabs__color--white {
  background-color: var(--white);
}
.collabs__color--green {
  background-color: #1C4C2D;
}

html:has(.headliner) {
  font-size: 8.53px;
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html:has(.headliner) {
    font-size: calc(8.53px + 0.0083370536 * (100vw - 1023px));
  }
}
@media (min-width: 1919px) {
  html:has(.headliner) {
    font-size: 16px;
  }
}

@media (min-width: 1023px) and (max-width: 1919px) {
  html body .headliner {
    margin: 18.125rem 0 0;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 1024px) {
  html body .headliner {
    margin: 6.4375rem 0 0;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .headliner .container {
    position: relative;
  }
  html body .headliner__content {
    position: absolute;
    right: 13.8125rem;
    top: 0;
    z-index: 2;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 2fr 1fr;
    grid-template-columns: 2fr 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
    width: 50%;
    max-width: 56.25rem;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    gap: 5rem 12.5rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 1600px) {
  html body .headliner__content {
    right: 9.375rem;
    gap: 3.75rem 8.75rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 1024px) {
  html body .headliner__content {
    right: 1.25rem;
    top: 1.875rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 21.875rem;
    max-width: 50%;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    gap: 1.125rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .headliner__content {
    left: 50%;
    top: 5.75rem;
    -webkit-transform: translateX(-45%);
    -ms-transform: translateX(-45%);
    transform: translateX(-45%);
    gap: 1.3em;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .headliner__slogan {
    -ms-flex-item-align: end;
    align-self: flex-end;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.1em;
    text-transform: uppercase;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 1024px) {
  html body .headliner__slogan {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    color: var(--main-white);
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .headliner__slogan {
    font-weight: 500;
    font-size: 0.75rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .headliner__text {
    font-size: 1.25rem;
    line-height: 1.2em;
    letter-spacing: -0.02em;
    text-wrap: balance;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 1024px) {
  html body .headliner__text {
    color: var(--main-white);
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .headliner__text {
    font-size: 0.875rem;
    text-wrap: unset;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .headliner__text--white {
    color: var(--main-white);
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .headliner__text--white {
    display: none;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .headliner__logo {
    position: absolute;
    left: 0.9375rem;
    top: 0;
    z-index: 2;
    border: 0.125rem solid var(--black);
    border-radius: 13.4375rem/5rem;
    padding: 2.0625rem 2.3125rem 3.4375rem 2.1875rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    width: 27.375rem;
    height: 10.25rem;
    background-color: var(--main-white);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  html body .headliner__logo svg {
    position: relative;
    width: 100%;
    height: 100%;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 1600px) {
  html body .headliner__logo {
    left: -2.5rem;
    top: -1.25rem;
    scale: 0.75;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 1024px) {
  html body .headliner__logo {
    left: 1.875rem;
    top: 0.625rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 0.0625rem solid var(--black);
    padding: 0;
    width: 16.5rem;
    height: 6.125rem;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    scale: 1;
  }
  html body .headliner__logo svg {
    position: relative;
    left: -0.125rem;
    top: -0.375rem;
    width: 80%;
    height: 100%;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .headliner__logo {
    left: 50%;
    width: 11.5625rem;
    height: 4.375rem;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  html body .headliner__logo svg {
    position: relative;
    left: -0.125rem;
    top: -0.1875rem;
    width: 75%;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .headliner__img {
    position: relative;
    border: 0.125rem solid var(--black);
    width: 100%;
    height: 67.375rem;
    background: -webkit-image-set(url("../img/page-about-us/herobg.jpg") 1x, url("../img/page-about-us/herobg2x.jpg") 2x);
    background: image-set(url("../img/page-about-us/herobg.jpg") 1x, url("../img/page-about-us/herobg2x.jpg") 2x);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 1024px) {
  html body .headliner__img {
    border: 0.0625rem solid var(--black);
    height: 65.125rem;
    background: -webkit-image-set(url("../img/page-about-us/herobgtablet.jpg") 1x, url("../img/page-about-us/herobgtablet2x.jpg") 2x);
    background: image-set(url("../img/page-about-us/herobgtablet.jpg") 1x, url("../img/page-about-us/herobgtablet2x.jpg") 2x);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .headliner__img {
    height: 35.5rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .headliner__colors {
    position: absolute;
    right: 3.125rem;
    bottom: 2.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.625rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .headliner__colors {
    right: 1.25rem;
    bottom: 1.25rem;
    gap: 0.3125rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .headliner__color {
    border: 0.0625rem solid var(--white);
    width: 2.25rem;
    height: 2.25rem;
  }
  html body .headliner__color--white {
    background-color: var(--white);
  }
  html body .headliner__color--green {
    background-color: #1C4C2D;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .headliner__color {
    width: 1.25rem;
    height: 1.25rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .headliner__bottom-text {
    display: none;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .headliner__bottom-text {
    display: block;
    margin: 1.875rem 0 0;
    width: 100%;
    font-size: 0.875rem;
    line-height: 1.2em;
    text-wrap: balance;
  }
}

.headliner {
  margin: 290px 0 0;
}
@media (max-width: 1024px) {
  .headliner {
    margin: 103px 0 0;
  }
}
.headliner .container {
  position: relative;
}
.headliner__content {
  position: absolute;
  right: 221px;
  top: 0;
  z-index: 2;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 1fr;
  grid-template-columns: 2fr 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
  width: 50%;
  max-width: 900px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  gap: 80px 200px;
}
@media (max-width: 1600px) {
  .headliner__content {
    right: 150px;
    gap: 60px 140px;
  }
}
@media (max-width: 1024px) {
  .headliner__content {
    right: 20px;
    top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 350px;
    max-width: 50%;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    gap: 18px;
  }
}
@media (max-width: 640px) {
  .headliner__content {
    left: 50%;
    top: 92px;
    -webkit-transform: translateX(-45%);
    -ms-transform: translateX(-45%);
    transform: translateX(-45%);
    gap: 1.3em;
  }
}
.headliner__slogan {
  -ms-flex-item-align: end;
  align-self: flex-end;
  font-weight: 700;
  font-size: clamp(16px, 1.0416666667vw, 20px);
  line-height: 1.1em;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .headliner__slogan {
    -ms-grid-row-align: flex-start;
    -ms-grid-column-align: flex-start;
    place-self: flex-start flex-start;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    color: var(--main-white);
  }
}
@media (max-width: 640px) {
  .headliner__slogan {
    font-weight: 500;
    font-size: 12px;
  }
}
.headliner__text {
  font-size: clamp(16px, 1.0416666667vw, 20px);
  line-height: 1.2em;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
@media (max-width: 1024px) {
  .headliner__text {
    color: var(--main-white);
  }
}
@media (max-width: 640px) {
  .headliner__text {
    font-size: 14px;
    text-wrap: unset;
  }
}
.headliner__text--white {
  color: var(--main-white);
}
@media (max-width: 640px) {
  .headliner__text--white {
    display: none;
  }
}
.headliner__logo {
  position: absolute;
  left: 15px;
  top: 0;
  z-index: 2;
  border: 2px solid var(--black);
  border-radius: 215px/80px;
  padding: 33px 37px 55px 35px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  width: 438px;
  height: 164px;
  background-color: var(--main-white);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media (max-width: 1600px) {
  .headliner__logo {
    left: -40px;
    top: -20px;
    scale: 0.75;
  }
}
@media (max-width: 1024px) {
  .headliner__logo {
    left: 30px;
    top: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid var(--black);
    padding: 0;
    width: 264px;
    height: 98px;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    scale: 1;
  }
  .headliner__logo svg {
    position: relative;
    left: -2px;
    top: -6px;
    width: 80%;
    height: 100%;
  }
}
@media (max-width: 640px) {
  .headliner__logo {
    left: 50%;
    width: 185px;
    height: 70px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .headliner__logo svg {
    position: relative;
    left: -2px;
    top: -3px;
    width: 75%;
  }
}
.headliner__img {
  position: relative;
  border: 2px solid var(--black);
  width: 100%;
  height: 1078px;
  background: -webkit-image-set(url("../img/page-about-us/herobg.jpg") 1x, url("../img/page-about-us/herobg2x.jpg") 2x);
  background: image-set(url("../img/page-about-us/herobg.jpg") 1x, url("../img/page-about-us/herobg2x.jpg") 2x);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 1024px) {
  .headliner__img {
    border: 1px solid var(--black);
    height: 1042px;
    background: -webkit-image-set(url("../img/page-about-us/herobgtablet.jpg") 1x, url("../img/page-about-us/herobgtablet2x.jpg") 2x);
    background: image-set(url("../img/page-about-us/herobgtablet.jpg") 1x, url("../img/page-about-us/herobgtablet2x.jpg") 2x);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
@media (max-width: 640px) {
  .headliner__img {
    height: 568px;
  }
}
.headliner__colors {
  position: absolute;
  right: 50px;
  bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media (max-width: 640px) {
  .headliner__colors {
    right: 20px;
    bottom: 20px;
    gap: 5px;
  }
}
.headliner__color {
  border: 1px solid var(--white);
  width: 36px;
  height: 36px;
}
.headliner__color--white {
  background-color: var(--white);
}
.headliner__color--green {
  background-color: #1C4C2D;
}
@media (max-width: 640px) {
  .headliner__color {
    width: 20px;
    height: 20px;
  }
}
.headliner__bottom-text {
  display: none;
}
@media (max-width: 640px) {
  .headliner__bottom-text {
    display: block;
    margin: 30px 0 0;
    width: 100%;
    font-size: 14px;
    line-height: 1.2em;
    text-wrap: balance;
  }
}

.page-default {
  margin: 206px auto 100px;
}
@media (max-width: 1024px) {
  .page-default {
    margin: 102px auto 50px;
  }
}
@media (max-width: 640px) {
  .page-default {
    margin: 110px auto 50px;
  }
}

html:has(.lookbook-item) {
  font-size: 8.53px;
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html:has(.lookbook-item) {
    font-size: calc(8.53px + 0.0083370536 * (100vw - 1023px));
  }
}
@media (min-width: 1919px) {
  html:has(.lookbook-item) {
    font-size: 16px;
  }
}

@media (min-width: 1023px) and (max-width: 1919px) {
  html body .lookbook-item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border: 0.0625rem solid var(--text);
    padding: 1.875rem 3.75rem;
    height: 110vh;
    max-height: 69.375rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 991px) {
  html body .lookbook-item {
    padding: 1.25rem;
    height: 32.5rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .lookbook-item {
    padding: 0.9375rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .lookbook-item div {
    position: relative;
    z-index: 3;
  }
  html body .lookbook-item img {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  html body .lookbook-item__name {
    font-family: var(--secondary-font);
    font-weight: 400;
    font-size: 3.75rem;
    line-height: 1em;
    letter-spacing: -0.03em;
  }
  html body .lookbook-item__colors {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.625rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 991px) {
  html body .lookbook-item__colors {
    gap: 0.3125rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .lookbook-item__color {
    border: 0.0625rem solid var(--text);
    width: 2.25rem;
    height: 2.25rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 991px) {
  html body .lookbook-item__color {
    width: 1.25rem;
    height: 1.25rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .lookbook-item__color--green {
    background-color: #747143;
  }
  html body .lookbook-item__color--white {
    background-color: #FDFBF4;
  }
}

.lookbook-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border: 1px solid var(--text);
  padding: 30px 60px;
  height: 110vh;
  max-height: 1110px;
}
@media (max-width: 991px) {
  .lookbook-item {
    padding: 20px;
    height: 520px;
  }
}
@media (max-width: 640px) {
  .lookbook-item {
    padding: 15px;
  }
}
.lookbook-item div {
  position: relative;
  z-index: 3;
}
.lookbook-item img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.lookbook-item__name {
  font-family: var(--secondary-font);
  font-weight: 400;
  font-size: clamp(30px, 3.125vw, 60px);
  line-height: 1em;
  letter-spacing: -0.03em;
}
.lookbook-item__colors {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media (max-width: 991px) {
  .lookbook-item__colors {
    gap: 5px;
  }
}
.lookbook-item__color {
  border: 1px solid var(--text);
  width: 36px;
  height: 36px;
}
@media (max-width: 991px) {
  .lookbook-item__color {
    width: 20px;
    height: 20px;
  }
}
.lookbook-item__color--green {
  background-color: #747143;
}
.lookbook-item__color--white {
  background-color: #FDFBF4;
}

html:has(.page-lookbooks) {
  font-size: 8.53px;
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html:has(.page-lookbooks) {
    font-size: calc(8.53px + 0.0083370536 * (100vw - 1023px));
  }
}
@media (min-width: 1919px) {
  html:has(.page-lookbooks) {
    font-size: 16px;
  }
}

@media (min-width: 1023px) and (max-width: 1919px) {
  html body .page-lookbooks {
    margin: 12.5rem 0 15.625rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 1024px) {
  html body .page-lookbooks {
    margin: 5.8125rem 0 12.5rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .page-lookbooks {
    margin: 6.25rem 0 12.5rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .page-lookbooks .container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1.25rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .page-lookbooks .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.page-lookbooks {
  margin: 200px 0 250px;
}
@media (max-width: 1024px) {
  .page-lookbooks {
    margin: 93px 0 200px;
  }
}
@media (max-width: 640px) {
  .page-lookbooks {
    margin: 100px 0 200px;
  }
}
.page-lookbooks .container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 640px) {
  .page-lookbooks .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.customer-archive {
  overflow: visible;
  margin: 250px 0;
}
@media (max-width: 1024px) {
  .customer-archive {
    margin: 200px 0;
  }
}
@media (max-width: 640px) {
  .customer-archive {
    margin: 150px 0 200px;
  }
}
.customer-archive__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 160px;
}
@media (max-width: 1440px) {
  .customer-archive__inner {
    gap: 70px;
  }
}
@media (max-width: 1024px) {
  .customer-archive__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: unset;
    -ms-flex-pack: unset;
    justify-content: unset;
    gap: 45px;
  }
}
@media (max-width: 640px) {
  .customer-archive__inner {
    gap: 0;
  }
}
.customer-archive__body {
  position: relative;
}
@media (max-width: 1024px) {
  .customer-archive__body {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    row-gap: 60px;
  }
}
@media (max-width: 640px) {
  .customer-archive__body {
    display: contents;
  }
}
.customer-archive__title {
  position: relative;
  z-index: 1;
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 1;
  grid-row: 1;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font-family: var(--secondary-font);
  font-weight: 300;
  font-size: clamp(110px, 9.375vw, 180px);
  line-height: 0.75em;
  letter-spacing: -0.03em;
}
@media (max-width: 1024px) {
  .customer-archive__title {
    font-size: 130px;
  }
}
@media (max-width: 640px) {
  .customer-archive__title {
    font-size: 68px;
    line-height: 1.283em;
    text-align: center;
  }
}
.customer-archive__title .customer__oval {
  -webkit-transform: translate(-2%, 75%);
  -ms-transform: translate(-2%, 75%);
  transform: translate(-2%, 75%);
}
@media (max-width: 1024px) {
  .customer-archive__title .customer__oval {
    padding: 20px;
    -webkit-transform: translateY(92%) translateX(-2%);
    -ms-transform: translateY(92%) translateX(-2%);
    transform: translateY(92%) translateX(-2%);
  }
}
@media (max-width: 640px) {
  .customer-archive__title .customer__oval {
    left: 50%;
    font-size: 14px;
    -webkit-transform: translateY(50%) translateX(-50%);
    -ms-transform: translateY(50%) translateX(-50%);
    transform: translateY(50%) translateX(-50%);
  }
}
.customer-archive__descr {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 1;
  grid-row: 1;
  margin: 90px 0 0;
  max-width: 435px;
  font-size: clamp(16px, 1.0416666667vw, 20px);
  line-height: 1.2em;
}
@media (max-width: 1024px) {
  .customer-archive__descr {
    position: absolute;
    right: 0;
    bottom: 0;
    -ms-grid-row-align: end;
    -ms-grid-column-align: flex-end;
    place-self: end flex-end;
    margin: 0;
    max-width: 355px;
  }
}
@media (max-width: 640px) {
  .customer-archive__descr {
    position: static;
    -ms-flex-item-align: left;
    -ms-grid-row-align: left;
    align-self: left;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    margin: 25px 0 0;
    max-width: 100%;
    font-size: 14px;
  }
}
.customer-archive__link {
  position: absolute;
  left: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 600;
  font-size: clamp(16px, 1.0416666667vw, 20px);
  text-transform: uppercase;
  -webkit-transition: opacity 0.2s ease 0s;
  transition: opacity 0.2s ease 0s;
  will-change: opacity;
  gap: 10px;
}
.customer-archive__link:hover {
  opacity: 0.5;
}
.customer-archive__link svg {
  width: 27px;
  height: 34px;
  fill: var(--text);
}
@media (max-width: 1024px) {
  .customer-archive__link svg {
    width: 21px;
    height: 19px;
  }
}
@media (max-width: 640px) {
  .customer-archive__link svg {
    width: 19px;
    height: 17px;
  }
}
@media (max-width: 1024px) {
  .customer-archive__link {
    -ms-grid-row-align: end;
    -ms-grid-column-align: start;
    place-self: end start;
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 2;
    grid-row: 2;
    margin: 0;
  }
}
@media (max-width: 640px) {
  .customer-archive__link {
    position: static;
    -ms-flex-item-align: start;
    align-self: flex-start;
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
    margin: 20px 0 0;
    font-size: 14px;
  }
}
.customer-archive__archive {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 435px 435px 207px;
  grid-template-columns: 435px 435px 207px;
  -ms-grid-rows: 278px 278px 278px;
  grid-template-rows: 278px 278px 278px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  gap: 20px;
}
@media (max-width: 1810px) {
  .customer-archive__archive {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 2fr 2fr 1fr;
    grid-template-columns: 2fr 2fr 1fr; /* 435px 435px 207px → 2fr 2fr 1fr */
    -ms-grid-rows: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr; /* Равные ряды */
    width: 100%; /* Растягиваем на всю ширину */
    height: 100%;
    max-width: 100%;
    gap: 20px;
  }
}
@media (max-width: 1024px) {
  .customer-archive__archive {
    gap: 10px;
  }
}
@media (max-width: 640px) {
  .customer-archive__archive {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: 179px 409px 270px 222px;
    grid-template-rows: 179px 409px 270px 222px;
  }
}
.customer-archive__photo {
  border: 2px solid var(--black);
  width: 100%;
  height: 100%;
}
.customer-archive__photo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
@media (max-width: 1024px) {
  .customer-archive__photo {
    border: 1px solid var(--black);
  }
}
@media (min-width: 641px) {
  .customer-archive__photo:nth-child(1) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
  }
  .customer-archive__photo:nth-child(2) {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/3;
  }
  .customer-archive__photo:nth-child(3) {
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-column: 3/4;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
  }
  .customer-archive__photo:nth-child(4) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 2;
    -ms-grid-row-span: 2;
    grid-row: 2/4;
  }
}
@media (max-width: 640px) {
  .customer-archive__photo:nth-child(4), .customer-archive__photo:nth-child(7) {
    display: none;
  }
  .customer-archive__photo:nth-child(1n) {
    grid-column: auto;
    grid-row: auto;
  }
  .customer-archive__photo:nth-child(1) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
  }
  .customer-archive__photo:nth-child(2) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
  }
  .customer-archive__photo:nth-child(3) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3/4;
  }
  .customer-archive__photo:nth-child(5) {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3/4;
  }
  .customer-archive__photo:nth-child(6) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    grid-row: 4/5;
  }
}

.customer__oval {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  border: 2px solid var(--text);
  border-radius: 50%;
  padding: 23px 25px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: clamp(16px, 1.0416666667vw, 20px);
  line-height: 1em;
  letter-spacing: 0;
  white-space: nowrap;
  text-transform: uppercase;
  background-color: var(--main-white);
  -webkit-transform: translateY(5%) translateX(-2%);
  -ms-transform: translateY(5%) translateX(-2%);
  transform: translateY(5%) translateX(-2%);
}
@media (max-width: 1024px) {
  .customer__oval {
    border: 1px solid var(--text);
    padding: 20px 25px;
    -webkit-transform: translateY(55%) translateX(-2%);
    -ms-transform: translateY(55%) translateX(-2%);
    transform: translateY(55%) translateX(-2%);
  }
}
@media (max-width: 640px) {
  .customer__oval {
    left: 50%;
    padding: 18px 30px;
    font-size: 14px;
    -webkit-transform: translateY(65%) translateX(-50%);
    -ms-transform: translateY(65%) translateX(-50%);
    transform: translateY(65%) translateX(-50%);
  }
}

.customer-tabs {
  margin: 205px 0 0;
}
@media (max-width: 1024px) {
  .customer-tabs {
    margin: 110px 0 0;
  }
}
.customer-tabs__title {
  position: relative;
  z-index: 1;
}
.customer-tabs__title h1 {
  margin: 0;
  font-family: var(--secondary-font);
  font-weight: 300;
  font-size: clamp(110px, 9.375vw, 180px);
  letter-spacing: -0.03em;
}
@media (max-width: 1024px) {
  .customer-tabs__title h1 {
    font-size: 130px;
    line-height: 1em;
  }
}
@media (max-width: 640px) {
  .customer-tabs__title h1 {
    font-size: 68px;
    line-height: 1.283em;
    text-align: center;
  }
}
.customer-tabs__tabs-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 70px 0 0;
  gap: 17.7%;
}
.customer-tabs__tabs-wrapper--mobile {
  display: none;
}
@media (max-width: 1440px) {
  .customer-tabs__tabs-wrapper {
    gap: 12.7%;
  }
}
@media (max-width: 1024px) {
  .customer-tabs__tabs-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
  }
}
@media (max-width: 640px) {
  .customer-tabs__tabs-wrapper {
    gap: 20px;
  }
  .customer-tabs__tabs-wrapper--desktop {
    display: none;
  }
  .customer-tabs__tabs-wrapper--mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.customer-tabs__accordeon {
  display: none;
}
@media (max-width: 640px) {
  .customer-tabs__accordeon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    padding: 0 0 10px;
  }
  .customer-tabs__accordeon button {
    all: unset;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    font-weight: 500;
    text-transform: uppercase;
    opacity: 0.5;
    -webkit-transition: opacity 0.2s ease 0s;
    transition: opacity 0.2s ease 0s;
  }
  .customer-tabs__accordeon button svg {
    width: 19px;
    height: 17px;
    opacity: 0.5;
    -webkit-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
  }
  .customer-tabs__accordeon button.active, .customer-tabs__accordeon button.active * {
    opacity: 1;
  }
  .customer-tabs__accordeon button.active svg {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  .customer-tabs__accordeon .customer-tabs__content {
    overflow: hidden;
    max-width: 100%;
    max-height: 0;
    opacity: 1;
    -webkit-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
  }
  .customer-tabs__accordeon .customer-tabs__content.active {
    margin: 20px 0 0;
  }
}
.customer-tabs__buttons-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1024px) {
  .customer-tabs__buttons-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 32px 0 0;
    gap: 10px;
  }
}
@media (max-width: 640px) {
  .customer-tabs__buttons-wrapper {
    display: none;
  }
}
.customer-tabs__buttons-wrapper button {
  all: unset;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  width: 100%;
  font-weight: 500;
  font-size: clamp(16px, 1.5625vw, 30px);
  line-height: 1.2em;
  letter-spacing: -0.02;
  white-space: nowrap;
  text-transform: uppercase;
  opacity: 0.5;
  -webkit-transition: opacity 0.2s ease 0s;
  transition: opacity 0.2s ease 0s;
  cursor: pointer;
  gap: 10px;
}
@media (max-width: 1024px) {
  .customer-tabs__buttons-wrapper button {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.customer-tabs__buttons-wrapper button svg {
  width: clamp(21px, 2.2395833333vw, 43px);
  fill: var(--text);
}
.customer-tabs__buttons-wrapper button.active {
  opacity: 1;
}
.customer-tabs__content-wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
}
@media (max-width: 640px) {
  .customer-tabs__content-wrapper {
    display: contents;
  }
}
.customer-tabs__content-wrapper div {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 1;
  grid-row: 1;
}
.customer-tabs__content {
  max-width: 58%;
  opacity: 0;
}
.customer-tabs__content.active {
  opacity: 1;
}
.customer-tabs__content p {
  margin: 0;
  font-size: clamp(16px, 1.0416666667vw, 20px);
  line-height: 1.2em;
}
.customer-tabs__content p:not(:first-child) {
  margin: 1.2em 0 0;
}

.form-emulator {
  margin: 70px 0 0;
  -webkit-transition: opacity 0.15s ease 0s;
  transition: opacity 0.15s ease 0s;
}
@media (max-width: 640px) {
  .form-emulator {
    margin: 25px 0 0;
  }
}
.form-emulator[data-form-emulator-inited=false] {
  opacity: 0;
}
@media (min-width: 1025px) {
  .form-emulator {
    display: none;
  }
}
.form-emulator button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  outline: inherit;
  outline: none;
  border: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  font: inherit;
  color: inherit;
  background: none;
}
.form-emulator__inner {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 38.46% 59.34%;
  grid-template-columns: 38.46% 59.34%;
  gap: 0.625rem 0.3125rem;
}
@media (max-width: 640px) {
  .form-emulator__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.form-emulator__title {
  font-family: var(--secondary-font);
  font-size: clamp(30px, 3.125vw, 60px);
  letter-spacing: -0.03em;
}
@media (max-width: 640px) {
  .form-emulator__title {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
.form-emulator__price {
  position: absolute;
  right: 0;
  top: 0;
  max-width: 20%;
  font-size: 3.91vw;
}
@media (max-width: 640px) {
  .form-emulator__price {
    font-size: 20px;
  }
}
.form-emulator__description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 77%;
  font-size: 14px;
  opacity: 0.5;
  gap: 10px;
}
@media (max-width: 640px) {
  .form-emulator__description {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    max-width: 100%;
  }
}
.form-emulator__size-chart {
  display: block;
  -ms-grid-row-align: end;
  -ms-grid-column-align: start;
  place-self: end start;
  border-bottom: 1px solid var(--text);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font: inherit;
  font-size: 16px;
  opacity: 0.5;
  cursor: pointer;
}
@media (max-width: 640px) {
  .form-emulator__size-chart {
    -ms-grid-row-align: start;
    -ms-grid-column-align: start;
    place-self: start start;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    margin: 30px 0 0;
    font-size: 12px;
  }
}
.form-emulator__sizes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 30px 0 0;
  gap: 15px;
}
@media (max-width: 640px) {
  .form-emulator__sizes {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
    margin: 8px 0 0;
  }
}
.form-emulator button.form-emulator__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid var(--text);
  padding: 9px 0;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2em;
  text-transform: uppercase;
}
.form-emulator button.form-emulator__button--black {
  margin: 30px 0 0;
  color: var(--white);
  background: var(--text);
}
@media (max-width: 640px) {
  .form-emulator button.form-emulator__button--black {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
}
@media (max-width: 640px) {
  .form-emulator button.form-emulator__button--white {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
}

button.size-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid var(--text);
  width: 40px;
  height: 36px;
  font-size: 14px;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
button.size-btn[data-size-selected=true] {
  color: var(--white);
  background-color: var(--text);
}
@media (max-width: 640px) {
  button.size-btn {
    padding: 0 5px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}

.product {
  position: relative;
}

.summary {
  position: absolute;
  right: 15vw;
  top: 0;
  max-width: 430px;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
@media (max-width: 1700px) {
  .summary {
    right: var(--container-offset);
    max-width: 400px;
  }
}
@media (max-width: 1200px) {
  .summary {
    position: fixed;
    left: var(--container-offset);
    right: unset;
    top: unset;
    bottom: 20px;
    z-index: 2;
    border: 1px solid var(--text);
    padding: 30px 20px;
    width: calc(100vw - var(--container-offset) - var(--container-offset));
    max-width: unset;
    background-color: var(--main-white);
  }
}
.summary .product_title {
  margin: 0;
  font-family: var(--secondary-font);
  font-weight: 400;
  font-size: 60px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--text);
}
.summary .woocommerce-product-details__short-description {
  margin: 20px 0 0;
}
.summary .woocommerce-product-details__short-description p {
  margin: 0;
  max-width: unset;
  font-size: 20px;
  line-height: 1.2em;
  letter-spacing: -0.02em;
}
@media (max-width: 1200px) {
  .summary .woocommerce-product-details__short-description p {
    font-size: 14px;
  }
}
@media (max-width: 640px) {
  .summary .woocommerce-product-details__short-description p {
    font-size: 12px;
  }
}
.summary .product__attribute {
  margin: 20px 0 0;
  font-size: 16px;
  line-height: 1.2em;
  letter-spacing: -0.02em;
  opacity: 0.5;
}
.summary form.cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 45px 0 0;
}
.summary form.cart .swatches-hidden-select {
  display: none;
}
.summary form.cart .label {
  display: none;
}
.summary form.cart .swatches-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 40%;
  gap: 23px;
}
.summary form.cart .swatches-container .swatches-option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid var(--text);
  padding: 12px 16px;
  width: 53px;
  height: 47px;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  cursor: pointer;
}
.summary form.cart .swatches-container .swatches-option:hover {
  opacity: 0.5;
}
.summary form.cart .swatches-container .swatches-option.selected-swatch {
  color: var(--main-white);
  background-color: var(--text);
}
.summary form.cart .product__size-chart {
  margin: 15px 0 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.summary form.cart .product__size-chart a {
  position: relative;
  font-size: 16px;
  line-height: 1.2em;
  opacity: 0.5;
  -webkit-transition: opacity 0.2s ease 0s;
  transition: opacity 0.2s ease 0s;
}
.summary form.cart .product__size-chart a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--text);
}
.summary form.cart .product__size-chart a:hover {
  opacity: 1;
}
.summary form.cart .woocommerce-variation-price {
  margin: 40px 0 0;
}
.summary form.cart .woocommerce-variation-price .amount {
  font-size: 40px;
}
.summary form.cart .woocommerce-variation-add-to-cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 40px 0 0;
  gap: 10px;
}
.summary form.cart .quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 350px;
  gap: 7px;
}
.summary form.cart .single_add_to_cart_button,
.summary form.cart .product-form__button {
  all: unset;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid var(--text);
  padding: 14px 0;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  cursor: pointer;
}
.summary form.cart .single_add_to_cart_button {
  color: var(--main-white);
  background-color: var(--text);
}

@media (max-width: 1200px) and (min-width: 641px) {
  .summary {
    position: fixed;
    left: var(--container-offset);
    right: unset;
    top: unset;
    bottom: 20px;
    z-index: 2;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 40.66% 44.92% 13.74%;
    grid-template-columns: 40.66% 44.92% 13.74%;
    -ms-grid-rows: auto auto 100px;
    grid-template-rows: auto auto 100px;
    border: 1px solid var(--text);
    padding: 30px 20px;
    width: calc(100vw - var(--container-offset) - var(--container-offset));
    max-width: unset;
    background-color: var(--main-white);
  }
  .summary .product_title {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
    font-size: 30px;
    line-height: 1em;
  }
  .summary .woocommerce-variation-availability,
  .summary .added_to_cart.wc-forward.product-form__button {
    display: none;
  }
  .summary .woocommerce-product-details__short-description {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 1;
    grid-row: 1;
    margin: 0;
    opacity: 0.5;
  }
  .summary .woocommerce-product-details__short-description p {
    font-size: 14px;
  }
  .summary .product__attribute {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 2;
    grid-row: 2;
    margin: 10px 0 0;
    font-size: 14px;
  }
  .summary form.cart {
    position: absolute;
    left: 0;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin: 0;
    padding: 30px 20px;
    width: 100%;
    height: 100%;
    max-width: unset;
  }
  .summary form.cart .swatches-container {
    position: absolute;
    left: 20px;
    bottom: 79px;
    margin: 0;
    gap: 15px;
  }
  .summary form.cart .swatches-container .swatches-option {
    padding: 6px;
    width: 40px;
    height: 35px;
  }
  .summary form.cart table.variations {
    width: 40.66%;
  }
  .summary form.cart .single_variation_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    width: 59.34%;
  }
  .summary form.cart .woocommerce-variation-add-to-cart {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 0.5fr 1fr;
    grid-template-columns: 0.5fr 1fr;
    -ms-grid-rows: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    margin: 0;
  }
  .summary form.cart .woocommerce-variation-add-to-cart .single_add_to_cart_button {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    -ms-grid-row: 2;
    grid-row: 2;
  }
  .summary form.cart .woocommerce-variation-add-to-cart .quantity * {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    height: 35px;
  }
  .summary form.cart .product__size-chart {
    position: absolute;
    left: 20px;
    bottom: 30px;
    margin: 0;
  }
  .summary form.cart .woocommerce-variation-price {
    position: absolute;
    right: 20px;
    top: 30px;
    margin: 0;
  }
  .summary form.cart .woocommerce-variation-price .amount {
    font-size: 30px;
  }
  .summary form.cart .single_add_to_cart_button,
  .summary form.cart .product-form__button {
    padding: 9px;
    font-size: 14px;
  }
}
@media (max-width: 640px) {
  .summary {
    position: fixed;
    left: var(--container-offset);
    right: unset;
    top: unset;
    bottom: 20px;
    z-index: 2;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 0.45fr;
    grid-template-columns: 1fr 0.45fr;
    -ms-grid-rows: auto auto 52px;
    grid-template-rows: auto auto 52px;
    border: 1px solid var(--text);
    padding: 15px;
    width: calc(100vw - var(--container-offset) - var(--container-offset));
    max-width: unset;
    background-color: var(--main-white);
    row-gap: 10px;
  }
  .summary .product_title {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
    font-size: 30px;
    line-height: 1em;
  }
  .summary .woocommerce-product-details__short-description {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
    margin: 0;
    max-width: 70%;
    opacity: 0.5;
  }
  .summary .woocommerce-product-details__short-description p {
    font-size: 12px;
    text-wrap: balance;
  }
  .summary .product__attribute {
    display: none;
  }
  .summary form.cart {
    position: absolute;
    left: 0;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0;
    padding: 15px;
    width: 100%;
    height: 100%;
    max-width: unset;
  }
  .summary form.cart .swatches-container {
    position: absolute;
    left: 15px;
    bottom: 15px;
    margin: 0;
    gap: 5px;
    row-gap: 1px;
  }
  .summary form.cart .swatches-container .swatches-option {
    padding: 6px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    height: 33px;
    font-size: 12px;
  }
  .summary form.cart table.variations {
    -ms-flex-negative: 1;
    flex-shrink: 1;
    width: 40.66%;
  }
  .summary form.cart .single_variation_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    width: 55%;
  }
}
@media (max-width: 640px) and (max-width: 390px) {
  .summary form.cart .single_variation_wrap {
    width: 50%;
  }
}
@media (max-width: 640px) {
  .summary form.cart .woocommerce-variation-add-to-cart {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 0.5fr 1fr;
    grid-template-columns: 0.5fr 1fr;
    -ms-grid-rows: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    margin: 0;
  }
  .summary form.cart .woocommerce-variation-add-to-cart .single_add_to_cart_button {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    -ms-grid-row: 2;
    grid-row: 2;
  }
  .summary form.cart .woocommerce-variation-add-to-cart .quantity {
    display: none;
  }
  .summary form.cart .woocommerce-variation-add-to-cart .quantity * {
    display: none;
  }
  .summary form.cart .product__size-chart {
    display: none;
  }
  .summary form.cart .woocommerce-variation-price {
    position: absolute;
    right: 15px;
    top: 15px;
    margin: 0;
  }
  .summary form.cart .woocommerce-variation-price .amount {
    font-size: 20px;
  }
  .summary form.cart .single_add_to_cart_button,
  .summary form.cart .product-form__button {
    padding: 8px;
    font-size: 12px;
  }
  .summary form.cart .product-form__button {
    display: none;
  }
}
.cart-form-item__quantity {
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
  appearance: textfield;
}
.cart-form-item__quantity::-webkit-outer-spin-button, .cart-form-item__quantity::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.cart-form-item__quantity::-moz-inner-spin-button, .cart-form-item__quantity::-moz-outer-spin-button {
  -moz-appearance: none;
  margin: 0;
}

.cart-form-item__quantity-add,
.cart-form-item__quantity-remove,
.cart-form-item__quantity {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

@media (max-width: 991px) {
  .stock.in-stock {
    display: none;
  }
}

form.cart:not(:has(.woocommerce-variation-add-to-cart)) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 40px 0 0;
  gap: 10px;
}
@media (max-width: 1200px) and (min-width: 641px) {
  form.cart:not(:has(.woocommerce-variation-add-to-cart)) {
    position: absolute;
    left: unset;
    right: 0;
    top: 0;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 0.5fr 1fr;
    grid-template-columns: 0.5fr 1fr;
    -ms-grid-rows: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    margin: 0;
    max-width: 50%;
  }
  form.cart:not(:has(.woocommerce-variation-add-to-cart)) .single_add_to_cart_button {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    -ms-grid-row: 2;
    grid-row: 2;
  }
  form.cart:not(:has(.woocommerce-variation-add-to-cart)) .quantity * {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    height: 35px;
  }
}
@media (max-width: 640px) {
  form.cart:not(:has(.woocommerce-variation-add-to-cart)) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin: 0;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    gap: 10px;
  }
  form.cart:not(:has(.woocommerce-variation-add-to-cart)) .quantity {
    display: none;
  }
}

@media (max-width: 1200px) {
  .product__attribute--attribute_pa_sostav {
    display: none;
  }
}

.single_add_to_cart_button {
  white-space: nowrap;
}

.out-of-stock {
  font-family: var(--secondary-font);
  font-weight: 500;
  font-size: 30px;
}
@media (max-width: 1200px) {
  .out-of-stock {
    position: absolute;
    left: 50%;
    bottom: 20px;
    margin: 0;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@media (max-width: 640px) {
  .out-of-stock {
    bottom: 15px;
    font-size: 24px;
    white-space: nowrap;
  }
}

/* Fluid layout for viewports between 1201px and 1919px */
@media (min-width: 1201px) and (max-width: 1919px) {
  .product {
    position: relative;
  }
  .product .summary {
    position: absolute;
    right: 5vw;
    top: 0;
    padding: 1.56vw 1.04vw; /* 30px 20px → 1.56vw 1.04vw */
    width: calc(100vw - var(--container-offset) * 2);
    max-width: 30vw; /* 430px → 22.4vw */
    background-color: var(--main-white);
    -webkit-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
  }
  .product .summary .product_title {
    margin: 0;
    font-family: var(--secondary-font);
    font-weight: 400;
    font-size: 3.125vw; /* 60px → 3.125vw */
    letter-spacing: -0.03em;
    color: var(--text);
  }
  .product .summary .woocommerce-product-details__short-description {
    margin: 20px 0 0; /* keep small static margin */
  }
  .product .summary .woocommerce-product-details__short-description p {
    margin: 0;
    max-width: unset;
    font-size: 1.04vw; /* 20px → 1.04vw */
    line-height: 1.2em;
    letter-spacing: -0.02em;
  }
  .product .summary .product__attribute {
    margin: 20px 0 0;
    font-size: 0.833vw; /* 16px → 0.833vw */
    line-height: 1.2em;
    letter-spacing: -0.02em;
    opacity: 0.5;
  }
  .product .summary form.cart {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 2.344vw 0 0; /* 45px → 2.344vw */
    gap: 0.52vw; /* 10px → 0.52vw */
  }
  .product .summary form.cart .swatches-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 40%;
    gap: 1.197vw; /* 23px → 1.197vw */
  }
  .product .summary form.cart .swatches-option {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 0.052vw solid var(--text); /* 1px → 0.052vw */
    padding: 0.625vw 0.833vw; /* 12px 16px → 0.625vw 0.833vw */
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content; /* 53px → 2.76vw */
    height: 2.448vw; /* 47px → 2.448vw */
    -webkit-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
    cursor: pointer;
  }
  .product .summary form.cart .swatches-option[data-slug=one-size] {
    width: 6.76vw;
  }
  .product .summary form.cart .swatches-option:hover {
    opacity: 0.5;
  }
  .product .summary form.cart .swatches-option.selected-swatch {
    color: var(--main-white);
    background-color: var(--text);
  }
  .product .summary form.cart .product__size-chart {
    margin: 0.781vw 0 0; /* 15px → 0.781vw */
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .product .summary form.cart .product__size-chart a {
    position: relative;
    font-size: 0.833vw; /* 16px → 0.833vw */
    line-height: 1.2em;
    opacity: 0.5;
    -webkit-transition: opacity 0.2s ease 0s;
    transition: opacity 0.2s ease 0s;
  }
  .product .summary form.cart .product__size-chart a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    width: 100%;
    height: 0.052vw; /* 1px → 0.052vw */
    background-color: var(--text);
  }
  .product .summary form.cart .product__size-chart a:hover {
    opacity: 1;
  }
  .product .summary form.cart .woocommerce-variation-price {
    margin: 2.083vw 0 0; /* 40px → 2.083vw */
  }
  .product .summary form.cart .woocommerce-variation-price .amount {
    font-size: 2.083vw; /* 40px → 2.083vw */
  }
  .product .summary form.cart .woocommerce-variation-add-to-cart {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 2.083vw 0 0; /* 40px → 2.083vw */
    gap: 0.52vw; /* 10px → 0.52vw */
  }
  .product .summary form.cart .quantity {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 350px; /* can remain fixed or convert similarly to vw if desired */
    gap: 0.365vw; /* 7px → 0.365vw */
  }
  .product .summary form.cart .single_add_to_cart_button,
  .product .summary form.cart .product-form__button {
    all: unset;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 0.052vw solid var(--text); /* 1px → 0.052vw */
    padding: 0.729vw 0; /* 14px → 0.729vw */
    font-weight: 600;
    font-size: 0.833vw; /* 16px → 0.833vw */
    text-transform: uppercase;
    cursor: pointer;
  }
  .product .summary form.cart .single_add_to_cart_button {
    color: var(--main-white);
    background-color: var(--text);
  }
}
.summary form .woocommerce-variation-price * {
  text-decoration: none;
}
@media (max-width: 1200px) {
  .summary form .woocommerce-variation-price span.price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-transform: scale(0.7) translateY(-25%);
    -ms-transform: scale(0.7) translateY(-25%);
    transform: scale(0.7) translateY(-25%);
    -webkit-transform-origin: top right;
    -ms-transform-origin: top right;
    transform-origin: top right;
  }
}
.summary form .woocommerce-variation-price .price del .woocommerce-Price-amount {
  padding: 0 0.3125rem 0 0;
  opacity: 0.5;
}
.summary form .woocommerce-variation-price .price del .woocommerce-Price-amount::after {
  content: " ⟶ ";
  display: inline-block;
  padding: 0 0 0 0.3125rem;
  -webkit-transform: scale(0.6);
  -ms-transform: scale(0.6);
  transform: scale(0.6);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
}
@media (max-width: 1200px) {
  .summary form .woocommerce-variation-price .price del .woocommerce-Price-amount {
    display: inline-block;
    padding: 0;
    text-decoration: line-through;
    -webkit-transform: scale(0.8) translateY(20%);
    -ms-transform: scale(0.8) translateY(20%);
    transform: scale(0.8) translateY(20%);
    -webkit-transform-origin: top right;
    -ms-transform-origin: top right;
    transform-origin: top right;
  }
  .summary form .woocommerce-variation-price .price del .woocommerce-Price-amount::after {
    content: unset;
  }
}

.recommendatinos-slide p:has(.woocommerce-Price-amount.amount) *,
.recommendatinos-slide .recommendatinos-slide__price *,
.front-recommendation.swiper-slide p:has(.woocommerce-Price-amount.amount) *,
.front-recommendation.swiper-slide .recommendatinos-slide__price * {
  text-decoration: none;
}
.recommendatinos-slide p:has(.woocommerce-Price-amount.amount) del .woocommerce-Price-amount,
.recommendatinos-slide .recommendatinos-slide__price del .woocommerce-Price-amount,
.front-recommendation.swiper-slide p:has(.woocommerce-Price-amount.amount) del .woocommerce-Price-amount,
.front-recommendation.swiper-slide .recommendatinos-slide__price del .woocommerce-Price-amount {
  padding: 0 0.3125rem 0 0;
  opacity: 0.5;
}
.recommendatinos-slide p:has(.woocommerce-Price-amount.amount) del .woocommerce-Price-amount::after,
.recommendatinos-slide .recommendatinos-slide__price del .woocommerce-Price-amount::after,
.front-recommendation.swiper-slide p:has(.woocommerce-Price-amount.amount) del .woocommerce-Price-amount::after,
.front-recommendation.swiper-slide .recommendatinos-slide__price del .woocommerce-Price-amount::after {
  content: " ⟶ ";
  display: inline-block;
  padding: 0 0 0 0.3125rem;
  -webkit-transform: scale(0.6);
  -ms-transform: scale(0.6);
  transform: scale(0.6);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
}

.cart-form-item * {
  text-decoration: none;
}
@media (min-width: 641px) {
  .cart-form-item .cart-form-item__price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .cart-form-item .cart-form-item__price del .woocommerce-Price-amount {
    display: inline-block;
    text-decoration: line-through;
    opacity: 0.5;
    -webkit-transform: scale(0.7);
    -ms-transform: scale(0.7);
    transform: scale(0.7);
    -webkit-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    transform-origin: bottom right;
  }
}
@media (max-width: 640px) {
  .cart-form-item .cart-form-item__price del .woocommerce-Price-amount {
    padding: 0 0.3125rem 0 0;
    opacity: 0.5;
  }
  .cart-form-item .cart-form-item__price del .woocommerce-Price-amount::after {
    content: " ⟶ ";
    display: inline-block;
    padding: 0 0 0 0.3125rem;
    -webkit-transform: scale(0.6);
    -ms-transform: scale(0.6);
    transform: scale(0.6);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
  }
}

.product-gallery {
  margin: 206px 0 0;
}
@media (max-width: 1024px) {
  .product-gallery {
    margin: 102px 0 0;
  }
}
@media (max-width: 640px) {
  .product-gallery {
    margin: 110px 0 0;
  }
}
.product-gallery .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  width: 100%;
  gap: 20px;
}

.product-gallery__high-swiper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  border: 1px solid var(--text);
  height: 99vh;
  max-width: 46.44vw;
  max-height: 1100px;
}
.product-gallery__high-swiper .swiper-slide {
  height: 99vh;
  cursor: -webkit-grab;
  cursor: grab;
}
.product-gallery__high-swiper .swiper-slide img {
  height: 100%;
}
.product-gallery__high-swiper .swiper-slide:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.product-gallery__thumbs-swiper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  overflow: hidden;
  height: 72vh;
  max-height: 710px;
}
.product-gallery__thumbs-swiper .swiper-slide {
  cursor: pointer;
}
.product-gallery__thumbs-swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.product-gallery__scrollbar {
  width: 5px;
  height: 99vh;
  max-height: 1100px;
  background: rgba(0, 0, 0, 0.1);
}
.product-gallery__scrollbar .swiper-scrollbar-drag {
  background: #000;
  cursor: -webkit-grab;
  cursor: grab;
}
.product-gallery__scrollbar .swiper-scrollbar-drag:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* mobile gallery hidden by default */
.product-gallery--mob {
  display: none;
}

@media (max-width: 1200px) {
  /* hide desktop gallery only (not the mobile one) */
  .product-gallery:not(.product-gallery--mob) {
    display: none;
  }
  /* show mobile gallery */
  .product-gallery--mob {
    display: block;
    padding: 20px 0;
  }
  .product-gallery--mob .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }
  .product-gallery--mob img {
    border: 1px solid #000;
    border-collapse: collapse;
    width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
@media (max-width: 640px) {
  .product-gallery--mob .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }
  .product-gallery--mob .container img {
    border: 1px solid #000;
    border-collapse: collapse;
    border-radius: 0;
  }
}
@media (min-width: 1021px) and (max-width: 1919px) {
  .product-gallery {
    margin-top: 10.729vw; /* 206px → 10.729vw */
  }
  .product-gallery .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    width: 100%;
    gap: 1.042vw; /* 20px → 1.042vw */
  }
  .product-gallery__high-swiper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    border: 0.052vw solid var(--text); /* 1px → 0.052vw */
    height: 99vh;
    max-width: 46.44vw;
    max-height: 57.292vw; /* 1100px → 57.292vw */
  }
  .product-gallery__high-swiper .swiper-slide {
    height: 99vh;
    cursor: -webkit-grab;
    cursor: grab;
  }
  .product-gallery__high-swiper .swiper-slide img {
    height: 100%;
  }
  .product-gallery__high-swiper .swiper-slide:active {
    cursor: -webkit-grabbing;
    cursor: grabbing;
  }
  .product-gallery__thumbs-swiper {
    overflow: hidden;
    height: 72vh;
    max-height: 36.979vw; /* 710px → 36.979vw */
  }
  .product-gallery__thumbs-swiper .swiper-slide {
    cursor: pointer;
  }
  .product-gallery__thumbs-swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .product-gallery__scrollbar {
    width: 0.26vw; /* 5px → 0.260vw */
    height: 99vh;
    max-height: 57.292vw; /* 1100px → 57.292vw */
    background: rgba(0, 0, 0, 0.1);
  }
  .product-gallery__scrollbar .swiper-scrollbar-drag {
    background: #000;
    cursor: -webkit-grab;
    cursor: grab;
  }
  .product-gallery__scrollbar .swiper-scrollbar-drag:active {
    cursor: -webkit-grabbing;
    cursor: grabbing;
  }
  .product-gallery--mob {
    display: none;
  }
}
/* stylelint-disable declaration-no-important */
html:has(.success__inner) {
  font-size: 8.53px;
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html:has(.success__inner) {
    font-size: calc(8.53px + 0.0083370536 * (100vw - 1023px));
  }
}
@media (min-width: 1919px) {
  html:has(.success__inner) {
    font-size: 16px;
  }
}

@media (min-width: 1023px) and (max-width: 1919px) {
  html body .success__inner {
    position: relative;
    margin-top: 10.625rem;
    margin-bottom: 4.375rem;
    border: 0.0625rem solid var(--text);
    height: 56.25rem;
    background-image: -webkit-image-set(url("../img/success/success.jpg") 1x, url("../img/success/success2x.jpg") 2x);
    background-image: image-set(url("../img/success/success.jpg") 1x, url("../img/success/success2x.jpg") 2x);
    background-position: center;
    background-size: cover;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 1024px) {
  html body .success__inner {
    height: 67.75rem;
    background-image: -webkit-image-set(url("../img/success/successtablet.jpg") 1x, url("../img/success/successtablet2x.jpg") 2x);
    background-image: image-set(url("../img/success/successtablet.jpg") 1x, url("../img/success/successtablet2x.jpg") 2x);
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .success__inner {
    height: 34.6875rem;
    background-image: -webkit-image-set(url("../img/success/successmobile.jpg") 1x, url("../img/success/successmobile2x.jpg") 2x);
    background-image: image-set(url("../img/success/successmobile.jpg") 1x, url("../img/success/successmobile2x.jpg") 2x);
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .success__inner--unsuccess {
    background-image: unset !important;
    background-color: var(--text);
  }
  html body .success-bage {
    position: absolute;
    left: 50%;
    bottom: 3.125rem;
    border: 0.0625rem solid var(--text);
    padding: 2.5rem;
    max-width: 29.6875rem;
    text-align: center;
    background-color: var(--main-white);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 1024px) {
  html body .success-bage {
    bottom: 50%;
    padding: 1.5625rem 3.4375rem;
    max-width: 24.25rem;
    -webkit-transform: translate(-50%, 50%);
    -ms-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .success-bage {
    top: unset;
    bottom: 1.875rem;
    padding: 1.25rem 2.5rem;
    width: calc(100% - 2.5rem);
    max-width: 19.0625rem;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .success-bage--unsuccess {
    top: 50%;
    bottom: unset;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  html body .success-bage--unsuccess * {
    text-wrap: balance;
  }
  html body .success-bage * {
    margin: 0;
    padding: 0;
    font-weight: 400;
  }
  html body .success-bage h1 {
    font-family: var(--secondary-font);
    font-size: 3.75rem;
    line-height: 1em;
    white-space: nowrap;
    text-transform: uppercase;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .success-bage h1 {
    font-size: 2.5rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .success-bage h2 {
    margin: 1.25rem 0 0;
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.2em;
    letter-spacing: -0.02em;
    text-transform: uppercase;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 640px) {
  html body .success-bage h2 {
    font-size: 0.875rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .success-bage p {
    margin: 0.4375rem 0 0;
    font-size: 1.25rem;
    line-height: 1.2em;
    letter-spacing: -0.02em;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) and (max-width: 1024px) {
  html body .success-bage p {
    font-size: 0.875rem;
  }
}
@media (min-width: 1023px) and (max-width: 1919px) {
  html body .success-bage p a {
    text-decoration: underline;
  }
}

.success__inner {
  position: relative;
  margin-top: 130px;
  margin-bottom: 70px;
  border: 1px solid var(--text);
  height: 900px;
  background-image: -webkit-image-set(url("../img/success/success.jpg") 1x, url("../img/success/success2x.jpg") 2x);
  background-image: image-set(url("../img/success/success.jpg") 1x, url("../img/success/success2x.jpg") 2x);
  background-position: center;
  background-size: cover;
}
@media (max-width: 1024px) {
  .success__inner {
    height: 1084px;
    background-image: -webkit-image-set(url("../img/success/successtablet.jpg") 1x, url("../img/success/successtablet2x.jpg") 2x);
    background-image: image-set(url("../img/success/successtablet.jpg") 1x, url("../img/success/successtablet2x.jpg") 2x);
  }
}
@media (max-width: 640px) {
  .success__inner {
    height: 555px;
    background-image: -webkit-image-set(url("../img/success/successmobile.jpg") 1x, url("../img/success/successmobile2x.jpg") 2x);
    background-image: image-set(url("../img/success/successmobile.jpg") 1x, url("../img/success/successmobile2x.jpg") 2x);
  }
}
.success__inner--unsuccess {
  background-image: unset !important;
  background-color: var(--text);
}

.success-bage {
  position: absolute;
  left: 50%;
  bottom: 50px;
  border: 1px solid var(--text);
  padding: 40px;
  max-width: 475px;
  text-align: center;
  background-color: var(--main-white);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media (max-width: 1024px) {
  .success-bage {
    bottom: 50%;
    padding: 25px 55px;
    max-width: 388px;
    -webkit-transform: translate(-50%, 50%);
    -ms-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
  }
}
@media (max-width: 640px) {
  .success-bage {
    top: unset;
    bottom: 30px;
    padding: 20px 40px;
    width: calc(100% - 40px);
    max-width: 305px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
.success-bage--unsuccess {
  top: 50%;
  bottom: unset;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.success-bage--unsuccess * {
  text-wrap: balace;
}
.success-bage * {
  margin: 0;
  padding: 0;
  font-weight: 400;
}
.success-bage h1 {
  font-family: var(--secondary-font);
  font-size: clamp(50px, 3.125vw, 60px);
  line-height: 1em;
  white-space: nowrap;
  text-transform: uppercase;
}
@media (max-width: 640px) {
  .success-bage h1 {
    font-size: 40px;
  }
}
.success-bage h2 {
  margin: 20px 0 0;
  font-weight: 600;
  font-size: clamp(14px, 1.0416666667vw, 20px);
  line-height: 1.2em;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
@media (max-width: 640px) {
  .success-bage h2 {
    font-size: 14px;
  }
}
.success-bage p {
  margin: 7px 0 0;
  font-size: 20px;
  line-height: 1.2em;
  letter-spacing: -0.02em;
}
@media (max-width: 1024px) {
  .success-bage p {
    font-size: 14px;
  }
}
.success-bage p a {
  text-decoration: underline;
}/*# sourceMappingURL=main.css.map */
