@charset "UTF-8";

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.clean-btn {
  background: none;
  border: 0;
  outline: 0;
  /* iOS Safari: прибираємо синє підсвічування/виділення тексту при тапі по кнопці */
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* iOS Safari фарбує текст кнопок/посилань своїм синім акцентом через -webkit-text-fill-color.
   Лочимо fill на поточний color, щоб текст лишався того кольору, що заданий у CSS (не синій). */
a,
button {
  -webkit-text-fill-color: currentColor;
}

@font-face {
  font-family: "ElT";
  src: url("../fonts/elt/ElmaTrio-Bold.woff2") format("woff2"), url("../fonts/elt/ElmaTrio-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Elma Mono";
  src: url("../fonts/elmamono/ElmaMono-Bold.woff2") format("woff2"), url("../fonts/elmamono/ElmaMono-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Victor Serif";
  src: url("../fonts/victor/Victor_Serif.woff2") format("woff2")
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  ascent-override: 78%;
  descent-override: 18%;
  line-gap-override: 0%;
}

html {
  --containerPadding: 87px;
  --promoHeight: 43px;
  --headerHeight: 140px;
  --longTransition: 1s;
  --longSoTransition: .8s;
  --basicTransition: .4s;
  --fastTransition: .2s;
  --fastSoTransition: .1s;
  --cursor-stroke: none;
  --cursor-fill: #FFDB5C;
  --cursor-stroke-width: 1px;
  --transparent: #ffffff00 !important;
  --white: #ffffff !important;
  --black: #171717 !important;
  --darkblack: #000000 !important;
  --grey: #A7A7A7 !important;
  --grey2: #C9C9C9 !important;
  --greyLight: #AFAFAF !important;
  --red: #D85454 !important;
  --redText: #BB5353 !important;
  --yellow: #FFDB5C !important;
  --yellowText: #EEC533 !important;
  --blue: #25A7A8 !important;
  --greenText: #25A7A8 !important;
  --font-serif: "Victor Serif", serif;
  --font-ui: "Elma Mono";
  --color-black: #000000;
  --color-white: #ffffff;
  --color-gray: #f1f1f1;
  --border: 1px solid var(--color-black);
  --px: 8px;
  --gap: 1px;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: var(--white);
}

::-webkit-scrollbar {
  width: 6px;
  height: 0;
  background-color: var(--white);
}

::-webkit-scrollbar-thumb {
  background-color: var(--black);
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--black) var(--white) !important;
}

.modal-wrapper {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  min-height: 100vh;
  height: 100vh;
}

.modal-wrapper.modal-show {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.modal-wrapper.modal-show .modal-container {
  -webkit-transform: translateX(0%);
      -ms-transform: translateX(0%);
          transform: translateX(0%);
}

.modal-container {
  -webkit-transition: -webkit-transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  transition: -webkit-transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  -o-transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  background: #fff;
  overflow-x: hidden;
  overflow-y: auto;
}

.modal-layout {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

.modal-layout.show {
  opacity: 1;
}

.header--home .container.header-container{
  border-bottom: none;
}

@media (min-width: 1151px) {
  .header--home .container.header-container{
    padding-top: 105px;
  }
}

.modal-content-wrapper {
  position: relative;
  width: 480px;
  max-width: 100%;
  min-height: 100vh;
  min-height-height: 100vh;
  min-height-overflow-y: auto;
  min-height-overflow-x: hidden;
}

.modal-close {
  position: absolute;
  top: 7px;
  right: 8px;
  z-index: 3;
  width: 40px;
  height: 40px;
  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-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

.modal-close img {
  width: 32px;
  height: 32px;
}

.modal-showroom-fitting.modal-fitting--step-2 .modal-close,
.modal-home-fitting.modal-fitting--step-2 .modal-close {
  opacity: 0;
  pointer-events: none;
}

.modal-showroom-fitting.modal-fitting--step-3 .showroom-modal__header,
.modal-home-fitting.modal-fitting--step-3 .showroom-modal__header {
  display: none;
}

.modal-showroom-fitting.modal-fitting--step-3 .modal-close,
.modal-home-fitting.modal-fitting--step-3 .modal-close {
  top: 10px;
  right: 10px;
}

.modal-showroom-fitting.modal-fitting--step-3 .modal-close img,
.modal-home-fitting.modal-fitting--step-3 .modal-close img {
  -webkit-filter: invert(1);
          filter: invert(1);
}

.showroom-modal {
  min-height: 100vh;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.showroom-modal__header,
.showroom-modal__intro,
.showroom-modal__content,
.showroom-modal__footer {
  padding-left: 8px;
  padding-right: 8px;
}

.showroom-modal__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.showroom-modal__header {
  height: 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 8px;
  background: #130808;
  color: #fff;
}

.showroom-modal__back {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.showroom-modal__back img {
  width: 32px;
  height: 32px;
}

.showroom-modal__back--hidden {
  visibility: hidden;
  display: none;
}

.showroom-modal__eyebrow,
.showroom-modal__section-title {
  margin: 0;
  font-size: 22px;
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1;
}

.showroom-modal__intro {
  padding-top: 20px;
  padding-bottom: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.showroom-modal__intro h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 115%;
  text-align: left;
  width: 337px;
}

.showroom-modal__content {
  display: grid;
  gap: 24px;
  margin-bottom: 20px;
}

.showroom-modal__body--step-2 {
  min-height: calc(100vh - 52px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.showroom-modal__calendar,
.showroom-modal__slots {
  padding-top: 0;
}

.showroom-modal__calendar {
  width: min(337px, 100%);
  margin: 0 auto;
  padding-bottom: 0;
}

.showroom-modal__calendar-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.showroom-modal__slots {
  display: grid;
  -ms-flex-line-pack: start;
      align-content: start;
  gap: 14px;
  width: min(337px, 100%);
  margin: 0 auto;
}

.showroom-modal__slot {
  min-height: 47px;
  border: 1px solid transparent;
  border-right: var(--border);
  border-bottom: var(--border);
  background: transparent;
  color: var(--color-black);
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.showroom-modal__slot--active {
  background: #111;
  color: #fff;
}

.showroom-modal__slots-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-left: var(--border);
  border-top: var(--border);
}

.showroom-modal__footer {
  margin-top: auto;
  padding-top: 8px;
  border-top: var(--border);
  padding-bottom: 8px;
}

.showroom-modal__disclaimer {
  margin-top: auto;
  color: #000;
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 115%;
  letter-spacing: -0.3px;
  text-transform: uppercase;
}

.showroom-modal__disclaimer + .showroom-modal__footer {
  margin-top: 8px;
}

.showroom-modal__summary {
  padding: 24px 8px 24px;
}

.showroom-modal__summary-time,
.showroom-modal__summary-date {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1;
}

.showroom-modal__form {
  display: grid;
  gap: 8px;
  padding: 0 8px 8px;
  -ms-flex-line-pack: start;
      align-content: start;
}

.showroom-modal__field {
  position: relative;
}

.showroom-modal__field--select img {
  position: absolute;
  right: 14px;
  top: 50%;
  width: 12px;
  height: 12px;
  -webkit-transform: translateY(-50%) rotate(0deg);
      -ms-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
  pointer-events: none;
  -webkit-filter: none;
          filter: none;
}

.showroom-modal__input {
  width: 100%;
  min-height: 45px;
  border: var(--border);
  background: transparent;
  padding: 10px 16px;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.showroom-modal__input::-webkit-input-placeholder {
  color: rgba(17, 17, 17, 0.38);
}

.showroom-modal__input::-moz-placeholder {
  color: rgba(17, 17, 17, 0.38);
}

.showroom-modal__input:-ms-input-placeholder {
  color: rgba(17, 17, 17, 0.38);
}

.showroom-modal__input::-ms-input-placeholder {
  color: rgba(17, 17, 17, 0.38);
}

.showroom-modal__input::placeholder {
  color: rgba(17, 17, 17, 0.38);
}

.showroom-modal__select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.showroom-modal__submit,
.showroom-modal__send {
  min-height: 48px;
  border: 0;
  background: #000;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: default;
  width: 100%;
}

.showroom-modal__submit:disabled {
  opacity: 0.2;
}

.showroom-modal__send {
  margin-top: auto;
}

.showroom-modal__send:not(:disabled) {
  background: #000;
  color: #fff;
  cursor: pointer;
}

.showroom-modal__success {
  min-height: calc(100vh - 20px);
  display: grid;
  -ms-flex-line-pack: center;
      align-content: center;
  justify-items: center;
  gap: 32px;
  padding: 48px 34px 48px;
  text-align: center;
}

.showroom-modal__success-title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 50px;
  font-weight: 500;
  line-height: 100%;
}

.showroom-modal__success-text {
  margin: 0;
  max-width: 420px;
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1;
}

.showroom-modal__success-slot {
  display: grid;
  gap: 2px;
  font-family: var(--font-serif);
  font-size: 22px;
  margin-top: 0;
}

.showroom-modal__home {
  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;
  min-width: 244px;
  min-height: 49px;
  padding: 0 20px;
  background: #000;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-top: 24px;
  text-decoration: none;
}

.showroom-modal__home:hover {
  color: #fff;
}

.showroom-modal .flatpickr-calendar.inline {
  width: 100%;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding-bottom: 0;
}

.showroom-modal .flatpickr-weekdays {
  display: none;
}

.showroom-modal .flatpickr-months .flatpickr-month {
  height: 48px;
}

.showroom-modal .flatpickr-months .flatpickr-prev-month,
.showroom-modal .flatpickr-months .flatpickr-next-month {
  top: 0;
  width: 40px;
  height: 48px;
  padding: 0;
  display: grid;
  place-items: center;
  color: #fff;
}

.showroom-modal .flatpickr-months .flatpickr-prev-month svg,
.showroom-modal .flatpickr-months .flatpickr-next-month svg {
  display: none;
}

.showroom-modal .flatpickr-months .flatpickr-prev-month img,
.showroom-modal .flatpickr-months .flatpickr-next-month img {
  width: 12px;
  height: 12px;
}

.showroom-modal .flatpickr-months .flatpickr-prev-month {
  left: 0;
}

.showroom-modal .flatpickr-months .flatpickr-next-month {
  right: 0;
}

.showroom-modal .flatpickr-months .flatpickr-month {
  background: #130808;
  color: #fff;
}

.showroom-modal .flatpickr-innerContainer,
.showroom-modal .flatpickr-rContainer,
.showroom-modal .flatpickr-days,
.showroom-modal .dayContainer {
  background: #fff;
}

.showroom-modal .flatpickr-current-month {
  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;
  height: 47px;
  padding: 0 40px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.showroom-modal .flatpickr-current-month .flatpickr-monthDropdown-months,
.showroom-modal .flatpickr-current-month .numInputWrapper {
  pointer-events: none;
}

.showroom-modal .flatpickr-current-month .cur-month,
.showroom-modal .flatpickr-current-month input.cur-year {
  color: #fff;
  font: inherit;
  text-transform: uppercase;
  background: transparent;
}

.showroom-modal .flatpickr-current-month input.cur-year {
  pointer-events: none;
}

.showroom-modal .flatpickr-days,
.showroom-modal .dayContainer {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
}

.showroom-modal .dayContainer {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border-top: 0;
  grid-gap: 0;
  width: 100%;
  border-left: var(--border);
}

.showroom-modal .flatpickr-rContainer {
  width: 100%;
}

.showroom-modal .flatpickr-day {
  max-width: none;
  width: 100%;
  aspect-ratio: 1/1;
  margin: 0;
  height: 48px;
  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: 0;
  border-right: var(--border);
  border-bottom: var(--border);
  font-size: 15px;
  font-weight: 700;
  color: #111;
  position: relative;
}

.showroom-modal .flatpickr-day.prevMonthDay,
.showroom-modal .flatpickr-day.nextMonthDay {
  color: rgba(23, 23, 23, 0.42);
  border-right: var(--border);
  border-bottom: var(--border);
}

.showroom-modal .flatpickr-day.prevMonthDay:hover,
.showroom-modal .flatpickr-day.nextMonthDay:hover {
  border-right: var(--border);
  border-bottom: var(--border);
}

.showroom-modal .flatpickr-day.flatpickr-disabled {
  border-right: var(--border);
  border-bottom: var(--border);
}

.showroom-modal .flatpickr-day.flatpickr-disabled:hover {
  border-right: var(--border);
  border-bottom: var(--border);
}

.showroom-modal .flatpickr-day.today {
  border-color: #000;
  border-top: 1px solid transparent;
  border-left: 1px solid transparent;
}

.showroom-modal .flatpickr-day.today:after {
  content: "";
  display: block;
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  border: 1px solid #000;
}

.showroom-modal .flatpickr-day.today.selected::after {
  border-color: #fff;
}

.showroom-modal .flatpickr-day.selected:after {
  content: "";
  display: block;
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  border: 1px solid #fff;
}

.showroom-modal .flatpickr-day.selected,
.showroom-modal .flatpickr-day.selected:hover,
.showroom-modal .flatpickr-day.startRange,
.showroom-modal .flatpickr-day.endRange {
  background: #000;
  color: #fff;
  border-top: 0;
  border-left: 0;
}

.showroom-modal .flatpickr-day:hover {
  background: transparent;
  border-color: #000;
  border-top: 1px solid transparent;
  border-left: 1px solid transparent;
}

.showroom-modal .flatpickr-day.selected:hover,
.showroom-modal .flatpickr-day.startRange:hover,
.showroom-modal .flatpickr-day.endRange:hover {
  background: #111;
  color: #fff;
}

.category-page {
  border-top: var(--border);
}

.category-empty p {
  padding: 50px 0;
  text-align: center;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 4vw;
  line-height: 0.75em;
}

.category-toolbar {
  min-height: 88px;
  margin-bottom: -1px;
  padding: 18px 8px 12px;
  border: var(--border);
  border-top: 0;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 24px;
  background: var(--color-white);
}

.category-toolbar__title {
  margin: 0;
  grid-column: 1;
  justify-self: start;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 50px;
  line-height: 0.75em;
}

.category-toolbar__controls {

  display: contents;
}

.category-toolbar__center {
  grid-column: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}

.category-toolbar__controls > .category-toolbar__group {
  grid-column: 3;
  justify-self: end;
}

.category-toolbar__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}

.category-toolbar__views {
  gap: 16px;
}

.category-toolbar__btn,
.category-toolbar__label {
  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;
  gap: 2px;
  color: var(--color-black);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  text-decoration: none;
}

.category-toolbar__btn:hover,
.category-toolbar__label:hover {
  color: var(--color-black);
}
.category-toolbar__btn {
  cursor: pointer;
}

.category-toolbar__btn img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}

.category-toolbar__btn--active img {
  width: 16px;
  height: 16px;
}

/* Активний режим вигляду (модель/продукт) — підкреслення (стрілки сортування більше нема) */
.category-toolbar__btn--view.category-toolbar__btn--active {
  text-decoration: underline;
  text-underline-offset: 4px;
  -webkit-text-decoration-thickness: 2px;
          text-decoration-thickness: 2px;
}

.category-products {
  display: grid;
  width: 100%;
  margin-bottom: -1px;
  -webkit-transition: grid-template-columns 0.25s ease;
  -o-transition: grid-template-columns 0.25s ease;
  transition: grid-template-columns 0.25s ease;
  transition: grid-template-columns 0.25s ease, -ms-grid-columns 0.25s ease;
}

.category-products.category-products--switching .category-product {
  -webkit-animation: categoryProductSwitch 0.32s ease both;
          animation: categoryProductSwitch 0.32s ease both;
}

.category-products--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.category-products--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.category-products--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category-products--5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.category-products--3 .category-product__image,
.category-products--4 .category-product__image,
.category-products--5 .category-product__image {
  height: auto;
  aspect-ratio: 1/1.32;
}

.category-products--3 .category-product__info,
.category-products--4 .category-product__info,
.category-products--5 .category-product__info {
  height: 72px;
}

.category-products--3 .category-product__text,
.category-products--3 .category-product__price,
.category-products--4 .category-product__text,
.category-products--4 .category-product__price,
.category-products--5 .category-product__text,
.category-products--5 .category-product__price {
  font-size: 14px;
  letter-spacing: -0.24px;
}

.category-product {
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: var(--color-black);
  text-decoration: none;
  -webkit-transform-origin: center top;
      -ms-transform-origin: center top;
          transform-origin: center top;
}

.category-product:hover {
  color: var(--color-black);
}

.category-product:hover .category-product__name {
  text-decoration: underline;
}

.category-product__image {
  position: relative;
  margin-right: -1px;
  margin-bottom: -1px;
  padding: 8px;
  border: var(--border);
  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;
  overflow: hidden;
  background: var(--color-white);
}

.category-product__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.category-product__info {
  height: 80px;
  margin-right: -1px;
  margin-bottom: -1px;
  padding: 8px;
  border: var(--border);
  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;
  gap: 16px;
  background: var(--color-white);
}

.category-product__text {
  height: 100%;
  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;
  color: var(--color-black);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.28px;
}

.category-product__name,
.category-product__price {
  line-height: 1;
}

.category-product__collection {
  line-height: 1.15;
}

.category-product__price {
  -ms-flex-item-align: start;
      align-self: flex-start;
  color: var(--color-black);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.28px;
  white-space: nowrap;
}

/* Бейдж знижки — у стилістиці сайту (чорний прямокутник, Elma Mono, гострі кути) */
.category-product__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  background: var(--color-black);
  color: var(--color-white);
  -webkit-text-fill-color: var(--color-white);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: -0.24px;
  line-height: 1;
  padding: 4px 7px;
}

/* Ціна зі знижкою: стара закреслена + нова (як на рефі) */
.category-product__price-old {
  text-decoration: line-through;
  opacity: 0.45;
  margin-right: 7px;
}

@-webkit-keyframes categoryProductSwitch {
  0% {
    opacity: 0.18;
    -webkit-transform: translateY(8px) scale(0.992);
            transform: translateY(8px) scale(0.992);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
}

@keyframes categoryProductSwitch {
  0% {
    opacity: 0.18;
    -webkit-transform: translateY(8px) scale(0.992);
            transform: translateY(8px) scale(0.992);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
}

.category-toolbar__view-icon {
  width: 20px;
  height: 20px;
  border: var(--border);
  border-radius: 50%;
  display: inline-block;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.category-toolbar__view-btn--active .category-toolbar__view-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-black);
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.category-filter {
  position: relative;
  display: none;
  min-height: 340px;
  margin-bottom: -1px;
  padding: 52px 15px 16px;
  border: var(--border);
  background: var(--color-white);
}

.category-filter.category-filter--open {
  display: block;
  -webkit-animation: categoryFilterIn 0.24s ease both;
          animation: categoryFilterIn 0.24s ease both;
}

.category-filter__close {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 48px;
  height: 48px;
  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;
}

.category-filter__close img {
  width: 48px;
  height: 48px;
  -webkit-filter: invert(100%);
          filter: invert(100%);
}

.category-filter__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 150px;
}

.category-filter__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 58px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.category-filter__block {
  position: static;
}

.category-filter__block--collections {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 36px;
}

.category-filter__title,
.category-filter__collection,
.category-filter__size,
.category-filter__apply,
.category-filter__reset {
  color: var(--color-black);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.4px;
  text-transform: uppercase;
}

.category-filter__title {
  margin: 0 0 16px;
}

.category-filter__sizes,
.category-filter__colors {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.category-filter__checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.category-filter__size {
  width: 64px;
  height: 64px;
  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-right: -1px;
  cursor: pointer;
  position: relative;
}

.category-filter__size-text {
  width: 100%;
  height: 100%;
  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;
}

.category-filter__checkbox:checked + .category-filter__size-text {
  border: var(--border);
}

.category-filter__colors {
  gap: 0;
}

.category-filter__color {
  width: 64px;
  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: 14px;
  margin-right: -1px;
  text-align: center;
  color: var(--color-black);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 11px;
  line-height: 1.15;
  letter-spacing: -0.22px;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
}

.category-filter__color .category-filter__checkbox:checked + .category-filter__color-swatch {
  outline: var(--border);
  outline-offset: 9px;
}

.category-filter__color-swatch {
  width: 44px;
  height: 44px;
  background: var(--filter-color);
  display: block;
}

.category-filter__color-swatch--border {
  border: var(--border);
}

.category-filter__collections {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 58px;
}

.category-filter__collection-list {
  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;
  gap: 12px;
}

.category-filter__collection {
  text-align: left;
  white-space: nowrap;
  cursor: pointer;
  position: relative;
}

.category-filter__collection:hover {
  text-decoration: underline;
}

.category-filter__collection .category-filter__checkbox:checked + span {
  text-decoration: underline;
}

.category-filter__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 24px;
  margin-top: 22px;
}

.category-filter__apply {
  min-height: 50px;
  padding: 12px 24px;
  border: var(--border);
}

.category-filter__reset {
  min-height: 50px;
  padding: 12px 0;
}

@-webkit-keyframes categoryFilterIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes categoryFilterIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

b,
strong {
  font-weight: 600;
}

a {
  color: inherit;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;

  overflow-x: clip;
}

@supports not (overflow-x: clip) {
  body { overflow-x: hidden; }
}

input[type=number] {
  -moz-appearance: textfield;
}

input,
textarea,
select,
button,
.form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border-radius: 0;
}

input:focus,
textarea:focus,
select:focus,
button:focus,
.form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder, select::-webkit-input-placeholder, button::-webkit-input-placeholder, .form-control::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

input::-moz-placeholder, textarea::-moz-placeholder, select::-moz-placeholder, button::-moz-placeholder, .form-control::-moz-placeholder {
  color: inherit;
  opacity: 1;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder, select:-ms-input-placeholder, button:-ms-input-placeholder, .form-control:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

input::-ms-input-placeholder, textarea::-ms-input-placeholder, select::-ms-input-placeholder, button::-ms-input-placeholder, .form-control::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

input::placeholder,
textarea::placeholder,
select::placeholder,
button::placeholder,
.form-control::placeholder {
  color: inherit;
  opacity: 1;
}

.form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.overflow {
  overflow: hidden;
}

.modal-wrapper .flatpickr-calendar {
  padding-top: 0;
}

.btn-primary,
.btn-primary:focus {
  background-color: inherit;
  border-color: inherit;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-check:active + .btn-primary,
.btn-check:checked + .btn-primary,
.btn-primary.active,
.btn-primary:active,
.show > .btn-primary.dropdown-toggle {
  color: inherit;
  background-color: inherit;
  border-color: inherit;
}

.btn-check:active + .btn-primary:focus,
.btn-check:checked + .btn-primary:focus,
.btn-primary.active:focus,
.btn-primary:active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

html {
  font-size: 14px;
  font-family: var(--font-ui);
  font-optical-sizing: auto;
}

body {
  position: relative;
  min-height: 100vh;
  max-width: 100vw;
  font-size: 14px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: var(--font-ui);
  font-optical-sizing: auto;
  font-optical-sizing: auto;
}

body::-webkit-scrollbar {
  width: 5px;
}

body.overflow-hiden {
  overflow: hidden;
}

.container {
  max-width: 100%;
  padding-left: 0px;
  padding-right: 0px;
  width: 100%;
}

.main-menu-trigger {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  cursor: pointer;
}

.main-menu-trigger__icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  -o-transition: transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.main-menu-trigger__icon img {
  display: block;
  width: 16px;
  height: 16px;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

header:not(.account-order-modal__header) {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--color-white);
}

.header-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 54px;
  padding: 8px 16px 6px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  border-bottom: var(--border);
}

.main-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-menu .parent-item--mega {
  position: static;
}

/* Тригери меню (лейбли + SALE) підняті над діагональним лого, але ВИПАДАЙКА лишається
   під лого: z-index винесений на самі тригери, а не на .main-menu — інакше дропдаун
   (нащадок .main-menu) теж піднявся б над лого і перекривав його. Порядок у шапці:
   випадайка (auto) < лого (z-3) < тригери (z-4). */
.main-menu-item-wrapper,
.main-menu > li > .main-menu-link {
  position: relative;
  z-index: 4;
}

.main-menu .parent-item--mega.is-open .main-menu-link {
  text-decoration: none;
}

.main-menu .parent-item--mega.is-open .main-menu-trigger__icon {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.main-menu-link {
  color: #000;
  /* iOS Safari: тапнута/активна кнопка тягне свій -webkit-text-fill-color (синій акцент),
     який успадковується span'ом і перебиває color → лочимо чорний fill на самому лейблі. */
  -webkit-text-fill-color: #000;
  text-decoration: none;
  font-family: var(--font-ui);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}

.main-menu [data-menu="kids"] .main-menu-link {
  text-transform: none;
}

.main-menu-link:hover {
  color: inherit;
  text-decoration: none;
}

.home .header-logo {
  width: 44vw;
  margin-bottom: -18%;
  position: relative;
  z-index: 2;
}

.header-logo-link {
  position: absolute;
  left: 50%;
  top: 10px;
  z-index: 3;
  width: 274px;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  text-decoration: none;
}

.header-logo {
  width: 100%;
  margin-bottom: -18%;
  position: relative;
  z-index: 2;
}

.header--home .header-logo-link {
  width: 40vw;
  max-width: 560px;
  top: 10px;

  pointer-events: none;
}
.header--home .header-logo {
  width: 100%;
}
@media (max-width: 900px) {
  .header--home .header-logo-link { width: 60vw; }
}

.header-logo-link {
  -webkit-transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1), max-width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1), max-width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1), max-width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 1151px) {
  .header--home .container.header-container {
    -webkit-transition: padding-top 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: padding-top 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    transition: padding-top 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .header--home.header--scrolled .container.header-container {
    padding-top: 20px;
    padding-bottom: 15px;
  }
  .header--home.header--scrolled .header-logo-link {
    width: 274px;
    max-width: 274px;
  }
}

.header-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 0;
  margin-left: auto;
  padding-top: 1px;
}

.header-controls-btn {
  width: 32px;
  height: 32px;
  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;
  color: var(--color-black);
  text-decoration: none;
}

.header-controls-btn img {
  display: block;
  width: 32px;
  height: 32px;
}

.header-controls-btn:hover {
  color: inherit;
  text-decoration: none;
}

.language-switch-btn {
  width: auto;
  height: auto;
  padding: 0;
  color: #000;
  text-align: center;
  font-family: "ElT", var(--font-ui);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
}

.language-switch-btn + .language-switch-btn {
  margin-left: 8px;
}
.language-switch-btn + :not(.language-switch-btn) {
  margin-left: 24px;
}

.language-switch-arrow {
  width: 16px !important;
  height: 16px !important;
  margin-right: 2px;
}

.header-controls a .header-controls-btn__count {
  display: none;
}

.header-controls-btn,
.mobile-menu__control {
  position: relative;
}

.header-controls-btn__count {
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--color-white, #fff);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  pointer-events: none;
}

.dropdown-menu-layer {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  padding-top: 16px;
  margin-top: -16px;
  visibility: hidden;
  pointer-events: none;

  -webkit-transition: visibility 0s linear 0.78s;
  -o-transition: visibility 0s linear 0.78s;
  transition: visibility 0s linear 0.78s;
}

.parent-item--mega.is-open .dropdown-menu-layer {
  visibility: visible;
  pointer-events: auto;
  -webkit-transition: visibility 0s linear 0s;
  -o-transition: visibility 0s linear 0s;
  transition: visibility 0s linear 0s;
}

.mega-menu {
  position: relative;
  min-height: 672px;
  border-top: var(--border);

  overflow: hidden;
}

.mega-menu__backdrop {
  position: absolute;
  inset: 0;
  border-bottom: var(--border);
  background: rgba(255, 255, 255, 0.78);
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);

  -webkit-transition: -webkit-transform 0.45s cubic-bezier(0.16, 1, 0.3, 1) 0.28s;
  transition: -webkit-transform 0.45s cubic-bezier(0.16, 1, 0.3, 1) 0.28s;
  -o-transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1) 0.28s;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1) 0.28s, -webkit-transform 0.45s cubic-bezier(0.16, 1, 0.3, 1) 0.28s;
}

.parent-item--mega.is-open .mega-menu__backdrop {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0s;
  transition: -webkit-transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0s;
  -o-transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0s;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0s, -webkit-transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0s;
}

.mega-menu__content {
  position: relative;
  z-index: 1;
  min-height: 672px;
  display: grid;
  gap: 48px;
  padding: 88px 32px 32px 74px;
  opacity: 0;
  -webkit-transform: translateY(10px);
      -ms-transform: translateY(10px);
          transform: translateY(10px);

  -webkit-transition: opacity 0.26s ease 0s, -webkit-transform 0.26s cubic-bezier(0.22, 1, 0.36, 1) 0s;
  transition: opacity 0.26s ease 0s, -webkit-transform 0.26s cubic-bezier(0.22, 1, 0.36, 1) 0s;
  -o-transition: opacity 0.26s ease 0s, transform 0.26s cubic-bezier(0.22, 1, 0.36, 1) 0s;
  transition: opacity 0.26s ease 0s, transform 0.26s cubic-bezier(0.22, 1, 0.36, 1) 0s, -webkit-transform 0.26s cubic-bezier(0.22, 1, 0.36, 1) 0s;
}

.parent-item--mega.is-open .mega-menu__content {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 0.42s ease 0.16s, -webkit-transform 0.42s cubic-bezier(0.22, 1, 0.36, 1) 0.16s;
  transition: opacity 0.42s ease 0.16s, -webkit-transform 0.42s cubic-bezier(0.22, 1, 0.36, 1) 0.16s;
  -o-transition: opacity 0.42s ease 0.16s, transform 0.42s cubic-bezier(0.22, 1, 0.36, 1) 0.16s;
  transition: opacity 0.42s ease 0.16s, transform 0.42s cubic-bezier(0.22, 1, 0.36, 1) 0.16s, -webkit-transform 0.42s cubic-bezier(0.22, 1, 0.36, 1) 0.16s;
}

@media (prefers-reduced-motion: reduce) {
  .mega-menu__backdrop,
  .mega-menu__content {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
  .mega-menu__backdrop {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
}

.mega-menu__content--catalog {
  grid-template-columns: 1fr 1fr minmax(0, 3fr);
}

.mega-menu__content--about {
  grid-template-columns: 2fr 2fr 2fr 3fr;
}

.mega-menu__featured {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 22px;
}

.mega-menu__featured a {
  color: var(--color-black);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.44px;
  text-transform: uppercase;
  text-decoration: none;
}

.mega-menu__featured a:hover {
  color: inherit;
  text-decoration: none;
}

.mega-menu__featured a::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  vertical-align: middle;
  background: url("/img/icons/arrow-right-small.svg") no-repeat center / 16px 16px;
}

.mega-menu__featured .mega-menu__sub-link {
  margin-top: 22px;
  margin-left: 18px;
}

.mega-menu__featured .mega-menu__sub-link::before {
  content: none;
}

.mega-menu__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
}

.mega-menu__links a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--color-black);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.4px;
  text-transform: uppercase;
  text-decoration: none;

  padding: 3px 8px;
  border: 1px solid transparent;
}

.mega-menu__links a:hover {
  color: inherit;
  text-decoration: none;
  border-color: var(--color-black);
}

.mega-menu__links a.mega-menu__link-active {
  border-color: var(--color-black);
}

/* Планшет / маленький ПК (мега-меню показується від 769px): тісніші бокові падінги
   (≈ як у хедер-контейнера, 16px, щоб контент вирівнявся з пунктами меню) + трохи менший шрифт пунктів. */
@media (max-width: 1400px) {
  .mega-menu__content {
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 49px;
  }

  .mega-menu__featured a {
    font-size: 26px;
  }

  .mega-menu__links a {
    font-size: 18px;
  }
}

/* Планшет / маленький ПК: тісніший гап між пунктами головного меню. */
@media (max-width: 1300px) {
  .main-menu {
    gap: 10px;
  }

  .mega-menu__links {
    gap: 13px;
  }
}

.mega-menu__products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-self: start;
}

.mega-menu__column {
  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: start;
      align-self: start;
}

.mega-menu__column h3 {
  margin: 0 0 28px;
  color: var(--color-black);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.44px;
  text-transform: uppercase;
}

.mega-menu__column h3 a {
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  text-decoration: none;
  margin: 0;
}

.mega-menu__column a,
.mega-menu__column p,
.mega-menu__column span {
  color: var(--color-black);
}

.mega-menu__column a {
  margin-bottom: 18px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.4px;
  text-transform: uppercase;
  text-decoration: none;
}

.mega-menu__column a:hover {
  color: inherit;
  text-decoration: none;
}

.mega-menu__column p {
  margin: 0 0 10px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.05;
  letter-spacing: -0.4px;
  text-transform: uppercase;
}

.mega-menu__column span {
  margin: 0 0 28px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.15;
  letter-spacing: -0.28px;
  text-transform: uppercase;
}

.dropdown-menu-close {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  width: 48px;
  height: 48px;
}

.dropdown-menu-close img {
  width: 100%;
  height: 100%;
}

.mega-menu-product {
  display: block;
  border: var(--border);
  background: var(--color-white);
  text-decoration: none;
}

.mega-menu-product:hover {
  color: inherit;
  text-decoration: none;
}

.mega-menu-product__image {
  aspect-ratio: 0.77;
  padding: 8px;
  border-bottom: var(--border);
}

.mega-menu-product__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.mega-menu-product__meta {
  padding: 8px;
}

.mega-menu-product__meta p {
  margin: 10px 0 0;
  color: var(--color-black);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.15;
  letter-spacing: -0.28px;
  text-transform: uppercase;
}

.mega-menu-product__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
}

.mega-menu-product__top span,
.mega-menu-product__top strong {
  color: var(--color-black);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.15;
  letter-spacing: -0.28px;
  text-transform: uppercase;
}

.mega-menu-banner {
  display: block;
  -ms-flex-item-align: start;
      align-self: start;
  border: var(--border);
  background: var(--color-white);
  text-decoration: none;
}

.mega-menu-banner:hover {
  color: inherit;
  text-decoration: none;
}

.mega-menu-banner__image {
  aspect-ratio: 1.52;
  padding: 8px;
  border-bottom: var(--border);
}

.mega-menu-banner__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.mega-menu-banner__title {
  display: block;
  padding: 10px 8px 16px;
  color: var(--color-black);
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 26px;
  line-height: 0.95;
}

.footer {
  width: 100%;
  padding: 32px 8px;
}

.footer__columns {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(12, 1fr);
  margin-bottom: 43px;
}

.footer__col {
  grid-column: span 4;
  min-width: 0;
}

.footer--wide {
  -webkit-box-flex: 1.5;
      -ms-flex: 1.5;
          flex: 1.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 28px;
}

.footer__heading {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  line-height: 1.4;
  letter-spacing: -0.4px;
  margin-bottom: 16px;
  -webkit-font-feature-settings: "ordn", "ss07", "dlig";
          font-feature-settings: "ordn", "ss07", "dlig";
}

.footer__nav {
  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;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  line-height: 1.4;
  letter-spacing: -0.4px;
  -webkit-font-feature-settings: "ordn", "ss07", "dlig";
          font-feature-settings: "ordn", "ss07", "dlig";
}

.footer__nav a {
  display: block;
  text-decoration: none;
}

.footer__nav a:hover {
  text-decoration: underline;
  color: inherit;
}

.footer__nav a.separated__link {
  margin-bottom: 1em;
}

.footer__links-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.footer__lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-top: 4px;
  font-family: "ElT", var(--font-ui);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.4px;
}

.footer__lang-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--color-black);
  text-decoration: none;
}

.footer__lang-item:hover,
.footer__lang-item:focus,
.footer__lang-item:visited,
.footer__lang-item:active {
  color: var(--color-black);
  text-decoration: none;
}

.footer__socials {
  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;
  margin-bottom: 25px;
}

.footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  line-height: 1.4;
  letter-spacing: -0.4px;
  -webkit-transition: opacity 0.15s;
  -o-transition: opacity 0.15s;
  transition: opacity 0.15s;
  text-decoration: none;
}

.footer__social:hover {
  color: inherit;
  text-decoration: underline;
}

.footer__contacts {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  line-height: 1.4;
  letter-spacing: -0.4px;
  white-space: nowrap;
  -webkit-font-feature-settings: "ordn", "ss07", "dlig";
          font-feature-settings: "ordn", "ss07", "dlig";
}

.footer__contacts p {
  margin: 0;
}

.footer .footer-bottom {
  position: relative;
  width: 100%;
}

.footer .footer-bottom__copy {
  position: absolute;
  bottom: 0px;
  left: 50%;
  margin-bottom: -0.25em;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 44px;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  text-align: center;
}

.cookie-consent {
  position: fixed;
  right: 12px;
  bottom: 12px;
  z-index: 30;
  width: 419px;
  max-width: calc(100vw - 40px);
  padding: 17px 18px 16px;
  border: 2px solid var(--color-black);
  background: var(--color-white);
  color: var(--color-black);
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent__text {
  width: 100%;
  max-width: 379px;
  margin: 0 0 15px;
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.15;
  -webkit-font-feature-settings: "ordn" 1, "dlig" 1;
          font-feature-settings: "ordn" 1, "dlig" 1;
}

.cookie-consent__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0;
}

.cookie-consent__accept,
.cookie-consent__decline {
  min-height: 44px;
  padding: 12px 24px;
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.32px;
  text-transform: uppercase;
  -webkit-font-feature-settings: "ss07" 1, "calt" 0, "dlig" 1;
          font-feature-settings: "ss07" 1, "calt" 0, "dlig" 1;
  cursor: pointer;
}

.cookie-consent__accept {
  border: 2px solid var(--color-black);
  background: var(--color-black);
  color: var(--color-white);
}

.cookie-consent__decline {
  color: var(--color-black);
}

.media {
  width: 100%;
}

.media-swiper .swiper-wrapper {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.media-swiper .swiper-slide {
  height: auto;
}

.media__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;
  width: 100%;
  height: 80px;
  padding: 8px 32px 8px 8px;
  border: var(--border);
  background: var(--color-white);
}

.media__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 44px;
  line-height: 1;
  white-space: nowrap;
}

.media__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.media__nav-btn {
  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: 16px;
  height: 16px;
  -webkit-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.media__nav-btn:hover {
  opacity: 0.5;
}

.media-card,
.media-card:hover,
.media-card:focus,
.media-card:visited,
.media-card:active {
  color: inherit;
  text-decoration: none;
}

.media-card {
  border-left: var(--border);
  border-right: var(--border);
  border-top: 0;
  margin-right: -1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}

.media-card__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  padding: var(--px);
  overflow: hidden;
}

.media-card img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 26/16;
}

.media-card__info {
  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;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: var(--px);
  height: 128px;
  border-bottom: var(--border);
}

.media-card__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 24px;
  line-height: 1;
  -webkit-font-feature-settings: "ss13", "ordn", "ss02", "ss03";
          font-feature-settings: "ss13", "ordn", "ss02", "ss03";
}

.media-card__source {
  margin-top: auto;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.15;
  letter-spacing: -0.28px;
  -webkit-font-feature-settings: "ss13", "ordn", "ss02", "ss07", "dlig";
          font-feature-settings: "ss13", "ordn", "ss02", "ss07", "dlig";
}

.showrooms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  background: var(--color-black);
  color: var(--color-white);
}

.showrooms__info {
  padding: 8px 0 0 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 88px;
}

.showrooms__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 62px;
  line-height: 1;
  color: var(--color-white);
  width: 351px;
}

.showrooms__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

.showrooms__media {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: hidden;
  position: relative;
}

.showrooms__media img,
.showrooms__media video {
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.showroom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.showroom__num {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 38px;
  line-height: 1;
  width: 48px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.showroom__details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.showroom__address {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 38px;
  line-height: 1;
  margin-bottom: 0;
}

.showroom__hours {
  margin-bottom: 0;
  color: #FFF;
  font-family: "ElT", var(--font-ui);
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 115%;
  letter-spacing: -0.3px;
  text-transform: uppercase;
  -webkit-font-feature-settings: 'dlig' on, 'ss07' on;
          font-feature-settings: 'dlig' on, 'ss07' on;
}

.collection__header {
  width: 100%;
  padding: 16px 8px;
  border: var(--border);
  border-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.collection__header-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 44px;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  margin-bottom: -0.25em;
  width: 35%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.collection__header-title p {
  margin: 0;
}

.collection__filter {
  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: 30%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  gap: 16px;
}

.filter-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  line-height: 1;
  color: var(--color-black);
  white-space: nowrap;
  padding: 0;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.filter-btn:hover {
  text-decoration: underline;
}

.filter-btn__icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--color-black);
  border-radius: 50%;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.filter-btn__icon--active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: var(--color-black);
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/* Тема модуля products_categories: темна (чорний хедер + білий вміст). Дефолт — світла. */
.collection--dark .collection__header {
  background: var(--color-black);
}
.collection--dark .collection__header-title {
  color: var(--color-white);
}
.collection--dark .filter-btn {
  color: var(--color-white);
}
.collection--dark .filter-btn__icon {
  border-color: var(--color-white);
}
.collection--dark .filter-btn__icon--active::after {
  background: var(--color-white);
}

.product-grid {
  display: grid;
  width: 100%;
}

.product-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.product-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.product-grid--5 {
  grid-template-columns: repeat(5, 1fr);
}

.product-card {
  outline: var(--border);
  outline-offset: -0.5px;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-decoration: none;
}

.product-card,
.product-card:hover,
.product-card:focus,
.product-card:visited,
.product-card:active,
.product-card a,
.product-card a:hover,
.product-card a:focus,
.product-card a:visited,
.product-card a:active {
  color: inherit;
  text-decoration: none;
}

.product-card:hover .product-card__name {
  text-decoration: none;
}

.product-card__image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: hidden;
  padding: var(--px);
  background: var(--color-white);
}

.product-card--gray {
  background: var(--color-gray);
}

.product-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  aspect-ratio: 876/1280;
}

.product-card__info {
  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;
  padding: var(--px);
  border-top: none;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.product-card__text {
  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;
  grid-gap: 18px;
  height: 100%;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-black);
  letter-spacing: -0.28px;
}

.product-card__name {
  line-height: 1.05;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-font-feature-settings: "ss13", "ordn", "ss02", "ss03", "dlig";
          font-feature-settings: "ss13", "ordn", "ss02", "ss03", "dlig";
}

.product-card__collection {
  line-height: 1.15;
  -webkit-font-feature-settings: "ss13", "ordn", "ss02", "ss07", "dlig";
          font-feature-settings: "ss13", "ordn", "ss02", "ss07", "dlig";
}

.product-card__price {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  letter-spacing: -0.28px;
  white-space: nowrap;
  -ms-flex-item-align: start;
      align-self: flex-start;
  -webkit-font-feature-settings: "ss13", "ordn", "ss02", "ss05", "ss07", "dlig";
          font-feature-settings: "ss13", "ordn", "ss02", "ss05", "ss07", "dlig";
}

.favorite-page {
  width: 100%;
}

.favorite-page__title {
  margin: 0;
  padding: 8px 0 7px 8px;
  border-top: 0;
  border-bottom: var(--border);
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 44px;
  line-height: 0.9;
}

.favorite-products {
  min-height: 760px;
  -ms-flex-line-pack: start;
      align-content: start;
}

.favorite-empty {
  min-height: 424px;
  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-bottom: var(--border);
}

.favorite-empty p {
  margin: 0;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.32px;
  text-transform: uppercase;
}

.favorite-recommendations h2 {
  margin: 0;
  padding: 8px 0 7px 8px;
  border-bottom: var(--border);
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 38px;
  line-height: 0.9;
}

.thank-page {
  width: 100%;
}

.thank-hero {
  min-height: 278px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 58px 8px 48px;
  border-top: 0;
  border-bottom: var(--border);
}

.thank-hero__inner {
  width: min(100%, 520px);
}

.thank-hero h1 {
  margin: 0 0 28px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 45px;
  line-height: 0.88;
}

.thank-hero p {
  margin: 0 0 28px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.05;
}

.thank-hero__button {
  min-height: 40px;
  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;
  padding: 9px 28px;
  background: var(--color-black);
  color: var(--color-white);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.15;
  letter-spacing: -0.32px;
  text-transform: uppercase;
  text-decoration: none;
}

.thank-hero__button:hover {
  color: var(--color-white);
  text-decoration: none;
}

.thank-recommendations h2 {
  margin: 0;
  padding: 8px 0 7px 8px;
  border-bottom: var(--border);
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 38px;
  line-height: 0.9;
}

.auth-page {
  min-height: calc(100vh - 70px);
  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;
  padding: 110px 8px 90px;
  border-top: var(--border);
}

.auth {
  width: min(100%, 432px);
  margin-top: -12px;
}

.auth-panel[hidden] {
  display: none;
}

.auth-panel--message {
  text-align: center;
}

.auth-panel--message p {
  margin: 0 0 22px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 25px;
  line-height: 0.95;
}

.auth-panel--message-large h1 {
  margin: 0 0 24px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 58px;
  line-height: 0.95;
}

.auth-panel--message-large p {
  margin-bottom: 58px;
}

.auth-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.auth-tabs__button {
  min-height: 48px;
  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;
  padding: 0 16px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--color-black);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.15;
  letter-spacing: -0.28px;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.auth-tabs__button--active {
  min-width: 141px;
  background: var(--color-black);
  color: var(--color-white);
  text-decoration: none;
}

.auth-form {
  width: 100%;
}

.auth-title {
  margin: 0 0 20px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 25px;
  line-height: 0.95;
}

.auth-field {
  position: relative;
  display: block;
  margin-bottom: 9px;
}

.auth-field input {
  width: 100%;
  height: 45px;
  display: block;
  padding: 13px 16px;
  border: var(--border);
  border-radius: 0;
  background: var(--color-white);
  color: var(--color-black);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.15;
  letter-spacing: -0.28px;
  text-transform: uppercase;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.auth-field input::-webkit-input-placeholder {
  color: var(--grey);
  opacity: 1;
}

.auth-field input::-moz-placeholder {
  color: var(--grey);
  opacity: 1;
}

.auth-field input:-ms-input-placeholder {
  color: var(--grey);
  opacity: 1;
}

.auth-field input::-ms-input-placeholder {
  color: var(--grey);
  opacity: 1;
}

.auth-field input::placeholder {
  color: var(--grey);
  opacity: 1;
}

.auth-field input:focus {
  outline: 0;
}

.auth-field--password input {
  padding-right: 150px;
}

.auth-field--password button {
  position: absolute;
  right: 14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--color-black);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.15;
  letter-spacing: -0.28px;
  text-transform: uppercase;
  text-decoration: underline;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.auth-check {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  margin: 14px 0 22px;
  cursor: pointer;
}

.auth-check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.auth-check span {
  position: relative;
  width: 20px;
  height: 20px;
  border: var(--border);
  background: var(--color-white);
}

.auth-check span::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 7px;
  height: 12px;
  border-right: 2px solid var(--color-white);
  border-bottom: 2px solid var(--color-white);
  opacity: 0;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.auth-check input:checked + span {
  background: var(--color-black);
}

.auth-check input:checked + span::after {
  opacity: 1;
}

.auth-check p {
  margin: -2px 0 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.05;
}

.auth-check a {
  color: inherit;
  text-decoration: underline;
}

.auth-submit,
.auth-message__button {
  width: 100%;
  min-height: 48px;
  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;
  padding: 10px 24px;
  border: 0;
  border-radius: 0;
  background: var(--color-black);
  color: var(--color-white);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: -0.36px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.auth-submit:hover,
.auth-message__button:hover {
  color: var(--color-white);
  text-decoration: none;
}

.auth-message__button {
  width: auto;
  min-width: 240px;
}

.auth-note {
  margin: 34px 0 0;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.15;
  letter-spacing: -0.28px;
  text-transform: uppercase;
}

.auth-note button {
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--color-black);
  font: inherit;
  text-transform: inherit;
  text-decoration: underline;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.account-page {
  width: 100%;
}

.account__heading {
  min-height: 66px;
  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;
  gap: 24px;
  padding: 25px 8px 11px 8px;
  border-top: 0;
  border-bottom: var(--border);
}

.account__heading h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 50px;
  line-height: 0.9;
}

.account__heading a {
  color: var(--color-black);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 15px;
  margin-top: auto;
  line-height: 1.15;
  letter-spacing: -0.28px;
  text-transform: uppercase;
  text-decoration: underline;
}

.account__layout {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  border-bottom: var(--border);
}

.account__content {
  border-left: var(--border);
}

.account-orders__empty {
  padding: 33px 16px;
  font-family: var(--font-ui);
}

.account-nav {
  padding: 33px 16px;
}

.account-nav__link {
  display: block;
  margin-bottom: 24px;
  color: var(--color-black);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.15;
  letter-spacing: -0.28px;
  text-transform: uppercase;
  text-decoration: none;
}

.account-nav__link:hover,
.account-nav__link:focus,
.account-nav__link:visited,
.account-nav__link:active {
  color: var(--color-black);
  text-decoration: none;
}

.account-nav__link:last-child {
  margin-bottom: 0;
}

.account-nav__link--active {
  position: relative;
  padding-left: 20px;
}

.account-nav__link--active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  background: url("/img/icons/shevron-icon.jpg") center/contain no-repeat;
}

.account-card {
  min-height: 276px;
  padding: 74px 110px 72px;
  border-bottom: var(--border);
}

.account-card:last-child {
  border-bottom: 0;
}

.account-card__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}

.account-card__head h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 50px;
  line-height: 0.9;
}

.account-card__action {
  margin-top: auto;
  margin-bottom: 5px;
  color: var(--color-black);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.15;
  letter-spacing: -0.28px;
  text-transform: uppercase;
  text-decoration: underline;
}

.account-card__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, max-content));
  gap: 34px 70px;
}
.account-card__grid .account-card__item--full {
  grid-column: 1 / -1;
}

.account-card__item span {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.28px;
  text-transform: uppercase;
}

.account-card__item p {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 0.95;
}

.account-card__hint {
  margin: 0 0 28px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.15;
  letter-spacing: -0.28px;
  text-transform: uppercase;
}

.account-card__button {
  min-width: 140px;
  min-height: 40px;
  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;
  padding: 9px 24px;
  background: var(--color-black);
  color: var(--color-white);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.15;
  letter-spacing: -0.32px;
  text-transform: uppercase;
}

.account-order-card {
  min-height: 426px;
}

.account-order-card__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}

.account-order-card__head h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 50px;
  line-height: 0.9;
}

.account-order-card__details {
  margin-top: 6px;
  color: var(--color-black);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.15;
  letter-spacing: -0.28px;
  text-transform: uppercase;
  text-decoration: underline;
}

.account-order-card__meta {
  display: grid;
  gap: 24px;
  max-width: 425px;
}

.account-order-card__item span {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.28px;
  text-transform: uppercase;
}

.account-order-card__item p {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 20px;
  line-height: 0.95;
}

.account-order-card__item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.account-order-card__item ul li {
  position: relative;
  padding-left: 16px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 20px;
  line-height: 0.95;
}

.account-order-card__item ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 10px;
  height: 10px;
  background: url("/img/icons/shevron-icon.jpg") center/contain no-repeat;
}

.account-order-card__item ul + li {
  margin-top: 6px;
}

.account-order-card__item a,
.account-order-card__item a:hover,
.account-order-card__item a:focus,
.account-order-card__item a:visited,
.account-order-card__item a:active {
  color: inherit;
  text-decoration: none;
}

.modal-account-edit-personal .modal-layout,
.modal-account-add-address .modal-layout {
  background: rgba(0, 0, 0, 0.40);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.modal-account-edit-personal .modal-container,
.modal-account-add-address .modal-container {
  width: 33.333vw;
  min-width: 480px;
}

.modal-account-edit-personal .modal-content-wrapper,
.modal-account-add-address .modal-content-wrapper {
  width: 100%;
  min-height: 100vh;
}

.modal-account-edit-personal .modal-close,
.modal-account-add-address .modal-close {
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
}

.modal-account-edit-personal .modal-close img,
.modal-account-add-address .modal-close img {
  width: 32px;
  height: 32px;
}

.modal-account-order-details .modal-layout {
  background: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.modal-account-order-details .modal-container {
  width: 33.333vw;
  min-width: 480px;
}

.modal-account-order-details .modal-content-wrapper {
  width: 100%;
  min-height: 100vh;
}

.modal-account-order-details .modal-close {
  top: 8px;
  right: 8px;
  width: 48px;
  height: 40px;
}

.modal-account-order-details .modal-close img {
  width: 32px;
  height: 32px;
}

.account-modal {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: var(--color-white);
}

.account-modal__header {
  min-height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 56px 8px 8px;
  border-bottom: var(--border);
}

.account-modal__header h2 {
  margin: 0;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.4px;
  text-transform: uppercase;
}

.account-modal__form {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 202px 8px 8px;
}

.account-modal__field {
  display: block;
  margin-bottom: 9px;
}

.account-modal__field--select {
  position: relative;
}

.account-modal__field--select::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 7px solid var(--color-black);
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
}

.account-modal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 8px;
}

.account-modal__input {
  width: 100%;
  height: 45px;
  display: block;
  padding: 13px 16px;
  border: var(--border);
  border-radius: 0;
  background: var(--color-white);
  color: var(--color-black);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.15;
  letter-spacing: -0.28px;
  text-transform: uppercase;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.account-modal__input::-webkit-input-placeholder {
  color: var(--grey);
  opacity: 1;
}

.account-modal__input::-moz-placeholder {
  color: var(--grey);
  opacity: 1;
}

.account-modal__input:-ms-input-placeholder {
  color: var(--grey);
  opacity: 1;
}

.account-modal__input::-ms-input-placeholder {
  color: var(--grey);
  opacity: 1;
}

.account-modal__input::placeholder {
  color: var(--grey);
  opacity: 1;
}

.account-modal__input:focus {
  outline: 0;
}

.account-modal__submit {
  position: relative;
  min-height: 48px;
  margin-top: auto;
  background: var(--color-black);
  color: var(--color-white);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: -0.36px;
  text-transform: uppercase;
}

.account-modal__submit::before {
  content: "";
  position: absolute;
  left: -8px;
  right: -8px;
  top: -8px;
  border-top: var(--border);
}

.modal-search {
  -webkit-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
}

.modal-search .modal-layout {
  background: rgba(0, 0, 0, 0.40);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.modal-search .modal-container {
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  background: transparent;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
  overflow: hidden;
}

.modal-search.modal-show .modal-container {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.modal-search:not(.modal-search--has-results) .search-modal__results {
  display: none;
}

.search-modal {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.search-modal__bar {
  position: relative;
  height: 69px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 69px;
          flex: 0 0 69px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--color-white);
  border-bottom: var(--border);
}

.search-modal__form {
  width: 100%;
  height: 100%;
}

.search-modal__input {
  width: 100%;
  height: 100%;
  display: block;
  padding: 0 80px 0 8px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--color-black);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.15;
  letter-spacing: -0.28px;
  text-transform: uppercase;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.search-modal__input::-webkit-input-placeholder {
  color: var(--grey);
  opacity: 1;
}

.search-modal__input::-moz-placeholder {
  color: var(--grey);
  opacity: 1;
}

.search-modal__input:-ms-input-placeholder {
  color: var(--grey);
  opacity: 1;
}

.search-modal__input::-ms-input-placeholder {
  color: var(--grey);
  opacity: 1;
}

.search-modal__input::placeholder {
  color: var(--grey);
  opacity: 1;
}

.search-modal__input:focus {
  outline: 0;
}

.search-modal__input::-webkit-search-cancel-button {
  display: none;
}

.search-modal__close {
  position: absolute;
  right: 16px;
  top: 50%;
  width: 40px;
  height: 40px;
  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-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.search-modal__close img {
  width: 40px;
  height: 40px;
}

.search-modal__results {
  background: var(--color-white);
}

.search-modal__summary {
  min-height: 67px;
  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;
  gap: 24px;
  padding: 0 8px;
  border-bottom: var(--border);
}

.search-modal__summary p,
.search-modal__summary a {
  margin: 0;
  color: var(--color-black);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.15;
  letter-spacing: -0.28px;
  text-transform: uppercase;
}

.search-modal__summary a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.search-modal__grid {
  border-bottom: var(--border);
}

.search-page {
  width: 100%;
}

.search-results__bar {
  min-height: 41px;
  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;
  gap: 24px;
  padding: 0 8px;
  border-top: 0;
  border-bottom: var(--border);
}

.search-results__bar p {
  margin: 0;
  color: var(--color-black);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 12px;
  line-height: 1.15;
  letter-spacing: -0.24px;
  text-transform: uppercase;
}

.search-results__form {
  min-width: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}

.search-results__form img {
  width: 14px;
  height: 14px;
  opacity: 0.35;
}

.search-results__form input {
  width: 100%;
  height: 40px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--grey);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 12px;
  line-height: 1.15;
  letter-spacing: -0.24px;
  text-transform: lowercase;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.search-results__form input:focus {
  outline: 0;
}

.search-results__form input::-webkit-search-cancel-button {
  display: none;
}

.search-results__grid {
  margin-bottom: -1px;
}

.collections-page {
  width: 100%;
}

.collections-page__title {
  margin: 0;
  padding: 25px 8px 11px 8px;
  border-top: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 50px;
  line-height: 0.9;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-left: var(--border);
  border-top: var(--border);
}

.collections-tile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 0;
  color: var(--color-black);
  text-decoration: none;
  border-right: var(--border);
  border-bottom: var(--border);
}

.collections-tile:hover {
  color: var(--color-black);
}

.collections-tile:hover .collections-tile__info strong {
  text-decoration: underline;
}

.collections-tile--wide {
  grid-column: span 2;
}

.collections-tile__image {
  width: 100%;
  aspect-ratio: 465/620;
  overflow: hidden;
  padding: 8px;
}

.collections-tile__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.collections-tile--wide .collections-tile__image {

  aspect-ratio: 960/640;
}

.collections-tile__info {
  min-height: 48px;
  padding: 6px 8px 8px;
  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;
  font-family: var(--font-ui);
  color: var(--color-black);
  text-transform: none;
}

.collections-tile__info span {
  font-size: 10px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.2px;
}

.collections-tile__info strong {
  margin-top: 2px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.24px;
  text-transform: uppercase;
}

.collection-detail {
  width: 100%;
}

.collection-detail__top {
  min-height: 58px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 24px 8px 11px;

}

.collection-detail__back {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--color-black);
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 50px;
  line-height: 0.9;
  text-decoration: none;
}

.collection-detail__back-icon {
  width: 0.5em;
  height: 0.5em;
  flex-shrink: 0;
}

.collection-detail__back:hover {
  color: var(--color-black);
  text-decoration: none;
}

.collection-detail__back:hover span {
  text-decoration: none;
}

.collection-detail__gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-left: var(--border);
  border-top: var(--border);
}

.collection-detail__cell {
  min-height: auto;
  border-right: var(--border);
  border-bottom: var(--border);
  overflow: hidden;
  background: var(--color-white);
  padding: 8px;
}

.collection-detail__cell img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.collection-detail__cell--text {
  padding: 8px 10px;
  overflow: visible;
}

.collection-detail__cell--text h1 {
  margin: 0 0 18px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(36px, 3.8vw, 50px);
  line-height: 0.92;
  text-transform: uppercase;
}

.collection-detail__cell--text p {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(18px, 1.7vw, 28px);
  line-height: 1;
}

.collection-detail__desc {
  color: #000;
  font-variant-numeric: ordinal;
  font-feature-settings: 'dlig' on;
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 115%;
}

.collection-detail__desc p {
  margin: 0 0 1em;
}

.collection-detail__desc p:last-child {
  margin-bottom: 0;
}

.shows-page {
  width: 100%;
}

.shows-page__title {
  margin: 0;
  padding: 25px 0 11px 8px;
  border-top: 0;
  border-bottom: var(--border);
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 50px;
  line-height: 0.9;
}

.shows-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-left: var(--border);
  border-top: var(--border);
}

.shows-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 0;
  color: var(--color-black);
  text-decoration: none;
  border-right: var(--border);
  border-bottom: var(--border);
}

.shows-card:hover {
  color: var(--color-black);
}

.shows-card:hover .shows-card__info strong {
  text-decoration: underline;
}

.shows-card__image {
  width: 100%;
  padding: 8px;

  overflow: hidden;
  background: none;
}

.shows-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.shows-card__info {
  min-height: 76px;
  padding: 9px 8px 8px;
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-family: var(--font-ui);
  color: var(--color-black);
}

.shows-card__info span,
.shows-card__info strong {
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.28px;
  text-transform: uppercase;
}

.shows-card__info strong {
  margin-top: 3px;
  max-width: 250px;
}

.show-detail {
  width: 100%;
  padding-top: 0px;
}
.show-detail .collection-detail__top{
  border-bottom: var(--border);
}
.show-detail__intro {
  max-width: 820px;
  margin: 0 auto;
  padding: 18px 8px 16px;
  color: var(--color-black);
}

.show-detail__intro h1 {
  margin: 0 0 22px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(40px, 4vw, 50px);
  line-height: 0.95;
}

.show-detail__year {
  margin: 0 0 6px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 20px;
  line-height: 1;
}

.show-detail__text {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1;
}

.show-detail__text p {
  margin: 0 0 18px;
}

.show-detail__text p:last-child {
  margin-bottom: 0;
}

.show-detail__gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-left: var(--border);
  border-top: var(--border);
}

.show-detail__cell {
  min-height: auto;
  border-right: var(--border);
  border-bottom: var(--border);
  overflow: hidden;
  padding: 8px;
  background: var(--color-white);
}

.show-detail__cell img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.media-page {
  width: 100%;
}

.media-page__title {
  margin: 0;
  padding: 26px 0 12px 8px;
  border-top: 0;
  border-bottom: var(--border);
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 50px;
  line-height: 0.9;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-left: var(--border);
  border-top: var(--border);
}

.media-grid-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 0;
  color: var(--color-black);
  text-decoration: none;
  border-right: var(--border);
  border-bottom: var(--border);
}

.media-grid-card:hover {
  color: var(--color-black);
}

.media-grid-card:hover .media-grid-card__info p {
  text-decoration: underline;
  -webkit-text-decoration-thickness: 1px;
          text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  -webkit-text-decoration-color: var(--color-black);
          text-decoration-color: var(--color-black);
}

.media-grid-card__image {
  width: 100%;
  aspect-ratio: 1.56/1;
  overflow: hidden;
  background: #f3f3f3;
}

.media-grid-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  transition: -webkit-transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  -o-transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.media-grid-card:hover .media-grid-card__image img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

.media-grid-card__info {
  min-height: 132px;
  padding: 16px 8px 8px;
  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;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  color: var(--color-black);
}
.delivery-logos{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 599px) {
  .delivery-logos {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 25px;
  }
}
.media-grid-card__info p {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(18px, 1.9vw, 22px);
  line-height: 1.15;
}

.media-grid-card__info span {
  margin-top: 22px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  letter-spacing: -0.24px;
}

.legal-page {
  width: 100%;
  padding: 76px 8px 88px;
  border-bottom: var(--border);
}

.legal-page--compact {
  padding-bottom: 132px;
  outline: var(--border);
  border-bottom: 0;
}

.legal-content {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  color: var(--color-black);
}

.legal-content h1 {
  margin: 0 0 30px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(44px, 4.4vw, 50px);
  line-height: 0.95;
}

.legal-content h2 {
  margin: 1em 0;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.1;
  letter-spacing: -0.3px;
  text-transform: uppercase;
}
.delivery-page .legal-content h2 {
  margin-bottom: 8px;
  margin-top: 32px;
  font-size: 20px;
}
.delivery-page .legal-content p + h1{
  margin-top: 32px;
  margin-bottom: 32px;
}
.delivery-page .legal-content h2 + p{
  font-size: 22px;
}
.legal-content p {
  margin: 0 0 18px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.15;
}

.legal-content p + p {
  margin-top: 0;
}

.legal-content p a {
  color: inherit;
  text-decoration: underline;
}

.error-page {
  width: 100%;
  min-height: 705px;
  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;
  padding: 88px 8px 96px;
  border-bottom: var(--border);
}

.error-page__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-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  color: var(--color-black);
}

.error-page__content h1 {
  margin: 0 0 18px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(180px, 27vw, 370px);
  line-height: 0.76;
}

.error-page__content p {
  margin: 0 0 56px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 20px;
  line-height: 1;
}

.error-page__link {
  min-height: 50px;
  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;
  padding: 13px 32px;
  background: var(--color-black);
  color: var(--color-white);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.4px;
  text-transform: uppercase;
  text-decoration: none;
}

.error-page__link:hover {
  color: var(--color-white);
  text-decoration: none;
}

.tailoring-page {
  width: 100%;
}

.tailoring-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 930px;
  border-top: 0;
  border-bottom: var(--border);
}

.tailoring-hero__content {
  padding: 18px 16px;
  border-right: var(--border);
  color: var(--color-black);
}

.tailoring-hero__content h1 {
  margin: 0 0 24px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 50px;
  line-height: 1;
}

.tailoring-hero__content p {
  max-width: 650px;
  margin: 0 0 24px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.15;
}

.tailoring-hero__content .tailoring-hero__lead {
  max-width: 560px;
  font-size: 24px;
}

.tailoring-hero__note {
  font-family: var(--font-ui) !important;
  font-weight: 700 !important;
  font-size: 20px !important;
  line-height: 1.15 !important;
  letter-spacing: -0.4px;
  text-transform: uppercase;
}

.tailoring-hero__button {
  min-height: 52px;
  padding: 13px 28px;
  background: var(--color-black);
  color: var(--color-white);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.4px;
  text-transform: uppercase;
}

.tailoring-hero__media {
  min-width: 0;
  overflow: hidden;
  padding: 8px;
}

.tailoring-hero__media img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.modal-tailoring-request .modal-layout {
  background: rgba(0, 0, 0, 0.40);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.modal-tailoring-request .modal-container {
  width: 50vw;
  min-width: 560px;
}

.modal-tailoring-request .modal-content-wrapper {
  width: 100%;
  min-height: 100vh;
}

.modal-tailoring-request .modal-close {
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
}

.modal-tailoring-request .modal-close img {
  width: 40px;
  height: 40px;
}

.tailoring-modal {
  min-height: 100vh;
  background: var(--color-white);
  color: var(--color-black);
}

.tailoring-modal__body {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.tailoring-modal__form {
  width: min(540px, 100% - 96px);
  margin: 180px auto 0;
}

.tailoring-modal__form h2 {
  margin: 0 0 44px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 50px;
  line-height: 0.95;
}

.tailoring-modal__field {
  display: block;
  margin-bottom: 10px;
}

.tailoring-modal__input {
  width: 100%;
  min-height: 44px;
  display: block;
  padding: 12px 16px;
  border: var(--border);
  background: var(--color-white);
  color: var(--color-black);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.15;
  letter-spacing: -0.28px;
  text-transform: uppercase;
}

.tailoring-modal__input::-webkit-input-placeholder {
  color: #9a9a9a;
}

.tailoring-modal__input::-moz-placeholder {
  color: #9a9a9a;
}

.tailoring-modal__input:-ms-input-placeholder {
  color: #9a9a9a;
}

.tailoring-modal__input::-ms-input-placeholder {
  color: #9a9a9a;
}

.tailoring-modal__input::placeholder {
  color: #9a9a9a;
}

.tailoring-modal__textarea {
  min-height: 92px;
  resize: vertical;
}

.tailoring-modal__submit,
.tailoring-modal__home {
  width: 100%;
  min-height: 48px;
  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;
  padding: 12px 24px;
  background: var(--color-black);
  color: var(--color-white);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.4px;
  text-transform: uppercase;
  text-decoration: none;
}

.tailoring-modal__submit:hover,
.tailoring-modal__home:hover {
  color: var(--color-white);
  text-decoration: none;
}

.tailoring-modal__submit {
  margin-top: 10px;
}

.tailoring-modal__body--success {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.tailoring-modal__success {
  width: min(470px, 100% - 64px);
  margin-top: -30px;
  text-align: center;
}

.tailoring-modal__success h2 {
  margin: 0 0 28px;
  font-family: var(--font-serif);
  font-weight: 500;
}

.certificate-page,
.certificate-detail-page {
  width: 100%;
}

.certificate-category {
  border-top: 0;
}

.certificate-category__heading {
  min-height: 54px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 0;
  border-bottom: var(--border);
}

.certificate-category__heading h1 {
  margin: 25px 0 0 10px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 50px;
  line-height: 0.9;
}

.certificate-category__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.certificate-card {
  display: block;
  border-right: var(--border);
  border-bottom: var(--border);
  text-decoration: none;
}

.certificate-card:nth-child(2n-1) {
  border-left: var(--border);
}

.certificate-card:hover {
  color: inherit;
  text-decoration: none;
}

.certificate-card__visual {
  min-height: 324px;
  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;
  padding: 32px;
}

.certificate-card__visual span {
  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;
  width: min(100%, 450px);
  aspect-ratio: 1.58;
  border-radius: 18px;
  background: #111;
  -webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
          box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  color: var(--color-white);
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.certificate-card__meta {
  min-height: 46px;
  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;
  gap: 16px;
  padding: 8px;
  color: var(--color-black);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.15;
  letter-spacing: -0.28px;
  text-transform: uppercase;
}

.certificate-card__meta strong {
  font: inherit;
}

/* ===== Категорія «Послуги Cover» (кат. 64) — сітка послуг: назва як зображення + ціна ===== */
.services-category__heading {
  min-height: 54px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 0;
  border-bottom: var(--border);
}

.services-category__heading h1 {
  margin: 25px 0 0 10px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 50px;
  line-height: 0.9;
}

.services-category__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: var(--color-black);
}

.services-card {
  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: 50px;
  min-height: 480px;
  padding: 32px;
  border-right: 1px solid var(--color-white);
  border-bottom: 1px solid var(--color-white);
  background: var(--color-black);
  color: var(--color-white);
  -webkit-text-fill-color: var(--color-white);
  text-decoration: none;
  text-align: center;
}

.services-card:nth-child(2n-1) {
  border-left: 1px solid var(--color-white);
}

/* останній ряд — без нижньої лінії (щоб не було «перепаду» на дні списку) */
.services-card:last-child {
  border-bottom: 0;
}

.services-card:hover {
  color: var(--color-white);
  -webkit-text-fill-color: var(--color-white);
  text-decoration: none;
}

.services-card__name {
  color: var(--color-white);
  -webkit-text-fill-color: var(--color-white);
  text-align: center;
  font-family: var(--font-serif);
  -webkit-font-feature-settings: 'dlig' on;
          font-feature-settings: 'dlig' on;
  font-size: 45px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.services-card__price {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.7px;
  text-transform: uppercase;
}

@media (max-width: 599px) {
  .services-category__heading h1 { font-size: 32px; }
  .services-card { min-height: 240px; padding: 16px; gap: 20px; }
  .services-card__name { font-size: 24px; }
  .services-card__price { font-size: 16px; }
}

/* ===== Сторінка товару-послуги (product_service.twig) ===== */
.product-service__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  border-top: var(--border);
}

.product-service__grid > * {
  border-right: var(--border);
  border-bottom: var(--border);
}

.product-service__grid > :nth-child(2n-1) {
  border-left: var(--border);
}

.product-service__media {
  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;
  min-height: 600px;
  padding: 8px;
}

.product-service__name {
  display: block;
  width: auto;
  height: auto;
  max-width: 70%;
  -o-object-fit: contain;
     object-fit: contain;
}

.product-service__panel {
  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;
  min-height: 600px;
  padding: 8px;
  color: var(--color-black);
}

.product-service__title {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 50px;
  line-height: 1;
  text-transform: capitalize;
}

.product-service__subtitle {
  margin: 12px 0 0;
  max-width: 360px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.1;
}

.product-service__price {
  margin: 24px 0 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 28px;
  line-height: 1;
}

.product-service__actions {
  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: 16px;
}

.product-service__fav {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: var(--color-black);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.3px;
  text-transform: uppercase;
  cursor: pointer;
}

.product-service__fav img {
  width: 32px;
  height: 32px;
}

.product-service__cta {
  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: 100%;
  height: 48px;
  border: 0;
  background: var(--color-black);
  color: var(--color-white);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.product-service__cta:hover {
  opacity: 0.85;
}

.product-service__desc {
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 24px;
  color: var(--color-black);
}

.product-service__desc p {
  margin: 0 0 24px;
}

.product-service__desc p:last-child {
  margin-bottom: 0;
}

.product-service__accordion {
  margin-top: 24px;
  border-top: var(--border);
}

.product-service__accordion summary {
  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;
  padding: 14px 0;
  list-style: none;
  cursor: pointer;
  /* Шрифт як у акордеонах карток товару (.product-accordion) */
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.45px;
  text-transform: uppercase;
}

.product-service__accordion summary::-webkit-details-marker {
  display: none;
}

.product-service__accordion[open] summary img {
  -webkit-transform: scaleY(-1);
      -ms-transform: scaleY(-1);
          transform: scaleY(-1);
}

.product-service__accordion-body {
  padding: 0 0 14px;
  font-family: var(--font-ui);
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 899px) {
  .product-service__grid {
    grid-template-columns: 1fr;
  }
  .product-service__grid > * {
    border-left: var(--border);
  }
  .product-service__media--empty {
    display: none;
  }
  .product-service__media {
    min-height: 260px;
  }
  .product-service__panel {
    min-height: auto;
    gap: 40px;
  }
  .product-service__title {
    font-size: 32px;
  }
  .product-service__name {
    max-width: 80%;
  }
}

.certificate-detail {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(292px, 33.333vw);
  border-top: var(--border);
  border-bottom: var(--border);
}

.certificate-detail__gallery {
  display: grid;
  grid-template-columns: 1fr;
}

.certificate-detail__frame {
  padding: 8px;
  border-bottom: var(--border);
}

.certificate-detail__frame--primary {
  min-height: 510px;
  display: grid;
  place-items: center;
}

.certificate-detail__frame--secondary {
  min-height: 272px;
  display: grid;
  place-items: center;
}

.certificate-detail__info,
.certificate-detail__secondary {
  border-left: var(--border);
}

.certificate-detail__info {
  padding: 8px;
}

.certificate-detail__copy {
  position: -webkit-sticky;
  position: sticky;
  top: 62px;
}

.certificate-detail__title {
  margin: 0 0 10px;
  font-family: var(--font-serif);
  font-size: 50px;
  line-height: 0.88;
  font-weight: 500;
}

.certificate-detail__price {
  margin: 0 0 122px;
  font-family: var(--font-serif);
  font-size: 28px;
  line-height: 1;
}

.certificate-detail__purchase {
  display: grid;
  gap: 10px;
  margin-bottom: 10px;
}

.certificate-detail__text {
  margin-bottom: 78px;
}

.certificate-detail__text p {
  margin: 0 0 18px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 17px;
  line-height: 0.98;
}

.certificate-detail__text p:last-child {
  margin-bottom: 0;
}

.certificate-values {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0;
}

.certificate-values__item {
  min-width: 48px;
  min-height: 48px;
  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;
  padding: 0 12px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--color-black);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.15;
  letter-spacing: -0.28px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}
.certificate-values__item:hover {
  color: var(--color-black);
  text-decoration: none;
}
.certificate-values__item--active {
  border-color: var(--color-black);
}

.certificate-visual {
  width: 100%;
}

.certificate-visual--dark {
  max-width: 725px;
  aspect-ratio: 1.56;
  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: 24px;
  background: #111;
  -webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
          box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  color: var(--color-white);
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.certificate-visual--dark span {
  font-size: clamp(44px, 5.2vw, 78px);
  line-height: 1;
}

.certificate-visual--large {
  max-width: 620px;
}

.certificate-visual--large span {
  font-size: clamp(36px, 4.2vw, 62px);
}

.certificate-visual--split {
  max-width: 620px;
  aspect-ratio: 1.96;
  display: grid;
  grid-template-columns: 1.07fr 1fr;
  border-radius: 20px;
  overflow: hidden;
  -webkit-box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
          box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.certificate-visual__half {
  position: relative;
}

.certificate-visual__half--light {
  padding: 20px;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f1f1f1));
  background: -o-linear-gradient(top, #fff 0%, #f1f1f1 100%);
  background: linear-gradient(180deg, #fff 0%, #f1f1f1 100%);
}

.certificate-visual__half--dark {
  display: grid;
  place-items: center;
  background: #010101;
  color: var(--color-white);
}

.certificate-visual__mark {
  height: 100%;
  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;
  color: var(--color-black);
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 0.8;
}

.certificate-visual__mark span {
  font-size: clamp(56px, 6vw, 104px);
}

.certificate-visual__mark span:nth-child(1) {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.certificate-visual__mark span:nth-child(2) {
  -ms-flex-item-align: center;
      align-self: center;
}

.certificate-visual__mark span:nth-child(3) {
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.certificate-visual strong {
  position: absolute;
  left: 20px;
  bottom: 18px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: -0.36px;
  text-transform: uppercase;
}

.certificate-visual__cover {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(52px, 5.4vw, 92px);
  line-height: 1;
  letter-spacing: -0.04em;
  letter-spacing-font-size: 58px;
  letter-spacing-line-height: 0.95;
}

.certificate-visual__cover p {
  margin: 0 auto 72px;
  max-width: 430px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 28px;
  line-height: 0.95;
}

.certificate-visual__home {
  width: auto;
  min-width: 244px;
}

.modal-cart .modal-layout {
  background: rgba(0, 0, 0, 0.40);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.modal-cart .modal-container {
  width: 33.333vw;
  min-width: 520px;
}

.modal-cart .modal-content-wrapper {
  width: 100%;
  min-height: 100vh;
}

.modal-cart .modal-close {
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
}

.modal-cart .modal-close img {
  width: 32px;
  height: 32px;
}

.modal-cart--empty .cart-modal__filled {
  display: none;
}

.modal-cart--filled .cart-modal__empty {
  display: none;
}

.cart-modal {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: var(--color-white);
  color: var(--color-black);
}

.cart-modal__header {
  min-height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 56px 8px 8px;
  border-bottom: var(--border);
  z-index: 1;
}

/* Хрестик закриття кошика — над sticky-хедером кошика.
   На моб (<=1150px) глобальне правило `header:not(.account-order-modal__header)`
   дає .cart-modal__header (це <header>) білий фон + z-index: 80, тож хрестику треба вище. */
.cart-modal__close {
  z-index: 90;
}

.cart-modal__header h2 {
  margin: 0;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.4px;
  text-transform: uppercase;
}

.cart-modal__empty {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-height: calc(100vh - 48px);
  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;
  padding: 32px;
  text-align: center;
}

.cart-modal__empty p {
  max-width: 330px;
  margin: 0;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: -0.36px;
  text-transform: uppercase;
}

.cart-modal__filled {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-height: calc(100vh - 48px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.cart-modal__items {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.cart-modal__item {
  display: grid;
  grid-template-columns: 144px 1fr;
  min-height: 180px;
  border-bottom: var(--border);
}

.cart-modal__image {
  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;
  padding: 20px 18px;
  border-right: var(--border);
  text-decoration: none;
}

.cart-modal__image img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}

.cart-modal__details {
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 16px 8px;
}

.cart-modal__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}

.cart-modal__name {
  color: var(--color-black);
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 26px;
  line-height: 1;
  text-decoration: none;
}

.cart-modal__name:hover {
  color: var(--color-black);
  text-decoration: underline;
}

.cart-modal__size {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 20px;
  line-height: 1;
}

.cart-modal__price {
  margin: 22px 0 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 28px;
  line-height: 1;
}

.cart-modal__actions {
  margin-top: auto;
  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;
  gap: 16px;
}

.cart-modal__quantity {
  width: 104px;
  height: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border: var(--border);
}

.cart-modal__quantity button,
.cart-modal__quantity span {
  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;
  color: var(--color-black);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
}

.cart-modal__remove {
  color: var(--color-black);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.15;
  letter-spacing: -0.32px;
  text-transform: uppercase;
  text-decoration: underline;
}
.cart-modal__footer{
  padding: 16px 8px 16px;
  border-top: var(--border);
}
.cart-modal__checkout{
  display: flex;
  height: 48px;
  padding: 0 48px;
  justify-content: center;
  align-items: center;
  background: #000;
  align-self: stretch;
  color: #FFF;
  text-align: center;
  font-family: var(--font-ui);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  text-decoration: none;
}
.cart-modal__checkout:hover{
  color: #FFF;
  text-decoration: none;
}
.cart-modal__total{
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #000;
  text-align: center;
  font-family: var(--font-ui);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  padding-bottom: 16px;
  text-transform: uppercase;
}
.account-order-modal {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: var(--color-white);
}

.account-order-modal__header {
  min-height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 56px 8px 8px;
  background: var(--color-black);
  color: var(--color-white);
}

.account-order-modal__header h2 {
  margin: 0;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.4px;
  text-transform: uppercase;
}

.account-order-modal__items {
  border-bottom: var(--border);
}

.account-order-modal__item {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  min-height: 112px;
  border-bottom: var(--border);
}

.account-order-modal__item:last-child {
  border-bottom: 0;
}

.account-order-modal__image {
  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;
  padding: 8px;
  border-right: var(--border);
}

.account-order-modal__image img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.account-order-modal__details {
  padding: 10px 8px;
}

.account-order-modal__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
  margin-bottom: 6px;
}

.account-order-modal__name,
.account-order-modal__price {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 25px;
  line-height: 0.95;
  text-decoration: none;
}

.account-order-modal__size,
.account-order-modal__quantity {
  display: block;
  color: var(--color-black);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.15;
  letter-spacing: -0.28px;
  text-transform: uppercase;
}

.account-order-modal__size {
  margin-bottom: 12px;
}

.account-order-modal__quantity {
  margin: 0;
}

.account-order-modal__total {
  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;
  gap: 16px;
  padding: 8px;
  border-bottom: var(--border);
}

.account-order-modal__total span {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.4px;
  text-transform: uppercase;
}

.account-order-modal__total strong {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 25px;
  line-height: 0.95;
}

.account-order-modal__section {
  border-bottom: var(--border);
}

.account-order-modal__section h3 {
  min-height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  padding: 8px;
  background: var(--color-black);
  color: var(--color-white);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.4px;
  text-transform: uppercase;
}

.account-order-modal__section > p {
  margin: 0;
  padding: 14px 16px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.4px;
  text-transform: uppercase;
}

.account-order-modal__section-body {
  padding: 16px;
  text-decoration: underline;
}

.account-order-modal__section-body p {
  margin: 0;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.4px;
  text-transform: uppercase;
}

.account-order-modal__section-body p + p {
  margin-top: 16px;
}

.account-order-modal__footer {
  border-top: var(--border);
  padding: 16px 8px 8px;
}

.account-order-modal__total {
  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-bottom: 16px;
}

.account-order-modal__total span {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.4px;
  text-transform: uppercase;
}

.account-order-modal__total strong {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 28px;
  line-height: 1;
}

.account-order-modal__checkout {
  min-height: 48px;
  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;
  padding: 12px 24px;
  background: var(--color-black);
  color: var(--color-white);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.4px;
  text-transform: uppercase;
  text-decoration: none;
}

.account-order-modal__checkout:hover {
  color: var(--color-white);
  text-decoration: none;
}

.checkout-header {
  position: relative;
  height: 69px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-bottom: var(--border);
  background: var(--color-white);
}

.checkout-header__logo {
  display: block;
  width: 265px;
  -webkit-transform: translateY(7px);
      -ms-transform: translateY(7px);
          transform: translateY(7px);
}

.checkout-header__logo img {
  width: 100%;
  display: block;
}

.checkout-header__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  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;
}

.checkout-header__close img {
  width: 40px;
  height: 40px;
}

.checkout-page {
  min-height: calc(100vh - 69px);
  background: var(--color-white);
}

.checkout {
  min-height: calc(100vh - 69px);
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(420px, 33.333vw);
}

.checkout-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 78px 112px 40px;
}

.checkout-form__inner {
  width: min(100%, 736px);
}

.checkout-form__heading {
  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;
  gap: 24px;
  margin-bottom: 56px;
}

.checkout-form__heading h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 28px;
  line-height: 0.95;
}

.checkout-form__heading a {
  color: var(--color-black);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.15;
  letter-spacing: -0.28px;
  text-transform: uppercase;
  text-decoration: underline;
}

.checkout-form__title {
  margin: 50px 0 22px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 28px;
  line-height: 0.95;
}

.checkout-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.checkout-tabs--delivery {
  margin: 49px 0 25px;
}

/* Способи оплати — вертикальний стек на всю ширину (за макетом):
   активний = чорна плашка з білим текстом, решта = підкреслений текст. */
.checkout-tabs.checkout-tabs--payment {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 0;
}

.checkout-tabs--payment .checkout-tab,
.checkout-tabs--payment .checkout-tab span {
  width: 100%;
}

.checkout-tab {
  position: relative;
  cursor: pointer;
}

.checkout-tab input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkout-tab span {
  min-height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 16px;
  color: var(--color-black);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.15;
  letter-spacing: -0.28px;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.checkout-tab input:checked + span {
  background: var(--color-black);
  color: var(--color-white);
  text-decoration: none;
}

.checkout-fields {
  display: grid;
  gap: 8px;
  margin-bottom: 8px;
}

.checkout-fields--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.checkout-fields--names {
  margin-bottom: 8px;
}

.checkout-field {
  display: block;
}

.checkout-field__control {
  width: 100%;
  height: 45px;
  display: block;
  padding: 13px 16px;
  border: var(--border);
  border-radius: 0;
  background: var(--color-white);
  color: var(--color-black);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.15;
  letter-spacing: -0.28px;
  text-transform: uppercase;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.checkout-field__control::-webkit-input-placeholder {
  color: var(--grey);
  opacity: 1;
}

.checkout-field__control::-moz-placeholder {
  color: var(--grey);
  opacity: 1;
}

.checkout-field__control:-ms-input-placeholder {
  color: var(--grey);
  opacity: 1;
}

.checkout-field__control::-ms-input-placeholder {
  color: var(--grey);
  opacity: 1;
}

.checkout-field__control::placeholder {
  color: var(--grey);
  opacity: 1;
}

.checkout-field__control:focus {
  outline: 0;
}

.checkout-field__textarea {
  height: 87px;
  resize: none;
}

.checkout-field__error {
  display: none;
  margin-top: 10px;
  color: var(--redText);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.15;
  letter-spacing: -0.28px;
  text-transform: uppercase;
}

.checkout-field--error .checkout-field__control {
  border-color: var(--redText);
}

.checkout-field--error .checkout-field__error {
  display: block;
}

.checkout-recipient[hidden] {
  display: none;
}

.checkout-country {
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 8px;
}

.checkout-country__label {
  position: absolute;
  left: 16px;
  top: 8px;
  z-index: 2;
  color: var(--grey);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.15;
  letter-spacing: -0.28px;
  text-transform: uppercase;
  pointer-events: none;
}

.checkout-country__select {
  width: 100%;
}

.checkout-country .nice-select {
  width: 100%;
  min-width: 100%;
  height: 45px;
  display: block;
  float: none;
  padding: 23px 40px 5px 16px;
  border: var(--border);
  border-radius: 0;
  background: var(--color-white);
  color: var(--color-black);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.15;
  letter-spacing: -0.28px;
  text-transform: uppercase;
}

.checkout-country .nice-select::after {
  right: 16px;
  top: 50%;
  width: 0;
  height: 0;
  margin-top: 0;
  border: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 7px solid var(--color-black);
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
}

.checkout-country .nice-select.open::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
      -ms-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

.checkout-country .nice-select .current {
  display: block;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
}

.checkout-country .nice-select .list {
  display: block;
  width: calc(100% + 2px);
  max-height: 285px;
  overflow-y: auto;
  left: -1px;
  right: auto;
  margin-top: 0;
  padding: 7px 16px;
  border: var(--border);
  border-top: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: var(--color-white);
  z-index: 20;
}

.checkout-country .nice-select .list::-webkit-scrollbar {
  width: 3px;
}

.checkout-country .nice-select .list::-webkit-scrollbar-track {
  background: transparent;
}

.checkout-country .nice-select .list::-webkit-scrollbar-thumb {
  background: var(--color-black);
}

.checkout-country .nice-select .option {
  display: block;
  min-height: 0;
  height: auto;
  padding: 0 0 12px;
  background: transparent;
  color: var(--color-black);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: -0.28px;
  text-transform: uppercase;
  opacity: 1;
  visibility: visible;
}

.checkout-country .nice-select .option:hover,
.checkout-country .nice-select .option.focus,
.checkout-country .nice-select .option.selected.focus {
  background: transparent;
}

.checkout-country .nice-select .option:last-child {
  padding-bottom: 0;
}

.checkout-country .nice-select .option.selected {
  font-weight: 700;
}

.checkout-country .nice-select.open {
  border-bottom-color: transparent;
}

.checkout-country .nice-select.open .list {
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  opacity: 1;
  pointer-events: auto;
}

.checkout-country .nice-select.disabled {
  color: var(--grey);
}

.no-csspointerevents .checkout-country .nice-select .list {
  display: none;
}

.no-csspointerevents .checkout-country .nice-select.open .list {
  display: block;
}

.checkout-country .nice-select .list {
  width: 100%;
}

.account-country {
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 9px;
}

.account-country__label {
  position: absolute;
  left: 16px;
  top: 8px;
  z-index: 2;
  color: var(--grey);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.15;
  letter-spacing: -0.28px;
  text-transform: uppercase;
  pointer-events: none;
}

.account-country__select {
  width: 100%;
}

.account-country .nice-select {
  width: 100%;
  min-width: 100%;
  height: 45px;
  display: block;
  float: none;
  padding: 23px 40px 5px 16px;
  border: var(--border);
  border-radius: 0;
  background: var(--color-white);
  color: var(--color-black);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.15;
  letter-spacing: -0.28px;
  text-transform: uppercase;
}

.account-country .nice-select::after {
  right: 16px;
  top: 50%;
  width: 0;
  height: 0;
  margin-top: 0;
  border: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 7px solid var(--color-black);
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
}

.account-country .nice-select.open::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
      -ms-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

.account-country .nice-select .current {
  display: block;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
}

.account-country .nice-select .list {
  display: block;
  width: calc(100% + 2px);
  max-height: 285px;
  overflow-y: auto;
  left: -1px;
  right: auto;
  margin-top: 0;
  padding: 7px 16px;
  border: var(--border);
  border-top: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: var(--color-white);
  z-index: 20;
}

.account-country .nice-select .list::-webkit-scrollbar {
  width: 3px;
}

.account-country .nice-select .list::-webkit-scrollbar-track {
  background: transparent;
}

.account-country .nice-select .list::-webkit-scrollbar-thumb {
  background: var(--color-black);
}

.account-country .nice-select .option {
  display: block;
  min-height: 0;
  height: auto;
  padding: 0 0 12px;
  background: transparent;
  color: var(--color-black);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: -0.28px;
  text-transform: uppercase;
  opacity: 1;
  visibility: visible;
}

.account-country .nice-select .option:hover,
.account-country .nice-select .option.focus,
.account-country .nice-select .option.selected.focus {
  background: transparent;
}

.account-country .nice-select .option:last-child {
  padding-bottom: 0;
}

.account-country .nice-select .option.selected {
  font-weight: 700;
}

.account-country .nice-select.open {
  border-bottom-color: transparent;
}

.account-country .nice-select.open .list {
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  opacity: 1;
  pointer-events: auto;
}

.account-country .nice-select.disabled {
  color: var(--grey);
}

.checkout-order {
  min-height: calc(100vh - 69px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-left: var(--border);
  background: var(--color-white);
}

.checkout-order__title {
  height: 43px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  padding: 0 8px;
  background: var(--color-black);
  color: var(--color-white);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: -0.36px;
  text-transform: uppercase;
}

.checkout-order__items {
  border-bottom: var(--border);
}

.checkout-order__item {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) auto;
  min-height: 111px;
  border-bottom: var(--border);
}

.checkout-order__item:last-child {
  border-bottom: 0;
}

.checkout-order__image {
  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;
  padding: 10px;
  border-right: var(--border);
}

.checkout-order__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.checkout-order__info {
  min-width: 0;
  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: 16px 10px;
}

.checkout-order__info a {
  display: block;
  color: var(--color-black);
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1;
  text-decoration: none;
}

.checkout-order__info span {
  display: block;
  margin-top: 4px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
}

.checkout-order__qty {
  margin-top: 10px;
}

.checkout-order__qty span {
  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-top: 0;
  font-family: var(--font-ui);
}

.checkout-order__qty button,
.checkout-order__qty span {
  font-size: 14px;
}

.checkout-order__info b {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.15;
}

.checkout-order__price {
  padding: 16px 8px 0;
  white-space: nowrap;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1;
}

.checkout-order__submit {
  min-height: 48px;
  margin: 14px 8px 8px;
  border: 0;
  border-radius: 0;
  background: var(--grey2);
  color: var(--color-white);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: -0.36px;
  text-transform: uppercase;
  cursor: default;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.checkout-order__submit:not(:disabled) {
  background: var(--color-black);
  cursor: pointer;
}

.checkout-promo {
  padding: 16px 16px 12px;
  border-bottom: var(--border);
}

.checkout-promo label {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.15;
  letter-spacing: -0.28px;
  text-transform: uppercase;
}

.checkout-promo__row {
  display: grid;
  grid-template-columns: 1fr auto;
}

.checkout-promo__row input {
  height: 48px;
  border: var(--border);
  border-right: 0;
  border-radius: 0;
  padding: 0 16px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.28px;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.checkout-promo__row input:focus {
  outline: 0;
}

.checkout-promo__row button {
  border: 0;
  border-radius: 0;
  background: var(--color-black);
  color: var(--color-white);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 13px;
  line-height: 1.15;
  padding-left: 16px;
  padding-right: 16px;
  text-transform: uppercase;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.checkout-promo p {
  margin: 10px 0 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.1;
}

.checkout-totals {
  margin: 0;
  padding: 14px 16px 14px;
  border-bottom: var(--border);
}

.checkout-totals div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  margin-bottom: 8px;
}

.checkout-totals div:last-child {
  margin-bottom: 0;
}

.checkout-totals dt,
.checkout-totals dd {
  margin: 0;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.15;
  letter-spacing: -0.28px;
  text-transform: uppercase;
}

.checkout-totals dd {
  text-align: right;
}

.checkout-totals__final {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  margin-top: 14px;
}

.checkout-totals__final dd {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 25px;
  line-height: 1;
  text-transform: none;
}

.checkout-agreement {
  padding: 18px 16px 0;
}

.checkout-agreement__error {
  margin: 14px 0 16px;
  color: var(--redText);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.15;
  letter-spacing: -0.28px;
  text-transform: uppercase;
}

.checkout-check {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  margin-bottom: 14px;
  cursor: pointer;
}

.checkout-check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkout-check span {
  position: relative;
  width: 20px;
  height: 20px;
  border: var(--border);
  background: var(--color-white);
}

.checkout-check span::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 7px;
  height: 12px;
  border-right: 2px solid var(--color-white);
  border-bottom: 2px solid var(--color-white);
  background: transparent;
  opacity: 0;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.checkout-check input:checked + span {
  background: var(--color-black);
  border-color: var(--color-black);
}

.checkout-check input:checked + span::after {
  opacity: 1;
}

.checkout-check p {
  margin: -2px 0 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.05;
}

.checkout-check a {
  color: inherit;
  text-decoration: underline;
}

.checkout-check--error span {
  border-color: var(--redText);
}

.contacts-page {
  width: 100%;
}

.contacts-hero {
  display: grid;
  grid-template-columns: 2fr 0.96fr;
  min-height: 500px;
  border-top: 0;
  border-bottom: var(--border);
}

.contacts-hero__info {
  padding: 14px 8px 32px;
  border-right: var(--border);
}

.contacts-hero__info h1 {
  margin: 0 0 56px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 56px;
  line-height: 0.95;
}

.contacts-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px 92px;
}

.contacts-hero__item {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.contacts-hero__item h2,
.contacts-hero__item h3 {
  margin: 0;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.4px;
  text-transform: uppercase;
}

.contacts-hero__item h3 {
  font-size: 15px;
  letter-spacing: -0.3px;
}
.contacts-hero__item h2.contacts-hero__item__info{
  margin-bottom: 24px;
}

.contacts-hero__item p {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 115%;
}

.contacts-hero__item a {
  color: inherit;
  text-decoration: none;
}

.contacts-hero__item a:hover {
  text-decoration: underline;
}

.contacts-map {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background-color: #262626;
  background-image: -o-linear-gradient(60deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px), -o-linear-gradient(330deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px), -o-linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), -o-linear-gradient(left, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-image: linear-gradient(30deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(120deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 180px 180px, 220px 220px, 64px 64px, 64px 64px;
  background-position: -30px 15px, 18px -42px, 0 0, 0 0;
}

.contacts-map::before,
.contacts-map::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.contacts-map::before {
  background: -o-radial-gradient(52% 50%, circle, rgba(255, 255, 255, 0.08), transparent 22%), -o-linear-gradient(315deg, transparent 42%, rgba(255, 255, 255, 0.07) 43%, rgba(255, 255, 255, 0.07) 44%, transparent 45%);
  background: radial-gradient(circle at 52% 50%, rgba(255, 255, 255, 0.08), transparent 22%), linear-gradient(135deg, transparent 42%, rgba(255, 255, 255, 0.07) 43%, rgba(255, 255, 255, 0.07) 44%, transparent 45%);
}

.contacts-map::after {
  background: rgba(0, 0, 0, 0.28);
}

.contacts-map__marker {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 48%;
  width: 72px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--color-white);
  color: var(--color-black);
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 32px;
  line-height: 1;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 58% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 58% 100%);
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.about-page {
  width: 100%;
}

.about-hero {
  position: relative;
  overflow: hidden;
  padding: 7px;
  border-bottom: var(--border);
}

.about-hero img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}

.about-hero__mark {
  position: absolute;
  top: 16px;
  right: 28px;
  width: 180px;
  line-height: 0;
}
.about-hero__mark svg {
  width: 100%;
  height: auto;
  display: block;
}

.about-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 392px;
  border-bottom: var(--border);
}

.about-text__lead,
.about-text__body {
  padding: 10px 16px;
}

.about-text__lead {
  border-right: var(--border);
}

@media (min-width: 769px) {
  .about-text__lead {
    padding-bottom: 140px;
  }
}

.about-text__lead p {
  max-width: 605px;
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 50px;
  line-height: 1;
}

.about-text__body p {
  max-width: 604px;
  margin: 0 0 16px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.15;
}

.about-text__body p:last-child {
  margin-bottom: 0;
}

.collections-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--headerHeight));
  border-top: var(--border);
  border-bottom: var(--border);
  background: var(--color-white);
}

.collections-hero__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;
  min-height: 620px;
  padding: 8px;
  border-right: var(--border);
}

.collections-hero__eyebrow {
  margin: 0;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.4px;
  text-transform: uppercase;
}

.collections-hero__title {
  margin: auto 0 -0.18em;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(72px, 12vw, 190px);
  line-height: 0.86;
  text-transform: uppercase;
}

.collections-hero__text {
  max-width: 620px;
  margin: 28px 0 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(30px, 3vw, 54px);
  line-height: 0.95;
}

.collections-hero__featured {
  position: relative;
  min-height: 620px;
  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: 8px;
  overflow: hidden;
  color: var(--color-black);
  text-decoration: none;
  background: var(--color-gray);
}

.collections-hero__featured:hover {
  color: var(--color-black);
}

.collections-hero__featured:hover .collections-hero__name {
  text-decoration: underline;
}

.collections-hero__featured:hover img {
  -webkit-transform: scale(1.025);
      -ms-transform: scale(1.025);
          transform: scale(1.025);
}

.collections-hero__featured img {
  position: absolute;
  inset: 72px 8px 8px;
  width: calc(100% - 16px);
  height: calc(100% - 80px);
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  -o-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.collections-hero__season,
.collections-hero__name {
  position: relative;
  z-index: 1;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.4px;
  text-transform: uppercase;
}

.collections-hero__name {
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-top: auto;
}

.collections-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: var(--border);
  border-right: var(--border);
}

.collections-card {
  min-height: 560px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto 1fr auto;
  gap: 10px 20px;
  padding: 8px;
  border-left: var(--border);
  border-top: var(--border);
  margin-top: -1px;
  color: var(--color-black);
  text-decoration: none;
  overflow: hidden;
  background: var(--color-white);
}

.collections-card:hover {
  color: var(--color-black);
}

.collections-card:hover .collections-card__title {
  text-decoration: underline;
}

.collections-card:hover .collections-card__image {
  -webkit-transform: scale(1.025);
      -ms-transform: scale(1.025);
          transform: scale(1.025);
}

.collections-card--large {
  grid-column: span 2;
}

.collections-card__num,
.collections-card__meta {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.4px;
  text-transform: uppercase;
}

.collections-card__meta {
  text-align: right;
}

.collections-card__title {
  grid-column: 1/-1;
  max-width: 820px;
  margin: 0 0 -0.16em;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(48px, 6vw, 112px);
  line-height: 0.86;
  text-transform: uppercase;
}

.collections-card__text {
  grid-column: 1/-1;
  max-width: 520px;
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 28px;
  line-height: 1;
}

.collections-card__image {
  grid-column: 1/-1;
  align-self: end;
  justify-self: center;
  width: 100%;
  height: 300px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  -o-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.services-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  border-right: var(--border);
}

.service-card {
  border: var(--border);
  border-bottom: 0;
  margin-right: -1px;
  padding: 8px 8px 16px;
  aspect-ratio: 720/400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-decoration: none;
  transition: background 0.5s;
}
.service-card:hover{
  background: var(--color-black);
}
.service-card:hover .service-card__title {
  color: var(--color-white);
}

.service-card:hover .service-card__desc {
  color: var(--color-white);
}

.service-card:hover .btn-trinagle {
  background: var(--color-white);
}

.service-card:hover .btn-trinagle span {
  color: var(--color-black);
}

.service-card__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;
  height: 100%;
  color: var(--color-black);
}

.service-card__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 50px;
  line-height: 1;
  -webkit-font-feature-settings: "ss13", "ordn", "ss02", "ss03";
          font-feature-settings: "ss13", "ordn", "ss02", "ss03";
}

.service-card__desc {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  line-height: 1;
  max-width: 484px;
  -webkit-font-feature-settings: "ss13", "ordn", "ss02", "ss07";
          font-feature-settings: "ss13", "ordn", "ss02", "ss07";
  margin-bottom: 0;
}

.btn-trinagle {
  position: relative;
  width: 114px;
  height: 114px;
  background: var(--color-black);
  border-radius: 0%;
  -webkit-clip-path: polygon(100% 0, 0 0, 100% 100%);
          clip-path: polygon(100% 0, 0 0, 100% 100%);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.btn-trinagle:hover {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

.btn-trinagle span {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--color-white);
  line-height: 1;
  letter-spacing: -0.28px;
  text-align: right;
  position: absolute;
  top: 8px;
  right: 8px;
  -webkit-font-feature-settings: "dlig";
          font-feature-settings: "dlig";
}

.home-description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 110px;
  width: 100%;
}

.home-description__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 888px;
}

.home-description__quote-mark {
  background: var(--color-black);
  border-radius: 0%;
  -webkit-clip-path: polygon(100% 0, 0 0, 100% 100%);
          clip-path: polygon(100% 0, 0 0, 100% 100%);
  width: 32px;
  height: 32px;
  display: block;
  margin-left: 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.home-description__text {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 44px;
  line-height: 1;
  color: var(--color-black);
  margin-left: 8px;
  margin-top: -3px;
}

.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--color-gray);
  display: block;
  color: inherit;
  text-decoration: none;
}
.hero:hover{
  color: inherit;
}
.hero img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  aspect-ratio: 12/5;
}

/* <picture> навколо героя не має впливати на розкладку — img поводиться як прямий нащадок. */
.hero__bg picture {
  display: contents;
}

.hero__content {
  position: absolute;
  left: 16px;
  top: 12px;
  width: 641px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 51px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.hero__text {
  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;
  margin-top: 15px;
}

.hero__season {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 104px;
  line-height: 0.87;
  -webkit-font-feature-settings: "dlig";
          font-feature-settings: "dlig";
  margin-bottom: 0;
}

.hero__title {
  font-family: var(--font-serif);
  font-weight: 500;
  margin-bottom: 0;
  font-size: 168px;
  line-height: 0.95;
  -webkit-font-feature-settings: "dlig";
          font-feature-settings: "dlig";
  white-space: nowrap;
}

.hero__content--light,
.hero__content--light .hero__season,
.hero__content--light .hero__title { color: #fff; }
/* .hero перед селектором — щоб перебити пізніше правило `.hero .btn--outline` (та сама вага, але далі в файлі).
   -webkit-text-fill-color — кнопка (span) успадковує fill від <a class="hero">, і він перебиває color. */
.hero .hero__content--light .btn--outline { color: #000; -webkit-text-fill-color: #000; border-color: #fff; }
.hero .hero__content--light .btn--outline:hover { background: #000; color: #fff; -webkit-text-fill-color: #fff; border-color: #000; }

.hero__content--dark,
.hero__content--dark .hero__season,
.hero__content--dark .hero__title { color: #000; }
.hero .hero__content--dark .btn--outline { color: #000; -webkit-text-fill-color: #000; border-color: #000; }
.hero .hero__content--dark .btn--outline:hover { background: #000; color: #fff; -webkit-text-fill-color: #fff; }

.btn--outline {
  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;
  padding: 14px 40px;
  border: var(--border);
  background: var(--color-white);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0;
  border-radius: 0;
  cursor: pointer;
  -webkit-transition: background 0.2s, color 0.2s;
  -o-transition: background 0.2s, color 0.2s;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.btn--outline:hover {
  background: var(--color-black);
  color: var(--color-white);
}

.product-main {
  width: 100%;
  margin: 0 auto;
}

.product-detail {
  border-bottom: var(--border);
  display: grid;
  grid-template-columns: 2fr 1fr;
}

.product-detail__gallery {
  position: relative;
  display: grid;
}

.product-detail__gallery {
  grid-template-columns: 1fr 1fr;
}

.product-detail__gallery-inner { display: contents; }
.product-detail--certificate .product-detail__frame img{
  aspect-ratio: 944/584;
  object-fit: cover;
}
.product-detail__text.product-detail__text--certificate{
  padding-top: 15px;
  color: #000;
  font-variant-numeric: ordinal;
  font-feature-settings: 'dlig' on;
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 115%;
}
.product-detail--certificate .product-detail__frame{
  aspect-ratio: 944/584;
}
.product-detail--certificate .product-detail__gallery{
  grid-template-columns: 1fr;
}
.product-detail__info {

  outline: var(--border);
  outline-offset: -0.5px;
}

.product-detail__gallery > :first-child,
.product-detail__secondary > :first-child {
  border-left: 0;
}

.product-detail__secondary {
  padding-left: 8px;
  padding-right: 8px;
}

.product-detail__frame {
  padding: 8px;
  display: grid;
  place-items: center;
  overflow: hidden;

  outline: var(--border);
  outline-offset: -0.5px;
}

.product-detail__frame img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.product-detail--object img {
  -o-object-fit: contain;
     object-fit: contain;
  max-height: 425px;
  width: auto;
}

.product-detail__info,
.product-detail__meta {
  padding: 8px 0;
}

.product-detail__copy {
  position: -webkit-sticky;
  position: sticky;
  top: 62px;
  padding-left: 8px;
  padding-right: 8px;
}

.product-detail__title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 50px;
  line-height: 1em;
  font-weight: 500;
  margin-bottom: 16px;
  padding-left: 8px;
  padding-right: 8px;
}

.product-detail__description {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.1;
  font-weight: 500;
  font-variant-numeric: ordinal;
  -webkit-font-feature-settings: "dlig" on;
          font-feature-settings: "dlig" on;
  margin-bottom: 1.3em;
  padding-left: 8px;
  padding-right: 8px;
}

.product-detail__price {
  margin: 0 0 0.85em 0;
  font-family: var(--font-serif);
  line-height: 1;
  font-size: 28px;
}

/* Стара ціна на сторінці товару — закреслена + відступ (як у списку) */
.product-detail__price-old {
  text-decoration: line-through;
  opacity: 0.45;
  margin-right: 14px;
}

/* Бейдж знижки на сторінці товару — у стилістиці сайту (чорний, Elma Mono, гострий) */
.product-detail__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  background: var(--color-black);
  color: var(--color-white);
  -webkit-text-fill-color: var(--color-white);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: -0.26px;
  line-height: 1;
  padding: 5px 8px;
}

.product-detail__purchase {
  display: grid;
  gap: 18px;
}

.product-detail__model {
  margin: 0;
  font-variant-numeric: ordinal;
  -webkit-font-feature-settings: "dlig" on, "ss07" on;
          font-feature-settings: "dlig" on, "ss07" on;
  font-family: var(--font-ui);
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 115%;
  letter-spacing: -0.3px;
  text-transform: uppercase;
}

.product-detail__favorite,
.product-detail__cart,
/* Явний чорний колір на кнопках/акордеонах картки товару — щоб iOS Safari
   не фарбував текст своїм синім акцентом (color не був заданий прямо на них). */
.product-detail__showroom,
.product-detail__favorite,
.product-sizes__guide,
.product-accordion {
  color: var(--color-black);
}

.product-detail__showroom {
  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;
  gap: 8px;
  width: 100%;
  min-height: 48px;
  border: var(--border);
  cursor: pointer;
}

.product-detail__favorite {
  background: transparent;
  border-color: transparent;
  font-variant-numeric: ordinal;
  -webkit-font-feature-settings: "dlig" on, "ss02" on, "ss07" on, "ss13" on;
          font-feature-settings: "dlig" on, "ss02" on, "ss07" on, "ss13" on;
  font-family: var(--font-ui);
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 115%;
  letter-spacing: -0.3px;
  text-transform: uppercase;
}

.product-detail__favorite img {
  width: 32px;
  height: 32px;
}

.product-detail__cart {
  height: 46px;
  background: var(--color-black);
  color: var(--color-white);
  text-align: center;
  font-family: var(--font-ui);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  text-transform: uppercase;
}

.product-detail__showroom {
  background: var(--color-white);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.product-detail__meta {
  display: grid;
  -ms-flex-line-pack: end;
      align-content: end;
  gap: 0;
}

@media (min-width: 600px) {
  .product-detail__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .product-detail__copy {
    position: static;
    top: auto;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    min-height: 0;
  }
  .product-detail__purchase {
    margin-top: auto;
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
    background: var(--color-white);
    padding-bottom: 8px;
  }
}

.product-sizes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}

.product-sizes__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.product-sizes__item {
  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: 48px;
  height: 48px;
  border: 1px solid transparent;
  background: transparent;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  cursor: pointer;
}

.product-sizes__item[data-size*="one size" i] {
  width: 96px;
  white-space: nowrap;
}

.product-sizes__item--active {
  border-color: var(--line);
}

.product-sizes__guide {
  justify-self: end;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.product-accordion-item:nth-child(1) {
  border-top: var(--border);
}

.product-accordion-item {
  border-bottom: var(--border);
}

.product-accordion-item--open .product-accordion img {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

.product-accordion {
  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;
  padding: 0;
  border: 0;

  gap: 8px;
  width: 100%;
  min-height: 48px;
  background: transparent;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.product-accordion img {
  width: 16px;
  height: 16px;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: -webkit-transform 160ms ease;
  transition: -webkit-transform 160ms ease;
  -o-transition: transform 160ms ease;
  transition: transform 160ms ease;
  transition: transform 160ms ease, -webkit-transform 160ms ease;
}

.product-accordion__panel {
  padding: 0 12px 14px 0;
  font-family: var(--font-serif);
  font-size: 15px;
  line-height: 1.28;
  letter-spacing: -0.02em;
  text-transform: none;
}
.popup_care_line img{
  flex: 0 0 auto;
  width: 16px;
}
.popup_care_line{
  display: flex;
  align-items: center;
  gap: 5px;
}
.popup_care{
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.product-accordion p {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.28;
  letter-spacing: -0.02em;
  text-transform: none;
}

.product-accordion p:last-child {
  margin-bottom: 0;
}

.related-products__heading {
  min-height: 48px;
  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;
  padding: 18px 0;
  grid-gap: 10px;

  outline: var(--border);
}

.related-products h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 44px;
  line-height: 0.9;
  font-weight: 500;
  text-transform: uppercase;
}

.related-products .related-products__arrow {
  width: 32px;
  height: 32px;
  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;
  cursor: pointer;
  margin-top: -5px;
}

.related-products__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.related-products__card {
  display: grid;
  grid-template-rows: 450px 80px;

  outline: var(--border);
  outline-offset: -0.5px;
}

.related-products__card,
.related-products__card:hover,
.related-products__card:focus,
.related-products__card:visited,
.related-products__card:active {
  color: inherit;
  text-decoration: none;
}

.related-products__image {
  padding: 8px;
  display: grid;
  place-items: center;
}

.related-products img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.related-products__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
  padding: 8px;
  border-top: var(--border);
  line-height: 1.15;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.related-products p,
.related-products span {
  margin: 0;
}

.related-products p {
  max-width: 145px;
}

.checkout-products{
  border-bottom: var(--border);
}

@media all and (min-width: 600px) {
  .mobile-only {
    display: none;
  }
}

@media all and (max-width: 600px) {
  .desc-only {
    display: none;
  }
}

@media all and (max-width: 1680px) {
  .hero__season {
    font-size: 90px;
  }

  .hero__title {
    font-size: 144px;
  }
}

@media screen and (max-width: 1460px) {
  html {
    --containerPadding: 75px;
    --headerHeight: 130px;
  }
}

@media screen and (max-width: 1280px) {
  html {
    --containerPadding: 68px;
    --headerHeight: 120px;
  }
}

@media all and (max-width: 1280px) {
  .hero__season {
    font-size: 74px;
  }

  .hero__title {
    font-size: 128px;
  }
}

@media all and (max-width: 1240px) {
  .showroom-modal {
    width: min(480px, 100%);
  }

  .showroom-modal__home {
    min-width: 100%;
  }
}

@media all and (max-width: 1024px) {
  .category-toolbar {

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    grid-template-columns: none;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }

  .category-toolbar__controls {

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    grid-template-columns: none;
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 16px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .category-product__image {
    height: 52vw;
  }

  .category-products--3,
  .category-products--4,
  .category-products--5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-filter {
    min-height: auto;
    padding: 56px 15px 16px;
  }

  .category-filter__main {
    gap: 48px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .category-filter__left {
    gap: 28px;
  }

  .category-filter__block--collections {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .category-filter__collections {
    gap: 40px;
  }

  .category-filter__actions {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }

  .modal-cart .modal-container {
    width: 70vw;
    min-width: 0;
  }

  .checkout {
    grid-template-columns: 1fr;
  }

  .checkout-form {
    padding: 60px 32px 36px;
  }

  .checkout-order {
    min-height: auto;
    border-left: 0;
    border-top: var(--border);
  }

  .checkout-order__items {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }
}

@media screen and (max-width: 992px) {
  html {
    --containerPadding: 30px;
  }
}

@media all and (max-width: 768px) {
  .row > * {
    padding-right: 5px;
    padding-left: 5px;
  }

  .collections .row > * {
    padding-right: 0px;
    padding-left: 0px;
  }

  .row {
    margin-right: -5px;
    margin-left: -5px;
  }

  .desktop-only {
    display: none;
  }

  .order-sm-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .order-sm-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .order-sm-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  .order-sm-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }

  .order-sm-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }

  .order-sm-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }

  .order-sm-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }

  .container {
    padding-left: 0px;
    padding-right: 0px;
  }

  .main-menu-trigger {
    display: none;
  }

  .parent-item--mega .dropdown-menu-layer {
    display: none !important;
  }

  .checkout-header {
    height: 58px;
  }

  .checkout-header__logo {
    width: 190px;
  }

  .checkout-header__close {
    top: 10px;
    right: 8px;
    width: 36px;
    height: 36px;
  }

  .checkout-header__close img {
    width: 36px;
    height: 36px;
  }

  .checkout-page,
  .checkout {
    min-height: calc(100vh - 58px);
  }

  .checkout-form {
    padding: 46px 8px 32px;
  }

  .checkout-form__heading {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 14px;
    margin-bottom: 34px;
  }

  .checkout-form__title {
    margin-top: 36px;
  }

  .checkout-tabs {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
  }

  .checkout-tabs--delivery {
    margin-top: 32px;
  }

  .checkout-fields--two {
    grid-template-columns: 1fr;
  }

  .checkout-order__item {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .checkout-order__price {
    grid-column: 2;
    padding: 0 8px 14px;
    border-left: var(--border);
  }

  .checkout-order__info {
    padding-bottom: 8px;
  }

  .checkout-order__info a {
    font-size: 22px;
  }

  .checkout-promo {
    padding-left: 8px;
    padding-right: 8px;
  }

  .checkout-totals,
  .checkout-agreement {
    padding-left: 8px;
    padding-right: 8px;
  }

  .thank-hero {
    min-height: auto;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 44px 8px 40px;
  }

  .thank-hero__inner {
    width: 100%;
  }

  .thank-hero h1 {
    font-size: 38px;
  }

  .thank-recommendations .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .account__layout {
    grid-template-columns: 1fr;
  }

  .account__content {
    border-left: 0;
    border-top: var(--border);
  }

  .account-card {
    padding: 56px 40px;
  }

  .account-card__grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 40px;
  }

  .account-order-card__meta {
    max-width: 100%;
  }

  .modal-account-edit-personal .modal-container,
  .modal-account-add-address .modal-container,
  .modal-account-order-details .modal-container {
    width: 70vw;
    min-width: 0;
  }

  .product-grid--4,
  .product-grid--5 {
    grid-template-columns: repeat(2, 1fr);
  }

  .favorite-products {
    min-height: auto;
  }

  .about-text {
    grid-template-columns: 1fr;
  }

  .about-text__lead {
    border-right: 0;
    border-bottom: var(--border);
  }

  .about-text__lead p {
    max-width: none;
  }

  .about-text__body p {
    max-width: none;
  }

  .contacts-hero {
    grid-template-columns: 1fr;
  }

  .contacts-hero__info {
    border-right: 0;
    border-bottom: var(--border);
  }

  .contacts-hero__grid {
    max-width: none;
  }

  .contacts-map {
    min-height: 420px;
  }

  .tailoring-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .tailoring-hero__content {
    border-right: 0;
    border-bottom: var(--border);
  }

  .tailoring-hero__media {
    height: 72vw;
  }

  .modal-tailoring-request .modal-container {
    width: 70vw;
    min-width: 0;
  }

  .tailoring-modal__form {
    width: min(540px, 100% - 48px);
    margin-top: 140px;
  }

  .certificate-detail {
    grid-template-columns: 1fr;
  }

  .certificate-detail__info,
  .certificate-detail__secondary {
    border-left: 0;
    border-top: var(--border);
  }

  .certificate-detail__frame--primary {
    min-height: 420px;
  }

  .certificate-detail__frame--secondary {
    min-height: 230px;
  }

  .certificate-category__grid {
    grid-template-columns: 1fr 1fr;
  }

  .media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .show-detail__gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .show-detail__cell {
    min-height: 70vw;
  }

  .shows-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .collection-detail__gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .collection-detail__cell {
    min-height: 70vw;
  }

  .collection-detail__cell--text {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    grid-column: span 2;
    min-height: auto;
  }

  .collections-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .collections-tile--wide {
    grid-column: span 2;
  }

  .collections-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .collections-hero__content,
  .collections-hero__featured {
    min-height: 520px;
  }

  .collections-hero__content {
    border-right: 0;
    border-bottom: var(--border);
  }

  .collections-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .collections-card--large {
    grid-column: span 2;
  }
}

@media all and (max-width: 720px) {
  .showroom-modal {
    width: 100%;
  }

  .showroom-modal__header,
  .showroom-modal__intro,
  .showroom-modal__content,
  .showroom-modal__footer {
    padding-left: 8px;
    padding-right: 8px;
  }

  .showroom-modal__calendar,
  .showroom-modal__slots {
    width: 100%;
  }

  .showroom-modal__send {
    margin-top: auto;
  }

  .modal-container {
    -webkit-box-pack: stretch;
        -ms-flex-pack: stretch;
            justify-content: stretch;
  }

  .modal-content-wrapper {
    width: 100%;
    height: 100vh;
  }
}

@media all and (max-width: 600px) {
  .category-toolbar {
    min-height: auto;
    padding: 12px 8px;
  }

  .category-toolbar__title {
    font-size: 38px;
  }

  .category-toolbar__controls {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .category-toolbar__btn,
  .category-toolbar__label {
    font-size: 16px;
  }

  .category-products {
    grid-template-columns: 1fr;
  }

  .category-products--3,
  .category-products--4,
  .category-products--5 {
    grid-template-columns: 1fr;
  }

  .category-product__image {
    height: 130vw;
  }

  .category-product__info {
    height: 76px;
  }

  .category-filter {
    padding: 56px 8px 16px;
  }

  .category-filter__close {
    right: 8px;
  }

  .category-filter__sizes,
  .category-filter__colors,
  .category-filter__main,
  .category-filter__collections{
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .category-filter__main {
    gap: 32px;
  }

  .category-filter__block--collections {
    display: block;
  }

  .category-filter__actions {
    gap: 8px;
  }

  .category-filter__apply,
  .category-filter__reset {
    width: calc( 50% - 4px );
  }

  .modal-cart .modal-container {
    width: 100%;
  }

  .checkout {
    display: block;
  }

  .account__heading {
    min-height: 58px;
  }

  .account__heading h1 {
    font-size: 44px;
  }

  .account__layout {
    display: block;
  }

  .account-nav {
    padding: 24px 8px;
  }

  .account-card {
    min-height: auto;
    padding: 36px 8px;
  }

  .account-card__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
  }

  .account-card__head h2 {
    font-size: 44px;
  }

  .account-card__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .account-order-card__head {
    margin-bottom: 28px;
  }

  .account-order-card__head h2 {
    font-size: 44px;
  }

  .account-order-card__item p,
  .account-order-card__item li {
    font-size: 20px;
  }

  .modal-account-edit-personal .modal-container,
  .modal-account-add-address .modal-container,
  .modal-account-order-details .modal-container {
    width: 100%;
  }

  .account-modal__form {
    padding-top: 110px;
  }

  .account-modal__grid {
    grid-template-columns: 1fr;
  }

  .account-order-modal__item {
    grid-template-columns: 88px 1fr;
  }

  .account-order-modal__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 6px;
  }

  .account-order-modal__name,
  .account-order-modal__price {
    font-size: 20px;
  }

  .account-order-modal__section > p {
    font-size: 16px;
  }

  .account-order-modal__section-body p {
    font-size: 16px;
  }

  .cart-modal__item {
    grid-template-columns: 116px 1fr;
    min-height: 160px;
  }

  .cart-modal__image {
    padding: 16px 10px;
  }

  .cart-modal__details {
    padding: 12px 8px;
  }

  .cart-modal__name {
    font-size: 22px;
  }

  .cart-modal__price {
    margin-top: 14px;
    font-size: 24px;
  }

  .cart-modal__actions {
    gap: 8px;
    margin-top: 16px;
  }

  .cart-modal__quantity {
    width: 96px;
    height: 36px;
  }

  .cart-modal__remove {
    font-size: 13px;
  }

  .product-grid--3,
  .product-grid--4,
  .product-grid--5 {
    grid-template-columns: 1fr;
  }

  .favorite-page__title {
    font-size: 38px;
  }

  .favorite-empty {
    min-height: 240px;
    padding: 0 8px;
    text-align: center;
  }

  .favorite-recommendations h2 {
    font-size: 34px;
  }

  .about-hero {
    height: 360px;
  }

  .about-hero__mark {
    top: 10px;
    right: 10px;
    width: 120px;
  }

  .about-text__lead p {
    font-size: 32px;
  }

  .about-text__body p {
    font-size: 20px;
  }

  .contacts-hero__info {
    padding: 14px 8px 28px;
  }

  .contacts-hero__info h1 {
    margin-bottom: 36px;
    font-size: 42px;
  }

  .contacts-hero__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contacts-hero__item p {
    font-size: 23px;
  }

  .contacts-map {
    min-height: 360px;
  }

  .tailoring-hero__content {
    padding: 14px 8px 28px;
  }

  .tailoring-hero__content h1 {
    font-size: 42px;
  }

  .tailoring-hero__content p {
    font-size: 24px;
  }

  .tailoring-hero__note {
    font-size: 16px !important;
  }

  .tailoring-hero__button {
    width: 100%;
  }

  .tailoring-hero__media {
    height: 110vw;
  }

  .modal-tailoring-request .modal-container {
    width: 100%;
  }

  .modal-tailoring-request .modal-content-wrapper {
    min-height: 100vh;
  }

  .tailoring-modal__form {
    width: calc(100% - 16px);
    margin-top: 120px;
  }

  .tailoring-modal__form h2 {
    font-size: 42px;
    margin-bottom: 36px;
  }

  .tailoring-modal__success {
    width: calc(100% - 32px);
  }

  .tailoring-modal__success h2 {
    font-size: 44px;
  }

  .tailoring-modal__success p {
    margin-bottom: 48px;
  }

  .certificate-category__heading {
    min-height: 58px;
  }

  .certificate-category__heading h1 {
    font-size: 44px;
  }

  .certificate-category__grid {
    grid-template-columns: 1fr 1fr;
  }

  .certificate-card {
    border-left: var(--border);
  }

  .certificate-card__visual {
    min-height: 240px;
    padding: 20px;
  }

  .certificate-card__meta {
    padding: 8px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .certificate-detail__gallery {
    display: block;
  }

  .certificate-detail__frame--primary {
    min-height: 280px;
  }

  .certificate-detail__frame--secondary {
    display: none;
  }

  .certificate-detail__title {
    font-size: 44px;
  }

  .certificate-detail__price {
    margin-bottom: 48px;
  }

  .certificate-detail__text {
    margin-bottom: 36px;
  }

  .certificate-detail__text p {
    font-size: 16px;
  }

  .certificate-values {
    gap: 8px;
  }

  .certificate-values__item {
    min-height: 40px;
    padding: 0 10px;
  }

  .certificate-visual--split {
    grid-template-columns: 1fr 1fr;
  }

  .certificate-visual strong {
    font-size: 14px;
    font-size-font-size: 24px;
  }

  .error-page {
    min-height: 520px;
    padding: 64px 8px 72px;
  }

  .error-page__content h1 {
    font-size: 150px;
  }

  .error-page__content p {
    margin-bottom: 36px;
    font-size: 18px;
  }

  .error-page__link {
    font-size: 16px;
    padding: 12px 24px;
  }

  .legal-page {
    padding: 48px 8px 64px;
  }

  .legal-page--compact {
    padding-bottom: 72px;
  }

  .legal-content h1 {
    font-size: 38px;
  }

  .legal-content p {
    font-size: 17px;
  }

  .media-page__title {
    font-size: 38px;
  }

  .media-grid {
    grid-template-columns: 1fr;
  }

  .media-grid-card__image {
    aspect-ratio: 1/0.78;
  }

  .media-grid-card__info {
    min-height: 116px;
  }

  .show-detail__intro {
    padding: 16px 8px;
  }

  .show-detail__intro h1 {
    font-size: 38px;
  }

  .show-detail__year {
    font-size: 18px;
  }

  .show-detail__text {
    font-size: 20px;
  }

  .show-detail__gallery {
    grid-template-columns: 1fr;
  }

  .show-detail__cell {
    min-height: 132vw;
  }

  .shows-page__title {
    font-size: 38px;
  }

  .shows-grid {
    grid-template-columns: 1fr;
  }

  .shows-card__image {
    aspect-ratio: 1/1;
  }

  .collection-detail__top {
    min-height: 50px;
  }

  .collection-detail__back {
    font-size: 38px;
  }

  .collection-detail__gallery {
    grid-template-columns: 1fr;
  }

  .collection-detail__cell {
    min-height: 132vw;
  }

  .collection-detail__cell--text {
    grid-column: span 1;
    min-height: auto;
  }

  .collection-detail__cell--text h1 {
    font-size: 38px;
  }

  .collection-detail__cell--text p {
    font-size: 22px;
  }

  .collections-page__title {
    font-size: 38px;
  }

  .collections-grid {
    grid-template-columns: 1fr;
  }

  .collections-tile--wide {
    grid-column: span 1;
  }

  .collections-tile--wide .collections-tile__image {
    aspect-ratio: 1/1;
  }

  .collections-hero__content,
  .collections-hero__featured {
    min-height: 420px;
  }

  .collections-hero__title {
    font-size: 64px;
  }

  .collections-hero__text {
    font-size: 30px;
  }

  .collections-list {
    grid-template-columns: 1fr;
  }

  .collections-card {
    min-height: 470px;
  }

  .collections-card--large {
    grid-column: span 1;
  }

  .collections-card__title {
    font-size: 50px;
  }

  .collections-card__text {
    font-size: 24px;
  }
}

@media all and (max-width: 1150px) {
  header:not(.account-order-modal__header) {
    background: var(--color-white);
    z-index: 80;
  }

  .header-container {
    min-height: 56px;
    padding: 0 8px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .main-menu {
    display: none;
  }

  .header--home .header-logo-link,
  .header-logo-link {
    top: 16px;
    left: 40%;
    width: 180px;
  }

  .header-logo {
    margin-bottom: -26px;
  }

  .header-controls {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 6px;
    margin-left: auto;
    padding-top: 0;
  }

  .header-controls .language-switch-btn,
  .header-controls .header-controls-btn[onclick*=modal-search],
  .header-controls .header-controls-btn[href="/login.html"] {
    display: none;
  }

  .header-controls-btn {
    width: 32px;
    height: 32px;
  }

  .header-controls-btn img {
    width: 32px;
    height: 32px;
  }

  .mobile-menu-burger {
    position: absolute;
    left: 8px;
    top: 50%;
    width: 32px;
    height: 32px;
    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-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 4;
  }

  .mobile-menu-burger img {
    width: 32px;
    height: 32px;
  }

  .mobile-menu-burger .open-icon {
    display: none;
  }

  .mobile-menu-burger.open .close-icon {
    display: none;
  }

  .mobile-menu-burger.open .open-icon {
    display: block;
  }

  .mobile-menu {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 110;
    background: var(--color-white);
    overflow: auto;
    -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-transition: -webkit-transform 0.22s linear;
    transition: -webkit-transform 0.22s linear;
    -o-transition: transform 0.22s linear;
    transition: transform 0.22s linear;
    transition: transform 0.22s linear, -webkit-transform 0.22s linear;
    -webkit-overflow-scrolling: touch;
    padding-top: env(safe-area-inset-top, 0px);
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  .mobile-menu.active {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }

  .mobile-menu__panel {
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .mobile-menu__panel.is-active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .mobile-menu__header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 2;
    min-height: 56px;
    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;
    padding: 0 8px;
    border-bottom: var(--border);
    background: var(--color-white);
  }

  .mobile-menu__logo {
    width: 110px;
    text-decoration: none;
  }

  .mobile-menu__logo img {
    width: 100%;
    display: block;
    margin-bottom: -26px;
  }

  .mobile-menu__close,
  .mobile-menu__back {
    position: absolute;
    left: 8px;
    top: 50%;
    width: 28px;
    height: 28px;
    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-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }

  .mobile-menu__close img,
  .mobile-menu__back img {
    width: 28px;
    height: 28px;
  }

  .mobile-menu__controls {
    position: absolute;
    right: 8px;
    top: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 6px;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }

  .mobile-menu__control {
    width: 28px;
    height: 28px;
    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;
  }

  .mobile-menu__control img {
    width: 28px;
    height: 28px;
  }

  .mobile-menu__body,
  .mobile-menu__section-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
    padding: 18px 16px 24px;
  }

  .mobile-menu__primary {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }

  .mobile-menu__section-trigger,
  .mobile-menu__section-title {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
    color: var(--color-black);
    text-decoration: none;
    font-variant-numeric: ordinal;
    -webkit-font-feature-settings: "ss07" on;
            font-feature-settings: "ss07" on;
    font-family: "Victor Serif";
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
  }

  .mobile-menu__section-trigger::before,
  .mobile-menu__section-title::before {
    content: "";
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16px;
            flex: 0 0 16px;
    width: 16px;
    height: 16px;
    -ms-flex-item-align: center;
        align-self: center;
    background: url("/img/icons/shevron-icon.jpg") center/contain no-repeat;
  }

  .mobile-menu__info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 20px;
    padding: 16px 0;
    border-top: var(--border);
    border-bottom: var(--border);
  }

  .mobile-menu__info-grid a {
    color: var(--color-black);
    font-family: var(--font-ui);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 200%;
    letter-spacing: -0.4px;
    text-transform: uppercase;
    text-decoration: none;
  }

  .mobile-menu__service-links {
    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;
  }

  .mobile-menu__service-links a {
    color: var(--color-black);
    font-family: var(--font-ui);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 200%;
    letter-spacing: -0.4px;
    text-transform: uppercase;
    text-decoration: none;
  }

  .mobile-menu__search {
    width: 100%;
    min-height: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 14px;
    padding: 0 14px;
    border: var(--border);
    color: var(--color-black);
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.28px;
    text-transform: uppercase;
  }

  .mobile-menu__search img {
    width: 20px;
    height: 20px;
  }

  .mobile-menu__socials {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 22px;
  }

  .mobile-menu__socials a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
    color: var(--color-black);
    font-family: var(--font-ui);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -0.4px;
    text-transform: uppercase;
    text-decoration: none;
  }

  .mobile-menu__socials a img {
    width: 20px;
    height: 20px;
  }

  .mobile-menu__contacts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
  }

  .mobile-menu__contacts p {
    margin-bottom: 0;
    color: var(--color-black);
    font-family: var(--font-ui);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -0.4px;
    text-transform: uppercase;
  }

  .mobile-menu__lang {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
  }

  .mobile-menu__lang-item {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 4px;
    color: var(--color-black);
    font-family: var(--font-ui);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -0.4px;
    text-transform: uppercase;
  }

  .mobile-menu__lang-arrow {
    width: 16px;
    height: 16px;
    background: url("/img/icons/shevron-icon.jpg") center/contain no-repeat;
  }

  .mobile-menu__lang-item:not(.mobile-menu__lang-item--active) .mobile-menu__lang-arrow {
    display: none;
  }

  .mobile-menu__section-title-row {
    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;
  }

  .mobile-menu__section-close {
    width: 28px;
    height: 28px;
    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;
  }

  .mobile-menu__section-close img {
    width: 28px;
    height: 28px;
  }

  .mobile-menu__featured-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
  }

  .mobile-menu__featured-links a {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
    color: var(--color-black);
    -webkit-font-feature-settings: "ss07" on;
            font-feature-settings: "ss07" on;
    font-family: var(--font-ui);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    text-decoration: none;
  }

  .mobile-menu__featured-links a::before {
    content: "";
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16px;
            flex: 0 0 16px;
    width: 16px;
    height: 16px;
    background: url("/img/icons/shevron-icon.jpg") center/contain no-repeat;
  }

  .mobile-menu__category-links {
    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;
  }

  .mobile-menu__category-links a {
    color: var(--color-black);
    font-family: var(--font-ui);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    text-transform: uppercase;
    text-decoration: none;
  }

  .footer {
    padding: 0;
    border-top: var(--border);
  }

  .footer__columns {
    display: block;
    margin: 0;
    padding: 16px 16px 24px;
  }

  .footer__col {
    display: none;
  }

  .footer__col.footer__col--wide {
    display: block;
  }

  .footer__heading,
  .footer__links-row {
    display: none;
  }

  .footer__socials {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 22px;
    margin-bottom: 20px;
  }

  .footer__social {
    gap: 8px;
    font-size: 20px;
    line-height: 1.15;
    letter-spacing: -0.4px;
  }

  .footer__social img {
    width: 18px;
    height: 18px;
  }

  .footer__contacts {
    margin-bottom: 16px;
    font-size: 20px;
    line-height: 1.15;
    letter-spacing: -0.4px;
  }

  .footer__lang {
    margin-top: 0;
    font-size: 12px;
    line-height: 1.15;
    letter-spacing: -0.24px;
    gap: 6px;
  }

  .footer__lang .language-switch-arrow {
    width: 12px !important;
    height: 12px !important;
  }

  .footer .footer-bottom {
    padding: 0 0 calc(12px + env(safe-area-inset-bottom, 0px));
  }

  .footer .footer-bottom__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .footer .footer-bottom__logo img,
  .footer .footer-bottom__logo .footer-bottom__logo-svg {
    width: min(262px, 100vw - 48px);
  }

  .footer .footer-bottom__copy {
    position: static;
    margin: 0;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    font-size: 32px;
    margin-top: 1em;
    line-height: 1;
    white-space: normal;
  }

  .showrooms {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 24px 8px 8px;
    gap: 32px;
  }

  .showrooms__info {
    padding: 0;
    gap: 24px;
  }

  .showrooms__title {
    width: auto;
    font-size: 40px;
    line-height: 0.95;
  }

  .showrooms__list {
    gap: 26px;
  }

  .showrooms__media {
    min-height: 270px;
    border-top: var(--border);
  }

  .showroom {
    gap: 10px;
  }

  .showroom__num {
    width: 30px;
    font-size: 22px;
  }

  .showroom__details {
    gap: 8px;
  }

  .showroom__address {
    font-size: 28px;
    line-height: 1;
    margin-bottom: 0;
  }

  .showroom__hours {
    font-size: 16px;
    line-height: 1.05;
    letter-spacing: -0.24px;
  }

  .cookie-consent {
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: none;
    padding: 18px 16px calc(20px + env(safe-area-inset-bottom, 0px));
    border: 0;
    border-top: var(--border);
  }

  .cookie-consent__text {
    max-width: none;
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.05;
  }

  .cookie-consent__actions {
    gap: 16px;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }

  .cookie-consent__accept,
  .cookie-consent__decline {
    min-height: 42px;
    padding: 12px 20px;
    font-size: 14px;
    letter-spacing: -0.28px;
  }

  .hero {
    border-bottom: var(--border);
  }

  .hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 50%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.9)));
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
    pointer-events: none;
  }

  .hero__bg img {
    min-height: 534px;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .hero__content {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 20px;
    width: auto; /* скидаємо базові 641px, інакше на мобі width виграє над right → горизонтальний вихід за екран */
    z-index: 1;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding: 0;
    gap: 18px;
  }

  .hero__text {
    color: var(--color-white);
    margin-top: 0;
  }

  .hero__season {
    color: var(--color-white);
    font-size: 28px;
  }

  .hero__title {
    color: var(--color-white);
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: 102%;
  }

  .hero .btn--outline {
    min-height: 44px;
    padding: 12px 24px;
    border: 2px solid #000;
    background: #FFF;
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0;
  }

  .home .header-logo-link {
    top: 16px;
    left: 41.5%;
    width: 180px;
  }

  .home .header-logo {
    width: 100%;
  }

  .home-description {
    padding: 40px 16px;
  }

  .home-description__inner {
    max-width: none;
  }

  .home-description__quote-mark {
    width: 24px;
    height: 24px;
  }

  .home-description__text {
    font-size: 28px;
    line-height: 0.95;
    margin-top: -1px;
  }

  .services-row {
    grid-template-columns: 1fr;
    border-right: 0;
  }

  .service-card {
    aspect-ratio: auto;
    min-height: 240px;
    margin-right: 0;
    padding: 24px 8px;
  }
  .service-card__content{
    justify-content: flex-start;
  }
  .service-card__title {
    font-size: 40px;
    margin-bottom: 16px;
    line-height: 0.92;
  }

  .service-card__desc {
    max-width: 240px;
    font-size: 16px;
    letter-spacing: -0.2px;
  }

  .btn-trinagle {
    width: 114px;
    height: 114px;
    margin-top: auto;
    align-self: flex-end;
    margin-bottom: -16px;
    -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 0);
            clip-path: polygon(0 100%, 100% 100%, 100% 0);
  }

  .btn-trinagle span {
    font-size: 14px;
    right: 8px;
    top: auto;
    bottom: 8px;
  }

  .collection__header {
    display: block;
    padding: 16px 16px 24px 16px;
  }

  .collection__header-title {
    width: auto;
    margin-bottom: 24px;
    font-size: 32px;
    line-height: 0.95;
  }

  .collection__filter {
    width: auto;
    justify-content: center;
    gap: 20px;
  }

  .filter-btn {
    font-size: 20px;
    letter-spacing: 0px;
  }

  .filter-btn[data-filter=all] {
    display: none;
  }

  .filter-btn__icon {
    width: 14px;
    height: 14px;
  }

  .filter-btn__icon--active::after {
    width: 6px;
    height: 6px;
  }

  .product-grid--3,
  .product-grid--4,
  .product-grid--5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card__image {
    padding: 8px;
  }

  .product-card__info {
    display: block;
    padding: 8px;
  }

  .product-card__text {
    gap: 8px;
    height: auto;
    font-size: 16px;
    letter-spacing: -0.32px;
  }

  .product-card__name {
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: -0.32px;
    white-space: normal;
  }

  .product-card__image{
    flex: 0 0 auto;
    height: auto;
  }

  .product-card__price {
    display: block;
    margin-top: 10px;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: -0.32px;
  }

  .home .product-card__collection {
    display: none;
  }

  .media__header {
    height: auto;
    padding: 24px 8px;
  }

  .media__title {
    font-size: 32px;
  }

  .media__nav {
    gap: 10px;
  }

  .media__nav-btn {
    width: 14px;
    height: 14px;
  }

  .media-card__image {
    height: auto;
    padding: 6px;
  }

  .media-card__info {
    height: auto;
    min-height: 102px;
    padding: 6px;
  }

  .media-card__title {
    font-size: 18px;
    line-height: 0.95;
  }

  .media-card__source {
    margin-top: auto;
    font-size: 12px;
    letter-spacing: -0.24px;
  }

  .modal-search .modal-layout {
    background: rgba(0, 0, 0, 0.40);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
  }

  .modal-search .modal-container {
    width: 100%;
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
  }

  .search-modal {
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    background: var(--color-white);
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  .search-modal__mobile-header {
    min-height: 56px;
    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;
    padding: 0 8px;
    border-bottom: var(--border);
  }

  .search-modal__mobile-close {
    position: absolute;
    left: 8px;
    top: 14px;
    width: 28px;
    height: 28px;
    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;
  }

  .search-modal__mobile-close img {
    width: 28px;
    height: 28px;
  }

  .search-modal__mobile-logo {
    width: 110px;
  }

  .search-modal__mobile-logo img {
    width: 100%;
    display: block;
    margin-bottom: -26px;
  }

  .search-modal__mobile-controls {
    position: absolute;
    right: 8px;
    top: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 6px;
  }

  .search-modal__mobile-control {
    width: 28px;
    height: 28px;
    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;
  }

  .search-modal__mobile-control img {
    width: 28px;
    height: 28px;
  }

  .search-modal__bar {
    height: auto;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    padding: 16px;
    border-bottom: 0;
  }

  .search-modal__form {
    position: relative;
    height: 48px;
    border: var(--border);
  }

  .search-modal__form::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 50%;
    width: 20px;
    height: 20px;
    background: url("/img/icons/search_icon.svg") center/contain no-repeat;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }

  .search-modal__input {
    height: 48px;
    padding: 0 48px 0 44px;
    font-size: 14px;
    letter-spacing: -0.28px;
  }

  .search-modal__close {
    right: 20px;
    width: 28px;
    height: 28px;
  }

  .search-modal__close img {
    width: 28px;
    height: 28px;
  }

  .search-modal__summary {
    min-height: 38px;
    padding: 0 16px;
    gap: 16px;
  }

  .search-modal__summary p,
  .search-modal__summary a {
    font-size: 12px;
    letter-spacing: -0.24px;
  }

  .search-modal__grid {
    border-top: 0;
  }

  .search-page .search-results__products .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .modal-cart .modal-layout {
    background: rgba(0, 0, 0, 0.40);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
  }

  .modal-cart .modal-container {
    width: 100%;
    min-width: 0;
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    min-height: var(--app-vh, 100dvh);
    height: var(--app-vh, 100dvh);
  }

  .cart-modal {
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    min-height: var(--app-vh, 100dvh);
  }

  /* iOS-фікс: висота модалки кошика = РЕАЛЬНА видима висота в'юпорта.
     dvh/vh на in-app браузерах не завжди = видимій зоні → низ (кнопка «Оформити») ховається під тулбар.
     JS кладе точну window.innerHeight у --app-vh (js/script.js); фолбек — 100dvh → 100vh.
     safe-area лишаємо лише на футері, щоб не подвоювати нижній відступ. */
  .modal-cart .modal-content-wrapper {
    height: auto;
    min-height: 100svh;
    min-height: 100dvh;
    min-height: var(--app-vh, 100dvh);
  }

  .cart-modal__filled {
    min-height: calc(100svh - 48px);
    min-height: calc(100dvh - 48px);
    min-height: calc(var(--app-vh, 100dvh) - 48px);
  }

  .cart-modal__header {
    min-height: 48px;
    padding: 8px 52px 8px 8px;
  }

  .cart-modal__header h2 {
    font-size: 18px;
  }

  .cart-modal__item {
    grid-template-columns: 84px 1fr;
    min-height: 122px;
  }

  .cart-modal__image {
    padding: 12px 8px;
  }

  .cart-modal__details {
    padding: 8px;
  }

  .cart-modal__name {
    font-size: 20px;
  }

  .cart-modal__price {
    margin-top: 8px;
    font-size: 20px;
  }
  .cart-modal__size {
    margin-top: 8px;
    font-size: 15px;
    font-family: var(--font-ui);
    letter-spacing: -0.28px;
  }

  .cart-modal__quantity {
    width: 106px;
    height: 40px;
  }

  .cart-modal__remove {
    font-size: 12px;
    letter-spacing: -0.24px;
  }

  .cart-modal__footer {
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
    margin-top: auto;
    background: var(--color-white);
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  .cart-modal__total {
    padding: 14px 8px 12px;
  }

  .thank-hero {
    padding: 52px 16px 40px;
  }

  .thank-hero h1 {
    font-size: 26px;
    line-height: 0.92;
  }

  .thank-hero p {
    font-size: 16px;
    line-height: 1.05;
  }

  .thank-hero__button {
    min-width: 236px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .thank-recommendations h2 {
    padding: 8px 0 7px 8px;
    font-size: 22px;
  }

  .auth-page {
    min-height: calc(100vh - 56px);
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 230px 16px 40px;
  }

  .auth {
    width: 100%;
    margin-top: 0;
  }

  .auth-tabs {
    gap: 14px;
    margin-bottom: 24px;
  }

  .auth-tabs__button {
    min-height: 48px;
    padding: 0 16px;
    font-size: 14px;
    letter-spacing: -0.28px;
  }

  .auth-tabs__button--active {
    min-width: 141px;
  }

  .auth-title {
    margin-bottom: 22px;
    font-size: 25px;
  }

  .auth-field {
    margin-bottom: 9px;
  }

  .auth-field input {
    height: 44px;
    padding: 12px 16px;
    font-size: 14px;
    letter-spacing: -0.28px;
  }

  .auth-field--password input {
    padding-right: 138px;
  }

  .auth-field--password button {
    right: 12px;
    font-size: 14px;
    letter-spacing: -0.28px;
  }

  .auth-check {
    margin: 14px 0 22px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .auth-check p {
    font-size: 12px;
    line-height: 1.15;
  }

  .auth-submit,
  .auth-message__button {
    min-height: 48px;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 18px;
    letter-spacing: -0.36px;
  }

  .auth-note {
    display: none;
  }

  .auth-panel--message {
    width: 100%;
    padding-top: 40px;
  }

  .auth-panel--message p {
    margin-bottom: 26px;
    font-size: 25px;
  }

  .auth-panel--message-large h1 {
    margin-bottom: 18px;
    font-size: 58px;
  }

  .auth-panel--message-large p {
    margin-bottom: 34px;
  }

  .account__heading {
    min-height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 16px 16px 12px;
    border-top: var(--border);
    border-bottom: var(--border);
  }

  .account__heading h1 {
    font-size: 28px;
    line-height: 0.95;
  }

  .account__heading a {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.15;
    letter-spacing: -0.28px;
  }

  .account__layout {
    display: block;
  }

  .account__content {
    border-top: 0;
  }

  .account-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 14px 16px 16px;
    border-bottom: var(--border);
  }

  .account-nav__link {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 6px;
    padding: 0;
    margin-bottom: 0;
    padding-left: 20px;
    font-size: 18px;
    line-height: 1.05;
    letter-spacing: -0.28px;
  }

  .account-nav__link.account-nav__link--active::before {
    content: "";
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16px;
            flex: 0 0 16px;
    width: 16px;
    height: 16px;
    top: 10px;
    -ms-flex-item-align: center;
        align-self: center;
    background: url("/img/icons/shevron-icon.jpg") center/contain no-repeat;
  }

  .account-card {
    min-height: auto;
    padding: 16px;
    border-top: 0;
    border-bottom: var(--border);
  }

  .account-card__head {
    display: block;
    margin-bottom: 22px;
  }

  .account-card__head h2 {
    font-size: 32px;
    line-height: 0.95;
  }

  .account-card__action {
    margin-top: 20px;
    font-size: 15px;
    letter-spacing: -0.28px;
  }

  .account-card__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .account-card__item span {
    font-size: 20px;
    letter-spacing: -0.28px;
  }

  .account-card__item p {
    font-size: 20px;
    line-height: 0.98;
  }

  .account-card__hint {
    max-width: 290px;
    margin-bottom: 22px;
    font-size: 14px;
    line-height: 1.05;
    letter-spacing: -0.28px;
  }

  .account-card__button {
    min-width: 130px;
    min-height: 48px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 14px;
    letter-spacing: -0.28px;
  }

  .account-order-card__head {
    display: grid;
    grid-template-columns: 1fr auto;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 12px;
  }

  .account-order-card__head h2 {
    font-size: 32px;
  }

  .account-order-card__details {
    font-size: 15px;
    letter-spacing: -0.28px;
  }

  .account-order-card__meta {
    gap: 24px;
  }

  .account-order-card__item span {
    font-size: 20px;
    letter-spacing: -0.28px;
  }

  .account-order-card__item p,
  .account-order-card__item li {
    font-size: 20px;
    line-height: 0.98;
  }

  .modal-account-edit-personal .modal-layout,
  .modal-account-add-address .modal-layout,
  .modal-account-order-details .modal-layout {
    background: rgba(0, 0, 0, 0.4);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
  }

  .modal-account-edit-personal .modal-container,
  .modal-account-add-address .modal-container,
  .modal-account-order-details .modal-container {
    width: 100%;
    min-width: 0;
  }

  .modal-account-edit-personal .modal-content-wrapper,
  .modal-account-add-address .modal-content-wrapper,
  .modal-account-order-details .modal-content-wrapper {
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
  }

  .account-modal {
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  .account-modal__header {
    min-height: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 16px;
    border-bottom: var(--border);
  }

  .account-modal__header h2 {
    font-size: 14px;
    letter-spacing: -0.28px;
  }

  .account-modal__close {
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
  }

  .account-modal__close img {
    width: 28px;
    height: 28px;
  }

  .account-modal__form {
    min-height: calc(100vh - 48px);
    min-height: calc(100svh - 48px);
    min-height: calc(100dvh - 48px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 228px 16px 8px;
  }

  .account-modal__grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .account-modal__field {
    margin-bottom: 9px;
  }

  .account-modal__input {
    height: 45px;
    padding: 13px 16px;
    font-size: 14px;
    letter-spacing: -0.28px;
  }

  .account-modal__submit {
    min-height: 48px;
    margin-top: auto;
    margin-bottom: env(safe-area-inset-bottom, 0px);
    font-size: 18px;
    letter-spacing: -0.36px;
  }

  .account-order-modal {
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  .account-order-modal__header {
    min-height: 48px;
    padding: 0 52px 0 8px;
  }

  .account-order-modal__header h2 {
    font-size: 14px;
    letter-spacing: -0.28px;
  }

  .account-order-modal__item {
    grid-template-columns: 84px 1fr;
    min-height: 122px;
  }

  .account-order-modal__image {
    padding: 12px 8px;
  }

  .account-order-modal__details {
    padding: 8px;
  }

  .account-order-modal__top {
    display: block;
  }

  .account-order-modal__name,
  .account-order-modal__price {
    font-size: 18px;
    line-height: 0.98;
  }

  .account-order-modal__price {
    margin-top: 8px;
  }

  .account-order-modal__size,
  .account-order-modal__quantity {
    font-size: 12px;
    letter-spacing: -0.24px;
  }

  .account-order-modal__total {
    padding: 12px 8px;
  }

  .account-order-modal__total span,
  .account-order-modal__total strong {
    font-size: 14px;
    letter-spacing: -0.28px;
  }

  .account-order-modal__section h3 {
    min-height: 42px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 8px;
    font-size: 14px;
    letter-spacing: -0.28px;
  }

  .account-order-modal__section > p {
    padding: 12px 8px;
    font-size: 14px;
    letter-spacing: -0.28px;
  }

  .account-order-modal__section-body {
    padding: 12px 8px;
  }

  .account-order-modal__section-body p {
    font-size: 14px;
    letter-spacing: -0.28px;
  }

  .product-main {
    border-top:0;
  }

  .product-detail {
    display: block;
  }

  .product-detail__gallery {
    display: block;
    padding: 8px;
    border-bottom: var(--border);
  }
  .product-detail__gallery.swiper { overflow: hidden; }
  .product-detail__gallery-inner { display: block; }
  .product-detail__gallery-inner.swiper-wrapper { display: flex; }

  .product-detail__frame {
    padding: 6px;
    border-left: 0;
    border-bottom: 0;
    outline: 0;
  }

  .product-detail__gallery:not(.swiper) .product-detail__frame:not(:first-child) {
    display: none;
  }

  .product-detail__frame img {
    aspect-ratio: 1/1.28;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .product-detail__pager {
    min-height: 36px;
    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;
    gap: 8px;
    border-bottom: 0;
  }

  .product-detail__dot {
    width: 6px;
    height: 6px;
    border: 1px solid var(--color-black);
    border-radius: 50%;
  }

  .product-detail__dot--active {
    background: var(--color-black);
  }

  .product-detail__info,
  .product-detail__meta {
    border-left: 0;
    padding: 10px 8px 0;
  }

  .product-detail__copy {
    position: static;
  }

  .product-detail__title {
    margin-bottom: 16px;
    font-size: 40px;
    line-height: 0.92;
  }

  .product-detail__description {
    margin-bottom: 28px;
    font-size: 20px;
    line-height: 1.05;
  }

  .product-detail__price {
    margin-bottom: 32px;
    font-size: 24px;
  }

  .product-detail__purchase {
    gap: 12px;
  }

  .product-detail__model {
    font-size: 12px;
    line-height: 1.1;
    letter-spacing: -0.24px;
  }

  .product-detail__favorite {
    min-height: 32px;
    padding: 0;
    font-size: 18px;
    letter-spacing: -0.28px;
  }

  .product-detail__cart,
  .product-detail__showroom {
    min-height: 48px;
    font-size: 20px;
    letter-spacing: -0.36px;
  }

  .product-detail__meta {
    padding-top: 8px;
    padding-left: 0;
    padding-right: 0;
    border-top: 0;
  }
  .product-accordion-item:nth-last-child(1){
    border-bottom: 0;
  }
  .related-products__card{
    grid-template-rows: auto 80px;
    text-decoration: none;
  }
  .related-products__card:hover{
    color: inherit;
  }
  .related-products__info{
    flex-direction: column;
    font-size: 16px;
  }
  .product-sizes {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .product-sizes__row {
    gap: 0;
  }

  .product-sizes__item {
    width: 44px;
    height: 44px;
    font-size: 18px;
    letter-spacing: -0.28px;
  }

  .product-sizes__guide {
    font-size: 18px;
    letter-spacing: -0.24px;
  }

  .product-accordion {
    min-height: 44px;
    padding: 0 0;
    font-size: 14px;
    letter-spacing: -0.28px;
  }

  .product-accordion__panel {
    padding: 0 0 12px;
  }

  .product-accordion p {
    font-size: 15px;
    line-height: 1.08;
  }

  .related-products__heading {
    min-height: 48px;
    padding: 8px;
  }

  .related-products h2 {
    font-size: 22px;
  }

  .related-products__arrow {
    width: 20px;
    height: 20px;
    margin-top: 0;
  }

  .related-products .swiper-slide {
    width: 50% !important;
  }

  .category-toolbar {
    padding: 10px 8px 8px;
    border-top: 0;
  }

  .category-toolbar__title {
    margin-bottom: 10px;
    font-size: 40px;
    line-height: 1;
  }

  .category-toolbar__controls {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .category-toolbar__group {
    gap: 18px;
  }

  .category-toolbar__views,
  .category-toolbar__clear {
    display: none;
  }

  .category-toolbar__btn {
    padding: 0;
    border: 0;
    font-size: 14px;
    letter-spacing: -0.28px;
  }

  .category-toolbar__btn img {
    width: 10px;
    height: 10px;
  }

  .category-filter {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: none;
    overflow: auto;
    padding: 18px 16px 88px;
    background: var(--color-white);
  }

  .category-filter--open {
    display: block;
  }

  .category-filter__close {
    position: fixed;
    top: 14px;
    right: 8px;
    width: 28px;
    height: 28px;
  }

  .category-filter__main,
  .category-filter__left {
    display: block;
  }

  .category-filter__title {
    margin-bottom: 14px;
    font-size: 18px;
    line-height: 0.95;
  }

  .category-filter__block {
    margin-bottom: 34px;
  }

  .category-filter__sizes {
    gap: 0px;
  }

  .category-filter__size {
    width: auto;
    height: 56px;
  }

  .category-filter__size-text {
    width: 56px;
    height: 56px;
    font-size: 20px;
  }

  .category-filter__colors {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px 12px;
  }

  .category-filter__color span:last-child {
    font-size: 10px;
    letter-spacing: -0.2px;
  }

  .category-filter__color-swatch {
    width: 44px;
    height: 44px;
  }

  .category-filter__collections {
    display: block;
  }

  .category-filter__collection-list {
    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;
  }

  .category-filter__collection-list + .category-filter__collection-list {
    margin-top: 16px;
  }

  .category-filter__collection span {
    font-size: 14px;
    letter-spacing: -0.28px;
  }

  .category-filter__actions {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    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;
    gap: 16px;
    padding: 18px 12px;
    border-top: var(--border);
    background: var(--color-white);
  }

  .category-filter__apply {
    min-height: 46px;
    padding: 0 18px;
    font-size: 14px;
    letter-spacing: -0.28px;
  }

  .category-filter__reset {
    font-size: 14px;
    letter-spacing: -0.28px;
  }

  .category-products.category-products--2,
  .category-products.category-products--3,
  .category-products.category-products--4,
  .category-products.category-products--5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-product__image {
    padding: 6px;
  }

  .category-product__image img {
    aspect-ratio: 1/1.42;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .category-product__info {
    display: block;
    padding: 6px 6px 10px;
  }

  .category-product__text {
    display: block;
    height: auto;
  }

  .category-product__name {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    line-height: 1.05;
    letter-spacing: -0.24px;
  }

  .category-product__collection {
    display: none;
  }

  .category-product__price {
    display: block;
    margin-top: 0;
    font-size: 12px;
    letter-spacing: -0.24px;
  }

  .search-results__bar {
    display: block;
    padding: 10px 8px;
  }

  .search-results__form {
    margin-bottom: 12px;
    height: 48px;
  }

  .search-results__form input {
    height: 48px;
    padding-right: 16px;
    font-size: 14px;
    letter-spacing: -0.28px;
  }

  .search-results p {
    font-size: 12px;
    letter-spacing: -0.24px;
  }

  .search-modal__empty-state {
    display: none;
    padding: 110px 16px 0;
    text-align: center;
    font-size: 14px;
    letter-spacing: -0.28px;
    text-transform: uppercase;
  }

  .modal-search--no-results .search-modal__summary {
    display: none;
  }

  .modal-search--no-results .search-modal__empty-state {
    display: block;
  }

  .modal-search--no-results .search-modal__grid {
    display: none;
  }

  .modal-search:not(.modal-search--has-results):not(.modal-search--no-results) .search-modal__summary,
  .modal-search:not(.modal-search--has-results):not(.modal-search--no-results) .search-modal__grid,
  .modal-search:not(.modal-search--has-results):not(.modal-search--no-results) .search-modal__empty-state {
    display: none;
  }

  .checkout-page {
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
  }

  .checkout {
    display: block;
    min-height: auto;
  }

  .checkout-form {
    padding: 0;
  }

  .checkout-form__inner {
    display: block;
  }

  .checkout-form__heading {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 36px;
    margin: 0;
    padding: 16px 8px;
    border-top: var(--border);
    background: var(--color-black);
  }

  .checkout-form__heading h1 {
    color: var(--color-white);
    font-family: var(--font-serif);
    font-size: 22px;
    line-height: 0.95;
  }

  .checkout-form__heading a {
    color: var(--color-white);
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: -0.28px;
    text-transform: uppercase;
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .checkout-form__title {
    margin: 0;
    padding: 16px 8px;
    background: var(--color-black);
    color: var(--color-white);
    font-size: 20px;
    line-height: 0.95;
    margin-bottom: 16px;
  }

  .checkout-mobile-summary {
    padding: 18px 16px 16px;
  }

  .checkout-mobile-summary__head {
    margin-bottom: 18px;
    text-align: center;
  }

  .checkout-mobile-summary__head h1 {
    margin: 0 0 8px;
    font-family: var(--font-serif);
    font-size: 32px;
    line-height: 0.92;
  }
  .checkout-products{
    border: var(--border);
    border-top: 0;
  }
  .checkout-mobile-summary__head p {
    font-size: 14px;
    letter-spacing: -0.28px;
    text-transform: uppercase;
  }

  .checkout-mobile-order {
    margin-bottom: 18px;
  }

  .checkout-mobile-order__toggle {
    width: 100%;
    min-height: 48px;
    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;
    padding: 0 14px;
    border: var(--border);
    font-size: 14px;
    letter-spacing: -0.28px;
    text-transform: uppercase;
  }

  .checkout-mobile-order__toggle img {
    width: 16px;
    height: 16px;
    -webkit-transition: -webkit-transform 0.22s linear;
    transition: -webkit-transform 0.22s linear;
    -o-transition: transform 0.22s linear;
    transition: transform 0.22s linear;
    transition: transform 0.22s linear, -webkit-transform 0.22s linear;
  }

  .checkout-mobile-order__toggle[aria-expanded=true] img {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
  }

  .checkout-mobile-order__panel .checkout-products {
    border: var(--border);
    border-top: 0;
    background: var(--color-white);
  }

  .checkout-mobile-order__item {
    display: grid;
    grid-template-columns: 120px 1fr;
    min-height: 156px;
    border-bottom: var(--border);
    background: var(--color-white);
  }

  .checkout-mobile-order__item:last-child {
    border-bottom: 0;
  }

  .checkout-mobile-order__image {
    padding: 12px;
    border-right: var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .checkout-mobile-order__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }

  .checkout-mobile-order__details {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
    padding: 14px 16px;
  }

  .checkout-mobile-order__details > div > a {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 20px;
    line-height: 1;
    color: var(--color-black);
    text-decoration: none;
    display: block;
  }

  .checkout-mobile-order__details span {
    display: block;
    margin-top: 4px;
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 12px;
    line-height: 1;
    letter-spacing: -0.24px;
    text-transform: uppercase;
  }

  .checkout-mobile-order__details strong {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 20px;
    line-height: 1;
    margin-top: 6px;
    display: block;
  }

  .checkout-mobile-order__details b {
    margin-top: auto;
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 15px;
    line-height: 1;
    letter-spacing: -0.24px;
    text-transform: uppercase;
  }

  .checkout-tabs {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 14px;
    padding: 14px 8px 10px;
  }

  .checkout-tabs--delivery {
    padding-top: 0px;
    margin-top: 8px;
    margin-bottom: 16px;
  }
  .checkout-form__heading a {
    font-family: var(--font-ui);
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  .checkout-tab span {
    min-height: 48px;
    padding: 0 16px;
    font-size: 15px;
    letter-spacing: -0.28px;
  }
  .checkout-tabs.checkout-tabs--payment{
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .checkout-fields--two {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 0 8px;
  }

  .checkout-fields--two.checkout-fields--names {
    grid-template-columns: 1fr;
  }

  .checkout-field {
    margin-bottom: 8px;
  }

  .checkout-field__control {
    min-height: 45px;
    padding: 12px 16px;
    font-size: 14px;
    letter-spacing: -0.28px;
  }

  .checkout-field__textarea {
    min-height: 92px;
  }

  .checkout-field__error {
    padding-top: 6px;
    font-size: 12px;
    letter-spacing: -0.24px;
  }

  .checkout-recipient .checkout-fields--two {
    grid-template-columns: 1fr;
  }

  .checkout-country {
    padding: 0 8px 8px;
  }

  .checkout-mobile-aside {
    margin-top: 14px;
    padding-bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  }

  .checkout-order {
    display: none;
  }

  .checkout-promo {
    margin-top: 18px;
    padding: 18px 8px 16px;
    border-top: var(--border);
  }

  .checkout-promo label {
    font-size: 14px;
    letter-spacing: -0.28px;
  }

  .checkout-promo p {
    font-size: 12px;
    letter-spacing: -0.24px;
  }

  .checkout-promo__row input,
  .checkout-promo__row button {
    height: 48px;
    font-size: 14px;
    letter-spacing: -0.28px;
  }

  .checkout-totals,
  .checkout-agreement {
    padding: 16px 8px;
  }

  .checkout-totals div {
    gap: 16px;
  }

  .checkout-totals dt,
  .checkout-totals dd {
    font-size: 15px;
    letter-spacing: -0.28px;
    display: flex;
    align-items: flex-end;
  }
  .checkout-totals__final{
    margin-top: 16px;
  }
  .checkout-totals__final dd {
    font-family: var(--font-serif);
    font-size: 20px;
    line-height: 0.95;
  }

  .checkout-check {
    align-items: center;
  }

  .checkout-check span {
    width: 20px;
    height: 20px;
    margin-top: 2px;
  }

  .checkout-check p {
    font-size: 14px;
    line-height: 1.15;
  }

  .checkout-agreement__error {
    font-size: 12px;
    letter-spacing: -0.24px;
  }

  .certificate-values__item {
    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;
    text-decoration: none;
  }

  .contacts-hero__info {
    padding: 14px 8px 18px;
  }

  .contacts-hero__grid {
    gap: 18px;
  }

  .contacts-hero__item h2,
  .contacts-hero__item h3 {
    font-size: 14px;
    letter-spacing: -0.28px;
    text-transform: uppercase;
  }

  .contacts-hero__item p {
    font-size: 16px;
    line-height: 1.02;
  }

  .contacts-map {
    min-height: 330px;
  }

  .contacts-map__marker {
    font-size: 50px;
  }

  .about-hero {
    height: auto;
  }

  .about-hero img {
    aspect-ratio: 1/1.18;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .about-text__lead p {
    font-size: 29px;
    line-height: 0.94;
  }

  .about-text__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .about-text__body p {
    margin: 0;
    padding: 10px 8px;
    border-top: var(--border);
    border-left: var(--border);
    font-size: 14px;
    line-height: 0.98;
  }

  .about-text__body p:first-child {
    grid-column: 1/-1;
    border-left: 0;
  }

  .about-text__body p:nth-child(2) {
    border-left: 0;
  }

  .collections-page__title,
  .shows-page__title,
  .media-page__title {
    padding: 8px 8px 6px;
    font-size: 29px;
    line-height: 0.92;
  }

  .shows-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .media-grid-card__info {
    min-height: 140px;
  }

  .media-grid-card__title {
    font-size: 16px;
  }

  .collections-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .collections-grid .collections-tile--wide {
    grid-column: span 2;
  }

  .collection-detail__mobile-copy {
    padding: 0 8px 12px;
    border-bottom: var(--border);
  }

  .collection-detail__mobile-copy h1 {
    margin: 0 0 16px;
    font-family: var(--font-serif);
    font-size: 40px;
    line-height: 0.92;
    font-weight: 500;
  }

  .collection-detail__mobile-copy p {
    margin: 0;
    font-size: 14px;
    line-height: 0.98;
  }

  .collection-detail__mobile-copy .collection-detail__desc {
    font-size: 20px;
    line-height: 1.15;
  }

  .collection-detail__top {
    min-height: 40px;
    padding: 0 8px;
  }

  .collection-detail__back {
    font-size: 14px;
    letter-spacing: -0.28px;
  }

  .collection-detail__gallery {
    display: block;
  }

  .collection-detail__cell {
    min-height: auto;
    border-left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .collection-detail__cell:not(.collection-detail__cell--text) img {
    aspect-ratio: 1/1.32;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .collection-detail__cell--text {
    display: none;
  }

  .show-detail__intro {
    padding: 8px;
  }

  .show-detail__intro h1 {
    font-size: 29px;
    line-height: 0.92;
  }

  .show-detail__text p {
    font-size: 14px;
    line-height: 0.98;
  }

  .favorite-empty {
    min-height: 238px;
    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;
  }

  .favorite-empty p {
    max-width: 160px;
    font-size: 14px;
    letter-spacing: -0.28px;
  }

  .favorite-recommendations .product-grid,
  .thank-recommendations .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .thank-hero {
    padding: 22px 16px 34px;
  }

  .thank-hero h1 {
    font-size: 29px;
  }

  .thank-hero p {
    max-width: 260px;
  }
}

@media screen and (max-width: 480px) {
  html {
    --containerPadding: 20px;
    --containerMargin: -20px;
    --headerHeight: 63px;
  }
}

@media all and (max-width: 480px) {
  body {
    color: var(--black);
    line-height: 1.2;
    font-weight: 400;
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-scroll-chaining: none;
        overscroll-behavior: none;
  }

  .cookie-consent {
    left: 8px;
    right: 8px;
    bottom: 8px;
    width: auto;
    max-width: none;
    padding: 16px;
  }

  .cookie-consent__actions {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .cookie-consent__accept,
  .cookie-consent__decline {
    padding: 12px 20px;
  }
}

.modal-size-table .modal-container--full,
.modal-size-table .modal-container {
  max-width: 100vw;
  width: 100vw;
  height: 100vh;
  max-height: 100vh;
}
.modal-size-table .modal-content-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  background: #fff;
  padding: 24px 40px;
  overflow-y: auto;
}
.modal-size-table .size-table__close {
  position: absolute;
  top: 24px;
  right: 32px;
  z-index: 2;
}
.size-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  height: 100%;
  padding: 16px 0;
}
.size-table__media {
  display: grid;
  place-items: center;
  height: 100%;
  position: relative;
}

.size-table__media::after {
  content: "";
  position: absolute;
  top: -40px;
  bottom: -40px;
  right: -32px;
  border-right: var(--border);
}
.size-table__media img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
}
.size-table__content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 720px;
  padding-right: 40px;
}
.size-table__title {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 50px;
  line-height: 1;
}
.size-table__description {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.28px;
  text-transform: uppercase;
  line-height: 1.3;
}
.size-table__units {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.36px;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.size-table__units-arrow { font-size: 14px; }
.size-table__unit {
  border: 0;
  background: transparent;
  font: inherit;
  color: rgba(0,0,0,0.4);
  cursor: pointer;
  padding: 0;
  transition: color 220ms ease;
}
.size-table__unit:hover { color: rgba(0,0,0,0.7); }
.size-table__unit--active,
.size-table__unit--active:hover { color: #000; }
.size-table__scroll { overflow-x: auto; }
.size-table__block { margin-top: 28px; }
.size-table__block:first-of-type { margin-top: 0; }
.size-table__subtitle {
  margin: 0 0 12px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.3px;
  text-transform: uppercase;
}
.size-table__table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #000;
  font-family: var(--font-ui);
  letter-spacing: -0.3px;
  font-size: 15px;
}
.size-table__table th,
.size-table__table td {

  border: 0;
  padding: 14px 16px;
  text-align: center;
  vertical-align: middle;
  font-weight: 400;
  transition: background-color 220ms ease, color 220ms ease;
}
.size-table__table thead th {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 28px;
  line-height: 1em;
  height: 60px;
}

.size-table__table thead th:first-child,
.size-table__table td.size-table__row-name {
  border-right: 1px solid #000;
}
.size-table__table thead th {
  border-bottom: 1px solid #000;
}
.size-table__row-name {
  text-align: left;
  font-weight: 700;
  letter-spacing: -0.28px;
  text-transform: uppercase;
}
.size-table__size-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid transparent;
  transition: border-color 220ms ease;
  white-space: nowrap;
}
.size-table__table thead th.is-hover .size-table__size-label {
  border-color: #000;
}
.size-table__table tbody tr:hover td:not(.size-table__row-name),
.size-table__table tbody tr:hover .size-table__row-name {
  background: #000;
  color: #fff;
}
.size-table__cell.is-disabled,
.size-table__size-label.is-disabled {
  color: rgba(0,0,0,0.3);
}

@media (max-width: 900px) {
  .modal-size-table .modal-content-wrapper { padding: 16px; }
  .size-table {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .size-table__media img { max-height: 50vh; }
  .size-table__content { padding-right: 0; }
  .size-table__title { font-size: 32px; }
  .size-table__table thead th { font-size: 20px; }
}

.cart-modal__summary-row.cart-modal__summary-row--total { display: none; }

body.checkout-checkout > header:not(.checkout-header),
body.checkout-checkout #header-alert,
body.checkout-checkout .mobile-menu,
body.checkout-checkout .mobile-menu-drawer { display: none !important; }

.favorite-page__card { position: relative; }
.favorite-page__card .favorite-page__remove {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 20px;
  height: 20px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  z-index: 5;
}
.favorite-page__card .favorite-page__remove img {
  width: 20px;
  height: 20px;
  display: block;
}

.category-filter__heading {
  margin: 0 0 24px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.checkout-promo__error {
  margin: 8px 0 0;
  font-family: var(--font-ui);
  font-size: 12px;
  line-height: 1.2;
  color: #c00;
  letter-spacing: -0.24px;
}
.checkout-promo__success {
  margin: 8px 0 0;
  font-family: var(--font-ui);
  font-size: 12px;
  line-height: 1.2;
  color: #000;
  letter-spacing: -0.24px;
}

.showrooms__gallery {
  display: grid;

  grid-template-columns: repeat(2, min(32.8vw, 620px));
  gap: var(--px);
  overflow: hidden;
}

.showrooms.showrooms--v2 {
  grid-template-columns: 1fr auto;
  padding: var(--px);
  gap: var(--px);
}
.showrooms--v2 .showrooms__info {
  padding: 0;
}
.showrooms__photo {
  overflow: hidden;
}
.showrooms__photo img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1.45;
  object-fit: cover;
  display: block;
}

.individual-promo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  border-bottom: var(--border);
}
.individual-promo--img-right {
  direction: rtl;
}
.individual-promo--img-right > * {
  direction: ltr;
}

.individual-promo--no-image {
  grid-template-columns: 1fr;
}
.individual-promo__media {
  display: block;
  overflow: hidden;
  border-right: var(--border);

  padding: var(--px) 0 var(--px) var(--px);
}

.individual-promo--dark .individual-promo__media {
  background: var(--color-black);
}
.individual-promo--light .individual-promo__media {
  background: var(--color-white);
}
.individual-promo--img-right .individual-promo__media {
  border-right: 0;
  border-left: var(--border);
}
.individual-promo__media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 930/891;
  object-fit: cover;
  display: block;
}
.individual-promo__panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 28px;
  padding: 40px;
}
.individual-promo--dark .individual-promo__panel {
  background: var(--color-black);
  color: var(--color-white);
}
.individual-promo--light .individual-promo__panel {
  background: var(--color-white);
  color: var(--color-black);
}
.individual-promo__label {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  opacity: 0.7;
}
.individual-promo__title {
  font-family: var(--font-serif);
  font-weight: 500;

  font-size: min(3.92vw, 74px);
  line-height: 1;
  margin-bottom: 16px;
  -webkit-font-feature-settings: "ss13", "ordn", "ss02", "ss03";
          font-feature-settings: "ss13", "ordn", "ss02", "ss03";
}

.individual-promo__desc {
  font-family: var(--font-serif);
  font-weight: 500;

  font-size: min(1.9vw, 36px);
  line-height: 1.12;
  text-transform: none;
  max-width: 520px;
  -webkit-font-feature-settings: "ss13", "ordn", "ss02", "ss03";
          font-feature-settings: "ss13", "ordn", "ss02", "ss03";
}
.individual-promo__btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  line-height: 1;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.individual-promo--dark .individual-promo__btn:hover {
  background: var(--color-white);
  color: var(--color-black);
}
.individual-promo--light .individual-promo__btn:hover {
  background: var(--color-black);
  color: var(--color-white);
}

.gift-promo {
  margin: 0;
  background: var(--color-white);
  outline: var(--border);
  padding: 100px 16px 64px;
}
.gift-promo__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}
.gift-promo__cards {
  position: relative;
  display: inline-block;

  width: 52.27vw;
  max-width: 988px;
  aspect-ratio: 360/230;
}
.gift-promo__card {
  position: absolute;
  width: 74%;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}
.gift-promo__card--back {
  top: 0;
  left: 8%;
  border-radius: min(3vw, 56px);
  box-shadow: 16px 4px 24.5px 2px rgba(0, 0, 0, 0.20) inset;
  filter: drop-shadow(10px 11px 15.9px rgba(0, 0, 0, 0.25));
  margin-top: 40px;
  transform: none;
  z-index: 1;
}
.gift-promo__card--front {
  top: 12%;
  left: 26%;
  border-radius: min(3vw, 56px);
  z-index: 2;
  box-shadow: 16px 4px 24.5px 2px rgba(0, 0, 0, 0.20) inset;
  filter: drop-shadow(10px 11px 15.9px rgba(0, 0, 0, 0.25));

  margin-top: -30px;
  -webkit-transform: rotate(27.3deg);
      -ms-transform: rotate(27.3deg);
          transform: rotate(27.3deg);
}
.gift-promo__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 45px;
  line-height: 1;
  color: var(--color-black);
  -webkit-font-feature-settings: "ss13", "ordn", "ss02", "ss03";
          font-feature-settings: "ss13", "ordn", "ss02", "ss03";
}
.gift-promo__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  border: var(--border);
  background: var(--color-white);
  color: var(--color-black);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  line-height: 1;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.gift-promo__btn:hover {
  background: var(--color-black);
  color: var(--color-white);
}

@media all and (max-width: 768px) {
  .individual-promo__panel { padding: 24px; gap: 24px; }
  .individual-promo__title { font-size: 40px; }
  .gift-promo__title { font-size: 36px; }
}

@media all and (max-width: 599px) {
  .showrooms--v2 .showrooms__gallery {
    border-top: var(--border);
    grid-template-columns: 1fr 1fr;
  }
  .showrooms__photo img { aspect-ratio: 1/1.2; }

  .individual-promo {
    display: flex;
    flex-direction: column;
  }
  .individual-promo--img-right { direction: ltr; }
  .individual-promo__media,
  .individual-promo--img-right .individual-promo__media {
    border-right: 0;
    border-left: 0;
    border-bottom: var(--border);
    padding: var(--px);
  }
  .individual-promo__media img { aspect-ratio: 1/1; }
  .individual-promo__panel { padding: 20px 8px 24px; gap: 20px; }
  .individual-promo__title { font-size: 34px; }
  .individual-promo__desc { font-size: 14px; }
  .individual-promo__btn { width: 100%; }

  .gift-promo { padding: 60px 8px 48px; }
  .gift-promo__cards { width: 260px; }
  .gift-promo__card--back,
  .gift-promo__card--front { border-radius: 15px; }
  .gift-promo__title { font-size: 30px; }
  .gift-promo__btn { width: 100%; max-width: 320px; }
}

.card-gallery {
  display: block;
  position: relative;
  width: 100%;

  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  overflow: hidden;
}
.card-gallery__pic {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  display: block;
}

.card-gallery__pic:first-child {
  position: relative;
}
.card-gallery__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  opacity: 0;
  -webkit-transition: opacity 0.35s ease;
  -o-transition: opacity 0.35s ease;
  transition: opacity 0.35s ease;
}
.card-gallery__pic:first-child .card-gallery__img {
  height: auto;
}
.card-gallery__img.is-active {
  opacity: 1;
}
.card-gallery__zones {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 2;
}
.card-gallery__zone {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
}

.category-product__image .card-gallery,
.category-product__image .card-gallery__pic:first-child {
  height: 100%;
}
.category-product__image .card-gallery__pic:first-child .card-gallery__img {
  height: 100%;
}

.related-products__image .card-gallery {
  width: 100%;
  height: 100%;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  justify-self: stretch;
}
.related-products__image .card-gallery__pic:first-child,
.related-products__image .card-gallery__pic:first-child .card-gallery__img {
  height: 100%;
}

.js-reveal .category-products:not(.search-modal__grid) > .category-product:not(.card-reveal-pending),
.js-reveal .product-grid:not(.search-modal__grid) > .product-card:not(.card-reveal-pending),
.js-reveal .showrooms--v2 .showrooms__info:not(.card-reveal-pending),
.js-reveal .showrooms--v2 .showrooms__photo:not(.card-reveal-pending) {
  opacity: 0;
}

.card-reveal-pending {
  opacity: 0;
  -webkit-transition: opacity 0.8s ease;
  -o-transition: opacity 0.8s ease;
  transition: opacity 0.8s ease;
}
.card-reveal-pending.is-revealed {
  opacity: 1;
}

.footer-bottom__logo-svg {
  display: block;
  width: 100%;
  height: auto;
}
.footer-logo__letter {
  -webkit-transform-box: fill-box;
          transform-box: fill-box;
  -webkit-transition: opacity 0.55s ease, -webkit-transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.55s ease, -webkit-transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  -o-transition: opacity 0.55s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.55s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.55s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

.js-reveal .footer-logo__letter {
  opacity: 0;
  -webkit-transform: translateY(34%);
      -ms-transform: translateY(34%);
          transform: translateY(34%);
}

[data-footer-logo].is-revealed .footer-logo__letter {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
[data-footer-logo].is-revealed .footer-logo__letter:nth-child(2) {
  -webkit-transition-delay: 0.18s;
       -o-transition-delay: 0.18s;
          transition-delay: 0.18s;
}
[data-footer-logo].is-revealed .footer-logo__letter:nth-child(3) {
  -webkit-transition-delay: 0.36s;
       -o-transition-delay: 0.36s;
          transition-delay: 0.36s;
}
@media (prefers-reduced-motion: reduce) {
  .js-reveal .footer-logo__letter {
    opacity: 1;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
}

.paypart-trigger {
  width: 100%;
}

.paypart-trigger__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 46px;
  padding: 8px 12px;
  border: var(--border);
  background: var(--color-white);
  color: var(--color-black);
  font-family: var(--font-ui);
  font-size: 14px;
  line-height: 1.2;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.paypart-trigger__btn:hover {
  background: var(--color-black);
  color: var(--color-white);
}

.paypart-trigger__btn:hover .paypart-trigger__icon path {
  fill: var(--color-white);
}

.paypart-trigger__icon {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  display: inline-flex;
}

.paypart-trigger__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

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

.paypart {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 48px calc( 2 * var(--px) ) var(--px);
  color: var(--color-black);
  font-family: var(--font-ui);
}

.paypart__title {
  margin: 0 0 16px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 28px;
  line-height: 1;
}

.paypart__body {
  flex: 1 1 auto;
}

.paypart__intro {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.5;
}

.paypart__banks {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.paypart__bank {
  min-height: 42px;
  padding: 8px 12px;
  border: var(--border);
  background: var(--color-white);
  color: var(--color-black);
  font-family: var(--font-ui);
  font-size: 13px;
  text-transform: uppercase;
  cursor: pointer;
}

.paypart__bank--active {
  background: var(--color-black);
  color: var(--color-white);
}

/* Оплата частинами (monobank) на чекауті — блок одразу під активним методом оплати */
.paypart-checkout {
  padding: 16px;
}

.paypart-checkout[hidden] {
  display: none;
}

.paypart-checkout .paypart__calendar {
  margin-top: 0;
}

.paypart-checkout .paypart__terms {
  margin-bottom: 0;
}

.paypart-checkout__note {
  margin: 12px 0 0;
  font-family: var(--font-ui);
  font-size: 13px;
  line-height: 1.3;
  color: var(--color-black);
  opacity: 0.5;
}

/* Чекаут на мобі. Розміщено ПІСЛЯ медіа-запиту max-width:1150 (закривається на рядку ~12306),
   тож ці правила виграють у стилів, що зараз перекривають (.checkout-mobile-order__details span). */
@media (max-width: 1150px) {
  .paypart-checkout {
    padding: 16px 0;
  }

  .checkout-order__qty span {
    display: flex;
    align-items: center;
    margin-top: 0 !important;
  }
}

.paypart__terms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 12px 0 18px;
}

.paypart__term {
  min-height: 40px;
  border: var(--border);
  background: var(--color-white);
  color: var(--color-black);
  font-family: var(--font-ui);
  font-size: 15px;
  cursor: pointer;
}

.paypart__term--active {
  background: var(--color-black);
  color: var(--color-white);
}

.paypart__calendar {
  margin: 8px 0 18px;
  padding: 16px;
  outline: var(--border);
  outline-offset: -0.5px;
}

.paypart__calendar-title {
  margin-bottom: 14px;
  font-size: 13px;
  text-transform: uppercase;
}

.paypart__calendar-grid {
  display: grid;
  gap: 10px;
}

.paypart__cal-item {
  min-width: 0;
}

.paypart__cal-amount {
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.1;
  white-space: nowrap;
  color: var(--color-black);
  opacity: 0.4;
}

.paypart__cal-item--active .paypart__cal-amount {
  font-weight: 700;
  opacity: 1;
}

.paypart__cal-bar {
  height: 6px;
  margin-bottom: 8px;
  background: var(--color-black);
  opacity: 0.2;
}

.paypart__cal-item--active .paypart__cal-bar {
  opacity: 1;
}

.paypart__cal-date {
  font-size: 13px;
  white-space: nowrap;
  color: var(--color-black);
  opacity: 0.4;
}

.paypart__cal-item--active .paypart__cal-date {
  opacity: 1;
}

.paypart__calendar-total {
  margin-top: 14px;
  font-size: 16px;
  color: var(--color-black);
  opacity: 0.5;
}

.paypart__calendar-total strong {
  font-weight: 700;
  opacity: 1;
}

.paypart__bank-title {
  margin: 0 0 8px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
}

.paypart__steps {
  margin: 0 0 8px;
  padding-left: 1.75em;
  font-size: 14px;
  line-height: 1.5;
}

.paypart__steps li {
  margin-bottom: 6px;
}

.paypart__footer {
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  margin-top: auto;
  padding-top: 12px;
  background: var(--color-white);
}

.paypart__order-btn {
  width: 100%;
  min-height: 48px;
  border: var(--border);
  background: var(--color-black);
  color: var(--color-white);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.paypart__order-btn:hover {
  background: var(--color-white);
  color: var(--color-black);
}

@media (max-width: 599px) {
  .paypart__title { font-size: 24px; }
  .paypart__cal-amount,
  .paypart__cal-date { font-size: 11px; }
}

.welcome-popup.modal-wrapper {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
}

.welcome-popup .modal-container {
  -webkit-transform: translateY(20px);
      -ms-transform: translateY(20px);
          transform: translateY(20px);
  width: 640px;
  max-width: 100%;
  min-height: 0;
  height: auto;
  max-height: calc(100vh - 40px);
  overflow-x: hidden;
  overflow-y: auto;
}

.welcome-popup.modal-show .modal-container {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.welcome-popup .modal-content-wrapper {
  width: 100%;
  min-height: 0;
}

.subscribe-modal {
  padding: 56px 48px 40px;
  color: var(--color-black);
  text-align: center;
}

.subscribe-modal__title {
  margin: 0 0 35px;
  color: #000;
  text-align: center;
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 112%;
  text-transform: uppercase;
}

.subscribe-modal__text {
  margin: 0 auto 35px;
  max-width: 440px;
  color: #000;
  text-align: center;
  font-family: var(--font-serif);
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 103%;
  letter-spacing: -0.15px;
}

.subscribe-modal__success {
  margin-top: 16px;
  font-family: var(--font-ui);
  font-size: 14px;
  line-height: 1.3;
  color: #4a974f;
}

.subscribe-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  width: 100%;
}

.subscribe-input-wrapper {
  position: relative;
  width: 100%;
}

.subscribe-input {
  width: 100%;
  height: 45px;
  padding: 0 16px;
  border: 1px solid var(--color-black);
  background: none;
  color: #929292;
  text-align: center;
  font-family: var(--font-ui);
  font-feature-settings: 'dlig' on;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 115%;
  letter-spacing: -0.3px;
  text-transform: uppercase;
}

.subscribe-input:focus {
  outline: none;
}

.subscribe-input::-webkit-input-placeholder { opacity: 1; color: #929292; }
.subscribe-input::-moz-placeholder { opacity: 1; color: #929292; }
.subscribe-input:-ms-input-placeholder { opacity: 1; color: #929292; }
.subscribe-input::placeholder { opacity: 1; color: #929292; }

.subscribe-submit {
  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: 100%;
  height: 48px;
  padding: 0;
  border: 0;
  background: var(--color-black);
  color: #fff;
  text-align: center;
  font-family: var(--font-ui);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.subscribe-submit:hover {
  opacity: 0.85;
}

.subscribe-modal__disclaimer {
  margin: 25px 0 0;
  color: #000;
  text-align: center;
  font-family: var(--font-serif);
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}

.subscribe-input-wrapper .input-error {
  display: none;
}

.subscribe-input-wrapper.has-error .input-error {
  display: block;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  width: 100%;
  color: #e50000;
  font-family: var(--font-ui);
  font-size: 12px;
  line-height: 1.2;
  text-align: center;
}

@media (max-width: 599px) {
  .welcome-popup.modal-wrapper { padding: 12px; }
  .welcome-popup .modal-container { width: 100%; }
  /* Скидаємо генеричну мобільну height:100vh (з ~9070), інакше під контентом лишається пуста область. */
  .welcome-popup .modal-content-wrapper { height: auto; }
  .subscribe-modal { padding: 48px 20px 28px; }
  .subscribe-modal__title { font-size: 20px; }
  /* На моб прибираємо ручні переноси в заголовку — хай текст переноситься сам. */
  .subscribe-modal__title br { display: none; }
}

/* ===== Промо-блок OUTLET (extension/module/outlet_promo): текст ліворуч + сітка фото 3 колонки праворуч ===== */
.outlet-promo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  border-top: var(--border);
  border-bottom: var(--border);
}

.outlet-promo__panel {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  min-width: 0;
  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;
  gap: 24px;
  padding: 18px 8px 8px 16px;
  border-right: var(--border);
}

.outlet-promo__title {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 50px;
  line-height: 1;
}

.outlet-promo__p {
  margin: 0;
  max-width: 100%;
  color: var(--color-black);
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 28px;
  line-height: normal;
}

.outlet-promo__btn {
  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;
  height: 48px;
  padding: 0 24px;
  border: var(--border);
  color: var(--color-black);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease;
  -o-transition: background-color 0.2s ease, color 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.outlet-promo__btn:hover {
  background: var(--color-black);
  color: var(--color-white);
}

.outlet-promo__grid {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}

/* Варіант: 1 колонка фото (замість 3).
   Без фіксованої пропорції — фото на 100% ширини, висота натуральна (як залито). */
.outlet-promo__grid--cols-1 {
  grid-template-columns: 1fr;
}
.outlet-promo__grid--cols-1 .outlet-promo__cell {
  aspect-ratio: auto;
}
.outlet-promo__grid--cols-1 .outlet-promo__cell img {
  height: auto;
  -o-object-fit: fill;
     object-fit: fill;
}

/* Варіант: ТЕМНА тема (чорний фон, білий текст, біла рамка кнопки).
   Структурні рамки (--border) лишаються чорними — на чорному фоні їх не видно. */
.outlet-promo--dark {
  background: var(--color-black);
}
.outlet-promo--dark .outlet-promo__title,
.outlet-promo--dark .outlet-promo__p {
  color: var(--color-white);
  -webkit-text-fill-color: var(--color-white);
}
.outlet-promo--dark .outlet-promo__btn {
  border-color: var(--color-white);
  color: var(--color-white);
  -webkit-text-fill-color: var(--color-white);
}
.outlet-promo--dark .outlet-promo__btn:hover {
  background: var(--color-white);
  color: var(--color-black);
  -webkit-text-fill-color: var(--color-black);
}

.outlet-promo__cell {
  display: block;
  aspect-ratio: 228 / 332;
  overflow: hidden;
}

.outlet-promo__cell img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .outlet-promo {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .outlet-promo__panel {
    border-right: 0;
    border-bottom: var(--border);
    gap: 16px;
    padding: 16px;
  }
  .outlet-promo__title { font-size: 32px; }
  .outlet-promo__p { font-size: 18px; max-width: none; }
  .outlet-promo__btn { font-size: 16px; }
}
