@charset "UTF-8";/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */
.noUi-target,
.noUi-target * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-touch-action: none;
      touch-action: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.noUi-base,
.noUi-connects {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

/* Wrapper for all connect elements.
 */
.noUi-connects {
  z-index: 0;
  overflow: hidden;
  border-radius: 3px;
}

.noUi-connect,
.noUi-origin {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  will-change: transform;
  -webkit-transform-style: flat;
          transform-style: flat;
}

.noUi-connect {
  background: #d80340;
}

.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.noUi-horizontal .noUi-origin {
  height: 0;
}

/* Give origins 0 height/width so they don't interfere with clicking the
 * connect elements.
 */
.noUi-vertical .noUi-origin {
  top: -100%;
  width: 0;
}

/* Offset direction
 */
.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
  right: auto;
  left: 0;
}

.noUi-handle {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  position: absolute;
  cursor: default;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 3px;
}

.noUi-touch-area {
  width: 100%;
  height: 100%;
}

.noUi-state-drag * {
  cursor: inherit !important;
}

/* Slider size and handle placement;
 */
.noUi-horizontal {
  height: 5px;
}

.noUi-horizontal .noUi-handle {
  top: -6px;
  right: -2px;
  width: 16px;
  height: 16px;
  border-radius: 100%;
}

.noUi-handle-lower {
  right: -10px !important;
}

.noUi-vertical {
  width: 18px;
}

.noUi-vertical .noUi-handle {
  right: -6px;
  bottom: -17px;
  width: 28px;
  height: 34px;
}

[disabled].noUi-target,
[disabled].noUi-handle,
[disabled] .noUi-handle {
  cursor: not-allowed;
}

.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
  right: auto;
  left: -17px;
}

/* Styling;
 * Giving the connect element a border radius causes issues with using transform: scale
 */
.noUi-target {
  position: relative;
  background: #d9d9d9;
  border-radius: 4px;
}

/* Handles and cursors;
 */
.noUi-draggable {
  cursor: ew-resize;
}

.noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}

.noUi-active {
  -webkit-box-shadow: inset 0 0 1px #fff, inset 0 1px 7px #ddd, 0 3px 6px -3px #bbb;
          box-shadow: inset 0 0 1px #fff, inset 0 1px 7px #ddd, 0 3px 6px -3px #bbb;
}

/* Handle stripes;
 */
/* Disabled state;
 */
[disabled] .noUi-connect {
  background: #b8b8b8;
}

.noUi-vertical .noUi-handle::after {
  top: 17px;
}

/* Base;
 *
 */
.noUi-pips,
.noUi-pips * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.noUi-pips {
  position: absolute;
  color: #999;
}

/* Values;
 *
 */
.noUi-value {
  position: absolute;
  text-align: center;
  white-space: nowrap;
}

.noUi-value-sub {
  font-size: 10px;
  color: #ccc;
}

/* Markings;
 *
 */
.noUi-marker {
  position: absolute;
  background: #ccc;
}

.noUi-marker-sub {
  background: #aaa;
}

.noUi-marker-large {
  background: #aaa;
}

/* Horizontal layout;
 *
 */
.noUi-pips-horizontal {
  top: 100%;
  left: 0;
  width: 100%;
  height: 80px;
  padding: 10px 0;
}

.noUi-value-horizontal {
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
}

.noUi-rtl .noUi-value-horizontal {
  -webkit-transform: translate(50%, 50%);
          transform: translate(50%, 50%);
}

.noUi-marker-horizontal.noUi-marker {
  width: 2px;
  height: 5px;
  margin-left: -1px;
}

.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px;
}

.noUi-marker-horizontal.noUi-marker-large {
  height: 15px;
}

/* Vertical layout;
 *
 */
.noUi-pips-vertical {
  top: 0;
  left: 100%;
  height: 100%;
  padding: 0 10px;
}

.noUi-value-vertical {
  padding-left: 25px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.noUi-rtl .noUi-value-vertical {
  -webkit-transform: translate(0, 50%);
          transform: translate(0, 50%);
}

.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px;
}

.noUi-marker-vertical.noUi-marker-sub {
  width: 10px;
}

.noUi-marker-vertical.noUi-marker-large {
  width: 15px;
}

.noUi-tooltip {
  position: absolute;
  display: block;
  padding: 5px;
  color: #000;
  text-align: center;
  white-space: nowrap;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 3px;
}

.noUi-horizontal .noUi-tooltip {
  bottom: 120%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.noUi-vertical .noUi-tooltip {
  top: 50%;
  right: 120%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.noUi-horizontal .noUi-origin > .noUi-tooltip {
  bottom: 10px;
  left: auto;
  -webkit-transform: translate(50%, 0);
          transform: translate(50%, 0);
}

.noUi-vertical .noUi-origin > .noUi-tooltip {
  top: auto;
  right: 28px;
  -webkit-transform: translate(0, -18px);
          transform: translate(0, -18px);
}/**
 * Swiper 11.2.10
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 28, 2025
 */

/* FONT_START */
@font-face {
  font-family: 'swiper-icons';
  src: url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');
  font-weight: 400;
  font-style: normal;
}
/* FONT_END */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
          transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}
.swiper-vertical {
  -ms-touch-action: pan-x;
      touch-action: pan-x;
}
.swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}
.swiper-backface-hidden .swiper-slide {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}
.swiper-3d {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}
/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  -ms-scroll-snap-type: none;
      scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: '';
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-ordinal-group: 10000;
      -ms-flex-order: 9999;
          order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
          margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
          margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}
/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
          animation: swiper-preloader-spin 1s infinite linear;
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@-webkit-keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* Slide styles end */
:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  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(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}
.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}
.swiper-button-prev svg,
.swiper-button-next svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.swiper-rtl .swiper-button-prev svg,
.swiper-rtl .swiper-button-next svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.swiper-button-lock {
  display: none;
}
/* Navigation font start */
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: 'prev';
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: 'next';
}
/* Navigation font end */

.header-marquee {
  background: #000;
  padding: 0.625rem 0;
  overflow: hidden;
  position: relative;
}

.marquee-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
  -webkit-animation: scroll 20s linear infinite;
          animation: scroll 20s linear infinite;
}
@media screen and (max-width: 47.99875em) {
  .marquee-content {
    -webkit-animation-duration: 5s;
            animation-duration: 5s;
  }
}

.marquee-content span {
  color: white;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0 1.875rem;
  display: inline-block;
}

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.header-marquee:hover .marquee-content {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

.banners {
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 47.99875em) {
  .banners {
    margin-bottom: 2.5rem;
  }
}

.banners-item {
  padding: 2.25rem;
  aspect-ratio: 1.9/1;
  background-size: cover;
  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;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 47.99875em) {
  .banners-item {
    padding: 1.25rem;
  }
}
.banners-item__button {
  background: #000;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  color: #fff;
  padding: 0.9375rem 1.25rem;
  border: 0.0625rem solid #000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 47.99875em) {
  .banners-item__button {
    font-size: 0.875rem;
    padding: 0.75rem 1rem;
  }
}
.banners-item__button img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.banners-item__button:hover {
  background: #fff;
  color: #000;
}
.banners-item__button:hover img {
  -webkit-filter: invert(1);
          filter: invert(1);
}

.icon-button {
  background: #fff;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  color: #000;
  padding: 0.9375rem 1.25rem;
  border: 0.0625rem solid #000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 47.99875em) {
  .icon-button {
    font-size: 0.875rem;
    padding: 0.75rem 1rem;
  }
}
.icon-button img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.icon-button:hover {
  background: #000;
  color: #fff;
}
.icon-button:hover img {
  -webkit-filter: none;
          filter: none;
}

.instagram-label {
  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: 2.625rem;
  padding: 2.5rem 0;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 47.99875em) {
  .instagram-label {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.25rem;
    padding: 1.875rem 0;
    margin-bottom: 1.25rem;
  }
}
.instagram-label__text {
  font-weight: 400;
  font-size: 1rem;
  line-height: 90%;
  color: #000;
}
@media screen and (max-width: 47.99875em) {
  .instagram-label__text {
    font-size: 0.875rem;
    text-align: center;
  }
}
.instagram-label-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  font-size: 1.625rem;
  line-height: 90%;
  text-transform: uppercase;
  text-align: center;
  color: #000;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
@media screen and (max-width: 47.99875em) {
  .instagram-label-link {
    font-size: 1.25rem;
  }
}
.instagram-label-link:hover {
  color: #d80340;
}
.instagram-label-link__icon {
  width: 1.5rem;
  margin-right: 20px;
}
@media screen and (max-width: 47.99875em) {
  .instagram-label-link__icon {
    width: 1.25rem;
    margin-right: 15px;
  }
}

.product-card {
  cursor: pointer;
}
.product-card:hover img {
  border-color: #000;
}
.product-card__image img {
  width: 100%;
  margin-bottom: 1.25rem;
  border: 1px solid #e3e3e3;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}
@media screen and (max-width: 47.99875em) {
  .product-card__image img {
    margin-bottom: 0.9375rem;
  }
}
.product-card__name {
  font-weight: 600;
  font-size: 1rem;
  line-height: 90%;
  color: #000;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 47.99875em) {
  .product-card__name {
    margin-bottom: 0.5rem;
  }
}
.product-card__price {
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 90%;
  color: #d80340;
}
@media screen and (max-width: 47.99875em) {
  .product-card__price {
    font-size: 1rem;
  }
}

.products {
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 47.99875em) {
  .products {
    margin-bottom: 2.5rem;
  }
}
.products__title {
  font-weight: 700;
  font-size: 1.625rem;
  line-height: 90%;
  text-transform: uppercase;
  text-align: center;
  color: #000;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 47.99875em) {
  .products__title {
    font-size: 1.25rem;
    margin-bottom: 1.875rem;
  }
}
.products .navigation {
  margin-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 47.99875em) {
  .products .navigation {
    margin-top: 1.875rem;
  }
}
.products .navigation .pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.products .navigation .pagination .swiper-pagination-bullet {
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 0;
}
@media screen and (max-width: 47.99875em) {
  .products .navigation .pagination .swiper-pagination-bullet {
    width: 0.75rem;
    height: 0.75rem;
  }
}
.products .navigation .pagination .swiper-pagination-bullet-active {
  background: #000000;
}

.pictures__container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 1.875rem;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 61.99875em) {
  .pictures__container {
    grid-template-columns: 1fr 1fr;
    grid-gap: 1.5rem;
  }
}
@media screen and (max-width: 47.99875em) {
  .pictures__container {
    grid-gap: 0.5rem;
    margin-bottom: 1rem;
  }
}
.pictures__container img {
  width: 100%;
}

.page-catalog__container {
  max-width: 1160px !important;
}

.catalog {
  padding-bottom: 1.875rem;
}
.catalog__header {
  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;
  margin-bottom: 2.5rem;
}
.catalog__title {
  font-weight: 700;
  font-size: 1.625rem;
  line-height: 90%;
  text-transform: uppercase;
}
.catalog__sort {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
}
.catalog__sort-label {
  font-size: 0.875rem;
  color: #aaa;
}
.catalog__sort-select {
  padding: 0.25rem 1.875rem 0.25rem 0.75rem;
  border: 0.0625rem solid #ddd;
  border-radius: 0.25rem;
  background: #fff;
  font-size: 0.875rem;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23000' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.625rem center;
}
.catalog__content {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 1.875rem;
}
.catalog__sidebar {
  position: sticky;
  top: 20px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.catalog__main {
  min-width: 0;
}
.catalog__active-filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.625rem;
  margin-bottom: 1.875rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.catalog__reset-filters {
  background: none;
  border: none;
  font-size: 0.875rem;
  cursor: pointer;
  text-decoration: none;
  background: #e3e3e3;
  border-radius: 0.25rem;
  padding: 0.3125rem 0.625rem;
}
.catalog__reset-filters:hover {
  color: #000;
}
.catalog__load-more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 1.875rem;
}

.filters__title {
  font-size: 1rem;
  color: #aaa;
  margin-bottom: 2.5rem;
}
.filters__section {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #e5e5e5;
}
.filters__section:last-child {
  border-bottom: none;
}
.filters__section--open .filters__section-title::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.filters__section--open .filters__section-content {
  max-height: 500px;
  opacity: 1;
  padding-top: 15px;
}
.filters__section-title {
  font-weight: 400;
  font-size: 1rem;
  line-height: 90%;
  color: #000;
  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-bottom: 1.25rem;
  cursor: pointer;
}
.filters__section-title::after {
  content: "";
  width: 1rem;
  height: 1rem;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPG1hc2sgaWQ9Im1hc2swXzMxXzUyNCIgc3R5bGU9Im1hc2stdHlwZTphbHBoYSIgbWFza1VuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeD0iMCIgeT0iMCIgd2lkdGg9IjE2IiBoZWlnaHQ9IjE2Ij4KPHJlY3Qgd2lkdGg9IjE2IiBoZWlnaHQ9IjE2IiBmaWxsPSIjRDlEOUQ5Ii8+CjwvbWFzaz4KPGcgbWFzaz0idXJsKCNtYXNrMF8zMV81MjQpIj4KPHBhdGggZD0iTTQuMjY2NTkgOC45MzMzNEwzLjMzMzI1IDguMDAwMDFMNy45OTk5MiAzLjMzMzM0TDEyLjY2NjYgOC4wMDAwMUwxMS43MzMzIDguOTMzMzRMNy45OTk5MiA1LjIxNjY4TDQuMjY2NTkgOC45MzMzNFoiIGZpbGw9ImJsYWNrIi8+CjwvZz4KPC9zdmc+Cg==");
  background-size: contain;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.filters__price {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
  margin-bottom: 0.9375rem;
}
.filters__price-input {
  padding: 0.5rem 0.75rem;
  border: 0.0625rem solid #ddd;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  width: 100%;
}
.filters__checkboxes {
  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.625rem;
}

.checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  font-size: 1rem;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.checkbox-input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.checkbox-input:checked + .checkbox-label::before {
  background: #ffffff;
  border-color: #e91e63;
}
.checkbox-input:checked + .checkbox-label::after {
  opacity: 1;
}
.checkbox-label {
  cursor: pointer;
  position: relative;
  padding-left: 1.875rem;
}
.checkbox-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  border: 0.0625rem solid #d9d9d9;
  border-radius: 0.375rem;
  background: #fff;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.checkbox-label::after {
  content: "";
  position: absolute;
  left: 0.25rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 0.1875rem;
  background: #d80340;
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.filter-tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  padding: 0.3125rem 0.625rem;
  border: 0.0625rem solid #e3e3e3;
  border-radius: 0.25pxrem;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 90%;
  color: #000;
}
.filter-tag__close {
  background: none;
  border: none;
  font-size: 1.125rem;
  line-height: 90%;
  cursor: pointer;
  padding: 0;
  color: #666;
}
.filter-tag__close:hover {
  color: #000;
}

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

@media (max-width: 1024px) {
  .catalog__content {
    grid-template-columns: 1fr;
  }
  .catalog__sidebar {
    position: static;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 61.99875em) {
  .catalog__header {
    -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: 0.9375rem;
    margin-bottom: 1.5rem;
  }
  .filters__title {
    text-align: center;
    padding: 1rem;
    border: 2px solid #e91e63;
    color: #e91e63;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 0rem;
    cursor: pointer;
    width: 100%;
  }
  .filter-body {
    display: none;
    margin-top: 1.5rem;
  }
  .filter-body.active {
    display: block !important;
  }
  .product-grid {
    grid-template-columns: 1fr 1fr;
    grid-gap: 1.5rem 1rem;
  }
}
.page-product__container {
  max-width: 1160px !important;
}

.product {
  margin-bottom: 3.75rem;
}
.product-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 1.875rem;
  margin-bottom: 3.75rem;
  width: 100%;
  max-width: 1160px !important;
}

.product-gallery {
  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.625rem;
  width: 50%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.product-gallery__thumbs {
  width: 100%;
}
.product-gallery__thumbs .swiper-slide {
  width: 6.25rem;
  height: 6.25rem;
  aspect-ratio: 1/1;
  cursor: pointer;
  opacity: 0.5;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  background: #f5f5f5;
  border: 0.0625rem solid #e3e3e3;
}
.product-gallery__thumbs .swiper-slide-thumb-active {
  opacity: 1;
  border-color: #e91e63;
}
.product-gallery__thumbs .swiper-slide:hover {
  opacity: 1;
}
.product-gallery__thumbs .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-gallery__main {
  width: 100%;
  background: #f5f5f5;
  aspect-ratio: 1;
}
.product-gallery__main .swiper-wrapper {
  height: 100%;
}
.product-gallery__main .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 0.0625rem solid #e3e3e3;
}
.product-gallery__main .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-gallery__main .swiper-button-prev,
.product-gallery__main .swiper-button-next {
  width: 1.5rem;
  height: 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
}
.product-gallery__main .swiper-button-prev::after,
.product-gallery__main .swiper-button-next::after {
  font-size: 0.75rem;
  font-weight: 700;
  color: #000;
}
.product-gallery__main .swiper-button-prev:hover,
.product-gallery__main .swiper-button-next:hover {
  background: rgb(255, 255, 255);
}
.product-gallery__main .swiper-button-prev {
  left: 1.25rem;
}
.product-gallery__main .swiper-button-next {
  right: 1.25rem;
}
.product-gallery__main .swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.product-info {
  width: 50%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.product-info__title {
  font-weight: 700;
  font-size: 1.625rem;
  line-height: 90%;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 1.875rem;
}
.product-info__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.875rem;
}
.product-info__meta-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.875rem;
  font-size: 14px;
  color: #aaa;
}
.product-info__meta-label {
  color: #999;
}
.product-info__meta-value {
  color: #000;
}
.product-info__price {
  font-weight: 700;
  font-size: 1.625rem;
  line-height: 90%;
  text-transform: uppercase;
  color: #d80340;
  margin-bottom: 1.875rem;
}
.product-info__sizes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
  margin-bottom: 1.875rem;
}
.product-info__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
}

.size-button {
  min-width: 3.375rem;
  height: 3.375rem;
  border: 1px solid #d9d9d9;
  background: #fff;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  font-weight: 500;
  font-size: 1pxrem;
  line-height: 90%;
  color: #000;
}
.size-button--active {
  background: #000;
  color: #fff;
  border-color: #000;
}
.size-button--disabled {
  border-color: #ddd;
  color: #ddd;
  cursor: not-allowed;
  position: relative;
}
.size-button--disabled::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 0.125rem;
  background: #ddd;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}
.size-button:hover:not(.size-button--active):not(.size-button--disabled) {
  background: #f5f5f5;
}

.quantity-selector {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #d9d9d9;
}
.quantity-selector__btn {
  height: 100%;
  border: none;
  background: #fff;
  cursor: pointer;
  padding: 0.875rem;
}
.quantity-selector__btn:hover {
  opacity: 0.5;
}
.quantity-selector__btn img {
  width: 1.625rem;
}
.quantity-selector__input {
  height: 100%;
  border: none;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  max-width: 1.875rem;
  -moz-appearance: textfield;
}
.quantity-selector__input:focus {
  outline: none;
}
.quantity-selector__input::-webkit-inner-spin-button, .quantity-selector__input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.add-to-cart-btn {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 3.375rem;
  background: #000;
  color: #fff;
  border: none;
  cursor: pointer;
  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: 0.625rem;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
}
.add-to-cart-btn:hover {
  background: #333;
}
.add-to-cart-btn img {
  width: 1.125rem;
}

.product-accordions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.product-accordions__title {
  font-weight: 400;
  font-size: 1rem;
  line-height: 90%;
  color: #aaa;
  margin-bottom: 0.625rem;
}

.accordion {
  border-bottom: 1px solid #e5e5e5;
}
.accordion__header {
  width: 100%;
  padding: 1.25rem 0;
  background: none;
  border: none;
  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;
  cursor: pointer;
  text-align: left;
  font-weight: 400;
  font-size: 1rem;
  line-height: 90%;
  color: #000;
}
.accordion__header:hover {
  color: #666;
}
.accordion__icon {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.accordion--open .accordion__icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.accordion--open .accordion__content {
  max-height: 500px;
  opacity: 1;
  padding-bottom: 1.25rem;
}
.accordion__content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
}

.related-products {
  margin-top: 1.875rem;
}
.related-products__title {
  font-weight: 700;
  font-size: 1.625rem;
  line-height: 90%;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 1.875rem;
}
.related-products .product-grid {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

@media (max-width: 61.99875em) {
  .product-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .product-gallery {
    width: 100%;
  }
  .product-info {
    width: 100%;
  }
}
@media (max-width: 47.99875em) {
  .product-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}
.page-checkout__container {
  max-width: 1160px !important;
}

.page-title {
  font-weight: 700;
  font-size: 1.625rem;
  line-height: 90%;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 3.125rem;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 25.625rem;
  gap: 5.625rem;
  margin-bottom: 3.75rem;
}
@media (max-width: 61.99875em) {
  .checkout-layout {
    grid-template-columns: 1fr;
    gap: 3.75rem;
  }
}
@media (max-width: 47.99875em) {
  .checkout-layout {
    gap: 2.5rem;
  }
}

.form-section {
  position: relative;
}

.section-title {
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 90%;
  color: #000;
  margin-bottom: 0.625rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.875rem;
}
@media (max-width: 47.99875em) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.input-wrapper {
  position: relative;
}

.form-input,
.form-textarea {
  width: 100%;
  border-bottom: 0.0625rem solid #000;
  padding: 1.25rem 0;
  background: #ffffff;
  font-weight: 400;
  font-size: 1rem;
  line-height: 90%;
  color: #0a0a0a;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
}
.form-input::-webkit-input-placeholder, .form-textarea::-webkit-input-placeholder {
  color: #7d7d7d;
}
.form-input::-moz-placeholder, .form-textarea::-moz-placeholder {
  color: #7d7d7d;
}
.form-input:-ms-input-placeholder, .form-textarea:-ms-input-placeholder {
  color: #7d7d7d;
}
.form-input::-ms-input-placeholder, .form-textarea::-ms-input-placeholder {
  color: #7d7d7d;
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: #7d7d7d;
}

.form-textarea {
  min-height: 3.375rem;
  resize: vertical;
}

select.form-input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%230a0a0a' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.city-selector {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
  margin-top: 0.625rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.city-btn {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 90%;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: #7d7d7d;
}
.city-btn:hover {
  background: #f5f5f5;
  border-color: #0a0a0a;
}

.delivery-section,
.payment-section {
  margin-top: 3.125rem;
}
.delivery-section .section-title,
.payment-section .section-title {
  margin-bottom: 1.875rem;
}

.radio-option {
  position: relative;
  margin-bottom: 24px;
  cursor: pointer;
}
.radio-option input[type=radio] {
  position: absolute;
  opacity: 0;
}
.radio-option input[type=radio]:checked ~ .radio-label .radio-custom {
  border-color: #ff0033;
}
.radio-option input[type=radio]:checked ~ .radio-label .radio-custom::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: #ff0033;
  border-radius: 50%;
  -webkit-animation: radioScale 0.3s cubic-bezier(0.4, 0, 0.2, 1);
          animation: radioScale 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@-webkit-keyframes radioScale {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0);
            transform: translate(-50%, -50%) scale(0);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes radioScale {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0);
            transform: translate(-50%, -50%) scale(0);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
}
.radio-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
}

.radio-custom {
  width: 20px;
  height: 20px;
  border: 2px solid #d0d0d0;
  border-radius: 50%;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 2px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.radio-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.radio-title {
  font-weight: 500;
  margin-bottom: 4px;
  line-height: 1.2;
}

.radio-description {
  font-size: 13px;
  font-weight: 300;
  color: #999999;
  line-height: 1.5;
}

.radio-price {
  font-size: 13px;
  color: #999999;
  margin-left: auto;
}

.dropdown-content {
  padding-left: 32px;
  display: none;
  -webkit-animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
          animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.dropdown-content.active {
  display: block;
}

.map-link {
  font-size: 13px;
  color: #ff0033;
  text-decoration: underline;
  text-underline-offset: 3px;
  display: inline-block;
  margin-top: 12px;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
.map-link:hover {
  opacity: 0.7;
}

.order-summary {
  position: sticky;
  top: 2.5rem;
  background: #f5f5f5;
  padding: 1.25rem 2.25rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -webkit-animation: fadeIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
          animation: fadeIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
}
@media (max-width: 61.99875em) {
  .order-summary {
    position: relative;
    top: 0;
  }
}
@media (max-width: 47.99875em) {
  .order-summary {
    padding: 1.25rem;
  }
}
.order-summary .add-to-cart-btn {
  width: 100%;
  margin-top: 2.5rem;
}

.order-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 0.0625rem solid #d0d0d0;
  -webkit-animation: slideRight 0.6s cubic-bezier(0.22, 1, 0.36, 1) calc(0.6s + var(--item-index) * 0.1s) both;
          animation: slideRight 0.6s cubic-bezier(0.22, 1, 0.36, 1) calc(0.6s + var(--item-index) * 0.1s) both;
}
.order-item:nth-child(1) {
  --item-index: 0;
}
.order-item:nth-child(2) {
  --item-index: 1;
}
.order-item--removing {
  -webkit-animation: fadeOut 0.4s ease forwards;
          animation: fadeOut 0.4s ease forwards;
}

@-webkit-keyframes slideRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes slideRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes fadeOut {
  to {
    opacity: 0;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
}
@keyframes fadeOut {
  to {
    opacity: 0;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
}
.order-item-image {
  width: 7.875rem;
  background: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.order-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.order-item-details {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.order-item-title {
  font-weight: 700;
  font-size: 0.8125rem;
  line-height: 90%;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 0.3125rem;
}

.order-item-meta {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 90%;
  color: #fff;
  width: 2.0625rem;
  height: 2.0625rem;
  background: #000;
  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-bottom: 5;
}

.order-item-details__wrap {
  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;
}

.order-item-price {
  font-weight: 700;
  font-size: 1rem;
  line-height: 90%;
  text-transform: uppercase;
  color: #d80340;
}

.order-item-quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.5rem;
  border: 1px solid #d9d9d9;
}

.qty-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;
  cursor: pointer;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  font-size: 18px;
  font-weight: 300;
}
.qty-btn img {
  width: 1.625rem;
}
.qty-btn:hover {
  opacity: 0.6;
}

.qty-value {
  font-size: 15px;
  font-weight: 400;
  min-width: 20px;
  text-align: center;
}

.remove-btn {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 90%;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: #7d7d7d;
}
.remove-btn:hover {
  color: #ff0033;
}

.order-totals {
  margin-top: 2.5rem;
}

.total-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: 400;
  font-size: 1rem;
  line-height: 90%;
}
.total-row:not(:last-child) {
  margin-bottom: 1.25rem;
}

.total-label {
  font-weight: 400;
}

.total-value {
  font-weight: 700;
}
.total-value.free {
  color: #999999;
}

.promo-code {
  margin-top: 1.25rem;
  padding-top: 2.5rem;
  border-top: 1px solid #d0d0d0;
}

.promo-input-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}

.promo-input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 1rem 0;
  border-bottom: 1px solid #000;
  background: none;
  outline: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 400;
  font-size: 1rem;
  line-height: 90%;
}
.promo-input::-webkit-input-placeholder {
  color: #7d7d7d;
}
.promo-input::-moz-placeholder {
  color: #7d7d7d;
}
.promo-input:-ms-input-placeholder {
  color: #7d7d7d;
}
.promo-input::-ms-input-placeholder {
  color: #7d7d7d;
}
.promo-input::placeholder {
  color: #7d7d7d;
}
.promo-input:focus {
  border-color: #0a0a0a;
}

.promo-btn {
  padding: 0.75rem 1.25rem;
  background: transparent;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  height: 3.0625rem;
  color: #000;
  border: 1px solid #000;
}
.final-total {
  padding-top: 2.5rem;
  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;
  border-bottom: 1px solid #d0d0d0;
  padding-bottom: 1.25rem;
}

.final-total-label {
  font-weight: 400;
  font-size: 1rem;
  line-height: 90%;
  color: #000;
}

.final-total-value {
  font-weight: 700;
  font-size: 1rem;
  line-height: 90%;
  text-transform: uppercase;
  color: #000;
}

.text-page__container {
  max-width: 1160px !important;
}

.text-block {
  font-weight: 400;
  font-size: 1rem;
  line-height: 140%;
  color: #7d7d7d;
}
@media (max-width: 48rem) {
  .text-block {
    font-size: 0.875rem;
  }
}

.sect-title {
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 90%;
  color: #000;
  margin-bottom: 1.875rem;
}
@media (max-width: 47.99875em) {
  .sect-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
}

.payment-page .page-title {
  margin-bottom: 1.875rem;
}

.payment-section {
  margin-bottom: 3.125rem;
}
.payment-section__c {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.875rem;
}
@media (max-width: 47.99875em) {
  .payment-section__c {
    -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;
  }
}
.payment-section__c .text-block {
  max-width: 800px;
}
.payment-section__c img {
  width: 16.25rem;
}
@media (max-width: 48rem) {
  .payment-section {
    margin-bottom: 2.5rem;
  }
}

.delivery-section {
  margin-bottom: 3.75rem;
}
.delivery-section__c {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.875rem;
}
@media (max-width: 47.99875em) {
  .delivery-section__c {
    -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;
  }
}
.delivery-section__c .text-block {
  max-width: 800px;
}
.delivery-section__c img {
  width: 8.375rem;
}

.returns-page .page-title {
  margin-bottom: 1.875rem;
}
.returns-page .text-block {
  max-width: 800px;
}

.returns-section {
  margin-bottom: 3.75rem;
}
@media (max-width: 47.99875em) {
  .returns-section {
    margin-bottom: 2.5rem;
  }
}

.exchange-section {
  margin-bottom: 2.5rem;
}

.contacts-page {
  margin-bottom: 3.75rem;
}
.contacts-page-inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-gap: 8.125rem;
}
@media (max-width: 47.99875em) {
  .contacts-page-inner {
    grid-template-columns: 1fr;
    grid-gap: 2.5rem;
  }
}

.contact-block {
  background: #f5f5f5;
  padding: 2.5rem;
}
@media (max-width: 47.99875em) {
  .contact-block {
    padding: 1.5rem;
  }
}
.contact-block__item {
  padding-bottom: 1.25rem;
  border-bottom: 0.0625rem solid #e3e3e3;
}
.contact-block__item:not(:last-child) {
  margin-bottom: 2.5rem;
}
@media (max-width: 47.99875em) {
  .contact-block__item:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 47.99875em) {
  .contact-block__item {
    padding-bottom: 1rem;
  }
}
.contact-block__label {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 90%;
  color: #7d7d7d;
  margin-bottom: 1.25rem;
}
@media (max-width: 47.99875em) {
  .contact-block__label {
    font-size: 0.75rem;
    margin-bottom: 1rem;
  }
}
.contact-block__value {
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 90%;
  text-transform: uppercase;
  color: #000;
}
@media (max-width: 47.99875em) {
  .contact-block__value {
    font-size: 1rem;
  }
}

.nf-page {
  margin-bottom: 3.75rem;
}
.nf-page__icon {
  width: 33.25rem;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 61.99875em) {
  .nf-page__icon {
    max-width: 60%;
  }
}
.nf-page .add-to-cart-btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.25rem;
}

.cart-b {
  position: fixed;
  width: 28.125rem;
  top: 0;
  right: -100%;
  bottom: 0;
  z-index: 100;
  height: 100vh;
  -webkit-transition: right 0.3s ease;
  transition: right 0.3s ease;
  overflow-y: auto;
}

.cart-b .order-summary {
  background: #fff;
}

/* Close Button */
.cart-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 1rem;
  height: 1rem;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  z-index: 200;
  color: #000;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
  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;
}

.cart-close-btn:hover {
  opacity: 0.6;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.cart-b.active {
  right: 0;
}

/* Backdrop */
.cart-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cart-backdrop.active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  .cart-b {
    width: 100%;
  }
}
* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

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

a:focus,
a:active {
  outline: none;
}

html,
body {
  min-width: 375px;
  height: 100%;
}

body {
  font-family: "", sans-serif;
  font-size: 1rem;
  line-height: 1;
  color: #000;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input,
button,
textarea {
  font-family: "", sans-serif;
  font-size: inherit;
}

button {
  color: inherit;
  cursor: pointer;
  background-color: transparent;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

@media screen and (max-width: 47.99875em) {
  html {
    font-size: 0.875rem;
  }
}

body.lock {
  overflow: hidden;
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
  -ms-touch-action: none;
      touch-action: none;
}

.wrapper {
  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: 100%;
  overflow: hidden;
}
@supports (overflow: clip) {
  .wrapper {
    overflow: clip;
  }
}
.wrapper > main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.wrapper > * {
  min-width: 0;
}

[class*=__container], .woocommerce-notices-wrapper {
  max-width: 115rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.woocommerce-notices-wrapper {
    width: 100%;
}

@media screen and (max-width: 47.99875em) {
  [class*=__container], .woocommerce-notices-wrapper {
    padding: 0 1rem;
  }
}

.header {
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 47.99875em) {
  .header {
    margin-bottom: 1rem;
  }
}
.header-middle {
  padding: 1.875rem 0;
}
@media screen and (max-width: 47.99875em) {
  .header-middle {
    padding: 1.25rem 0;
  }
}
.header-middle [class*=__container] {
  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;
  max-width: 1160px;
}
.header-logo {
  width: 10.625rem;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (max-width: 47.99875em) {
  .header-logo {
    width: 7.5rem;
  }
}
.header-logo:hover {
  opacity: 0.7;
}
.header-logo img {
  width: 100%;
}
.header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 400;
  font-size: 1rem;
  color: #000;
  gap: 1.25rem;
}
@media screen and (max-width: 61.99875em) {
  .header-nav {
    margin-left: auto;
  }
}
.header-nav-mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 61.99875em) {
  .header-nav-mobile {
    position: fixed;
    top: 0;
    bottom: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    background: #000;
    z-index: 30;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 5rem 1.875rem 1.25rem;
    -webkit-box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
            box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    -webkit-transition: right 0.4s ease;
    transition: right 0.4s ease;
    gap: 0.75rem;
    overflow-y: auto;
  }
  .header-nav-mobile.active {
    right: 0;
  }
  .header-nav-mobile .header-nav__item {
    color: #fff;
    padding: 0.9375rem 1.25rem;
    width: 100%;
    text-align: left;
    border-radius: 0.625rem;
    background: rgba(255, 255, 255, 0.1);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .header-nav-mobile .header-nav__item:hover {
    background: rgba(255, 255, 255, 0.2);
    -webkit-transform: translateX(-5px);
            transform: translateX(-5px);
  }
  .header-nav-mobile .header-search {
    width: 100%;
    margin-top: 1.25rem;
  }
  .header-nav-mobile .header-search input {
    width: 100%;
    padding: 0.75rem 2.8125rem 0.75rem 0.9375rem;
    border-radius: 0.625rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
  }
  .header-nav-mobile .header-search input::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.7);
  }
  .header-nav-mobile .header-search input::-moz-placeholder {
    color: rgba(255, 255, 255, 0.7);
  }
  .header-nav-mobile .header-search input:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.7);
  }
  .header-nav-mobile .header-search input::-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.7);
  }
  .header-nav-mobile .header-search input::placeholder {
    color: rgba(255, 255, 255, 0.7);
  }
  .header-nav-mobile .header-search__btn {
    position: absolute;
    right: 0.625rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .header-nav-mobile .header-search__btn img {
    -webkit-filter: brightness(0) invert(1);
            filter: brightness(0) invert(1);
  }
}
.header-nav__item {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.header-nav__item:hover {
  color: #d80340;
}
.header-close {
  display: none;
}
@media screen and (max-width: 61.99875em) {
  .header-close {
    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;
    position: absolute;
    top: 1.25rem;
    right: 1.875rem;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .header-close::before, .header-close::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 2px;
    background: #fff;
  }
  .header-close::before {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .header-close::after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .header-close:hover {
    background: rgba(255, 255, 255, 0.3);
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
.header-ham {
  display: none;
  cursor: pointer;
}
@media screen and (max-width: 61.99875em) {
  .header-ham {
    display: block;
    z-index: 21;
  }
}
.header-ham img {
  width: 2rem;
}
.header-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.header-search input {
  font-weight: 400;
  font-size: 1rem;
  color: #000;
}
.header-search input::-webkit-input-placeholder {
  font-size: 1rem;
  color: #000;
}
.header-search input::-moz-placeholder {
  font-size: 1rem;
  color: #000;
}
.header-search input:-ms-input-placeholder {
  font-size: 1rem;
  color: #000;
}
.header-search input::-ms-input-placeholder {
  font-size: 1rem;
  color: #000;
}
.header-search input::placeholder {
  font-size: 1rem;
  color: #000;
}
.header-search__btn {
  margin-right: 10px;
}
.header-search__btn img {
  width: 1.5rem;
}
.header-cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.header-cart:hover {
  opacity: 0.7;
}
.header-cart__btn {
  margin-right: 10px;
}
.header-cart__btn img {
  width: 1.5rem;
}
.header-cats {
  background: #000;
  padding: 1.25rem 0;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  color: #fff;
}
@media screen and (max-width: 47.99875em) {
  .header-cats {
    padding: 1rem 0;
    font-weight: 500;
  }
}
.header-cats__item {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.header-cats__item:hover {
  opacity: 0.7;
}
.header-cats [class*=__container] {
  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: #fff;
  gap: 5rem;
}
@media screen and (max-width: 61.99875em) {
  .header-cats [class*=__container] {
    gap: 2.5rem;
  }
}
@media screen and (max-width: 47.99875em) {
  .header-cats [class*=__container] {
    gap: 1.5rem;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    overflow: scroll;
  }
  .header-cats [class*=__container]::-webkit-scrollbar {
    display: none;
  }
}
@media screen and (max-width: 61.99875em) {
  .header-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 19;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .header-overlay.active {
    opacity: 1;
    visibility: visible;
  }
}

.page-breadcrumbs {
  font-weight: 400;
  font-size: 1rem;
  line-height: 90%;
  color: #000;
  margin-bottom: 2.5rem;
}
@media (max-width: 47.99875em) {
  .page-breadcrumbs {
    margin-bottom: 1.5rem;
    line-height: 1.3;
    white-space: nowrap;
    overflow-y: scroll;
  }
  .page-breadcrumbs::-webkit-scrollbar {
    display: none;
  }
}
.page-breadcrumbs__item:not(:last-child)::after {
  content: "›";
  margin: 0 10px;
}
.page-breadcrumbs__item:last-child {
  color: #aaa;
}

.footer {
  background: #f4f4f4;
  padding: 3.75rem 0;
}
@media screen and (max-width: 47.99875em) {
  .footer {
    padding: 2.5rem 0;
  }
}
.footer__container {
  max-width: 1160px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
@media screen and (max-width: 61.99875em) {
  .footer__container {
    grid-template-columns: 1fr 1fr;
    grid-gap: 3.75rem;
  }
}
@media screen and (max-width: 47.99875em) {
  .footer__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2.5rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.footer__title {
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  color: #000;
}
.footer__title--normal {
  font-weight: normal;
}
@media screen and (max-width: 47.99875em) {
  .footer-logo {
    width: 100%;
  }
}
.footer-logo img {
  width: 10.625rem;
  height: auto;
}
.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: 1.25rem;
}
@media screen and (max-width: 47.99875em) {
  .footer-nav {
    gap: 0.9375rem;
  }
}
.footer-nav__link {
  color: #000;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  font-weight: 400;
  font-size: 1rem;
}
.footer-nav__link:hover {
  opacity: 0.7;
}
.footer-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: 2.5rem;
}
@media screen and (max-width: 47.99875em) {
  .footer-contacts {
    gap: 1.875rem;
  }
}
.footer-contacts-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.footer-contacts-item__underlined {
  text-decoration: underline !important;
}
.footer-contacts-item__link {
  color: #000;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  margin-top: 1.25rem;
  font-weight: 600;
  font-size: 1.25rem;
  text-decoration: none;
}
@media screen and (max-width: 47.99875em) {
  .footer-contacts-item__link {
    margin-top: 0.9375rem;
  }
}
.footer-contacts-item__link:hover {
  opacity: 0.7;
}
.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;
}
.footer-socials .footer__title {
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 47.99875em) {
  .footer-socials .footer__title {
    margin-bottom: 0.9375rem;
  }
}

.socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.875rem;
}
@media screen and (max-width: 47.99875em) {
  .socials {
    gap: 1.25rem;
  }
}
.socials-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;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.socials-item:hover {
  opacity: 0.7;
}
.socials-item img {
  width: 1.5rem;
}