:root {
  --body-ff: "Cera Pro", Arial, Helvetica, sans-serif;
  --body-fz: 18px;
  --body-fw: 300;
  --body-lh: 1.3;
  --body-fc: var(--black);
  --body-bg: var(--white);
  --h-ff: var(--body-ff);
  --h-fw: 400;
  --h-lh: 1;
  --h-mb: 0 0 25px 0;
  --h1-fz: 48px;
  --h2-fz: 44px;
  --h3-fz: 36px;
  --h4-fz: 32px;
  --h5-fz: 28px;
  --h6-fz: 26px;
  --p-mb: 0 0 25px 0;
  --sec-p: 45px;
  --sec-h-mb: 40px;
  --sec-h-t-mb: 15px;
  --white: #ffffff;
  --black: #050505;
  --black-light: #363030;
  --gray: #FAFAFF;
  --gray-low: #CCCCCC;
  --gray-mid: #D9D9D9;
  --gray-depp: rgba(0, 0, 0, 0.1);
  --gray-dark: rgba(0, 0, 0, 0.4);
  --pink: #FEF8FE;
  --pink-deep: #EFE7EA;
  --pink-low: #E3DDE3;
  --red: #D6001C;
  --radius-xs: 8px;
}

@media screen and (max-width: 1440px) {
  :root {
    --body-fz: 16px;
    --h1-fz: 42px;
    --h2-fz: 36px;
    --h3-fz: 32px;
    --h4-fz: 28px;
    --h5-fz: 26px;
    --h6-fz: 24px;
  }
}
@media screen and (max-width: 1200px) {
  :root {
    --body-fz: 16px;
  }
}
@media screen and (max-width: 991px) {
  :root {
    --h1-fz: 36px;
    --h2-fz: 32px;
    --h3-fz: 28px;
    --h4-fz: 26px;
    --h5-fz: 24px;
    --h6-fz: 22px;
    --h-lh: 1.2;
    --sec-p: 35px;
  }
}
@media screen and (max-width: 576px) {
  :root {
    --h1-fz: 32px;
    --h2-fz: 28px;
    --h3-fz: 26px;
    --h4-fz: 24px;
    --h5-fz: 22px;
    --h6-fz: 20px;
    --sec-p: 25px;
    --sec-h-mb: 20px;
  }
}
.container {
  box-sizing: border-box;
  --bs-gutter-x: 30px;
}
@media (min-width: 1400px) {
  .container {
    max-width: 1350px;
  }
}

.row {
  --bs-gutter-x: 30px;
}

.g-0 {
  --bs-gutter-x: 0px;
  --bs-gutter-y: 0px;
}

.gx-base {
  --bs-gutter-x: 30px;
}
@media (max-width: 576px) {
  .gx-base {
    --bs-gutter-x: 15px;
  }
}

.gy-base {
  --bs-gutter-y: 30px;
}
@media (max-width: 576px) {
  .gy-base {
    --bs-gutter-y: 15px;
  }
}

.gx-small {
  --bs-gutter-x: 15px;
}
@media (max-width: 576px) {
  .gx-small {
    --bs-gutter-x: 8px;
  }
}

.gy-small {
  --bs-gutter-y: 15px;
}
@media (max-width: 576px) {
  .gy-small {
    --bs-gutter-y: 8px;
  }
}

@font-face {
  font-family: "Cera Pro";
  src: url("../img/CeraPro-Thin.woff2") format("woff2"), url("../img/CeraPro-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cera Pro";
  src: url("../img/CeraPro-Regular.woff2") format("woff2"), url("../img/CeraPro-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cera Pro";
  src: url("../img/CeraPro-Bold.woff2") format("woff2"), url("../img/CeraPro-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cera Pro";
  src: url("../img/CeraPro-Light.woff2") format("woff2"), url("../img/CeraPro-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cera Pro";
  src: url("../img/CeraPro-Medium.woff2") format("woff2"), url("../img/CeraPro-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nyght Serif";
  src: url("../fonts/NyghtSerif/NyghtSerif-RegularItalic.woff2") format("woff2"), url("../fonts/NyghtSerif/NyghtSerif-RegularItalic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
.fw-100 {
  font-weight: 100 !important;
}

.fw-300 {
  font-weight: 300 !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.fw-900 {
  font-weight: 900 !important;
}

.color-white {
  color: var(--white) !important;
}

.bg-white {
  background-color: var(--white) !important;
}

.color-black {
  color: var(--black) !important;
}

.bg-black {
  background-color: var(--black) !important;
}

.color-black-light {
  color: var(--black-light) !important;
}

.bg-black-light {
  background-color: var(--black-light) !important;
}

.color-gray {
  color: var(--gray) !important;
}

.bg-gray {
  background-color: var(--gray) !important;
}

.color-pink {
  color: var(--pink) !important;
}

.bg-pink {
  background-color: var(--pink) !important;
}

.color-red {
  color: var(--red) !important;
}

.bg-red {
  background-color: var(--red) !important;
}

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

.d-flex-center {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

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

.p-0 {
  padding: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.radius-xs {
  border-radius: var(--radius-xs);
}

@media (max-width: 576px) {
  .w-sm-100 {
    width: 100%;
  }
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--body-ff);
  font-size: var(--body-fz);
  font-weight: var(--body-fw);
  line-height: var(--body-lh);
  color: var(--body-fc);
  background-color: var(--body-bg);
  -webkit-tap-highlight-color: transparent;
  text-rendering: geometricPrecision;
  letter-spacing: -0.5px;
}
@media (max-width: 768px) {
  body {
    padding-bottom: 60px;
  }
}

* {
  outline-offset: 3px;
  outline-color: var(--black);
}
*::selection {
  color: var(--white);
  background: var(--black);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--h-ff);
  font-weight: var(--h-fw);
  line-height: var(--h-lh);
  margin: var(--h-mb);
  text-transform: uppercase;
  letter-spacing: 6px;
}
@media (max-width: 576px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    letter-spacing: 4px;
  }
}

h1,
.h1 {
  font-size: var(--h1-fz);
}

h2,
.h2 {
  font-size: var(--h2-fz);
}

h3,
.h3 {
  font-size: var(--h3-fz);
}

h4,
.h4 {
  font-size: var(--h4-fz);
}

h5,
.h5 {
  font-size: var(--h5-fz);
}

h6,
.h6 {
  font-size: var(--h6-fz);
}

p {
  margin: var(--p-mb);
}

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

b,
strong {
  font-weight: bold;
}

img {
  max-width: 100%;
  height: auto;
}

.button {
  font-family: inherit;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  padding: 2px 45px;
  background-color: var(--black);
  color: var(--white);
  border: none;
  box-sizing: border-box;
  border-radius: 12px;
  min-height: 52px;
  transition: opacity ease-in-out 0.2s;
}
.button:hover {
  opacity: 0.8;
}
.button-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.button-icon path {
  transition: fill ease-in-out 0.2s;
}
.button-box {
  width: 40px;
  height: 40px;
  border: 2px solid var(--pink-low);
  border-radius: var(--radius-xs);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  padding: 0;
  background-color: transparent;
}
.button-box.small {
  width: 20px;
  height: 20px;
  border: none;
}
.button-box path {
  transition: fill ease-in-out 0.2s;
}
.button-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #000;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  transition: color ease-in-out 0.2s;
}
.button-link-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: -1px;
  width: 20px;
  height: 20px;
}
.button-link path {
  transition: fill ease-in-out 0.2s;
}
.button-link:hover {
  color: var(--black);
}
.button-link:hover path {
  fill: var(--black);
}
.button-link.black {
  color: var(--black);
  font-size: 14px;
}
.button-link.black:hover {
  color: var(--red);
}
.button-link.black:hover path {
  fill: var(--red);
}
.button.small {
  padding: 2px 16px;
  min-height: 42px;
  box-sizing: border-box;
  border-radius: var(--radius-xs);
}
.button.bordered {
  background-color: transparent;
  border: 2px solid var(--pink-low);
  color: var(--black);
  transition: border-color ease-in-out 0.2s;
}
.button.bordered:hover {
  background-color: transparent;
  border-color: var(--black);
}
.button.pink {
  color: var(--black);
  background-color: var(--pink);
}
.btn-danger {
  font-family: inherit;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  padding: 2px 45px;
  border: none;
  box-sizing: border-box;
  border-radius: 12px;
  min-height: 52px;
  transition: opacity ease-in-out 0.2s;
}

.input-group {
  margin-bottom: 30px;
}
.input-group.d-flex {
  gap: 16px;
}
.input-label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  line-height: 1.2;
}
.input-label:last-child {
  margin: 0;
}
.input-tag {
  display: inline-block;
  background-color: var(--black);
  color: var(--white);
  border-radius: var(--radius-xs);
  font-size: 18px;
  padding: 5px 16px;
}
.input-control {
  font-family: inherit;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  max-width: 100%;
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  box-sizing: border-box;
  outline: none;
  border: 2px solid var(--pink-low);
  border-radius: var(--radius-xs);
  transition: border-color ease-in-out 0.2s;
}
.input-control::-webkit-input-placeholder {
  opacity: 0.5;
}
.input-control:-moz-placeholder {
  opacity: 0.5;
}
.input-control::-moz-placeholder {
  opacity: 0.5;
}
.input-control:-ms-input-placeholder {
  opacity: 0.5;
}
.input-control:focus {
  border-color: var(--black);
}
.input-checkbox, .input-radio {
  display: block;
  margin: 0;
  position: relative;
}
.input-checkbox:not(:last-child), .input-radio:not(:last-child) {
  margin-bottom: 10px;
}
.input-checkbox input[type=checkbox],
.input-checkbox input[type=radio], .input-radio input[type=checkbox],
.input-radio input[type=radio] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 1;
  visibility: hidden;
}
.input-checkbox span, .input-radio span {
  display: block;
  position: relative;
  padding-left: 27px;
}
.input-checkbox span:before, .input-checkbox span:after, .input-radio span:before, .input-radio span:after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 0;
  top: 1px;
  border-radius: 4px;
  cursor: pointer;
  transition: top ease-in-out 0.2s, left ease-in-out 0.2s, opacity ease-in-out 0.2s, background-color ease-in-out 0.2s, border-color ease-in-out 0.2s;
}
.input-checkbox span:before, .input-radio span:before {
  border: 1.5px solid var(--gray-mid);
}
.input-checkbox span:hover:before, .input-radio span:hover:before {
  border-color: var(--black);
}
.input-checkbox input[type=checkbox]:checked + span:before {
  border-color: var(--black);
  background-color: var(--black);
}
.input-checkbox input[type=checkbox]:checked + span:after {
  opacity: 1;
}
.input-checkbox span:after {
  background-image: url("data:image/svg+xml,%3csvg%20width='12'%20height='10'%20viewBox='0%200%2012%2010'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M1%205.38889L4.07692%208.5L11%201.5'%20stroke='white'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/svg%3e");
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
}
.input-radio input[type=radio]:checked + span:before {
  border-color: var(--black);
  background-color: var(--black);
}
.input-radio input[type=radio]:checked + span:after {
  opacity: 1;
}
.input-radio span:before, .input-radio span:after {
  border-radius: 100%;
}
.input-radio span:after {
  width: 8px;
  height: 8px;
  left: 5px;
  top: 6px;
  background-color: var(--white);
}
.input-range-inputs {
  display: flex;
  margin-bottom: 16px;
}
.input-range-inputs input {
  flex: 1;
}
.input-range-inputs input:focus {
  border-color: var(--pink-low);
}
.input-range-inputs input:first-child {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right-width: 1px;
}
.input-range-inputs input:last-child {
  border-left: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-toggle {
  display: inline-flex;
  align-items: center;
  background-color: var(--pink);
  border-radius: 12px;
}
.input-toggle-item {
  display: block;
  margin: 0;
}
.input-toggle-item input {
  display: none;
}
.input-toggle-item .active {
  background-color: var(--black);
  color: var(--white);
}
.input-toggle-item button {
  display: block;
  padding: 14px 44px;
  border-radius: 12px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
  transition: background-color ease-in-out 0.2s, color ease-in-out 0.2s;
}
@media (max-width: 576px) {
  .input-toggle-item span {
    padding: 14px 25px;
  }
}
.input-radio-box {
  display: block;
  margin: 0;
  height: 100%;
}
.input-radio-box input {
  display: none;
}
.input-radio-box input:checked + div {
  border-color: var(--black);
}
.input-radio-box input:checked + div:before {
  border-color: var(--black);
  background-color: var(--black);
}
.input-radio-box input:checked + div:after {
  opacity: 1;
}
.input-radio-box-inner {
  height: 100%;
  padding: 16px 49px 16px 18px;
  border-radius: var(--radius-xs);
  border: 2px solid var(--pink-low);
  cursor: pointer;
  min-height: 93px;
  position: relative;
  transition: border-color ease-in-out 0.2s;
}
@media (max-width: 576px) {
  .input-radio-box-inner {
    min-height: auto;
  }
}
.input-radio-box-inner:before, .input-radio-box-inner:after {
  content: "";
  position: absolute;
  border-radius: 100%;
}
.input-radio-box-inner:before {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--gray-mid);
  top: 16px;
  right: 13px;
  transition: background-color ease-in-out 0.2s, border-color ease-in-out 0.2s;
}
.input-radio-box-inner:after {
  width: 8px;
  height: 8px;
  background-color: var(--white);
  opacity: 0;
  right: 18px;
  top: 21px;
  transition: opacity ease-in-out 0.2s;
}
.input-radio-box-name {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 4px;
}
.input-radio-box-desc {
  font-size: 12px;
  opacity: 0.7;
}

select.input-control {
  background-image: url("data:image/svg+xml,%3csvg%20width='19'%20height='11'%20viewBox='0%200%2019%2011'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M1%201L9.5%209.5L18%201'%20stroke='black'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: calc(100% - 15px) center;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: "";
}

.slider.slider-horizontal .slider-track {
  height: 2px;
  margin-top: -2px;
}

.slider-track {
  background-color: var(--pink-deep);
  background-image: none;
  box-shadow: none;
  border-radius: 2px;
}

.slider.slider-horizontal {
  width: 100%;
}

.slider-selection {
  background-color: var(--black);
  background-image: none;
  box-shadow: none;
}

.slider-handle {
  box-shadow: none;
  background-image: none;
  width: 20px;
  height: 20px;
  border: none;
  top: -2px;
  background-color: var(--black);
}
.slider-handle:after {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  left: 6px;
  top: 6px;
  border-radius: 100%;
  background-color: var(--white);
}

.slider-handle.min-slider-handle {
  margin: 0 !important;
}
.slider-handle.max-slider-handle {
  margin-left: -20px !important;
}

.text-radio input {
  display: none;
}
.text-radio input:checked + span {
  color: var(--black);
}
.text-radio span {
  font-weight: normal;
  color: var(--gray-dark);
  cursor: pointer;
  transition: color ease-in-out 0.2s;
}

.section {
  padding-top: var(--sec-p);
  padding-bottom: var(--sec-p);
  overflow: hidden;
}
.section.pt-double {
  padding-top: calc(var(--sec-p) * 2);
}
.section.pb-double {
  padding-bottom: calc(var(--sec-p) * 2);
}
.section.pt-half {
  padding-top: calc(var(--sec-p) * 1.5);
}
.section.pb-half {
  padding-bottom: calc(var(--sec-p) * 1.5);
}
.section-header {
  margin-bottom: var(--sec-h-mb);
}
.section-footer {
  margin-top: var(--sec-h-mb);
}
.section-footer.d-flex {
  gap: 30px;
}
@media (max-width: 576px) {
  .section-footer.d-flex {
    gap: 22px;
  }
}
.section-title {
  margin-bottom: var(--sec-h-t-mb);
}
.section-title:last-child {
  margin: 0;
}
.section-title-reset {
  letter-spacing: 0;
  text-transform: none;
  font-weight: 300;
}
.section-desc {
  max-width: 504px;
  font-size: 18px;
}
@media (max-width: 991px) {
  .section-desc {
    font-size: 16px;
  }
}
.section-desc:last-child {
  margin: 0;
}

.modal {
  --bs-modal-width: 600px;
}
.modal-close {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 16px;
  top: 16px;
  border: none;
  background-color: transparent;
  cursor: pointer;
  z-index: 9;
}
.modal-close path {
  transition: fill ease-in-out 0.2s;
}
.modal-close:hover path {
  fill: var(--black);
}
.modal-content {
  padding: 60px;
  box-sizing: border-box;
  border-radius: 16px;
  border: none;
  box-shadow: none;
}
@media (max-width: 991px) {
  .modal-content {
    padding: 40px;
  }
}
.modal-content-title {
  margin-bottom: 20px;
  font-size: 32px;
  line-height: 1.2;
}
@media (max-width: 991px) {
  .modal-content-title {
    font-size: 24px;
  }
}
.modal-content-footer {
  display: flex;
  gap: 16px;
}
@media (max-width: 991px) {
  .modal-content-footer {
    flex-direction: column;
  }
}
.modal-content-footer .button {
  flex: 1;
  padding: 0;
}
.modal-content-items {
  margin-bottom: 50px;
}
.modal-content-item {
  display: flex;
  gap: 10px;
}
.modal-content-item:not(:last-child) {
  margin-bottom: 5px;
}
.modal-content-item-img {
  max-width: 130px;
}
@media (max-width: 991px) {
  .modal-content-item-img {
    max-width: 90px;
  }
}
.modal-content-item-content {
  flex: 1;
  padding-top: 20px;
}

/* .modal-content {
  background-color: transparent;
} */
.modal-video {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
  border-radius: var(--radius-xs);
}
.modal-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 0;
  bottom: 0 !important;
  position: relative;
}
.swiper-pagination-bullet {
  display: block;
  width: 32px;
  height: 2px;
  border-radius: 3px;
  background-color: var(--black);
  opacity: 0.2 !important;
  transition: opacity ease-in-out 0.2s;
}
.swiper-pagination-bullet-active {
  opacity: 1 !important;
}
.swiper-swipe {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 9;
  width: 31px;
}

.controls {
  display: flex;
  gap: 10px;
}
.controls-button {
  width: 60px;
  height: 60px;
  cursor: pointer;
  background-color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 2;
  border-radius: 100%;
  transition: background-color ease-in-out 0.2s;
}
.controls-button path {
  transition: fill ease-in-out 0.2s;
}
.controls-button:hover {
  background-color: var(--black);
}
.controls-button:hover path {
  fill: var(--white);
}

.grid-one {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 8px;
  grid-row-gap: 8px;
}
@media (max-width: 991px) {
  .grid-one {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 1fr);
  }
}
.grid-one .grid-col:nth-child(1) {
  grid-area: 1/3/2/4;
}
@media (max-width: 991px) {
  .grid-one .grid-col:nth-child(1) {
    grid-area: 1/1/2/2;
  }
}
.grid-one .grid-col:nth-child(2) {
  grid-area: 1/4/2/5;
}
@media (max-width: 991px) {
  .grid-one .grid-col:nth-child(2) {
    grid-area: 1/2/2/3;
  }
}
.grid-one .grid-col:nth-child(3) {
  grid-area: 2/3/3/5;
}
@media (max-width: 991px) {
  .grid-one .grid-col:nth-child(3) {
    grid-area: 2/1/3/3;
  }
}
.grid-one .grid-col:nth-child(4) {
  grid-area: 1/1/3/3;
}
@media (max-width: 991px) {
  .grid-one .grid-col:nth-child(4) {
    grid-area: 3/1/5/3;
  }
}

.grid-one .grid-col:nth-child(5) {
    grid-area: 3 / 1 / 3 / 3;
}

@media (max-width: 991px) {
  .grid-one .grid-col:nth-child(5) {
    grid-area: auto;
}
}


.grid-two {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 20px;
}


@media (max-width: 991px) { 
  .grid-two {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 10px;
  }
}

/* 1 — высокая слева (2 строки) */
.grid-two .grid-col:nth-child(1) {
  grid-area: 1 / 1 / 4 / 2;
}

/* 2 — высокая по центру (2 строки) */
.grid-two .grid-col:nth-child(2) {
  grid-area: 1 / 2 / 3 / 3;
}

/* 3 — высокая справа (2 строки) */
.grid-two .grid-col:nth-child(3) {
  grid-area: 1 / 3 / 3 / 4;
}

/* 4,5,6,7 — обычные ниже (по одной строке) */
.grid-two .grid-col:nth-child(4) {
  grid-area: 4 / 1 / 4 / 2;
}

.grid-two .grid-col:nth-child(5) {
  grid-area: 3 / 2 / 4 / 3;
}

.grid-two .grid-col:nth-child(6) {
  grid-area: 3 / 3 / 5 / 4;
}

.grid-two .grid-col:nth-child(7) {
  grid-area: 4 / 2 / 5 / 3; /* одиночный блок внизу по центру */
}


@media (max-width: 991px){
  .grid-two .grid-col {
    grid-area: auto!important;
  }
}




.grid-box {
  background-position: center;
  background-size: cover;
  display: block;
  text-decoration: none;
  height: 100%;
  display: flex;
  align-items: flex-end;
  min-height: 308px;
  padding: 32px;
  box-sizing: border-box;
  color: var(--white);
  position: relative;
  overflow: hidden;
  transition: background-size ease-in-out 0.2s, opacity ease-in-out 0.2s;
}
@media (max-width: 1440px) {
  .grid-box {
    min-height: 260px;
    padding: 25px;
  }
}
@media (max-width: 991px) {
  .grid-box {

    padding: 20px;
  }
}
@media (max-width: 576px) {
  .grid-box {

    padding: 16px;
  }
}
.grid-box.has-overlay:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}
.grid-box:hover {
  opacity: 0.8;
}
.grid-box-text {
  position: relative;
  z-index: 2;
}
.grid-box-title {
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}
@media (max-width: 991px) {
  .grid-box-title {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .grid-box-title {
    font-size: 16px;
  }
}
.grid-box-title:not(:last-child) {
  margin-bottom: 10px;
}
.grid-box-title.medium, .grid-box-title.large {
  font-weight: 500;
}
.grid-box-title.medium {
  font-size: 24px;
}
@media (max-width: 1440px) {
  .grid-box-title.medium {
    font-size: 22px;
  }
}
@media (max-width: 1200px) {
  .grid-box-title.medium {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .grid-box-title.medium {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .grid-box-title.medium {
    font-size: 13px;
  }
}
.grid-box-title.large {
  font-size: 36px;
}
@media (max-width: 1440px) {
  .grid-box-title.large {
    font-size: 32px;
  }
}
@media (max-width: 1200px) {
  .grid-box-title.large {
    font-size: 26px;
  }
}
.grid-box-desc {
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}
@media (max-width: 1440px) {
  .grid-box-desc {
    font-size: 18px;
  }
}
@media (max-width: 1200px) {
  .grid-box-desc {
    font-size: 16px;
  }
}
.grid-box-desc small {
  font-size: 12px;
  display: inline-block;
  max-width: 200px;
}

.cats-box {
  display: block;
  text-decoration: none;
  text-align: center;
  border: 2px solid var(--pink-deep);
  padding: 0 20px 20px 20px;
  box-sizing: border-box;
  border-radius: var(--radius-xs);
  transition: background-color ease-in-out 0.2s, border-color ease-in-out 0.2s;
          height: 100%;
}
.cats-box:hover {
  border-color: var(--pink);
  background-color: var(--pink);
}
.cats-box img {
  mix-blend-mode: multiply;
}
.cats-box-img {
  padding-top: 97%;
  position: relative;
}
@media (max-width: 576px) {
  .cats-box-img {
    width: 70px;
    height: 70px;
    padding: 0;
  }
}
.cats-box-img img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
}
.cats-box-name {
  font-size: 16px;
  font-weight: 400;
}
@media (max-width: 576px) {
  .cats-box-name {
    flex: 1;
    padding: 20px 0 20px 16px;
    box-sizing: border-box;
  }
}
@media (max-width: 576px) {
  .cats-box {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    padding: 0;
    text-align: left;
    border-width: 1px;
  }
}
@media screen and (min-width: 768px) {
  .cats-box.large .cats-box-name {
    font-size: 20px;
  }
}

.payments {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.payments-logo {
  width: 45px;
  height: 30px;
  border-radius: 3px;
  border: 1px solid var(--gray-low);
  background-color: var(--white);
}
.payments-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.socials {
  display: inline-flex;
  gap: 18px;
}
.socials li a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.socials li a path {
  transition: fill ease-in-out 0.2s;
}

.socials li a:hover  {
  opacity: .6;
}

.user-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}
.user-actions-button {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.user-actions-button path {
  transition: fill ease-in-out 0.2s;
}
.user-actions-button:hover path {
  fill: var(--red);
}
.user-actions-button-label {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid var(--white);
  border-radius: 100%;
  font-size: 12px;
  font-weight: 500;
  bottom: 1px;
  right: 1px;
}

.breadcrumbs {
  padding: 20px 0 15px 0;
}
@media (max-width: 1440px) {
  .breadcrumbs {
    padding: 10px 0;
  }
}
@media (max-width: 991px) {
  .breadcrumbs {
    padding: 5px 0 10px 0;
  }
}
.breadcrumbs-list {
  font-size: 12px;
  font-weight: 400;
  gap: 5px;
}
.breadcrumbs-list a {
  text-decoration: none;
  transition: color ease-in-out 0.2s;
}
.breadcrumbs-list a:hover {
  color: var(--red);
}
.breadcrumbs-list li.current {
  color: var(--gray-dark);
}

.pagination {
  gap: 4px;
  align-items: center;
}
@media (max-width: 576px) {
  .pagination {
    justify-content: center;
  }
}
.pagination li {
  font-size: 14px;
  font-weight: 500;
}
.pagination li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 100%;
  color: var(--gray-dark);
  text-decoration: none;
  transition: background-color ease-in-out 0.2s, color ease-in-out 0.2s;
}
.pagination li a:hover:not(.current) {
  color: var(--black);
}
.pagination li a.current {
  background-color: var(--black);
  color: var(--white);
}

.aside-item:not(:last-child) {
  margin-bottom: 45px;
}
.aside-item-title {
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-align: center;
}
.aside-cats {
  font-size: 18px;
}
.catalog_list_child{
    list-style: none;
}
.catalog_list_child li a {
    position: relative;
}
.catalog_list_child li a:before {
    position: absolute;
    content: "";
    width: 11px;
    height: 3px;
    background: #000;
    left: 0;
    border-radius: 10px;
    top: 17px;
}
.aside-cats li:not(:last-child) {
  margin-bottom: 3px;
}
.aside-cats li a {
    display: block;
    padding: 5px 20px 5px 0;
    border-radius: 20px;
    box-sizing: border-box;
    text-decoration: none;
    transition: background-color 
ease-in-out 0.2s;
}
.aside-cats li a.current, .aside-cats li a:hover {
    font-weight: 600;
}
.aside-cats li a.current {
  font-weight: 500;
}

.acc-item:not(:last-child) {
  margin-bottom: 30px;
}
.acc-item-header {
  display: inline-block;
  padding-right: 22px;
  box-sizing: border-box;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 3px;
  position: relative;
  cursor: pointer;
}
.acc-item-header:after {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3csvg%20width='12'%20height='8'%20viewBox='0%200%2012%208'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M1%201.5L6%206.5L11%201.5'%20stroke='%233C3C3B'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/svg%3e");
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  will-change: transform;
  transition: transform ease-in-out 0.2s;
}
.acc-item-header.active:after {
  transform: translate(0, -50%) rotate(180deg);
}
.acc-item-content {
  padding-top: 19px;
  display: none;
}
.acc-item.active-default .acc-item-content {
  display: block;
}

.sort {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 16px;
  font-size: 14px;
}

.selected {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 16px;
  font-size: 14px;
}
.selected-item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-weight: 400;
}
.selected-item-inner {
  display: flex;
  align-items: center;
  gap: 4px;
  border: 2px solid var(--pink-low);
  border-radius: var(--radius-xs);
  padding: 6px 12px;
  box-sizing: border-box;
}
.selected-item-inner span {
  color: var(--gray-dark);
}
.selected-item-remove {
  width: 16px;
  height: 16px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 3px;
}
.selected-item-remove path {
  transition: fill ease-in-out 0.2s;
}
.selected-item-remove:hover path {
  fill: var(--red);
}
.selected-reset {
  background-color: transparent;
  border: none;
  color: var(--gray-dark);
  transition: color ease-in-out 0.2s;
}
.selected-reset:hover {
  color: var(--black);
}

.product {
  position: relative;
}
@media screen and (min-width: 991px) {
  .product:before {
    content: "";
    width: calc(100% + 30px);
    height: calc(100% + 110px);
    position: absolute;
    background-color: var(--white);
    box-shadow: 0px 0px 134px rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-xs);
    left: -15px;
    top: -15px;
    opacity: 0;
    z-index: 1;
    pointer-events: none;
    transition: opacity ease-in-out 0.2s;
  }
  .product > * {
    position: relative;
    z-index: 2;
  }
}
.product-img {
  margin-bottom: 30px;
  position: relative;
}
.product-img-inner {
  position: relative;
  padding-top: 100%;
  border-radius: var(--radius-xs);
  overflow: hidden;
}
.product-img-inner img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
}
.product-img .swiper-pagination {
  gap: 6px;
  margin-top: 7px;
}
.product-img .swiper-pagination-bullet {
  margin: 0 !important;
  width: 4px;
  height: 4px;
  transition: opacity ease-in-out 0.2s, width ease-in-out 0.2s;
}
.product-img .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 16px;
}
.product-content {
  padding-bottom: 13px;
}
.product-content-actions {
  padding-right: 10px;
  box-sizing: border-box;
}
.product-footer {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  pointer-events: none;
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  opacity: 0;
  transition: opacity ease-in-out 0.1s;
}
.product-sale {
  position: absolute;
  z-index: 2;
  left: 7px;
  top: 8px;
  display: inline-block;
  padding: 4px 9px;
  box-sizing: border-box;
  border: 1px solid var(--black);
  font-size: 12px;
  border-radius: var(--radius-xs);
  font-weight: 500;
}
.product-sale.hot {
  border-color: var(--red);
  background-color: var(--red);
  color: var(--white);
}
.product-name {
  margin-bottom: 12px;
}
.product-name a {
  text-decoration: none;
  transition: color ease-in-out 0.2s;
}
.product-name a:hover {
  color: var(--red);
}
.product-size {
  text-transform: uppercase;
  font-size: 14px;
}
.product-price-current {
  font-weight: 500;
  font-size: 24px;
  line-height: 1;
}
@media (max-width: 576px) {
  .product-price-current {
    font-size: 20px;
  }
}
.product-price-last {
  font-size: 20px;
  text-decoration: line-through;
  color: var(--gray-dark);
}
@media (max-width: 576px) {
  .product-price-last {
    font-size: 17px;
  }
}
.product-add-to-card {
  min-height: 45px;
}
.product-add-to-card:not(:last-child) {
  margin-bottom: 16px;
}
.product-more {
  text-decoration: none;
  transition: color ease-in-out 0.2s;
}
.product-more:hover {
  color: var(--red);
}
.product-add-to-favorites {
  position: absolute;
  right: 11px;
  top: 12px;
  z-index: 2;
  position: absolute;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border: none;
  background-color: transparent;
}
.product-add-to-favorites path {
  transition: fill ease-in-out 0.2s;
}
.product-add-to-favorites:hover path {
  fill: var(--red);
}
@media screen and (min-width: 991px) {
  .product:hover:not(.skip-hover) {
    z-index: 3;
  }
  .product:hover:not(.skip-hover):before,
  .product:hover:not(.skip-hover) .product-footer {
    opacity: 1;
    pointer-events: all;
  }
}
.product.line {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.product.line .product-img {
  max-width: 165px;
  width: 100%;
  margin: 0;
}
@media (max-width: 1440px) {
  .product.line .product-img {
    max-width: 145px;
  }
}
@media (max-width: 576px) {
  .product.line .product-img {
    max-width: 110px;
  }
}
.product.line .product-content {
  flex: 1;
  padding: 10px 0 0 0;
}
.product .button-box:hover path {
  fill: var(--red);
}

.check-list li {
  padding-left: 20px;
  position: relative;
}
.check-list li.checked:before {
  content: "";
  width: 12px;
  height: 10px;
  position: absolute;
  left: 0;
  top: 7px;
  background-image: url("data:image/svg+xml,%3csvg%20width='13'%20height='10'%20viewBox='0%200%2013%2010'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M1%206.5L3.5%209L11.5%201'%20stroke='%2300D63C'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/svg%3e");
  background-position: center;
  background-repeat: no-repeat;
}
.check-list li:not(:last-child) {
  margin-bottom: 7px;
}
.check-list li:not(.checked) {
  opacity: 0.5;
}

.cols {
  display: inline-flex;
  align-items: center;
}
.cols-button {
  width: 32px;
  height: 32px;
  border: none;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform ease-in-out 0.2s;
}
.cols-button path {
  transition: fill ease-in-out 0.2s;
}
.cols-button:hover path {
  fill: var(--red);
}
.cols-button:active {
  transform: scale(0.9);
}
.cols-input {
  text-align: center;
  border: none !important;
  height: 32px;
  width: 30px;
  outline: none;
  font-family: inherit;
  font-size: 20px;
  font-weight: 300;
}
.cols-input::-webkit-outer-spin-button, .cols-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.info-box {
  padding: 16px 24px;
  box-sizing: border-box;
  border-radius: var(--radius-xs);
  background-color: var(--pink);
}
.info-box a {
  font-weight: 500;
}

.mobile-panel {
  position: fixed;
  background-color: var(--white);
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  z-index: 99;
  box-shadow: 0px 4px 60px rgba(0, 0, 0, 0.1);
}
.mobile-panel-item {
  display: block;
  flex: 1;
  text-align: center;
  text-decoration: none;
  padding: 10px 0;
}
.mobile-panel-item-icon {
  width: 20px;
  height: 20px;
  margin: 0 auto 4px auto;
  opacity: 0.6;
  position: relative;
  transition: opacity ease-in-out 0.2s;
}
.mobile-panel-item-icon .user-actions-button-label {
  bottom: -7px;
  right: -7px;
}
.mobile-panel-item-name {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.6;
}
.mobile-panel-item.current .mobile-panel-item-icon {
  opacity: 1;
}

.filter-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.filter-toggle-icon {
  width: 20px;
  height: 20px;
}
.filter-toggle-text {
  font-weight: 500;
}
.filter-toggle-val {
  width: 18px;
  height: 18px;
  border-radius: 100%;
  display: flex;
  font-size: 12px;
  font-weight: 500;
}
.filter-sort {
  border: none;
  font-weight: 500;
  font-size: 14px;
  outline: none;
}
@media (max-width: 1200px) {
  .filter {
    position: fixed;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    z-index: 99;
    background-color: var(--white);
    left: 0;
    top: 0;
    padding: 24px 16px;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transition: opacity ease-in-out 0.2s, visibility ease-in-out 0.2s;
  }
  .filter.active {
    opacity: 1;
    visibility: visible;
  }
}

.header {
  position: relative;
  padding: 10px 0;
  box-sizing: border-box;
}
.header-top, .header-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 10px 0;
  box-sizing: border-box;
  gap: 32px;
}
@media (max-width: 576px) {
  .header-top, .header-bottom {
    padding: 6px 0;
  }
}
.header a:not(.button) {
  text-decoration: none;
  transition: color ease-in-out 0.2s;
}
.header a:not(.button):hover {
  color: var(--red);
}
.header-logo {
  max-width: 180px;
}
@media (max-width: 576px) {
  .header-logo {
    max-width: 160px;
  }
}
.header-phone {
  font-weight: 500;
  text-transform: uppercase;
}
.header-nav {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 1200px) {
  .header-nav {
    display: none;
    position: absolute;
    max-width: 960px;
    width: 100%;
    left: 50%;
    top: 100%;
    background-color: var(--s-gray);
    padding: 30px;
    box-sizing: border-box;
    transform: translate(-50%, 0);
  }
}
@media (max-width: 991px) {
  .header-nav {
    max-width: 690px;
  }
}
@media (max-width: 768px) {
  .header-nav {
    max-width: 530px;
  }
}
@media (max-width: 576px) {
  .header-nav {
    max-width: 100%;
    padding: 15px 0;
  }
}
.header-nav-list {
  gap: 50px;
}
@media (max-width: 1440px) {
  .header-nav-list {
    gap: 25px;
  }
}
@media (max-width: 1200px) {
  .header-nav-list {
    flex-direction: column;
  }
}
.header-nav-list li a {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: normal;
}
.header-actions {
  align-items: center;
  gap: 60px;
}
@media (max-width: 1440px) {
  .header-actions {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .header-actions {
    gap: 8px;
  }
}
.header-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-menu .button {
  width: 184px;
  min-height: 45px;
  position: relative;
  overflow: hidden;
}
.header-menu-collections img {
  position: absolute;
      left: 7px;
    top: -3px;
  width: 50px;
  display: block;
  mix-blend-mode: multiply;
}
.header-menu-collections {
  padding-left: 75px;
}
.header-menu-catalog .header-toggle {
  background-color: transparent;
  width: 20px;
  height: 20px;
  pointer-events: none;
}
.header-menu-catalog .header-toggle span {
  left: 3px;
}
.header-search {
  flex: 1;
  position: relative;
}
@media (max-width: 1200px) {
  .header-search {
    position: absolute;
    left: 0;
    bottom: 100%;
    background-color: var(--white);
    width: calc(100% - 45px);
    z-index: 98;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity ease-in-out 0.2s, visibility ease-in-out 0.2s;
  }
  .header-search.active {
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 576px) {
  .header-search {
    padding: 5px 0;
  }
}
.header-search-input {
  min-height: 45px;
  padding-left: 47px;
  background-image: url("data:image/svg+xml,%3csvg%20width='20'%20height='20'%20viewBox='0%200%2020%2020'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M17.5%2017.5002L14.5834%2014.5835M16.6667%209.5835C16.6667%2013.4955%2013.4954%2016.6668%209.58333%2016.6668C5.67132%2016.6668%202.5%2013.4955%202.5%209.5835C2.5%205.67148%205.67132%202.50017%209.58333%202.50017C13.4954%202.50017%2016.6667%205.67148%2016.6667%209.5835Z'%20stroke='%23999494'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/svg%3e");
  background-position: 15px center;
  background-repeat: no-repeat;
}
@media (max-width: 1200px) {
  .header-search-input {
    min-height: 40px;
  }
}
.header-search-results {
  position: absolute;
  top: 95%;
  left: 0;
  width: 100%;
  z-index: 98;
  padding: 35px;
  box-sizing: border-box;
  border-radius: var(--radius-xs);
  background-color: var(--white);
  box-shadow: 0px 4px 36px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  will-change: auto;
  transition: top 0.4s cubic-bezier(0.76, 0, 0.24, 1), opacity 0.4s cubic-bezier(0.76, 0, 0.24, 1), visibility 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}
.header-search-results.active {
  top: calc(100% + 10px);
  opacity: 1;
  visibility: visible;
}
@media (max-width: 576px) {
  .header-search-results {
    padding: 20px;
  }
}
.header-toggle {
  display: block;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  position: relative;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border-radius: var(--radius-xs);
  background-color: var(--black-light);
}
.header-toggle span {
  display: block;
  height: 2px;
  width: 15px;
  background-color: var(--white);
  position: absolute;
  left: 12px;
  border-radius: 10px;
  transition: transform ease-in-out 0.2s, opacity ease-in-out 0.2s, top ease-in-out 0.2s, bottom ease-in-out 0.2s;
}
.header-toggle span:nth-child(1) {
  top: calc(50% - 6px);
}
.header-toggle span:nth-child(2) {
  top: 50%;
  transform: translate(0, -50%);
  width: 10px;
}
.header-toggle span:nth-child(3) {
  bottom: calc(50% - 6px);
}
.header-toggle.active span:nth-child(1) {
  top: 50%;
  transform: translate(0, -50%) rotate(45deg);
}
.header-toggle.active span:nth-child(2) {
  opacity: 0;
}
.header-toggle.active span:nth-child(3) {
  bottom: inherit;
  top: 50%;
  transform: translate(0, -50%) rotate(-45deg);
}
.header-megamenu {
  position: absolute;
  top: 95%;
  left: 50%;
  width: 100%;
  background-color: var(--white);
  z-index: 98;
  transform: translate(-50%, 0);
  box-shadow: 0px 10px 12px rgba(0, 0, 0, 0.1);
  padding: 20px 0 50px 0;
  opacity: 0;
  visibility: hidden;
  will-change: auto;
  transition: top 0.4s cubic-bezier(0.76, 0, 0.24, 1), opacity 0.4s cubic-bezier(0.76, 0, 0.24, 1), visibility 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}
.header-megamenu.active {
  top: 100%;
  opacity: 1;
  visibility: visible;
}
@media (max-width: 991px) {
  .header-megamenu {
    height: calc(100vh - 100%);
    overflow-y: auto;
  }
}
@media (max-width: 768px) {
  .header-megamenu .button {
    width: 100%;
  }
}
.header-megamenu-item {
  margin-bottom: 40px;
}
.header-megamenu-title {
  text-transform: uppercase;
  opacity: 0.4;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 500;
}
.header-megamenu-nav.two-column {
  column-count: 2;
}
@media (max-width: 991px) {
  .header-megamenu-nav.two-column {
    column-count: 1;
  }
}
.header-megamenu-nav li {
  font-weight: 400;
}
.header-megamenu-nav li:not(:last-child) {
  margin-bottom: 10px;
}
.header-megamenu-nav li a {
  transition: color ease-in-out 0.2s;
}
.header-megamenu-nav li a:hover {
  color: var(--red);
}

.search-cats li:not(:last-child) {
  margin-bottom: 15px;
}
.search-cats li a {
  transition: color ease-in-out 0.2s;
}
.search-cats li a:hover {
  color: var(--red);
}
.search-product {
  display: flex;
  gap: 20px;
}
.search-product:not(:last-child) {
  margin-bottom: 15px;
}
.search-product-img {
  max-width: 50px;
}
.search-product-content {
  flex: 1;
}
.search-product-content .product-name {
  font-size: 14px;
}
.search-product-content .product-price-current {
  font-size: 20px;
}
.search-product-content .product-price-last {
  font-size: 17px;
}
.search-product-price {
  gap: 10px;
}

.gift {
  position: relative;
}
.gift-content {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 3;
  color: var(--white);
}
@media (max-width: 991px) {
  .gift-content {
    bottom: 25px;
    left: 25px;
  }
}
.gift-val {
  font-size: 156px;
  font-style: italic;
  line-height: 1;
  font-family: "Nyght Serif";
}
@media (max-width: 991px) {
  .gift-val {
    font-size: 80px;
  }
}
.hero {
  position: relative;
}
.hero-slider {
  position: relative;
}
.hero-slider .swiper-slide {
  position: relative;
}
.hero-slide {
  padding: 110px 0 140px 0;
  color: var(--black-light);
}
@media (max-width: 576px) {
  .hero-slide {
    padding: 55px 0 155px 0;
  }
}
.hero-slide-logo img {
  max-width: 100%;
  width: 500px;
}

.hero_slide_video {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero_slide_video_prew {
    position: relative;
    width: 130px;
    height: 80px;
    border-radius: 26px;
    overflow: hidden;
}

.hero_slide_video_prew video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* центрируем svg */
.hero_video_play_icon {
  position: absolute;
  margin-top: 5px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none; /* чтобы клик шел по видео, если надо */
}





.hero-slide-logo {
  margin-bottom: 27px;
}
.hero-slide-title {
  font-size: 85px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 5px;
  line-height: 1;
  margin-bottom: 27px;
}
@media (max-width: 1200px) {
  .hero-slide-title {
    font-size: 62px;
  }
}
@media (max-width: 991px) {
  .hero-slide-title {
    font-size: 52px;
  }
}
@media (max-width: 576px) {
  .hero-slide-title {
    font-size: 40px;
  }
}
.hero-slide-desc {
  max-width: 560px;
  margin: 0 auto 45px auto;
  font-size: 39px;
  font-weight: 100;
}

.first_new .hero-slide-desc {
    margin: 0 0 25px 0;
}
@media (max-width: 1200px) {
  .hero-slide-desc {
    font-size: 32px;
  }
}
@media (max-width: 991px) {
  .hero-slide-desc {
    font-size: 24px;
  }
}
@media (max-width: 576px) {
  .hero-slide-desc {
    font-size: 22px;
    margin: 0 auto;
  }
}
.hero-slide-info {
  font-size: 18px;
  opacity: 0.5;
}
.hero-slide-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-pagination {
  bottom: 55px !important;
  left: 50% !important;
  transform: translate(-50%, 0);
  position: absolute;
  z-index: 3;
}

.collections-desc {
  font-size: 24px;
}
@media (max-width: 1200px) {
  .collections-desc {
    font-size: 22px;
  }
}
@media (max-width: 576px) {
  .collections-desc {
    font-size: 20px;
  }
}
.collections-slider {
  width: calc(50% + 50vw);
}
.collections-slider .swiper-slide {
  max-width: 240px;
  width: 100%;
}
@media (max-width: 768px) {
  .collections-slider .swiper-slide {
    max-width: 180px;
  }
}

.cta-box {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 65px 56px;
  min-height: 450px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .cta-box {
    min-height: auto;
    padding: 45px;
  }
}
@media (max-width: 576px) {
  .cta-box {
    padding: 30px;
  }
  .cta-box .button {
    width: 100%;
  }
}
.cta-box-content {
  max-width: 610px;
}
.cta-box-desc {
  max-width: 450px;
  margin-bottom: 30px;
}

.reels-desc {
  max-width: 837px;
  margin-bottom: 32px;
  font-size: 32px;
}
@media (max-width: 991px) {
  .reels-desc {
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  .reels-desc {
    font-size: 22px;
  }
}
.reels-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.reels-box {
  width: 240px;
}
@media (max-width: 1440px) {
  .reels-box {
    width: 210px;
  }
}
@media (max-width: 576px) {
  .reels-box {
    width: 184px;
  }
}
.reels-box-video {
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 2;
  width: 20px;
  height: 20px;
}
.reels-box-img {
  position: relative;
  width: 100%;
  height: 400px;
  margin-bottom: 25px;
  cursor: pointer;
  transition: opacity ease-in-out 0.2s;
}
@media (max-width: 1440px) {
  .reels-box-img {
    height: 380px;
  }
}
@media (max-width: 768px) {
  .reels-box-img {
    height: 230px;
    margin-bottom: 20px;
  }
}
@media (max-width: 576px) {
  .reels-box-img {
    margin-bottom: 16px;
  }
}
.reels-box-img:hover {
  opacity: 0.8;
}
.reels-box-img img {
  object-fit: cover;
}
.reels-box-name {
  margin-bottom: 30px;
  font-size: 20px;
}
@media (max-width: 768px) {
  .reels-box-name {
    margin-bottom: 20px;
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .reels-box-name {
    margin-bottom: 16px;
    font-size: 16px;
  }
}
.reels-box-link.black {
  font-size: 12px;
}
.reels-slider {
  width: calc(50% + 50vw);
}
.reels-slider .swiper-slide {
  max-width: 240px;
  width: 100%;
}
@media (max-width: 768px) {
  .reels-slider .swiper-slide {
    max-width: 180px;
  }
}

.founder-content {
  text-align: center;
  background-image: url("data:image/svg+xml,%3csvg%20width='17'%20height='13'%20viewBox='0%200%2017%2013'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M3.7456%209.30792C3.1376%2010.1599%201.9888%2011.0759%200.4256%2011.8399C0.0184002%2012.0383%200.201599%2012.6527%200.6504%2012.5959C3.9368%2012.1799%206.0672%2010.7407%207.2304%208.60072C7.65128%207.81758%207.93843%206.96965%208.08%206.09192C8.1752%205.52152%208.2%205.09352%208.2%204.59912C8.2%203.53825%207.77857%202.52084%207.02843%201.77069C6.27828%201.02054%205.26087%200.599116%204.2%200.599116C3.13913%200.599116%202.12172%201.02054%201.37157%201.77069C0.621428%202.52083%200.2%203.53825%200.2%204.59912C0.199999%206.80792%202.02%208.60072%204.1104%208.60072C4%208.90312%203.9744%208.98872%203.7456%209.30792ZM12.5456%209.30792C11.9376%2010.1599%2010.7888%2011.0759%209.2256%2011.8399C8.8184%2012.0383%209.0016%2012.6527%209.4504%2012.5959C12.7368%2012.1799%2014.8672%2010.7407%2016.0304%208.60072C16.4513%207.81758%2016.7384%206.96965%2016.88%206.09192C16.9752%205.52152%2017%205.09352%2017%204.59912C17%204.07383%2016.8965%203.55369%2016.6955%203.06838C16.4945%202.58308%2016.1999%202.14212%2015.8284%201.77069C15.457%201.39926%2015.016%201.10462%2014.5307%200.903599C14.0454%200.702579%2013.5253%200.599117%2013%200.599117C12.4747%200.599117%2011.9546%200.702579%2011.4693%200.903598C10.984%201.10462%2010.543%201.39926%2010.1716%201.77069C9.80014%202.14212%209.5055%202.58308%209.30448%203.06838C9.10346%203.55368%209%204.07383%209%204.59912C9%206.80792%2010.82%208.60072%2012.9104%208.60072C12.8%208.90312%2012.7744%208.98872%2012.5456%209.30792Z'%20fill='%23050505'/%3e%3c/svg%3e");
  background-position: center top;
  background-repeat: no-repeat;
  padding-top: 40px;
  box-sizing: border-box;
  max-width: 536px;
  margin: 40px auto 0 auto;
  padding-bottom: 45px;
}
@media (max-width: 768px) {
  .founder-content {
    margin: 0 auto;
  }
}
.founder-content-text {
  font-style: italic;
  font-size: 26px;
  font-weight: 100;
  margin-bottom: 35px;
}
@media (max-width: 1200px) {
  .founder-content-text {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .founder-content-text {
    font-size: 20px;
    margin-bottom: 30px;
    font-weight: 300;
  }
}
.founder-content-text p:last-child {
  margin: 0;
}
.founder-content-footer {

  font-size: 14px;
  line-height: 1.7;
}

.news-row .col {
  flex: inherit;
  max-width: 20%;
}
@media (max-width: 1200px) {
  .news-row .col {
    max-width: 25%;
  }
}
@media (max-width: 991px) {
  .news-row .col {
    max-width: 33.333%;
  }
}
@media (max-width: 576px) {
  .news-row .col {
    max-width: 50%;
  }
}

.ships-box {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 32px;
  box-sizing: border-box;
  border: 1px solid var(--black-light);
  border-radius: var(--radius-xs);
}
@media (max-width: 768px) {
  .ships-box {
    padding: 25px;
  }
}
@media (max-width: 576px) {
  .ships-box {
    padding: 20px;
  }
}
.ships-box-icon {
  height: 48px;
  margin-bottom: 24px;
}
.ships-box-icon img {
  height: 100%;
}
@media (max-width: 768px) {
  .ships-box-icon {
    height: 32px;
  }
}
.ships-box-text {
  font-size: 20px;
}
@media (max-width: 1200px) {
  .ships-box-text {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .ships-box-text {
    font-size: 16px;
  }
}

.samples-box-img {
  display: block;
}
.samples-box-img:not(.full) {
  max-width: 304px;
  mix-blend-mode: multiply;
}
@media (max-width: 1440px) {
  .samples-box-img:not(.full) {
    max-width: 260px;
  }
}
@media (max-width: 991px) {
  .samples-box-img:not(.full) {
    margin: 30px;
  }
}
@media (max-width: 576px) {
  .samples-box-img:not(.full) {
    max-width: 60%;
  }
}
.samples-box-img.full {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shops-box {
  border-radius: var(--radius-xs);
  padding: 32px;
  box-sizing: border-box;
}
@media (max-width: 576px) {
  .shops-box {
    padding: 16px;
  }
}
.shops-box-header {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  gap: 20px;
}
.shops-box-info {
  flex: 1;
}
.shops-box-info-name {
  margin-bottom: 15px;
  font-weight: 500;
  font-size: 24px;
}
@media (max-width: 1200px) {
  .shops-box-info-name {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .shops-box-info-name {
    font-size: 18px;
  }
}
.shops-box-info-desc {
  text-transform: uppercase;
  font-size: 14px;
}
.shops-box-img {
  padding-top: 61%;
  position: relative;
}
.shops-box-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: var(--radius-xs);
  display: block;
}

.land-info-item:not(:last-child) {
  margin-bottom: 60px;
}
.land-info-item .row {
  --bs-gutter-x: 60px;
  --bs-gutter-y: 30px;
}
.land-info-item:nth-child(even) .row {
  flex-direction: row-reverse;
}
.land-info-item-img {
  height: 100%;
}
.land-info-item-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.land-info-item-text {
  font-size: 18px;
}
@media (max-width: 1200px) {
  .land-info-item-text h1 {
    font-size: 32px;
  }
}
@media (max-width: 576px) {
  .land-info-item-text h1 {
    font-size: 26px;
  }
}
.land-info-item-text p:last-child {
  margin-bottom: 0;
}
.land-info-item-text.large {
  font-size: 22px;
}
@media (max-width: 991px) {
  .land-info-item-text.large {
    font-size: 20px;
  }
}
@media (max-width: 576px) {
  .land-info-item-text.large {
    font-size: 18px;
  }
}

.land-content-inner {
  font-size: 22px;
  max-width: 473px;
  margin: 0 auto;
  position: relative;
  text-align: center;
}
@media (max-width: 991px) {
  .land-content-inner {
    font-size: 20px;
  }
}
@media (max-width: 576px) {
  .land-content-inner {
    font-size: 18px;
  }
}
.land-content-inner > *:not(:last-child) {
  margin-bottom: 75px;
}
@media (max-width: 991px) {
  .land-content-inner > *:not(:last-child) {
    margin-bottom: 50px;
  }
}
@media (max-width: 576px) {
  .land-content-inner > *:not(:last-child) {
    margin-bottom: 30px;
  }
}
.land-content-inner > *:last-child {
  margin: 0;
}
.land-content-gall {
  gap: 15px;
  display: flex;
  position: relative;
}
.land-content-gall img {
  display: block;
  border-radius: var(--radius-xs);
}
@media screen and (min-width: 1200px) {
  .land-content-gall {
    margin: 0 !important;
  }
  .land-content-gall img {
    flex: 1;
    position: absolute;
    max-width: 240px;
  }
  .land-content-gall img.large {
    max-width: 320px;
  }
  .land-content-gall img:nth-child(1) {
    top: -100px;
    right: calc(100% + 100px);
  }
  .land-content-gall img:nth-child(2) {
    top: -200px;
    left: calc(100% + 100px);
  }
}
@media (max-width: 1200px) {
  .land-content-gall img {
    width: calc(50% - 7.5px);
  }
}

.catalog-header {
  margin-bottom: 32px;
  padding: 50px 0;
  box-sizing: border-box;
  position: relative;
}
@media (max-width: 768px) {
  .catalog-header {
    padding: 32px 0;
  }
}
.catalog-header-bg {
  position: absolute;
  top: 0;
  right: 50px;
  height: 100%;
  mix-blend-mode: multiply;
}
@media (max-width: 991px) {
  .catalog-header-bg {
    display: none;
  }
}
.catalog-row {
  display: flex;
  gap: 54px;
}
@media (max-width: 1440px) {
  .catalog-row {
    gap: 30px;
  }
}
@media (max-width: 1200px) {
  .catalog-row {
    display: block;
  }
}
.catalog-row-header {
  margin-bottom: 55px;
}
@media (max-width: 1440px) {
  .catalog-row-header {
    margin-bottom: 50px;
  }
}
.catalog-row-header-item:not(:last-child) {
  margin-bottom: 19px;
}
.catalog-row-col:nth-child(1) {
  max-width: 218px;
  width: 100%;
}
.catalog-row-col:nth-child(2) {
  flex: 1;
}

.card {
  overflow: inherit;
  border: none;
}
@media (max-width: 1200px) {
  .card {
    overflow: hidden !important;
  }
}
.card-title {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 25px;
  line-height: 1.4;
}
@media (max-width: 1200px) {
  .card-title {
    font-size: 28px;
  }
}
@media (max-width: 576px) {
  .card-title {
    font-size: 24px;
    margin-bottom: 18px;
  }
}
.card-price, .card-price-inner {
  display: flex;
  align-items: center;
}
.card-price {
  gap: 28px;
  margin-bottom: 30px;
}
@media (max-width: 576px) {
  .card-price {
    margin-bottom: 24px;
  }
}
.card-price-inner {
  gap: 10px 22px;
  flex-wrap: wrap;
}
.card-price .product-price-current {
  font-size: 34px;
}
.card-price-sale {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 100%;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  border-radius: 40px;
}
.card-spec {
  font-size: 14px;
}
.card-spec-item {
  display: flex;
  align-items: center;
}
.card-spec-item:not(:last-child) {
  margin-bottom: 5px;
}
.card-spec-name, .card-spec-val {
  position: relative;
  z-index: 2;
}
.card-spec-name {
  opacity: 0.5;
  width: 200px;
  display: flex;
}
@media (max-width: 576px) {
  .card-spec-name {
    width: 50%;
  }
}
.card-spec-name:after {
  content: "";
  width: 100%;
  border-bottom: 1px dotted var(--black);
  flex: 1;
  position: relative;
  margin: 0 5px 5px 5px;
  opacity: 0.5;
}
.card-spec-val {
  flex: 1;
}
.card-meta {
  margin-bottom: 40px;
}
@media (max-width: 576px) {
  .card-meta {
    margin-bottom: 30px;
  }
}
.card-meta-item:not(:last-child) {
  margin-bottom: 32px;
}
@media (max-width: 576px) {
  .card-meta-item:not(:last-child) {
    margin-bottom: 25px;
  }
}
.card-meta-item-title {
  font-size: 14px;
  font-weight: 500;
}
.card-meta-item-title:not(:last-child) {
  margin-bottom: 8px;
}
.card-meta-item-title a {
  font-weight: 300;
  opacity: 0.5;
  text-decoration: none;
  transition: opacity ease-in-out 0.2s;
}
.card-meta-item-title a:hover {
  opacity: 1;
}
.card-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.card-sizes-item {
  display: block;
  margin: 0;
}
.card-sizes-item input {
  display: none;
}
.card-sizes-item input:checked + span {
  background-color: var(--pink-low);
  border-color: var(--pink-low);
}
.card-sizes-item span {
    display: inline-block;
    border: 2px solid #000;
    background: #000;
    color: #fff;
    padding: 8px 20px;
    box-sizing: border-box;
    border-radius: var(--radius-xs);
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: border-color ease-in-out 0.2s, background-color ease-in-out 0.2s;
}
.card-sizes-item span:hover {
  border-color: var(--black);
  color:#000;
  background:#fff;
}
.card-sizes-item span:hover path {
    fill:#000;
}
.card-order {
  margin-bottom: 40px;
}
@media (max-width: 576px) {
  .card-order {
    margin-bottom: 30px;
  }
}
.card-order-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.card-order-inner:not(:last-child) {
  margin-bottom: 23px;
}
.card-order-button {
  padding: 0;
  flex: 1;
  min-height: 52px;
}
@media (max-width: 576px) {
  .card-order-button {
    flex: inherit;
  }
  .card-order-button:nth-child(1) {
    width: 100%;
  }
  .card-order-button:nth-child(2) {
    width: calc(100% - 72px);
  }
}
.card-order-button.box {
  width: 52px;
  flex: inherit;
  border: none;
}
.card-order-button.box:hover path {
  fill: var(--red);
}
.card-order-desc {
  font-size: 15px;
  text-decoration: none;
}
.card-packs {
  padding-top: 40px;
  border-top: 1px solid var(--gray-depp);
  font-size: 14px;
}
@media (max-width: 576px) {
  .card-packs {
    padding-top: 30px;
  }
}
.card-packs-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 30px;
  margin-bottom: 24px;
}
@media (max-width: 576px) {
  .card-packs-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
.card-packs-name {
  font-weight: 500;
  max-width: 76px;
  line-height: 1.2;
}
@media (max-width: 576px) {
  .card-packs-name {
    max-width: 100%;
  }
}
.card-packs-item {
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 180px;
}
@media (max-width: 576px) {
  .card-packs-item {
    max-width: 100%;
  }
}
.card-packs-item-img {
  width: 56px;
  height: 56px;
  border-radius: 100px;
  overflow: hidden;
}
@media (max-width: 576px) {
  .card-packs-item-img {
    width: 48px;
    height: 48px;
  }
}
.card-packs-item-name {
  flex: 1;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
}
.card-packs-desc {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  opacity: 0.5;
  max-width: 620px;
}
.card-row {
  --bs-gutter-x: 60px;
  --bs-gutter-y: 30px;
}
.card-gallery {
  display: flex;
  justify-content: space-between;
  position: sticky;
  top: 20px;
}
@media (max-width: 1200px) {
  .card-gallery {
    overflow: hidden;
    flex-direction: column-reverse;
    gap: 13px;
  }
}
.card-gallery-tumbs {
  width: 90px;
  height: 470px;
  padding: 2px 0;
  box-sizing: border-box;
}
.card-gallery-tumbs-next {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
}
@media (max-width: 1200px) {
  .card-gallery-tumbs {
    height: auto;
    width: 100%;
  }
}
@media (max-width: 576px) {
  .card-gallery-tumbs {
    width: calc(100% + 15px);
  }
}
@media (max-width: 1200px) {
  .card-gallery-tumbs .swiper-slide {
    max-width: 88px;
  }
}
.card-gallery-tumbs .swiper-slide.swiper-slide-thumb-active .card-gallery-tumbs-img {
  border-color: var(--black);
}
.card-gallery-tumbs-img {
  border: 1px solid var(--gray-depp);
  border-radius: var(--radius-xs);
  overflow: hidden;
  transition: border-color ease-in-out 0.2s;
}
.card-gallery-tumbs-img img {
  width: calc(100% + 1px);
  height: 100%;
  object-fit: cover;
}
.card-gallery-full {
  width: calc(100% - 105px);
  border: 1px solid var(--gray-depp);
  border-radius: var(--radius-xs);
  box-sizing: border-box;
}
@media (max-width: 1200px) {
  .card-gallery-full {
    width: 100%;
  }
}
.card-gallery-full-img {
  height: 100%;
  box-sizing: border-box;
  display: block;
}
.card-gallery-full-img img {
  object-fit: cover;
}
.upsale-row .col {
  flex: inherit;
  max-width: 20%;
  width: 100%;
}
@media (max-width: 1200px) {
  .upsale-row .col {
    max-width: 25%;
  }
}
@media (max-width: 991px) {
  .upsale-row .col {
    max-width: 33.333%;
  }
}
@media (max-width: 768px) {
  .upsale-row .col {
    max-width: 50%;
  }
}

.cart {
  overflow: inherit;
}
@media (max-width: 1200px) {
  .cart {
    overflow: hidden;
  }
}
.cart-row {
  --bs-gutter-x: 60px;
  --bs-gutter-y: 40px;
}
.cart-item {
  display: flex;
  gap: 30px;
}
@media (max-width: 576px) {
  .cart-item {
    gap: 12px;
  }
}
.cart-item:not(:last-child) {
  margin-bottom: 24px;
}
.cart-item-img {
  max-width: 188px;
  width: 100%;
}
@media (max-width: 991px) {
  .cart-item-img {
    max-width: 130px;
  }
}
@media (max-width: 768px) {
  .cart-item-img {
    max-width: 105px;
  }
}
@media (max-width: 576px) {
  .cart-item-img {
    max-width: 80px;
  }
}
.cart-item-inner {
  flex: 1;
}
.cart-item-content {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cart-item-content {
    flex-direction: column;
  }
}
@media (max-width: 576px) {
  .cart-item-content {
    margin-bottom: 10px;
  }
}
.cart-item-content-info {
  flex: 1;
}
.cart-item-content-info .product-name {
  font-size: 18px;
}
@media (max-width: 576px) {
  .cart-item-content-info .product-name {
    font-size: 16px;
  }
}
.cart-item-content-cols {
  width: 120px;
}
.cart-item-content-price {
  text-align: end;
  width: 130px;
}
@media (max-width: 991px) {
  .cart-item-content-price {
    width: 100%;
    text-align: left;
    display: flex;
    gap: 10px;
  }
}
.cart-item-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
@media (max-width: 991px) {
  .cart-item-footer {
    gap: 12px;
  }
  .cart-item-footer .button {
    min-height: 44px;
    width: 44px;
    padding: 0;
  }
  .cart-item-footer .button span {
    display: none;
  }
}
.cart-total {
  position: sticky;
  top: 20px;
  padding: 24px;
  box-sizing: border-box;
  border: 1px solid var(--black);
  border-radius: var(--radius-xs);
}
.cart-total-table {
  margin-bottom: 11px;
  width: 100%;
  border-collapse: collapse;
}
.cart-total-table td {
  padding: 5px 0;
}
.cart-total-table td:nth-child(2) {
  text-align: end;
}
.cart-total-sum {
  font-weight: 500;
  font-size: 34px;
  line-height: 1.2;
}
@media (max-width: 576px) {
  .cart-total-sum {
    font-size: 24px;
  }
}
.cart-empty {
  padding: 70px 0 100px 0;
}
@media (max-width: 768px) {
  .cart-empty {
    padding: 30px 0 50px 0;
  }
}
.cart-empty-inner {
  max-width: 360px;
  width: 100%;
}
.cart-empty-icon {
  width: 96px;
  height: 96px;
  margin: 0 auto 32px auto;
}
.cart-empty-title {
  font-size: 32px;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .cart-empty-title {
    font-size: 24px;
  }
}

.process {
  max-width: 780px;
}
.process-item:not(:last-child) {
  margin-bottom: 55px;
}
@media (max-width: 1200px) {
  .process-item:not(:last-child) {
    margin-bottom: 40px;
  }
}
.process-item-title {
  text-transform: uppercase;
  font-size: 20px;
  margin-bottom: 16px;
  font-weight: 600;
  letter-spacing: 2px;
}
@media (max-width: 1200px) {
  .process-item-title {
    font-size: 18px;
  }
}
.process-row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 16px;
}

.profile-row {
  --bs-gutter-y: 40px;
}
.profile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
}
@media (max-width: 991px) {
  .profile-menu {
    flex-direction: row;
  }
}
.profile-menu-item {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  gap: 16px;
  opacity: 0.5;
  transition: opacity ease-in-out 0.2s;
}
.profile-menu-item:hover, .profile-menu-item.current {
  opacity: 1;
}
@media (max-width: 576px) {
  .profile-menu-item {
    gap: 8px;
  }
}
.profile-menu-item-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.profile-menu-item-text {
  font-size: 20px;
  text-transform: uppercase;
  flex: 1;
  line-height: 1;
  font-weight: 400;
}
@media (max-width: 1200px) {
  .profile-menu-item-text {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .profile-menu-item-text {
    font-size: 17px;
  }
}
@media (max-width: 576px) {
  .profile-menu-item-text {
    font-size: 12px;
  }
}

.orders-item:not(:last-child) {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--gray-depp);
}
.orders-item-header {
  margin-bottom: 10px;
}
.orders-item-header, .orders-item-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 25px;
}
@media (max-width: 576px) {
  .orders-item-header, .orders-item-meta {
    font-size: 14px;
  }
}
.orders-item-status {
  display: flex;
  align-items: center;
  gap: 7px;
}
.orders-item-status-icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orders-item-status-info {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 576px) {
  .orders-item-status-info {
    font-size: 12px;
  }
}
.orders-item-cancel {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  color: var(--red);
  text-decoration: none;
  transition: color ease-in-out 0.2s;
}
@media (max-width: 576px) {
  .orders-item-cancel {
    font-size: 12px;
  }
}
.orders-item-cancel:hover {
  color: var(--black);
}
.orders-items-item {
  display: flex;
  gap: 15px;
  align-items: center;
}
@media (max-width: 576px) {
  .orders-items-item {
    align-items: flex-start;
  }
}
.orders-items-item:not(:last-child) {
  margin-bottom: 10px;
}
.orders-items-item-img {
  max-width: 110px;
  width: 100%;
}
@media (max-width: 576px) {
  .orders-items-item-img {
    max-width: 80px;
  }
}
.orders-items-item-inner {
  flex: 1;
  display: flex;
  gap: 15px;
}
@media (max-width: 768px) {
  .orders-items-item-inner {
    flex-direction: column;
  }
}
.orders-items-item-content {
  flex: 1;
}
.orders-items-item-content .product-name {
  max-width: 407px;
}
.orders-items-item-price {
  text-align: end;
}
@media (max-width: 768px) {
  .orders-items-item-price {
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
  }
}

.article-header {
  margin: 0 auto 35px auto;
  text-align: center;
  max-width: 820px;
}
@media (max-width: 768px) {
  .article-header {
    text-align: left;
    margin: 0 auto 25px auto;
  }
}
.article-title {
  font-size: 38px;
  margin-bottom: 20px;
}
@media (max-width: 1200px) {
  .article-title {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .article-title {
    font-size: 26px;
  }
}
@media (max-width: 576px) {
  .article-title {
    font-size: 24px;
  }
}
.article-title:last-child {
  margin: 0;
}
.article-desc {
  opacity: 0.6;
}
.article-thumb {
  max-width: 550px;
}
.article-content {
  max-width: 576px;
}
.article-content:last-child { 
  margin-bottom: 0;
}
.article-thumb, .article-content {
  margin-left: auto;
  margin-right: auto;
}
.article-thumb, .article-content, .article-slider {
  margin-bottom: 70px;
}
@media (max-width: 991px) {
  .article-thumb, .article-content, .article-slider {
    margin-bottom: 30px;
  }
}
.article-slider {
  position: relative;
}
@media (max-width: 768px) {
  .article-slider {
    width: calc(100% + 15px);
  }
}
@media (max-width: 768px) {
  .article-slider .swiper-slide {
    width: 40%;
  }
}
.article-slider .controls-button {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 3;
}
.article-slider .controls-button.prev {
  left: -20px;
}
.article-slider .controls-button.next {
  right: -20px;
}

.tradein {
  padding-top: 20px;
}
@media (max-width: 576px) {
  .tradein {
    padding-top: 10px;
  }
}
.tradein-box {
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
  padding: 80px 65px;
  box-sizing: border-box;
}
@media (max-width: 1440px) {
  .tradein-box {
    padding: 60px;
  }
}
@media (max-width: 991px) {
  .tradein-box {
    padding: 30px;
    margin-bottom: 40px;
  }
}
.tradein-box-content {
  max-width: 400px;
  position: relative;
  z-index: 2;
}
.tradein-box-content p:last-child {
  margin: 0;
}
.tradein-box-bg {
  position: absolute;
  width: 50%;
  height: 100%;
  right: 0;
  top: 0;
}
@media (max-width: 576px) {
  .tradein-box-bg {
    opacity: 0.6;
  }
}
.tradein-box-bg:before {
  content: "";
  width: 110px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(to right, #09090B 0%, rgba(9, 9, 11, 0) 100%);
}
.tradein-box-bg img {
  height: 100%;
  object-fit: cover;
}
.tradein-row {
  --bs-gutter-x: 70px;
  --bs-gutter-y: 70px;
}
.tradein-desc-title {
  text-transform: none;
  font-size: 24px;
  letter-spacing: 0px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 16px;
}
.tradein-form {
  margin-bottom: 70px;
}
@media (max-width: 991px) {
  .tradein-form {
    margin-bottom: 40px;
  }
}
.tradein-form-title {
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 23px;
}
.tradein-form-item:not(:last-child) {
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .tradein-form-item:not(:last-child) {
    margin-bottom: 24px;
  }
}
.tradein-form-item .row {
  align-items: center;
  --bs-gutter-y: 12px;
}
.tradein-form-item-price {
  font-weight: 500;
  font-size: 24px;
}
.tradein-cta {
  display: flex;
  padding: 0 30px 35px 30px;
  border-radius: 16px;
  overflow: hidden;
  gap: 35px;
}
.tradein-cta-col:nth-child(1) {
  width: 55%;
}
@media (max-width: 1440px) {
  .tradein-cta-col:nth-child(1) {
    width: 60%;
  }
}
.tradein-cta-col:nth-child(2) {
  width: 45%;
}
@media (max-width: 1440px) {
  .tradein-cta-col:nth-child(2) {
    width: 40%;
  }
}
.tradein-cta-desc {
  padding: 30px 32px 60px 32px;
  border-radius: 0 0 16px 16px;
}
.tradein-cta-desc-text {
  margin-bottom: 12px;
}
.tradein-cta-desc-val {
  font-size: 24px;
  font-weight: 500;
}
@media (max-width: 1440px) {
  .tradein-cta-desc-val {
    font-size: 22px;
  }
}
.tradein-cta-info {
  padding-top: 45px;
  position: relative;
}
.tradein-cta-info:before {
  content: "";
  width: 86px;
  height: 70px;
  background-image: url("data:image/svg+xml,%3csvg%20width='86'%20height='74'%20viewBox='0%200%2086%2074'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M0%2070.5L5.07803%2073.2472L4.91813%2067.4759L0%2070.5ZM86%201V0.5C73.912%200.5%2066.2834%204.69149%2060.778%2011.0542C55.3078%2017.3763%2051.9507%2025.8307%2048.3422%2034.2683C44.7187%2042.741%2040.8326%2051.2271%2034.3166%2057.8081C27.8211%2064.3683%2018.6771%2069.0673%204.47209%2069.8761L4.50052%2070.3753L4.52894%2070.8745C18.9553%2070.0531%2028.3405%2065.265%2035.0272%2058.5117C41.6932%2051.7791%2045.6421%2043.1252%2049.2616%2034.6616C52.8962%2026.1629%2056.1902%2017.8848%2061.5343%2011.7085C66.8432%205.57286%2074.1922%201.5%2086%201.5V1Z'%20fill='%23D6001C'/%3e%3c/svg%3e");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  top: 30%;
  right: calc(100% + 10px);
}
.tradein-cta-info-name {
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 10px;
}
@media (max-width: 1440px) {
  .tradein-cta-info-name {
    font-size: 20px;
  }
}
@media (max-width: 1440px) {
  .tradein-cta-info-desc {
    font-size: 14px;
  }
}
.tradein-pagination {
  justify-content: center;
  margin-bottom: 30px;
  gap: 6px;
}
.tradein-pagination .swiper-pagination-bullet {
  margin: 0 !important;
  width: 4px;
  height: 4px;
  transition: opacity ease-in-out 0.2s, width ease-in-out 0.2s;
}
.tradein-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 16px;
}

.slider_img {
  height: 500px;
}

.article-slider-inner {
  overflow: visible!important;
}

.cursor_pointer {
  cursor: pointer!important;
}
 
.develop {
    background: #000;
    color: #fff;
    text-align: center;
    font-size: 13px;
    text-transform: uppercase;
    padding: 7px 15px;
    font-weight: 400;
}

.footer {
  padding: 20px 0;
  border-top: 1px solid var(--gray-depp);
position: relative;
}
.footer-top, .footer-bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 45px 0;
  box-sizing: border-box;
}
@media (max-width: 991px) {
  .footer-top, .footer-bottom {
    flex-direction: column;
    gap: 16px;
    padding: 25px 0;
  }
}
@media screen and (min-width: 991px) {
  .footer-nav, .footer-copy {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
.footer a {
  text-decoration: none;
  transition: color ease-in-out 0.2s;
}
.footer a:hover {
  color: var(--red);
}
.footer-email {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.2;
}
@media (max-width: 1200px) {
  .footer-email {
    font-size: 13px;
  }
}
.footer-nav {
  gap: 40px;
  justify-content: center;
}
@media (max-width: 1440px) {
  .footer-nav {
    gap: 30px;
  }
}
@media (max-width: 1200px) {
  .footer-nav {
    gap: 15px;
  }
}
@media (max-width: 991px) {
  .footer-nav {
    gap: 40px;
    margin-bottom: 20px;
  }
}
.footer-nav li a {
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .footer-nav li a {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .footer-content {
    padding: 20px 0;
  }
}
.footer-tel {
  text-transform: uppercase;
  font-size: 70px;
  line-height: 1.2;
  font-weight: 400;
  margin-bottom: 22px;
  display: inline-block;
}
@media (max-width: 1200px) {
  .footer-tel {
    font-size: 52px;
  }
}
@media (max-width: 768px) {
  .footer-tel {
    font-size: 42px;
  }
}
.footer-geo {
  display: flex;
  margin: 0 auto 45px auto;
  max-width: 590px;
  gap: 150px;
  font-size: 16px;
  position: relative;
  padding: 15px 0;
}
@media (max-width: 991px) {
  .footer-geo {
    gap: 40px;
  }
}
.footer-geo:after {
  content: "";
  width: 1px;
  height: 100%;
  background-color: var(--gray-depp);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(20deg);
}
@media (max-width: 991px) {
  .footer-geo:after {
    height: 60px;
  }
}
.footer-geo small {
  display: inline-block;
  color: var(--gray-dark);
  margin: 2px 0;
}
.footer-geo small:last-child {
  margin-bottom: 0;
}
.footer-geo small:first-child {
  margin-top: 0;
}
.footer-geo-item {
  flex: 1;
}
.footer-links li:not(:last-child) {
  margin-bottom: 8px;
}
.footer-links li a {
  font-size: 14px;
  font-weight: 400;
}
.footer-meta {
  color: var(--gray-dark);
  font-size: 13px;
  font-weight: 400;
}
.footer-meta a {
  color: var(--black);
}

/* Стили для бокового меню */
.offcanvas {
    width: 30rem !important;
}

/* Анимация для кнопки меню */
.menu-btn {
    transition: all 0.3s ease;
}

.menu-btn:hover {
    transform: scale(1.1);
}

/* Дополнительные стили для контента */
.main-content {
    transition: margin-left 0.3s ease;
    min-height: 100vh;
}

/* Стили для иконок в меню */
.menu-icon {
    width: 20px;
    margin-right: 10px;
}

.d-none-alert label.col-form-label.required[for="id_email"] {
    display: none !important;
}
/* .alert {
    display: none !important;
} */
.accordion-button:focus {
    box-shadow: none !important;
}

.alert-success {
    --bs-alert-color: #ffffff;
    --bs-alert-bg: #000000;
    --bs-alert-border-color: #000000;
    --bs-alert-link-color: #000000;
}

.alert.alert-dismissible .close {
    float: right;
    text-decoration: none;
}


.card-outline {
    border: 2px solid var(--pink-low);
    border-radius: var(--radius-xs);
    transition: border-color ease-in-out 0.2s;
}

.wishlists-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.wishlist-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem;
    background: #fff;
}

.wishlist-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.wishlist-name {
    margin: 0;
    font-size: 1.25rem;
}

.wishlist-name a {
    text-decoration: none;
    color: #333;
}

.wishlist-name a:hover {
    color: #007bff;
}

.wishlist-count {
    color: #666;
    font-size: 0.9rem;
}

.wishlist-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.wishlist-actions .btn {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    border: 1px solid transparent;
}

.btn-view {
    background: #007bff;
    color: white;
}

.btn-edit {
    background: #28a745;
    color: white;
}

.btn-share {
    background: #ffc107;
    color: #212529;
}

.btn-delete {
    background: #dc3545;
    color: white;
}

.wishlist-actions .btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* Подсказка городов */
.suggestions-container {
    position: absolute;
    background: white;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    width: auto;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.suggestion-item {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

.suggestion-item:hover {
    background-color: #f5f5f5;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.city-autocomplete {
    position: relative;
}
.accordion-button:not(.collapsed) {
    color: #ffffff;
    background-color: #000;
    box-shadow: none;
}
.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='white' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m2 5 6 6 6-6'/%3E%3C/svg%3E");
    transform: var(--bs-accordion-btn-icon-transform);
}


.sub-header h2, .sub-header h3, .sub-header h4 {
  color: #000;
  letter-spacing: 0;
    text-transform: none;
    font-weight: 300;
    font-size: var(--h4-fz);
}
.noreg {
    max-width:500px;
    
}
.noreg input {
    margin-bottom:15px;
}

.input-toggle-item button {
    display: block;
    padding: 14px 30px;
    border: none;
    border-radius: 12px;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;
    cursor: pointer;
    transition: background-color ease-in-out 0.2s, color ease-in-out 0.2s;
}

#id_first_name_error {
      list-style: none;
    margin: 0;
    padding: 0;
}

#id_first_name_error li {
  list-style: none;
    text-transform: uppercase;
    font-size: 12px;
    padding: 10px;
    font-weight: 700;
    color: var(--red);
}
