/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth body {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:root {
  --primary-color: rgba(37, 37, 37, 1);
  --black2: rgba(101, 101, 100, 1);
  --secondary-color: #4a4a4a;
  --accent-color: #8B4513;
  --sale-color: rgba(204, 18, 18, 1);
  --text-color: rgba(37, 37, 37, 1);
  --bg-light: #f8f8f8;
  --bg-white: #ffffff;
  --bg: #FAF8F4;
  --border-color: #e0e0e0;
  --transition: all 0.3s ease;
  --height: clamp(27px, 3.5vw, 55px);
  --width: clamp(29px, 3.5vw, 49px);
  --h1: 128px;
  --h2: 64px;
  --h3: 48px;
  --h4: 36px;
  --h5: 26px;
  --h6: 20px;
  --bone: 30px;
  --bone_w: 1680px;
  --bone_size: max((100vw - var(--bone_w) - 10px) / 2, var(--bone));
  --swiper-navigation-size: 30px;
  --text2: 18px;
  --small: 14px;
  --text3: 16px;
  --i1: clamp(60px, 10vw, 160px);
  --scrollbar-size: 5px;
  --scrollbar-color: #D9D9D9;
  --scrollbar-tumb: var(--primary-color);
  --scrollbar-radius: 0px;
  --h2-account: clamp(28px, 3.5vw, 64px); 
}

/* 1200 – 1739 */
@media (min-width: 1201px) and (max-width: 1740px) {
  :root {
    --h2: 42px;
    --h3: 32px;
    --text3: 12px;
    --text2: 16px;
    --h1: 86px;
    --h5: 18px;
    --h4: 24px;
    --h6: 18px;
    --small: 11px;
  }

}

/* 768 – 1199 */
@media (min-width: 769px) and (max-width: 1200px) {
  :root {
    --h2: 26px;
    --h3: 22px;
    --text3: 12px;
    --text2: 13px;
    --h1: 54px;
    --h5: 14px;
    --h4: 16px;
    --h6: 14px;
    --swiper-navigation-size: 26px;
    --small: 11px;
  }
}

/* 360 – 767 */
@media (min-width: 320px) and (max-width: 768px) {
  :root {
    --h2: 28px;
    --h3: 24px;
    --text3: 11px;
    --text2: 12px;
    --h1: 40px;
    --h5: 12px;
    --h4: 20px;
    --h6: 14px;
    --swiper-navigation-size: 26px;
    --small: 10px;
  }
}

@media (hover: hover) {
  :root {
    scrollbar-width: thin;
    scrollbar-color: var(--scrollbar-tumb) var(--scrollbar-color);
  }

  *::-webkit-scrollbar {
    width: 4px;
    height: 4px;
  }

  *::-webkit-scrollbar-track {
    background: var(--scrollbar-color);
  }

  *::-webkit-scrollbar-thumb {
    background: var(--scrollbar-tumb);
    border-radius: 0;
  }

  *::-webkit-scrollbar-thumb:hover {
    background: var(--scrollbar-tumb);
  }
}


html *::-webkit-scrollbar {
  width: 4px;
}

.main-swiper {
  position: relative;
}

.main-swiper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
  pointer-events: none;
}

.hero-container,
.blocr-banner-line {
  position: relative;
  z-index: 2;
}

._h1,
.content h1,
.banner-swiper .slider_title {
  font-weight: 400;
  font-size: var(--h1);
  line-height: 1.25;
  text-transform: uppercase;
}

.banner-swiper .slider_title {
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
}

/* 300 - Light */
@font-face {
  font-family: 'Gilroy';
  src: url('/front/assets/fonts/Gilroy-Light.woff2') format('woff2'),
    url('/front/assets/fonts/Gilroy-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('/front/assets/fonts/Gilroy-Regular.woff2') format('woff2'),
    url('/front/assets/fonts/Gilroy-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('/front/assets/fonts/Gilroy-Medium.woff2') format('woff2'),
    url('/front/assets/fonts/Gilroy-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('/front/assets/fonts/Gilroy-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

.flex {
  display: flex;
}


body {
  font-family: 'Gilroy', sans-serif;
  color: var(--text-color);
  line-height: 1.0;
  letter-spacing: 0.05em;
  font-size: 20px;
  font-weight: 400;
  background: rgba(250, 248, 244, 1);
}

/* Chrome, Edge, Safari */
html::-webkit-scrollbar {
  width: 4px;
  /* ширина скролбару */
}

html::-webkit-scrollbar-track {
  background: rgba(37, 37, 37, 0.1);
  border-radius: 0 !important;
}

html::-webkit-scrollbar-thumb {
  background: rgba(37, 37, 37, 1);
  border-radius: 0;
}

html::-webkit-scrollbar-thumb:hover {
  background: rgba(37, 37, 37, 1);
}

.container {
  max-width: 1720px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

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

li {
  list-style: none;
}

.mob {
  display: none !important;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2001;
  transition: var(--transition);
  opacity: 0;
}

.header {
  transition: background 0.83s ease, transform 0.6s ease !important;
}

.header:not(.header-main) {
  background: var(--bg);
}


.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 40px;
}

.logo a {
  transition: var(--transition);
}

.logo a:hover {
  opacity: 0.7;
}


.main-nav {
  display: flex;
  gap: 60px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  display: flex;
  gap: 4px;
  align-items: center;
  font-size: var(--text2);
  text-transform: uppercase;
  position: relative;
  letter-spacing: 0.05em;
  color: #fff;
  line-height: 1;
  transition: var(--transition);
  font-weight: 400;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #fff;
  transition: var(--transition);
}

.nav-link--menu::after {
  content: '';
  display: block;
  width: 30px;
  height: 30px;
  background: url('/front/assets/images/icons/arrow_right_light_white.svg') no-repeat center;
  background-size: cover;
  transition: var(--transition);
}

.logo a img {
  height: 30px;
  width: auto;
  transition: var(--transition);
}


.header.scrolled {
  background: #FAF8F4;
}

.header .logo a img,
.header .icon-btn {
  filter: brightness(0) saturate(100%) invert(100%);
  transition: var(--transition) !important;
}

.header.scrolled .logo a img,
.header.scrolled .icon-btn,
.header:not(.header-main) .logo a img,
.header:not(.header-main) .icon-btn {
  filter: brightness(0);
}

.header.scrolled .nav-link,
.header.scrolled .cart-btn,
.menu-open .cart-btn,
.header:not(.header-main) .cart-btn,
.header:not(.header-main) .nav-link {
  color: #000;
}

.header.scrolled .nav-link--menu::after,
.header:not(.header-main) .nav-link--menu::after {
  background: url('/front/assets/images/icons/arrow_right_light_dark.svg') no-repeat center;
  background-size: contain;
}

.header.scrolled .nav-link::before,
.header:not(.header-main) .nav-link::before {
  background: #000;
}

.nav-link .arrow {
  font-size: 14px;
  margin-left: 4px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.icon-btn {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
  position: relative;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  height: 30px;
  margin-top: 4px;
  justify-content: center;
}

.menu-toggle span {
  width: 17.5px !important;
  height: 1px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

.menu-toggle.active span {
  width: 20px !important;
}


.menu-toggle.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.header-nav {
  display: flex;
  gap: 120px;
  align-items: center;
}

/* Sidebar Menu */
.sidebar-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  max-width: 520px;
  width: 100%;
  background: rgba(250, 248, 244, 1);
  z-index: 2001;
  transform: translateX(-100%);
  transition: transform 0.75s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
  overflow-y: auto;
}

.sidebar-menu.active {
  transform: translateX(0);
}

.sidebar-wrapper {
  overflow-y: auto;
  display: flex;
  overflow-x: hidden;
  flex-direction: column;
  gap: 10px;
  padding: 30px 60px 60px;
  scrollbar-width: thin;
  /* Firefox */
  scrollbar-color: rgba(37, 37, 37, 0.1);
  /* Firefox */
}

/* Chrome, Edge, Safari */
.sidebar-wrapper::-webkit-scrollbar {
  width: 4px;
  /* ширина скролбару */
}

.sidebar-wrapper::-webkit-scrollbar-track {
  background: rgba(37, 37, 37, 0.1);
  border-radius: 0 !important;
}

.sidebar-wrapper::-webkit-scrollbar-thumb {
  background: rgba(37, 37, 37, 1);
  border-radius: 0;
}

.sidebar-wrapper::-webkit-scrollbar-thumb:hover {
  background: rgba(37, 37, 37, 1);
}


.sidebar-wrapper .menu-link {
  height: 24px;
}

.close-menu {
  color: var(--primary-color);
}

.nav-link--menu.close-menu::before {
  background: #000;
}

.sidebar-nav {
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px;
  font-size: 20px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  width: 100%;
  text-align: left;
  transition: var(--transition);
  color: rgba(35, 35, 35, 1);
}

.menu-link.sale-link {
  color: var(--sale-color);
  font-weight: 600;
  font-size: 20px;
}


.cart-btn {
  display: flex;
  gap: 4px;
  align-items: center;
  font-weight: 400;
  color: #fff;
  font-size: 16px;
  line-height: 100%;
}

.cart-btn a {
  transition: var(--transition);
}

.submenu {
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.menu-item.active .submenu {
    max-height: 1000px;
}

.has-submenu .menu-link::after {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  background: url('/front/assets/images/icons/expand_down.svg') no-repeat center;
  background-size: contain;
  transition: all 0.4s ease;
}

.has-submenu.active .submenu {
  max-height: max-content;
  padding-top: 16px;
  padding-bottom: 16px;
}

.has-submenu.active .menu-link::after {
  transform: rotate(180deg);
}

.submenu-link {
  display: block;
  padding-left: 30px;
  font-size: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition);

}

.submenu-link:hover {
  transform: translateX(15px);
  color: var(--black2);
}

.menu-item.has-submenu .submenu {
    display: flex;
    flex-direction: column;
    gap: 10px;

    max-height: 0;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;

    /* transition:
        max-height 0.8s ease,
        padding-top 0.8s ease,
        padding-bottom 0.8s ease; */
}

/* Hero Slider */
.hero-block {
  position: relative;
  min-height: 100dvh;
  height: max-content;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.slider-wrapper {
  position: relative;
  height: 100%;
}

.hero-block img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-container {
  position: relative;
  height: 100vh;
  width: 100%;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  color: white;
  text-align: center;
  z-index: 10;
}

.hero-title {
  display: flex;
  gap: 40px;
  font-size: 260px;
  font-weight: 400;
  align-items: flex-end;
  white-space: normal;
  /* дозволяє переноси рядків */
  word-break: break-word;
  /* переносить довгі слова */
  overflow-wrap: anywhere;

  width: max-content;
  max-width: 100%;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1;
}

.hero__divider {
  width: 100%;
  /* на всю ширину контейнера */
  height: 1px;
  background: white;
  margin: 20px 0;
  opacity: 0.8;
  min-width: 10%;
  flex-shrink: 1;
}

.hero-subtitle {
  font-size: 64px;
  letter-spacing: 0.05em;
  width: max-content;
  max-width: 100%;
  flex-shrink: 0;
  text-transform: uppercase;
}

.hero-subtitle:not(:first-child) {
  margin-top: -20px;
}

.hero-nav {
  position: absolute;
  bottom: 40px;
  right: 0;
  width: 100%;
  z-index: 20;
}

.hero-nav .container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 50px;
  width: 100%;
}

/* Sections */
.section-title {
  font-size: var(--h3);
  font-weight: 400;
  line-height: 1.17;
}

.section-title--center {
  text-align: center;
}

.section-text {
  font-weight: 300;
  font-size: 20px;
  line-height: 1.16;
  letter-spacing: 0.02em;
}

.section-divider {
  max-width: 200px;
  /* на всю ширину контейнера */
  height: 1px;
  width: 100%;
  background: #4D3D3080;
  flex-shrink: 0;
  margin-bottom: 6px;
}

/* About Section */
.about-section {
  padding: 160px 0 20px;
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 650px 1fr;
  gap: 0;
  align-items: flex-start;
}

.about-images {
  position: relative;
}

.about-images .parallax-bg-wrapper {
  position: relative;
  aspect-ratio: 400/500;
  overflow: hidden;
}

.about-images .parallax-bg {
  position: absolute;
  top: -20px;
  left: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.4s ease;
}

.about-images .parallax-bg-wrapper:first-child {
  width: 100%;
}

.about-images .parallax-bg-wrapper:last-child {
  position: absolute;
  top: 230px;
  left: 350px;
  width: 100%;
}

/* напрямок появи */
.parallax-bg.from-top {
  transform: translateY(-30px);
}

/* клас, який додається при появі в viewport */
.parallax-bg.visible {
  opacity: 1;
  transform: translateY(0);
}

.parallax-wrapper {
  position: relative;
  overflow: hidden;
}

.about-content .section-title {
  max-width: 925px;
}

.about-content .section-text {
  max-width: 450px;
  margin-left: 180px;
}

.about-content .section-title:not(:last-child) {
  margin-bottom: 80px;
}

.about-text {
  font-size: 16px;
  line-height: 1.8;
  margin: 30px 0;
  color: var(--secondary-color);
}

.btn-catalog {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 35px;
  border: 1px solid var(--primary-color);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: var(--transition);
  background: transparent;
}

.btn-catalog:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-catalog.white {
  border-color: white;
  color: white;
}

.btn-catalog.white:hover {
  background: white;
  color: var(--primary-color);
}

/* Products Section */
.products-section {
  padding: 220px 0;
}

.products-section .anime-link {
  font-size: 20px;
  flex-shrink: 0;
}

.section-header {
  display: flex;
  gap: 20px;
  align-items: flex-end;
}

.section-header:not(:last-child) {
  margin-bottom: 62px;
}

.view-all {
  display: flex;
  gap: 10px;
  align-items: center;
  text-transform: uppercase;
  transition: var(--transition);
}

.view-all::after {
  content: '';
  display: block;
  width: 30px;
  height: 30px;
  background: url(/front/assets/images/icons/arrow_right_light_dark.svg) no-repeat center;
  background-size: cover;
  transform: scaleX(-1) rotate(180deg);
  transition: var(--transition);
}

.view-all:hover {
  transform: translateX(5px);
}

.products-swiper .swiper-slide {
  width: auto;
}

.product_badges {
  position: absolute;
  top: 10px;
  left: 0;
  display: flex;
  gap: 6px;
  flex-direction: column;
  z-index: 3;
}

.badge {
  font-weight: 400;
  font-size: var(--text2);
  line-height: 100%;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  text-transform: uppercase;
}


.badge--sale {
  background: var(--sale-color);
  color: #fff;
}

.badge--soldout {
  background-color: rgba(37, 37, 37, 1);
  color: #fff;
}

.product-name {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1.4;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}


.product-delivery {
  font-size: 11px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Sale Banner */
.sale-banner {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.banner-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.banner-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
}

.banner-title {
  font-size: var(--h2);
  font-weight: 300;
  letter-spacing: 6px;
  margin-bottom: 20px;
}

.banner-text {
  font-size: 16px;
  letter-spacing: 1px;
  margin-bottom: 30px;
  max-width: 600px;
}

/* Collection Section */
.collection-section {
  padding: 100px 0;
}

.collection-grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr;
  gap: 0;
  align-items: flex-start;
}

.collection-info {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
}

.collection-image img {
  width: 100%;
  height: 100%;
  transform: translateY(0) scale(1.08);
  will-change: transform;
  transition: transform 0.4s ease;
  object-fit: cover;
}

.collection-image {
  aspect-ratio: 715/820;
  width: 100%;
  overflow: hidden;
  position: relative;
  max-height: calc(100vh - 80px);
}

/* легке затемнення для глибини */
.collection-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.12));
}

.collection-info>* {
  min-width: 0;
}

.collection-list {
  display: flex;
  flex-direction: column;
  gap: 50px;
  position: relative;
  padding-top: 220px;
  margin-top: -220px;
  -webkit-mask-image: linear-gradient(to bottom,
      transparent 0,
      black 220px);

  mask-image: linear-gradient(to bottom,
      transparent 0px,
      black 80px,
      black 100%);
}

.collection-list .product-card__img-wrap {
  height: 94%;
}

@media (min-width:769px) {
  .collection-list::before {
    content: '';
    position: sticky;
    top: var(--before-top, 0);
    left: 0;
    display: block;
    width: 100%;
    height: 250px;
    background: linear-gradient(to bottom,
        var(--bg) 0%,
        var(--bg) calc(100% - 50px),
        rgba(250, 248, 244, 0.8) 100%);
    z-index: 10;
    transform: var(--before-transform, translateY(0));

  }


}

.collection-list.hide-label::before {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.collection-image:hover img,
.collection-image-small:hover img {
  transform: scale(1.02);
}

.collection-content {
  margin-left: -80px;
  z-index: 2;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.collection-content .btn-main {
  margin-bottom: 60px;
}

.collection-title {
  font-size: var(--h3);
  font-weight: 400;
  width: 100%;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 30px;
  margin-right: max(-140px, -8vw);
}

.image-caption {
  margin-top: 10px;
  font-size: 13px;
  color: var(--secondary-color);
}

/* Categories Section */
.categories-section {
  padding: 160px 0 120px;
}

.categories__title {
  text-align: center;
  font-size: var(--h3);
  text-transform: uppercase;
  margin-bottom: 52px;
  font-weight: 400;
}

.categories__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  grid-template-areas:
    "sets      top        underwear"
    "clothes   top        accessories";
  gap: 50px;
}

.category,
.category * {
    -webkit-tap-highlight-color: transparent;
}

.category {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px 20px;
  overflow: hidden;
  text-decoration: none;
  color: white;
  isolation: isolate;

}


.category-sets {
  grid-area: sets;
}

.category-top {
  grid-area: top;
}

.category-underwear {
  grid-area: underwear;
}

.category-clothes {
  grid-area: clothes;
}

.category-cosmetics {
  grid-area: cosmetics;
}

/* якщо треба окремо */
.category-accessories {
  grid-area: accessories;
}


.category-cosmetics {
  grid-column: 2;
  grid-row: 2;
  aspect-ratio: 640/680;
  margin-top: 35%;

}

.category-top {
  aspect-ratio: 640/800;
}

.category--small {
  aspect-ratio: 470/600;
}

.category img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.category span {
  font-size: 26px;
  letter-spacing: 0.05em;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
}

.category-actions {
  display: flex;
  align-items: flex-end;
  gap: 0;
  position: relative;
  z-index: 2;
  width: 100%;

}

.category-divider {
  flex: 1;
  height: 0.7px;
  background: white;
  transition: all 0.5s ease;
  margin-bottom: 4px;
}

.category-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateX(100%);
  pointer-events: none;
  font-size: 20px;
  font-weight: 300;
  text-transform: uppercase;

  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.category-btn img {
  filter: brightness(0) invert(1);
}

.category:hover .category-btn {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

/* Overlay */
.category::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 66.83%, rgba(0, 0, 0, 0.2) 100%);
  pointer-events: none;
  z-index: 1;

}

/* Mobile */
.categories__slider {
  display: none !important;
}



.twins_images img {
  transition: transform 0.4s ease;
}

.instagram-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.twins_images:hover .instagram-overlay {
  opacity: 1;
}

.twins_images img:hover {
  transform: scale(1.1);
}

.banner-slider {
  position: relative;
}

.hero-video-mobile {
  display: none;
}


.arrow-rotate {
  transform: rotate(-90deg);
}

.twins_net {
  display: flex;
  gap: 22px;
  align-items: flex-end;
  border-bottom: 1px solid rgba(160, 160, 159, 1);
  padding-bottom: 32px;
  justify-content: space-between;
}

.twins_left {
  gap: 30px;
}

.twins_title::before {
  content: '';
  width: clamp(16px, 1.58vw, 25px);
  height: clamp(37px, 3.67vw, 74px);
  background-image: url('/front/assets/images/icons/slesh.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.twins_title {
  gap: 30px;
  align-items: flex-end;
  font-weight: 400;
  font-size: var(--h4);
  line-height: 100%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.twins_right {
  align-items: flex-end;
  gap: 30px;
}

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

.twins_images img {
  height: 100px;
  min-width: 100px;
  width: 100px;
  object-fit: cover;
}

.twins_link {
  align-items: center;
  gap: 10px;
}

.anime-link {
  font-weight: 300;
  font-size: var(--h5);
  line-height: 1;
  text-transform: uppercase;
  align-items: center;
  transition: var(--transition);
  transition: all 0.3s ease;
}

.anime-link-inst img {
  transition: none !important;
}

.anime-text {
  display: flex;
  align-items: center;
}

.anime-link__arrows {
  width: 36px;
  height: 36px;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.anime-link__arrows2 {
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.anime-link img:last-child {
  position: absolute;
  transform: translate(-90%, 90%);
  opacity: 0;
}

.anime-link:hover img:last-child {
  transform: translate(0);
  opacity: 1;
}

.anime-link:hover img:first-child {
  transform: translate(90%, -90%);
  opacity: 0;
}

.btn.btn-main {
  display: flex;
  align-items: center;
  justify-content: center;
  --size: 300px;
  --color: var(--primary-color);
  flex-direction: column;
  width: var(--size);
  height: var(--size);
  border: 1px solid var(--black2, rgba(101, 101, 100, 1));
  font-size: var(--h5);
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1;
  background-color: transparent;
  border-radius: 50%;
  will-change: transform;
}

.btn.btn-main:hover {
  background-color: var(--primary-color);
  color: var(--bg-light);
}

.btn.btn-white {
  color: #fff;
  border-color: #fff;
}

.btn.btn-white:hover {
  background-color: rgba(255, 255, 255, .1);
  backdrop-filter: blur(5px);
}

.btn.btn-main:after {
  --size: 100px;
  content: '';
  width: var(--size);
  height: var(--size);
  background-image: url(./assets/images/icons/arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: var(--transition);
}

.btn.btn-main:hover::after {
  filter: brightness(0) saturate(100%) invert(100%);
}

.btn.btn-white {
  color: #fff;
  border-color: #fff;
}

.btn.btn-white:hover {
  background-color: rgba(255, 255, 255, .1);
  backdrop-filter: blur(5px);
}

.btn.btn-white::after {
  filter: brightness(0) saturate(100%) invert(100%);
}

.about-section .container {
  position: relative;
}

.about-section .btn-main {
  margin-top: -10px;
  margin-left: auto;
}

.popular_list {
  padding-bottom: 5px;
}

.card_tag {
  --color: #FFF;
  position: absolute;
  top: 10px;
  left: 0;
  padding: 5px 12px 3px;
  font-size: var(--text2);
  background-color: var(--sale-color);
  z-index: 1;
}

.card_content {
  position: relative;
  padding-top: 15px;
  background-color: var(--bg);
  z-index: 1;
  transition: margin .43s;
}

.card_name {
  display: block;
  font-weight: 300;
}

.card_price {
  display: flex;
  align-items: flex-end;
  grid-gap: 15px;
  margin-top: 8px;
  font-size: var(--h6);
  font-weight: 300;
  letter-spacing: .02em;
}

/* ── product-card ── */
.product-card {
  background: transparent;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 320/497;
  max-width: 420px;
  width: 100%;
}

/* ── Image wrapper fills entire product-card ── */
.product-card__img-wrap {
  position: absolute;
  inset: 0;
  height: 90%;

}

.product-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
}

.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* placeholder when no real image */
.product-card__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* ── Badge NEW ── */
.badge--new {
  background: var(--sale-color);
  color: #fff;
}

/* ── Wishlist icon ── */
.product-card__wish {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 4;
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px;
  line-height: 1;
  opacity: 0;
  transform: scale(.8);
  transition: opacity .25s ease, transform .25s ease;
}

.product-card:hover .product-card__wish {
  opacity: 1;
  transform: scale(1);
}

.product-card__wish svg {
  display: block;
}

.product-card__wish.active {
  opacity: 1;
  transform: scale(1);
}

.product-card__wish.active svg path {
  fill: #e00550;
  stroke: #e00550;
}

/* ── Sold out overlay ── */
.sold-out-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.sold-out-label {
  font-weight: 500;
  font-size: 32px;
  line-height: 100%;
  padding-bottom: clamp(10px, 1.5vw, 20px);
  text-transform: uppercase;
}

/* ── Info + CTA overlay at bottom of product-card ── */
.product-card__bottom {
  position: absolute;
  bottom: 1px;
  left: -1px;
  right: -1px;
  z-index: 5;
  background: rgba(250, 248, 244, 1);
}

/* ── Info block ── */
.product-card__info {

  padding: 15px 2px;

}

/* ── Hover CTA ── */
.product-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 37, 37, 1);
  color: #fff;
  font-weight: 300;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: center;
  padding: 0;
  opacity: 0;
  overflow: hidden;

  width: 100%;
  height: 0;
}

.product-card:hover .product-card__cta {
  opacity: 1;
  height: 44px;
  padding: 10px 0;
}

.product-card__title {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.1;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__vendor {
  font-size: 9px;
  color: #999;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.product-card__price {
  display: flex;
  align-items: baseline;
  gap: 15px;
  flex-wrap: wrap;
  padding-top: 5px;
}

.price-current {
  font-weight: 300;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0.02em;
  color: rgba(204, 18, 18, 1);
}

.price-old {
  font-weight: 300;
  font-size: 16px;
  line-height: 100%;
  text-decoration: line-through;
}

/* ── Bottom note (доставка) ── */
.product-card__delivery {
  font-weight: 400;
  background: #FFFFFF;
  font-size: 12px;
  line-height: 1.18;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 5px 20px;
  color: rgba(101, 101, 100, 1);
  position: absolute;
  bottom: 0;
  width: 100%;
  aspect-ratio: 320 / 37.61;
}

.slider {
  --color: var(--white);
  position: relative
}

.banner-swiper {
  height: 760px;
}

.slider .swiper-slide {
  height: 100%;
  position: relative;
  overflow: hidden;
}

.slider .swiper-slide img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.slider .swiper-slide:after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(180deg,
      rgba(19, 11, 4, 0.05) 0%,
      rgba(19, 11, 4, 0.25) 100%);
  z-index: 1
}

.slider .swiper-slide .container {
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(60px, 8.33vw, 140px);
  z-index: 2;
  color: #fff;
}

.slider_title_wrapper {
  overflow: hidden
}

.slider_content {
  font-size: var(--h5);
  font-weight: 300;
  text-transform: uppercase;
  max-width: 800px;
  width: 100%;
  letter-spacing: 0.05em;
  line-height: 1;
}



.slider_content p {
  font-weight: 300;
  line-height: 1.16;
}


.slider_content p+p {
  margin-top: 1em;
  max-width: min(100% - 360px, 70%)
}

.slider_nav {
  --swiper-navigation-size: clamp(20px, 2vw, 30px);
  --swiper-navigation-color: var(--white);
  --swiper-pagination-color: transparent;
  --swiper-pagination-bullet-size: 24px;
  --swiper-pagination-bullet-horizontal-gap: 0;
  --swiper-pagination-bullet-inactive-color: transparent;
  --swiper-pagination-bullet-inactive-opacity: .6;
  display: flex;
  align-items: center;
  grid-gap: 50px;
  position: absolute;
  bottom: 50px;
  z-index: 2
}

.slider_nav .swiper-pagination {
  display: flex;
  align-items: center;
  grid-gap: 40px;
}

.slider_nav .swiper-pagination-bullet,
.hero-swiper .swiper-pagination-bullet {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: auto;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #fff;
  font-weight: 300;
  background: none !important;
  opacity: 0.6 !important;
  margin: 0 !important;
}

.slider_nav .swiper-pagination-bullet:before,
.hero-swiper .swiper-pagination-bullet::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  border-bottom: 1px solid #fff;
  transition: width .43s
}

.slider_nav .swiper-pagination-bullet-active,
.hero-swiper .swiper-pagination-bullet-active {
  opacity: 1 !important;
}

.slider_nav .swiper-pagination-bullet-active:before,
.hero-swiper .swiper-pagination-bullet-active:before {
  width: 100%;

}

.submenu > a:first-child {
    padding-top: 16px;
}

.submenu > a:last-child {
    padding-bottom: 16px;
}

.slider_nav .swiper-button-next,
.slider_nav .swiper-button-prev,
.slider_nav .swiper-pagination {
  position: static
}

.slider_nav .swiper-button-next,
.slider_nav .swiper-button-prev {
  width: var(--swiper-navigation-size);
  min-width: var(--swiper-navigation-size);
  margin: 0;
  border: 0.5px solid transparent;
  border-radius: 50%;
  transition: var(--transition);
  color: #fff;
}


.slider_nav .swiper-button-next:hover,
.slider_nav .swiper-button-prev:hover {
  border-color: var(--swiper-navigation-color)
}

.slider_nav .swiper-button-next:after,
.slider_nav .swiper-button-prev:after {
  font-size: calc(var(--swiper-navigation-size)/ 2)
}

.slider_catalog {
  position: absolute;
  right: 0;
  bottom: 50px;
  z-index: 2
}

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

.collection_fixed {
  position: sticky;
  top: 80px;
  z-index: 2;
  height: calc(100vh - 80px);
  will-change: transform;
}

.instagram-grid {
  --net: 6;
  display: grid;
  grid-template-columns: repeat(var(--net), 1fr);
  grid-gap: clamp(5px, .58vw, 12px);
}

.instagram-item {
  width: 100%;
  position: relative;
  display: block;
  overflow: hidden;
}

.instagram-item img {
  object-fit: cover;
  height: auto;
  width: 100%;
  aspect-ratio: 1/1;
  transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity .4s cubic-bezier(0.4, 0, 0.2, 1);
}

.instagram-item {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .6s ease, transform .6s ease;
}

.instagram-item.show {
  opacity: 1;
  transform: translateY(0);
}

.footer_net {
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: space-between;
  margin-top: 92px;
  gap: 10px;
}

.footer_bottom {
  grid-gap: 25px 40px;
  margin-top: 80px;
  font-weight: 300;
  white-space: nowrap;
  justify-content: space-between;
  align-items: center;
}

.footer_left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
}

.footer_telegram_link .anime-link__arrows {
  width: 30px;
  height: 30px;
  margin-left: 10px;
}

.footer_telegram_link {
  display: flex !important;
  font-weight: 400 !important;
  margin-top: 12px;
  letter-spacing: 0.05em;
  line-height: 1;
  font-size: var(--text2);
}

.footer_pay {
  display: flex;
  gap: 40px;
  align-items: center;
}

.footer_left p {
  font-size: var(--text3);
}

.footer_contact p {
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1;
}

.footer_right {
  width: 100%;
  max-width: min(55vw, 950px);
}

.footer_nav {
  display: grid;
  align-items: flex-start;
  grid-template-columns: 3fr 1fr;
  grid-gap: 20px;
}

.footer_nav ul {
  column-count: 2;
  column-gap: 148px;
  break-inside: avoid;
  text-transform: uppercase;
}

.footer_nav .menu-item:not(:last-child) {
  margin-bottom: 24px;
}

.footer_soc {
  --size: clamp(22px, 2.67vw, 42px);
  --gap: clamp(20px, 2vw, 30px);
  --color: var(--black2);
  --hover: var(--primary-color);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer_soc p,
.footer_mail p:first-child {
  font-weight: 300;
  font-size: var(--text3);
  letter-spacing: 0.05em;
}

.soc {
  display: flex;
  align-items: center;
  gap: 30px;
  width: 144px;
  justify-content: space-between;
}


.categories-section .bar_nav {
  padding: 0 !important;
  overflow: hidden;
  width: 100%;
  margin-top: clamp(30px, 4.17vw, 70px);
  margin-left: clamp(10px, 4.17vw, 70px);
}

.bar_nav ul {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.bar_nav ul li {
  font-weight: 400;
  font-size: var(--h4);
  line-height: 100%;

  text-transform: uppercase;
  color: rgba(37, 37, 37, 0.7);
  display: flex;
  gap: 15px;
}

.bar_nav ul li span {
  font-size: 16px;
}

.bar_nav>ul>li:before {
  content: '';
  display: block;
  width: 0;
  margin-bottom: calc(var(--gap) / 2 + 8px);
  border-bottom: 1px solid rgba(37, 37, 37, 0.7);
  transition: width .43s;
}

.bar_nav>ul>li:hover::before {
  width: 150px;
}

.section-title .anime-link {
  font-size: inherit;
  font-weight: inherit;
  text-decoration: none;
  position: relative;
}

.section-title .anime-link__text {
  position: relative;
}

.section-title .anime-link__text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
}

.instagram-section {
  padding-top: 80px;
  padding-bottom: 220px;
}

.instagram-section .section-title {
  gap: 14px;
  align-items: center;
}

.instagram-section .section-title:not(:last-child) {
  margin-bottom: 80px;
}

.flex-center {
  justify-content: center;
}

#footer-content {
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
  max-height: 0;
}

#footer-content.is-open {
  opacity: 1;
  margin-bottom: 24px;
  max-height: max-content;
}



.seo .content,
.footer_trigger {
  font-weight: 300;

  line-height: 100%;
  font-size: var(--text3);

  color: rgba(160, 160, 159, 1);
}

.footer_first {
  padding-top: clamp(30px, 3.33vw, 50px);
  margin-bottom: 24px;
}

.footer_trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.trigger-icon {
  transition: transform 0.3s ease;
}

/* Поворот стрілки, коли відкрито */
.footer_trigger.is-open .trigger-icon {
  transform: rotate(180deg);
}

.footer_instagram a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(160, 160, 159, 1);
  font-weight: 400;
  font-size: var(--h2);
  line-height: 100%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-chat {
  background: var(--black2, rgba(101, 101, 100, 1));
  padding: 6px 20px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  margin-right: 5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  width: max-content;
  max-width: 100%;
}

.footer-chat img {
  flex-shrink: 0;
  width: 21px;
  height: 21px;
  object-fit: contain;
}

.footer_nav:not(:first-child) {
  margin-top: 70px;
}

.footer_logo {
  width: 100%;

}

.footer_logo a {
  filter: invert(45%) sepia(0) saturate(1876%) hue-rotate(144deg) brightness(82%) contrast(82%);

}

.footer_instagram a img {
  width: var(--width);
  height: var(--height);
  transition: none;
}

.accent {
  color: var(--sale-color);
}

.footer_contact {
  display: flex;
  flex-direction: column;
  gap: 38px;
}

.footer_contact a,
#footer_soc-desktop a {
  display: block;
  font-size: var(--text2);
  text-transform: uppercase;
  letter-spacing: 5%;
}

#footer_soc-desktop {
  display: flex;
  width: 100%;
  align-items: flex-start;
  gap: 110px;

}

#footer_soc-desktop:not(:first-child) {
  margin-top: 38px;
}

.footer_desing {
  grid-gap: 8px;
  align-items: center;
}

.footer {
  padding-bottom: 20px;
}

.footer_links {
  grid-gap: clamp(30px, 2.5vw, 50px);
}

.footer_links a,
.footer_cop {
  font-size: var(--text3);
  letter-spacing: 0.05em;
  font-weight: 300;
  color: rgba(37, 37, 37, 1);
}

.twins_logo img {
  height: 101.49px;
  width: 365.69px;
}

.custom-logo-link {
  height: 160px;
  display: block;
}

.custom-logo-link img {
  height: 100%;
}

.soc li {
  flex-shrink: 0;
  transition: var(--transition);
}

.footer_instagram p {
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.02em;
}

.soc li:hover {
  transform: scale(1.1);
}

#footer_soc-mob {
  display: none;
}

.header_basket {
  display: none;
}

.menu-item {
  font-size: 18px;
}

.footer_links a:hover {
  color: #000;
}


.bar_nav_bottom ul li {
  font-weight: 400;
}

#nav-mob {
  display: none;
}

.footer_position,
.footer_cop,
.footer_desing {
  font-size: var(--text3);
}

.menu-open .icon-btn {
  filter: brightness(0);
}

body.menu-open {
  overflow: hidden !important;
}

html {
  scrollbar-gutter: stable;
}

.product-card__wish img:last-child {
  display: none;
}

.product-card__wish.active img:first-child {
  display: none;
}

.product-card__wish.active img:last-child {
  display: block;
}

.popular_list .swiper-pagination-bullet-active {
  background: var(--primary-color);
}

/* cart */
.cart {
  position: fixed;
  top: 0;
  right: 0;
  max-width: 600px;
  width: 100%;
  height: 100dvh;
  max-height: 100dvh;
  background: #fff;
  z-index: 2002;
  overflow: hidden;
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(.76, 0, .24, 1);
}

.cart.active {
  transform: translateX(0);
}

.cart_content {
  height: 100%;
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.cart_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.cart_title {
  font-size: 24px;
  line-height: 1.2;
  text-transform: uppercase;
}

.cart_close {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.widget,
.widget_shopping_cart_content {
  min-height: 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.cart_products {
  overflow-y: auto;
  padding-right: 18px;
  margin-bottom: 30px;
}

.cart_item {
  display: flex;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid #d8d3cc;
}

#data-popup-total .cart_item:last-child {
    border-bottom: none;
}

.cart_item_img {
  width: 90px;
  height: 100px;
  flex: 0 0 90px;
}

.cart_item_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart_item_info {
  flex: 1;
  min-width: 0;
}

.cart_item_top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.cart_item_title {
  line-height: 1.3;
  text-transform: uppercase;
  color: inherit;
  text-decoration: none;
}

.cart_item_remove {
  background: none;
  border: 0;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.cart_item_bottom {
  display: flex;
  align-items: center;
  gap: 32px;
}

.cart_qty {
  display: flex;
  align-items: center;
  gap: 18px;
}

.cart_qty button {
  background: none;
  border: 0;
  font-size: 18px;
  cursor: pointer;
}

.cart_item_price {
  font-size: 16px;
  white-space: nowrap;
}

.cart_discount {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid #222;
}

.cart_discount_title {
  font-size: 16px;
  text-transform: uppercase;
}

.cart_discount_text {
  font-size: 13px;
  color: #777;
}

.cart_recommend {
  padding: 22px 0;
}

.cart_recommend_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
}

.cart_recommend_arrows button {
  background: none;
  border: 0;
  font-size: 24px;
  cursor: pointer;
}

.cart_recommend_item {
  display: flex;
  gap: 18px;
  border: 1px solid #d8d3cc;
  padding: 12px;
}

.cart_recommend_item img {
  width: 100px;
  height: 110px;
  object-fit: cover;
}

.cart_recommend_info {
  flex: 1;
}

.cart_recommend_title {
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.cart_recommend_price {
  font-size: 16px;
  margin-bottom: 22px;
}

.cart_recommend_info button {
  display: block;
  margin-left: auto;
  background: none;
  border: 0;
  font-size: 16px;
  cursor: pointer;
}

.cart_total {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  padding: 18px 0 14px;
  font-size: 16px;
}

.cart_checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  background: #222;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
}

/* end cartpopup */

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  padding: 15px 30px;
  font-weight: 300;
  font-size: var(--text2);
  line-height: 100%;
  letter-spacing: 0.02em;
  text-align: center;
  color: #FFF;
  text-transform: uppercase;
  background-color: #252525;
  border: 1px solid #252525;
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary:hover {
  background-color: transparent;
  color: #252525;
}

.btn-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.popup__content .btn-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-close img {
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.btn-close:hover {
  background: rgba(0, 0, 0, 0.06);
}

.btn-close:hover img {
  transform: rotate(90deg) scale(1.1);
  opacity: 0.8;
}

.btn-close:active {
  transform: scale(0.95);
}

.empty {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin: 60px auto;
  width: 100%;
  text-align: center;
}

.empty_title {
  font-weight: 300;
  font-size: var(--h5);
  text-transform: uppercase;
}

.empty_title:not(:first-child) {
  margin-top: 20px;
}

.empty_text:not(:first-child) {
  margin-top: 24px;
}

.empty_button:not(:first-child) {
  margin-top: 50px;
}

.empty_text p {
  font-weight: 300;
  font-size: 16px;
  line-height: 100%;
  text-align: center;
}

.popular_list .swiper-pagination-bullet {
  width: 20px !important;
  height: 5px !important;
  border-radius: 0 !important;
}

.wishlist-notice {
  position: fixed;
  top: 80px;
  /* висота вашого хедера */
  left: 0;
  width: 100%;
  padding: 12px;
  background: var(--primary-color);
  color: #fff;
  text-align: center;
  font-size: 16px;
  transform: translateY(-100%);
  opacity: 0;
  /* transition: all 0.3s ease; */
  z-index: 99;
  text-transform: uppercase;
}

.wishlist-notice.show {
  transform: translateY(0);
  opacity: 1;
}

/* account */
#customer_login.u-columns {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  margin: 0 auto;
  width: 100%;
}

.auth-head {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: center;
}

#customer_login.u-columns [class*=u-column] {
  display: contents;
}

.u-columns-title {
  order: -1;
  font-size: min(40px, var(--h2-account));
  text-align: left;
  font-weight: 400;
  line-height: 1.25;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  display: block !important;
}

.u-columns-title:hover {
  opacity: 0.6;
}

.woocommerce-form-login,
.woocommerce-form-register {
  display: flex;
  flex-direction: column;
  grid-gap: 20px;
  transition: var(--transition);
}

.woocommerce-form-row+.woocommerce-form-row {
  margin-top: 20px !important;
}

.woocommerce-privacy-policy-text {
  color: var(--black2);
}

#customer_login.u-columns .woocommerce-form {
  grid-column: 1 / 3;
}


#customer_login.u-columns .woocommerce-form-register .password-input *:not(input) {
  display: none !important;
}

.checkout_detail {
  display: flex;
  flex-direction: column;
  gap: 30px;

  font-weight: 400;
  font-size: var(--h4);
  line-height: 1.25;
  text-transform: uppercase;
}

.checkout_detail:not(:last-child) {
  margin-bottom: 70px;
}

.order_review_heading {
  font-size: var(--h4);
  margin-bottom: 30px;
  text-transform: uppercase;
}

.woocommerce-account-fields {
  display: none;
}

#createaccount-customer_field .optional {
  grid-gap: 0;
  font-size: 0;
}

#createaccount-customer_field label {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
}

#account_password_field .woocommerce-password-strength,
#account_password_field .woocommerce-password-hint {
  display: none !important;
}

.woocommerce-table__product-name.product-name {
  display: grid;
  grid-template-columns: clamp(52px, 13.33vw, 200px) 1fr;
  align-items: center;
  grid-gap: clamp(20px, 1.66vw, 50px);

  border-top: 0 none;
}

.woocommerce-table__product-name.product-name .basket_image {
  grid-row: auto;
  margin: 0;
}

.woocommerce-form-login .woocommerce-form-row,
.woocommerce-form-register .woocommerce-form-row,
.woocommerce-ResetPassword .woocommerce-form-row,
.woocommerce-address-fields__field-wrapper .form-row,
.woocommerce-EditAccountForm .form-row {
  display: flex;
  flex-direction: column;
  grid-gap: 12px;
  margin: 0;
}

input:not([type=checkbox], [type=radio], [type=submit], [type=range], [type=button]),
textarea {
  width: 100%;
  min-height: 54px;
  font-size: 16px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  font-weight: 300;
  border-bottom: 1px solid var(--black2);
  transition: border-color .43s, color .43s;
  background: transparent;
}

input[type=checkbox] {
  position: absolute;
  top: -1px;
  opacity: 0;
  height: 0;
}

input[type=checkbox]+label,
input[type=checkbox]+p,
input[type=checkbox]+span,
input[type=radio]+label {
  --size: 15px;
  display: flex !important;
  align-items: center;
  grid-gap: 15px;
  font-size: var(--text2);
  color: var(--black2);
  cursor: pointer;
}

input[type=checkbox]+label:before,
input[type=checkbox]+p:before,
input[type=checkbox]+span:before,
input[type=radio]+label:before {
  content: '';
  width: var(--size);
  min-width: var(--size);
  height: var(--size);
  margin-top: -2px;
  border: 1px solid var(--primary-color);
  cursor: pointer;
  transition: box-shadow .43s, border-color .43s;
}

.page {
  padding-top: 60px;
  padding-bottom: 60px;

}

.account-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 50vh;
  margin-top: 110px;
}

.account-section:not(:last-child) {
  padding-bottom: 0;
}

main:not(.main-content) {
  margin-top: 60px;
}

.woocommerce-form-row label {
  font-size: 16px;
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  align-items: end;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
}

.submit-login,
.registranion-login {
  margin-top: 50px;
}

.woocommerce-form-login .woocommerce-LostPassword,
.woocommerce-privacy-policy-text {
  margin: 10px 0 0;
  text-align: center;
  font-weight: 300;
  font-size: 16px;
}

.woocommerce-privacy-policy-text p {
  text-align: left;
  margin-top: 30px;
  margin-bottom: 30px;
  line-height: 1.25;
}

.woocommerce-privacy-policy-text a {
  text-decoration: underline;
}

.lost_reset_password .woocommerce-form-row {
  margin-top: 10px;
}

.lost_reset_password .woocommerce-form-row label {
  margin-bottom: 10px;
  display: block;
}

.lost_reset_password .clear {
  display: none;
}

/* Кожна форма */
.woocommerce-form {
  width: 50%;
  margin-top: 50px;
  flex-shrink: 0;
  opacity: 0.4;
  padding-left: 0;
  padding-right: 0;
  transition: opacity 0.35s ease;
}

.auth-tabs.login-active .woocommerce-form-login,
.auth-tabs.register-active .woocommerce-form-register {
  opacity: 1;
}


/* Активні стани */
.auth-tabs.login-active .auth-forms {
  transform: translateX(0) rotateY(0deg);
}

.auth-tabs.register-active .auth-forms {
  transform: translateX(-50%) rotateY(-15deg);
}

.auth-tabs {
  position: relative;
}

/* Вікно для слайду */
.auth-viewport {
  overflow: hidden;
  width: 100%;
  position: relative;
}

/* Лента */
.auth-forms {
  display: flex;
  width: 200%;
  transition: transform 0.55s cubic-bezier(0.65, 0, 0.35, 1);
}

/* Коли чекбокс активний */
input[type="checkbox"]:checked+span::before,
input[type=checkbox]:checked+label:before,
input[type=checkbox]:checked+p:before,
input[type=checkbox]:checked+span:before,
input[type=radio]:checked+label:before {
  background: #000;
  border-color: #000;
  box-shadow: inset 0 0 0 4px white;
  /* Можеш підправити */
}

/* Hover ефект */
label:hover span::before {
  border-color: #000;
}

.login-btn,
.register-btn {
  font-weight: 300;
  color: var(--black2);
}

.login-active .login-btn,
.register-active .register-btn {
  cursor: inherit;
  font-weight: 400;
  color: var(--primary-color);
}

.login-active .login-btn:hover,
.register-active .register-btn:hover {
  opacity: 1;
}

/* search */


.open-search-cont {
  background: var(--bg);
  position: fixed;
  right: 14.4rem;
  top: 0;
  width: 100%;
  max-width: 600px;

  z-index: 2002;
  display: none;
  width: 100%;
}

.open-search-wrapper {
  max-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  width: 100%;
  padding: 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--scrollbar-tumb) var(--scrollbar-color);
}

.open-search-wrapper,
.open-search-cont,
.result-list-product {
  scrollbar-width: thin;
  scrollbar-color: var(--scrollbar-tumb) var(--scrollbar-color);
}

.open-search-wrapper::-webkit-scrollbar,
.open-search-cont::-webkit-scrollbar,
.result-list-product::-webkit-scrollbar {
  width: 6px;
}

.open-search-wrapper::-webkit-scrollbar-thumb,
.open-search-cont::-webkit-scrollbar-thumb,
.result-list-product:-webkit-scrollbar-thumb {
  background: var(--scrollbar-tumb);
  border-radius: 8px;
}

.open-search-cont.active {
  display: flex;
}

.open-search__form {
  padding: 0;
  position: relative;
  width: 86%;
}

.open-search__input {
  background: none;
  border: none;
  border-bottom: 1px solid #000;
  padding: 1rem;
  line-height: 1.05;
  letter-spacing: 0.05em;
  color: #000;
  width: 100%;
}

.open-search__submit {
  display: block;
  position: absolute;
  right: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: url(/front/assets/images/icons/search.svg) no-repeat center center;
  -webkit-background-size: contain;
  background-size: contain;
  cursor: pointer;
  filter: brightness(0);
  border: none;
}


.open-search__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2rem 0 1rem;
}

.open-search__col {
  width: 50%;
  padding-top: 1rem;
}

.open-search__col:first-child .open-search__list li a {
  font-weight: 500;
}

.open-search__row {
  gap: 20px;
}

.open-search__title {
  display: block;
  font-weight: 200;
  font-size: var(--text3);
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black2);
}

.open-search__list {
  padding: 1rem 0 0 0;
}

.open-search__list li {
  list-style-type: none;
  padding: 0 0 16px 0;
}

.open-search__list li a {
  display: block;
  font-weight: 300;
  font-size: var(--text3);
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.open-search__list li a:hover {
  opacity: 0.7;
}

.close-search {
  position: absolute;
  right: 16px;
  top: 16px;

}

.opened-result__empty {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 200;
  text-transform: uppercase;
  padding: 5rem 3rem 4rem 0;
  text-align: center;
  max-width: 30rem;
  margin: 0 auto;

}

@media screen and (max-width: 767px) {
  .open-search-cont {
    right: 0;
    width: 100%;

  }
}

/* wishlist */
.breadcrumbs {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
}

.breadcrumbs_net {
  grid-gap: 24px;
  display: flex;

}

.breadcrumbs nav {
  display: flex;
  justify-content: center;
}

.breadcrumbs nav>span,
.breadcrumbs ul {
  display: flex;
  align-items: center;
}

.breadcrumbs li,
.breadcrumbs nav>span>span {
  white-space: nowrap;
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
  text-transform: uppercase;
}

.breadcrumbs a:not(:hover) {
  opacity: .4;
}

.breadcrumbs li:last-child,
.breadcrumbs nav>span>span:last-child {
  overflow: hidden;
  display: -webkit-box !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  white-space: normal;
}

.breadcrumbs li:not(:first-child):before,
.breadcrumbs nav>span>span:not(:first-child):before {
  content: '/';
  margin: 0 .25em;
  opacity: .4;
}

.catalog_content ul {
  --net: 5;
  display: grid;
  grid-template-columns: repeat(var(--net), 1fr);
  column-gap: 12px;
  row-gap: 30px;
  margin-top: 40px;
  padding-left: 0;
  padding-inline-start: 0;
  margin: 0;
  list-style: none;
}

@media only screen and (max-width: 1600px) {}

.catalog_top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}



.catalog_clear {
  --color: var(--black2);
  display: flex;
  align-items: center;
  grid-gap: 10px;
  font-weight: 300;
  cursor: pointer;
  transition: color .43s;
}

.card_favorit {
  --size: 26px;
  position: absolute;
  top: 10px;
  right: 10px;
  width: var(--size);
  height: var(--size);
  cursor: pointer;
  z-index: 1;
  transition: opacity .43s;
  background: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.catalog_title {
  font-size: var(--h4);
  text-transform: uppercase;
}

.catalog {
  padding-bottom: 140px;
}

.catalog_clear:hover .btn-close {
  background: rgba(0, 0, 0, 0.06);
}

.catalog_clear:hover .btn-close img {
  transform: rotate(90deg) scale(1.1);
  opacity: 0.8;
}

.catalog .empty {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.catalog .empty .empty_button,
.catalog .empty .btn {
  width: 100%;
}

@keyframes floatFade {
  0% {
    transform: translateY(0);
    opacity: 0.85;
  }

  50% {
    transform: translateY(-12px);
    opacity: 1;
  }

  100% {
    transform: translateY(0);
    opacity: 0.85;
  }
}

/* contact */


.contact {
  margin-top: 50px;
  padding-top: 70px;
}

.contact_net {
  display: flex;
  justify-content: space-between;
  grid-gap: 40px;
  align-items: center;
}

.contact_info {
  width: 470px;
}

.contact_title {
  font-weight: 400;
  font-size: var(--h4);
  line-height: 100%;
  text-transform: uppercase;
}

.contact_title_wrapper:not(:last-child) {
  overflow: hidden;
  margin-bottom: 50px;
}

.contact_block+.contact_block {
  margin-top: 60px;
}

.contact_country {
  font-weight: 300;
  font-size: var(--text3);
  line-height: 1;
  text-transform: uppercase
}

.contact_adres {
  font-size: var(--text3);
  margin-top: 20px;
  font-weight: 300;
}

/* .contact_info a {
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
} */

.contact_block ul {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 15px 40px;
  margin-top: 30px;
}

.contact_image {
  width: 100%;
  max-width: 578px;
  flex-shrink: 0;
}

.contact_image img,
.contact_miso_image img {
  opacity: 0;
  clip-path: inset(50% 0 50% 0);
  animation: revealFromCenter 1.2s cubic-bezier(.22, .61, .36, 1) forwards;
  animation-delay: 0.6s;
  object-fit: cover;
}

@keyframes revealFromCenter {
  0% {
    opacity: 0;
    clip-path: inset(50% 0 50% 0);
  }

  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

.contact_miso {
  width: 100%;
  max-width: 340px;
  flex-shrink: 0;
}


.contact_miso_image img {
  top: auto;
  bottom: 0
}


.about_images li {
  display: block;
  /* обов’язково для li */
  opacity: 0;
  transform: scaleY(0);
  /* схлопнуте по вертикалі */
  transition: opacity 0.8s cubic-bezier(.22, .61, .36, 1),
    transform 0.8s cubic-bezier(.22, .61, .36, 1);

}

/* перший елемент – розкривається знизу вгору */
.about_images li:nth-child(even) {
  transform-origin: bottom;
  /* точка росту знизу */
}

/* другий елемент – розкривається згори вниз */
.about_images li:nth-child(odd) {
  transform-origin: top;
  /* точка росту зверху */
}


.account-section+.twins,
.account-page+.twins {
  margin-top: calc(var(--i1) * 1.5) !important;
}

.about_images li img {
  aspect-ratio: 318/460;
  width: 100%;
  object-fit: cover;
}

.reveal-active {
  opacity: 1 !important;
  transform: scaleY(1) !important;
}

.contact_miso_title {
  margin-top: 20px;
  font-weight: 400;
  font-size: var(--h4);
  line-height: 1.15;
  text-transform: uppercase;
}

.contact_miso_link {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-top: 20px;
  line-height: 1;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: .02em;

  text-transform: uppercase
}

.contact_miso_link:before {
  content: '';
  flex-grow: 1;
  margin-bottom: 2px;
  border-bottom: 1px solid rgba(77, 61, 48, 0.5);
}

.contact_miso_link .anime-link__arrows {
  width: 28px;
  height: 28px;
  transform: translateY(2px);
}


.contact_form {
  padding-top: 120px;
  padding-bottom: 220px;
}

.contact_form br {
  display: none
}

.contact_form_title {
  max-width: 1337px;
  font-weight: 400;
  font-size: var(--h3);
  line-height: 1.15;
  text-transform: uppercase;
}

.contact_form form {
  max-width: 1428px;
  margin-top: 60px;
  margin-left: auto
}

.contact_form .contact_form_block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px;
}

.policy {
  --bone_w: 1280px;
  margin-top: 60px
}

.policy_title {
  margin-bottom: 60px
}

.policy .bone>ol>li {
  margin-top: 1.25em
}

.policy ol {
  counter-reset: item;
  padding-left: 0
}

.policy li {
  list-style-type: none;
  margin: 0
}

.policy ol li:before {
  content: counters(item, '.') ".";
  counter-increment: item;
  padding-right: 10px;
  color: var(--primary-color)
}

.policy .content>ol>li+li {
  margin-top: 3em
}



.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.active {
  opacity: 1;
  visibility: visible;
  z-index: 2002;
}

.modal-content {
  background: var(--bg);
  padding: 60px;
  width: 90%;
  max-width: 940px;
  position: relative;
  transform: scale(0.8);
  padding-bottom: 110px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.modal.active .modal-content {
  transform: scale(1);
}

.close-modal {
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
}

.modal-title {
  font-size: var(--h2);
  text-transform: uppercase;
}

.modal-title:not(:last-child) {
  margin-bottom: 22px;
}

.modal-text {
  font-size: var(--h5);
  max-width: 540px;
  width: 100%;
  font-weight: 300;
  text-transform: uppercase;
}

.modal-content .btn-main {
  position: absolute;
  right: -40px;
  bottom: -40px;
}


.not-found {
  min-height: calc(100vh - 80px);
  height: max-content;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.not-found_bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.not-found_bg img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  object-position: center;
}

.not-found_code {
  font-weight: 400;
  font-size: var(--h1);
  line-height: 1.25;
  text-transform: uppercase;
}

.not-found_title {
  font-weight: 400;
  font-size: var(--h4);
  line-height: 1.25;
  text-transform: uppercase;
}

.not-found_btn {
  --btn_w: 100%;
  max-width: calc(var(--h4) * 10);
  margin-top: calc(var(--i1) * .4);
}



.hero-swiper {
  height: 100%;
}

.hero-swiper .swiper-slide img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
  width: var(--swiper-navigation-size);
  min-width: var(--swiper-navigation-size);
  margin: 0;
  padding: 0 !important;
  border: 0.5px solid transparent;
  border-radius: 50%;
  transition: border-color .43s;
  z-index: 10;
  font-weight: 300 !important;
  position: relative !important;
  left: unset !important;
  right: unset !important;
  top: unset !important;
  bottom: unset !important;

}

.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}

.swiper-button-next::before,
.swiper-button-prev::before {
  content: "";
  width: 100%;
  height: 15px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("./assets/images/icons/swiper-icon.svg");
}


.swiper-button-prev::before {
  transform: rotate(180deg);
}

.swiper-button-next::before {
  transform: translateX(1px);
}


.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
  border-color: #fff;
}

.hero-swiper .swiper-pagination {
  display: flex;
  align-items: center;
  gap: 40px;
  z-index: 10;
  position: relative !important;
  width: max-content !important;
  height: 24px !important;
  top: unset !important;
  bottom: unset !important;
  left: unset !important;
  right: unset !important;
}

.hero-swiper .swiper-button-next:after,
.hero-swiper .swiper-button-prev:after {
  font-size: calc(var(--swiper-navigation-size) / 2);
  color: #fff !important;
}

.breadcrumbs_title {
  max-width: 19.2em;
  font-size: var(--h3);
  text-transform: uppercase;
  font-weight: 400;
  text-align: right;
  letter-spacing: 5%;
  line-height: 1.16;
}


.catalog_left {
  display: flex;
  align-items: center;
  grid-gap: 60px;
  font-weight: 300
}

.catalog_filter:after {
  --size: 1.25em;
  content: '';
  display: inline-block;
  width: var(--size);
  height: var(--size);
  margin-left: .625em;
  margin-bottom: -.25em;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 5L10 15' stroke='%23252525' stroke-linecap='square' stroke-linejoin='round'/%3E%3Cpath d='M15 10L5 10' stroke='%23252525' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain
}

.catalog_filter {
  cursor: pointer;
  font-size: var(--text3);
  text-transform: uppercase;
  font-weight: 300;
  color: #252525;
  color: #373737;
  background: transparent;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
}

.catalog_filter span:before {
  content: ' ('
}

.catalog_filter span:after {
  content: ')'
}

.catalog_found {
  text-transform: uppercase;
  font-weight: 300;
  font-size: var(--text3);
}

.catalog_found b {
  font-weight: 400;
  font-size: var(--text2)
}

.catalog_right {
  display: flex;
  align-items: center;
  grid-gap: min(5vw, 60px)
}

.catalog_search {
  position: relative
}

.catalog_search input {
  min-height: 33px;
  width: min(333px, 50vw);
  transition: all .43s
}

.catalog_search input:not(:focus) {
  width: 5.75em;
  border-color: transparent
}

.catalog_search button {
  --size: 1.375em;
  position: absolute;
  top: calc(50% - var(--size)/ 2);
  right: 0;
  width: var(--size);
  height: var(--size);
  margin-top: -.1em
}

/* Контейнер Select2 */
.select2-container--default .select2-selection--single {
  background-color: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  height: 30px;
  display: flex;
  align-items: center;
  padding: 0 !important;
  cursor: pointer;
  font-family: inherit !important;
  font-size: var(--text3);
  position: relative;
  transition: var(--transition);
  text-transform: uppercase;
}

/* Hover/фокус */
.select2-container--default .select2-selection--single:hover {
  border: none !important;
}

.select2-container--default .select2-selection--single:focus,
.select2-container--default .select2-selection--single.select2-selection--focus {
  border: none !important;
  box-shadow: none !important;
}

/* Стрілка */
.select2-container--default .select2-selection__arrow {
  height: 100%;
  right: 10px;
  top: 0;
  width: 20px;
}

.select2-container--default .select2-selection__arrow b {
  border-color: #333 transparent transparent transparent;
  border-style: solid;
  border-width: 6px 5px 0 5px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: rgba(37, 37, 37, 1) !important;
  line-height: 1 !important;
}

/* Кнопка очищення (хрестик) */
.select2-container--default .select2-selection__clear {
  position: absolute;
  right: 15px;
  /* відступ від стрілки */
  top: 50%;
  transform: translateY(-50%);

  font-size: 18px;
  color: #000;
  cursor: pointer;

  transition: all 0.2s ease;
}

/* Hover ефект */
.select2-container--default .select2-selection__clear:hover {
  color: #ff4d4f;
}

/* Список опцій */
.select2-container--default .select2-results__options {
  background: #fff;
  max-height: 400px !important;
  height: max-content;
  overflow-y: auto;
  padding: 15px;
  margin-top: 0 !important;
}

/* Опції */
.select2-container--default .select2-results__option {
  color: rgba(101, 101, 100, 1);
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 300;
  font-size: var(--text3);
  display: flex;
  gap: 10px;
  align-items: center;
  transition: all 0.43s ease;
}

.select2-container--default .select2-results__option::before {
  transition: all 0.43s ease;
}

/* базовий стан */
.select2-container--default .select2-results__option {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.25s ease;
}

/* псевдоелемент існує завжди */
.select2-container--default .select2-results__option::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50px;
  background: rgba(37, 37, 37, 1);
  flex-shrink: 0;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

/* активний стан */
.select2-container--default .select2-results__option--highlighted,
.select2-container--default .select2-results__option[aria-selected="true"] {
  transform: translateX(12px);
  /* 👈 легкий зсув */
}

.select2-container--default .select2-results__option--highlighted::before,
.select2-container--default .select2-results__option[aria-selected="true"]::before {
  opacity: 1;
  transform: scale(1);
}

.select2-container--default .select2-results__option--highlighted,
.select2-container--default .select2-results__option[aria-selected="true"] {
  background-color: transparent !important;
  color: inherit !important;
}


/* Приховати поле пошуку для одиночного селекту */
.select2-container--default .select2-search--dropdown {
  display: none;
}

.catalog_pagination {
  margin-top: 100px;
  text-align: center
}

.catalog_clear {
  --color: var(--black2);
  display: flex;
  align-items: center;
  grid-gap: 10px;
  font-weight: 300;
  cursor: pointer;
  transition: color .43s
}

.catalog_clear svg {
  --size: 24px;
  width: var(--size);
  min-width: var(--size);
  height: var(--size)
}

.catalog_clear path {
  transition: stroke .43s
}

.catalog_clear:hover {
  --color: var(--red)
}

/* Контейнер для плавного ефекту */
.catalog-search-wrapp {
  display: inline-block;
  /* або flex, якщо треба */
  position: relative;
}

/* Початковий стан інпуту */
.catalog .catalog-search-input {
  width: 88px !important;
  /* мінімальна ширина */
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  border-bottom: 2px solid transparent !important;
  outline: none !important;
  transition: all 0.3s ease;
  /* плавна анімація ширини та бордера */
  font-size: var(--text3);
  font-weight: 300;
  cursor: pointer !important;
  min-height: 32px !important;
  text-overflow: unset !important;
  padding-right: 40px;
}

/* Підсвічування при фокусі */
.catalog .catalog-search-input:focus {
  width: 300px !important;
  /* ширина при фокусі */
  border-bottom: 1px solid #000 !important;
  /* колір лінії */
  cursor: text !important;
}

/* Для placeholder прозорішим */
.catalog-search-input::placeholder {
  color: rgba(37, 37, 37, 1);
  transition: color 0.3s ease;
  text-transform: uppercase;
  font-weight: 300;
  font-size: var(--text3);
}

.catalog-search-submit {
  filter: brightness(0);
  position: absolute;
  right: 0;
  z-index: 2;
  top: 0;
}

.catalog-search {
  display: flex;
  gap: 0;
  align-items: center;
}


.pagination,
.pagination ul {
  display: inline-flex;
  align-items: center;
  grid-gap: var(--gap, 30px)
}

.pagination .page-numbers:not(:first-child, :last-child, .current),
.pagination li .page-numbers:not(.current, .next, .prev),
.pagination span.page-numbers:not(.current) {
  opacity: .3
}

.pagination a {
  transition: opacity .43s
}

.pagination a:hover {
  opacity: 1 !important
}

.prev.page-numbers {
  transform: rotate(180deg);
}


.filter {
  --inner: 40px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: start;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  transform: translateX(100%);
  z-index: 1000;
  background: #fff;
  max-width: 600px;
  width: 100%;
  transition: transform 0.6s cubic-bezier(.76, 0, .24, 1);
  will-change: transform;
}

.filter.active {
  transform: translateX(0);
}

.filter:not(.active) .filter_veil {
  opacity: 0
}

.filter_scroll {
  overflow-y: scroll;
  padding: 40px !important;
  height: 100dvh;
  max-height: 100dvh;
  padding-bottom: 85px !important;
}

.filter_head,
.filter_block_name {
  text-transform: uppercase;
  font-size: var(--h6);
  font-weight: 300;
  letter-spacing: .02em
}

.filter_block_list_wrapper .filter_head {
  text-transform: none
}

.filter_block_list_wrapper .single_filter_widget.full {
  grid-column: 1/5
}

.filter_block_list_wrapper .single_filter_widget.full .filter_body ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr)
}

.single_filter_widget--size .filter_body ul {
  grid-template-columns: 1fr !important;
}

.filter_head+.filter_body {
  margin-top: 30px
}

.filter_block_select {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  grid-gap: 10px;
  margin-top: 15px;
  margin-bottom: 30px
}

.filter_block_select button {
  display: flex;
  align-items: center;
  grid-gap: 10px;
  position: relative;
  padding: 5px 10px;
  cursor: pointer;
  transition: color .43s
}

.filter_block_select button:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(37, 37, 37, 0.1);
  transition: background-color .43s
}

.filter_block_select button:hover:before {
  background-color: rgba(204, 18, 18, 0.1);
}

.filter_block_select button:after {
  --size: 14px;
  content: '';
  width: var(--size);
  height: var(--size);
  margin-top: -2px;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.5 3.5L3.5 10.5' stroke='%23252525' stroke-linecap='square' stroke-linejoin='round'/%3E%3Cpath d='M3.5 3.5L10.5 10.5' stroke='%23252525' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: background-image .43s
}

.filter_block_select button:hover {
  color: var(--sale-color)
}

.filter_scroll {
  overflow-x: auto;
  /* або overflow-y: auto */
  -ms-overflow-style: none;
  /* IE, Edge */
  scrollbar-width: none;
  /* Firefox */
}

.filter_scroll::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari */
}

.ocf-footer {
  margin-left: 0 !important;
  position: fixed !important;
  bottom: 20px !important;
  width: calc(100% - 80px) !important;
  margin-right: 0 !important;
  box-sizing: border-box;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.filter_body ul,
.filter_block_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 16px 32px
}

.filter_block_list:not(.__grid),
.filter_block_list_wrapper .filter_body ul {
  display: flex;
  flex-direction: column
}

.filter_block_list_wrapper {
  display: grid;
  grid-gap: 20px 12px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 30px
}

.filter_block_list_wrapper .filter_head {
  font-weight: 300;
  font-size: 1rem;
  margin-bottom: 12px
}

.bapf_slidr,
.filter_block_range {
  margin-top: 72px
}

.filter_title {
  font-size: max(var(--h5), 18px);
  text-transform: uppercase;
}

.filter_top {
  align-items: center;
  justify-content: space-between;
}

.catalog_filter {
  margin-bottom: 0
}

.filter_head {
  margin-top: 30px
}

.filter_block_list_wrapper .filter_head {
  margin-top: 0
}

.filter_block_list_wrapper .filter_head+.filter_body {
  margin-top: 0
}

.bapf_slidr_all .bapf_val:after {
  content: ' '
}

.bapf_slidr .filter_block_select {
  display: none !important
}

.bapf_slidr_all {
  margin-top: 20px
}

.bapf_from,
.bapf_to {
  font-size: var(--text2);
  margin-bottom: 28px !important
}

.bapf_from:before {
  content: 'від'
}

.bapf_to:before {
  content: 'до'
}

.bapf_from:before,
.bapf_to:before {
  margin-right: .625em;
  font-weight: 300;
  font-size: 1rem
}

.bapf_slidr_jqrui .bapf_slidr_main {
  margin-bottom: 0 !important
}

.price-filter {
  width: 100%;
}

#price-range-slider {
  margin-top: 10px;
}

.price-values {
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.noUi-target {
  background: rgba(37, 37, 37, 0.3) !important;
  height: 2px !important;
  border-radius: 0 !important;
}

.noUi-handle::after,
.noUi-handle::before {
  display: none !important;
}

.noUi-handle {
  width: 16px !important;
  height: 16px !important;
  border-radius: 50% !important;
  background: rgba(37, 37, 37, 1);
  top: -8px !important;
  right: -8px !important;
  cursor: pointer !important;
  border: none !important;
  box-shadow: none !important;
}

.noUi-connect {
  background: rgba(37, 37, 37, 1) !important;
}

.categories__slider {
  padding-bottom: 20px;
}

.categories__slider .category {
  background-image: var(--category-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.categories__slider .category > img {
  display: none;
}

.swiper-scrollbar-drag {
  background: rgba(37, 37, 37, 1) !important;
}



.contact_country+.btn-secondary {
  margin-top: 30px;
  height: 54px;
}

.contact_adress {
  margin-top: 20px;
  display: inline-block;
  font-weight: 400;
  font-size: var(--text2);
  line-height: 100%;
  letter-spacing: 0.05em;
  transition: var(--transition);
}

.contact_adress:hover {
  opacity: 0.7;
}



.other .header {
  background: transparent;
  position: absolute;
}

.other main {
  margin-top: 0 !important;

}

.other .not-found {
  min-height: 100vh;
}

.other footer {
  display: none !important;
}



.filter_subhead {
  padding-bottom: 12px;
  font-weight: 300;
  font-size: var(--text3);
  line-height: 100%;
  letter-spacing: 0.05em;
}

.filter_columns {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.filter_col ul {
  max-width: 84px;
  width: 100%;
}

.select2-container--default .select2-results__option--selected {
  background: transparent !important;
}

.catalog_content .product-card {
  min-height: 303px;
}


/* product */


.product {
  padding-bottom: 80px;
}

.product_net {
  grid-gap: 25px 40px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 110px;
}

.product_image {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 850px;
}

.product_image_active {
  width: 100%;
  aspect-ratio: 1/1;
  cursor: grab;
}

.product_image_active img {
  width: 100%;
  display: block;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1/1;
}

.product_image_small {
  --size: 60px;
  --swiper-navigation-size: 20px;
  --swiper-theme-color: var(--color);
  width: 100%;
}


.product_image_small .swiper-slide {
  width: 60px;
  height: 60px;
  cursor: pointer;
  transition: 0.3s;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.product_image_small .swiper-slide-thumb-active {
  border-color: var(--primary-color, #252525);
}

.product_image_small img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}


.product_image_small .swiper-button-next::before,
.product_image_small .swiper-button-prev::before {
  filter: invert(1);
}

.product_image_small .thumbs-prev,
.product_image_small .thumbs-next {
  top: 0;
  left: 0;
  bottom: 0;
  width: 30px;
  height: auto;
  margin-top: 0;
  background-color: rgba(255, 255, 255, .8);
  transition: opacity .43s;
}

.product_info {
  width: 100%;
  max-width: clamp(360px, 41.6vw, 570px)
}

.product_name {
  font-size: var(--h5);
  font-weight: 300;
  line-height: 1.17;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product_code {
  font-size: var(--text3);
  color: rgba(37, 37, 37, 0.4);
  margin-top: 16px;
  font-weight: 300;
  text-transform: uppercase
}

.product_tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.product_tags:not(:first-child) {
  margin-top: 20px;
}

.product_tag {
  display: inline-block;
  padding: 4px 12px 2px;
  backdrop-filter: blur(4px);
  z-index: 1;
  font-weight: 300;
  font-size: var(--text3);
  line-height: 1;
}

.product_tag.new {
  background-color: var(--sale-color);
  color: #FFF;
}

.product_tag.delivery {
  background: rgba(37, 37, 37, 0.1);
}

.product_tag.sold {
  background: rgba(101, 101, 100, 1);
  color: #FFF;
}

.product_info .product_price {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-end;
  justify-content: flex-end;
  grid-gap: 15px;
  margin-top: 20px;
  font-size: var(--h4);
  font-weight: 300;
  letter-spacing: .02em
}

.product_info .price {
  font-weight: 400;
}

.product_info .old-price+.price {
  color: var(--sale-color);
}


.product_info .old-price {
  color: rgba(101, 101, 100, 1);
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.05em;
  text-decoration: line-through;
}

.product-options {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.product-options:not(:first-child) {
  margin-top: 40px;
}

.option-title {
  font-size: var(--text3);

  letter-spacing: 0.05em;
  font-weight: 300;
  text-transform: uppercase;
  color: rgba(37, 37, 37, 0.4);
  margin-bottom: 12px;
}

/* ---------- КОЛІР ---------- */

.color-options {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.color-item {
  position: relative;
  cursor: pointer;
}

.color-item:disabled {
  pointer-events: none;
  position: relative;
}

.color-item.disabled a::after,
.color-item.disabled span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      transparent 47%,
      white 47%,
      white 53%,
      transparent 53%);
}

.color-item input {
  display: none;
}

.color-box {
  width: 32px;
  height: 32px;
  display: block;
  border: none;
  transition: 0.2s ease;
}

/* Активний */
.color-item input:checked+.color-box {
  outline: 2px solid #252525;
  outline-offset: -2px;
}

/* Hover */
.color-item:not(.disabled):hover .color-box {
  transform: scale(1.08);
}

/* ---------- РОЗМІР ---------- */

.size-options {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.size-item {
  cursor: pointer;
}

.size-item input {
  display: none;
}

.size-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border: 1px solid var(--Black-3, rgba(160, 160, 159, 1));
  background: transparent;
  font-weight: 300;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0.02em;

  transition: 0.2s ease;
  min-width: 96px;
}

/* Активний */
.size-item input:checked+span {
  outline: 2px solid #252525;
  outline-offset: -1px;
}

/* Hover */
.size-item:hover span {
  border-color: #252525;
}

/* Disabled */
.size-item.disabled span {
  background: #f2f2f2;
  color: #b3b3b3;
  border-color: #e0e0e0;
  cursor: not-allowed;
}

.size-item.disabled {
  pointer-events: none;
}

.product_actions {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 50px;
}

.product_actions .wishlist-add-button {
  width: 55px;
  height: 55px;
  border: 1px solid rgba(37, 37, 37, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  flex-shrink: 0;
}

.product_actions .wishlist-add-button img {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
  filter: brightness(0) saturate(100%) invert(41%) sepia(2%) saturate(120%) hue-rotate(12deg);
}

.product_actions .wishlist-add-button img:last-child {
  display: none;
}

.product_actions .wishlist-add-button.active img:last-child {
  display: block;
  filter: brightness(1);
}

.product_actions .wishlist-add-button.active img:first-child {
  display: none;
}

.product_actions .wishlist-add-button:hover img {
  transform: scale(1.07);
}

.add-to-cart,
.btn-notify {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  grid-gap: clamp(8px, 1.5vw, 28px);
  position: relative;
  padding: 16px 20px;
  font-size: var(--text2);
  text-align: center;
  color: #FFF;
  text-transform: uppercase;
  background-color: var(--primary-color);
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
  width: 100%;
}

.add-to-cart:hover {
  color: var(--primary-color);
  border-color: var(--primary-color);
  background: transparent;
}

.btn-notify {
  background: rgba(160, 160, 159, 1);
}

.btn-notify:hover {
  color: rgba(160, 160, 159, 1);
  border-color: rgba(160, 160, 159, 1);
  background: transparent;
}

.product_notification {
  font-weight: 300;
  font-size: var(--text3);
  line-height: 100%;
  letter-spacing: 0.05em;
  color: rgba(101, 101, 100, 1);
  margin-top: 20px;
}

.product_shares {
  border-bottom: 1px solid var(--primary-color, rgba(37, 37, 37, 1));
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
}

.product_shares:not(:first-child) {
  margin-top: 20px;
}

.share_title {
  font-weight: 400;
  font-size: var(--h4);
  line-height: 100%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.share_text {
  font-weight: 300;
  font-size: var(--text3);
  line-height: 100%;
  letter-spacing: 0.05em;
}

.product_bottom {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  margin-top: 40px;
}

.product_bottom button {
  display: flex;
  align-items: center;
  grid-gap: 5px;
  font-weight: 300;
  text-transform: uppercase;
  cursor: pointer;
  font-size: var(--text3);
  transition: all 0.3s ease;
}

.product_bottom button:hover {
  opacity: 0.7;
}

.product_bottom button:after {
  --size: 24px;
  content: '';
  width: var(--size);
  height: var(--size);
  background-image: url('/front/assets/images/icons/Expand_right_light.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}


.product_package:not(:first-child) {
  margin-top: 40px;
  margin-bottom: 22px;
}

.package-select+.select2-container {
  border: 1px solid var(--primary-color, rgba(37, 37, 37, 1));
  margin-top: 3px;
}

.product_package .select2-container--default .select2-selection--single {
  height: max-content !important;
  text-transform: unset !important;
}

.product_package .select2-container--default .select2-selection--single .select2-selection__rendered {
  padding: 17px 20px !important;
}

.product_package .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: unset !important;
}

.select2-results {
  margin-left: 0 !important;
  right: 0;
}

.package-select .select2-results__options {
  padding: 12px 20px;
}

.package-select .select2-results__option {
  text-transform: unset;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.package-select .select2-results__option::before {
  display: none;
}

.package-select .select2-results__option::after {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  background: url('/front/assets/images/icons/check.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0;
  transition: var(--transition);
}

.package-select .select2-results__option:hover::after,
.package-select .select2-results__option.select2-results__option--selected::after {
  opacity: 1;
}

.popup-content {
  display: flex;
  margin-top: 60px;
  flex-direction: column;
  gap: 30px;
  padding-right: 15px;
}

.composition_characteristic {
  display: grid;
  font-weight: 300;

}

.popup_name {

  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0.02em;
}

.popup_text {

  font-size: var(--text3);
}

.composition_characteristic .popup_text {
  text-align: right;
}

.popup-content p {
  font-size: var(--text3);
  font-weight: 3;
  line-height: 1.25;
  letter-spacing: 5%;
}

.popup-content img {
  width: 100%;
  height: auto;
}


.delivery-content p+.popup_name {
  margin-top: 30px;
}

.popup-content ol li {
  list-style: decimal;
  list-style-position: inside;
  padding-bottom: 12px;
}

.option-error {
  color: var(--sale-color);
  font-size: var(--text3);
  text-transform: uppercase;
  padding-bottom: 15px;
  font-weight: 300;
  display: inline-block;
}

.notify-form .form-row {
  display: flex;
  gap: 40px;
}

.notify-popup .modal-title {
  font-size: var(--h4);
  text-align: center;
}

.notify-form .btn-secondary {
  max-width: 430px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
  display: flex;
}


.products-grid {
  padding-bottom: 20px;
}

.products-section--other {
  padding-top: 80px;
  padding-bottom: 80px;
}

.product_catalog {
  padding-top: 80px;
  padding-bottom: 80px;
}

.product_catalog+.twins {
  padding-top: 140px;
}




.size-table {
  width: 100%;
  padding: 25px 0;
}

.size-section+.size-section {
  margin-top: 50px;
}

.size-title {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 24px;
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table-name {
  font-weight: 300;
}

.table-header {
  border-bottom: 1px solid #cfcfcf;
  padding-bottom: 12px;
  margin-bottom: 10px;
}

.table-cell {
  font-size: var(--text3);
}

.table-cell:first-child {
  text-align: left;
}

.table-cell:not(:first-child) {
  text-align: center;
}



.result-list-product {
  padding: 10px 0;
}

.result-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 8px 10px;
  background: transparent;
  transition: background 0.2s ease;
  cursor: pointer;
}

.result-item:hover {
  background: #e3e3e3;
}

.result-thumb {
  width: 50px;
  height: 60px;
  flex-shrink: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.result-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.result-title {
  font-size: var(--text3);
  line-height: 1.3;
}

.search-highlight {
  font-weight: 600;
}

.results-more {
  cursor: pointer;
  font-size: 12px;
  line-height: 110%;
  text-align: left;
  padding: 7px 10px;
  position: relative;
  border-bottom: 1px solid #dfdfdf;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  resize: vertical;
  width: 100%;
  transition: none !important;
  text-transform: uppercase;
  min-height: 30px;
}

.results-more:hover {
  background: #e3e3e3;
}

.result-suggestion-headline {

  background: transparent;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
  font-size: 12px;
  line-height: 110%;
  text-align: left;
  padding: 7px 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  overflow-y: auto;
  text-transform: uppercase;
  margin-top: 16px;
  display: block;
}


.basket {
  --bone_w: 1280px;
  margin-top: 60px;
  padding-top: 60px;
  padding-bottom: 220px;
}



.basket_top {
  justify-content: space-between;
  align-items: center;
}

.basket_title {
  font-weight: 400;
  font-size: var(--h4);
  line-height: 1.25;
  text-transform: uppercase;
}

.basket_clear {
  color: var(--black2);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  grid-gap: 10px;
  font-weight: 300;
  cursor: pointer;
  font-size: var(--text3);
  transition: color .3s ease;
}

.basket_clear img {
  filter: grayscale(100%) brightness(1.4);
  transition: filter .43s ease;
}


.basket_clear:hover {
  color: var(--sale-color);
}

.basket_clear:hover img {
  filter: grayscale(100%) sepia(100%) saturate(5000%) hue-rotate(-10deg) brightness(0.9);
  /* filter: invert(16%) sepia(96%) saturate(7425%) hue-rotate(357deg) brightness(96%) contrast(116%); */
}

.basket_table {
  margin-top: 50px
}

.basket_row {
  --image: 200px;
  --old: clamp(265px, 37vw, 480px);
  --gap: clamp(20px, 1.66vw, 50px);
  display: grid;
  align-items: flex-start;
  grid-template-columns: var(--image) 1fr repeat(3, calc((var(--old) - var(--gap) * 2)/ 3));
  grid-template-rows: auto auto 1fr;
  column-gap: clamp(15px, 2.5vw, 35px);
  border-bottom: 1px solid #bfc0c0
}

.basket_row:first-child {
  padding-bottom: 16px;
  grid-row-gap: 0
}

.basket_row:not(:first-child) {
  padding: clamp(25px, 3.33vw, 40px) 0
}

.basket_col {
  font-weight: 300;
  font-size: var(--text3);
  text-transform: uppercase
}

.basket_col:first-child {
  grid-column: 1/3
}

.basket_col:nth-child(3) {
  text-align: center
}

.basket_col:last-child {
  text-align: right
}

.basket_image {
  grid-row: 2/4;
  margin: -10px 0;
  position: relative;
}

.basket_image span,
.item_img span {
  --color: #FFF;
  position: absolute;
  top: 10px;
  left: 0;
  padding: 5px 12px 3px;
  font-size: var(--text2);
  background-color: var(--red);
  z-index: 1
}

.basket_name {
  font-size: 20px;
  letter-spacing: 0.02em;
  line-height: 1;
  font-weight: 300
}

.basket_code {
  --color: var(--black2);
  margin-top: 10px;
  font-weight: 300;
  font-size: var(--text3);
}

.basket_params {
  display: flex;
  flex-direction: column;
  grid-gap: 10px;
  font-weight: 300
}

.basket_params:not(:first-child) {
  margin-top: 35px;
}

.basket_params li {
  --color: var(--black2);
  font-size: var(--text3);
  display: flex;
  gap: 6px;
  align-items: center;
}

.basket_params li span {
  color: var(--primary-color);
}

.basket_params .color-box {
  width: 24px;
  height: 24px;
}

.basket_package {
  margin-top: 20px;
  font-size: var(--text3);
  font-weight: 300;
  color: var(--black2);
}

.basket_package span {
  color: var(--primary-color);
}

.basket_price {
  display: flex;
  flex-direction: column;
  grid-gap: 5px;
  font-size: var(--h6);
  font-weight: 300;
  letter-spacing: .02em
}

.basket_price .current_price {
  order: -1;
  font-size: 20px;
}

.basket_summ {
  font-size: 20px;
  text-align: right;
}

.basket_price .old_price {
  color: rgba(37, 37, 37, 0.4);
  font-size: 16px;
  letter-spacing: 1.5;
  text-decoration: line-through;
}

.basket_quantity {
  text-align: center
}

.basket_old {
  text-align: right;
  font-size: var(--h6);
  font-weight: 300;
  letter-spacing: .02em
}

.basket_clear {
  align-self: flex-end;
  justify-content: flex-end;
  grid-column: 5
}

.basket_bottom {
  display: flex;
  justify-content: space-between;
  grid-gap: 60px 40px;
  margin-top: clamp(50px, 5vw, 80px)
}

.basket_gift {
  display: flex;
  flex-direction: column;
  grid-gap: 30px;
  width: 100%;
  max-width: clamp(380px, 43.33vw, 650px)
}

.basket_gift_title p {
  font-size: var(--h5);
  text-transform: uppercase;
  font-weight: 300;
}

.basket_gift_info {
  font-size: var(--h3);
  text-transform: uppercase;
  margin-bottom: 5px;
}

.basket_gift_table {
  width: 100%;
  border-spacing: 0
}

.basket_gift_table tbody {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.basket_gift_table tbody tr {
  display: flex;
  justify-content: space-between;
}

.basket_gift_table td {
  font-weight: 300;
}

.basket_gift_table td strong {
  font-size: var(--text2);
  font-weight: 400
}

.basket_gift_table td:last-child {
  font-size: var(--text2);
  text-align: right
}

.basket_gift_table .gift {
  display: grid;
  align-items: flex-end;
  grid-gap: 20px;
  grid-template-columns: repeat(2, .5fr) 1fr;
  padding: 10px;
  margin-bottom: -1px;
  border: 1px solid #000;
  text-align: left
}

.basket_form {
  width: 100%;
  max-width: clamp(280px, 40vw, 480px)
}

.basket_form_coupon .coupon {
  display: flex;
  grid-gap: clamp(15px, 2vw, 30px);
  position: relative
}

.basket_form_coupon .coupon .__btn {
  --btn_w: var(--btn_height);
  --btn_inner: 0
}

.basket_form_coupon .coupon .woocommerce-error {
  --color: var(--red);
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 10px;
  font-size: var(--small);
  font-weight: 300;
  text-transform: uppercase
}

.basket_form_table {
  width: 100%;
  margin-top: 40px;
  border-spacing: 0
}

.basket_form_table td {
  height: clamp(30px, 3.33vw, 44px);
  font-weight: 300;
  line-height: 1;
}

.basket_form_table td:first-child {
  text-transform: uppercase
}

.basket_form_table td:last-child {
  text-align: right;
  font-size: var(--h6);
  letter-spacing: 0.02em;
}

.basket_form_table tr:last-child td {
  height: 64px;
  padding-top: 20px
}

.basket_form_button {
  --btn_w: 100%;
  margin-top: 10px;
  height: 54px;
}

.basket_form_button a {
  height: 100%;
}

.quantity {
  --size: 24px;
  display: inline-flex
}

.quantity input {
  flex-grow: 1;
  width: 32px;
  min-height: var(--size);
  padding: 0;
  text-align: center;
  font-size: var(--text2);
  line-height: 1.25;
  letter-spacing: .05em;
  background-color: transparent;
  border: 0 none;
  border-radius: 0;

}

/* Прибрати стрілки number */
.quantity input::-webkit-outer-spin-button,
.quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

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

.quantity button {
  color: var(--black2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 300;
  width: var(--size);
  min-width: var(--size);
  height: var(--size);
  cursor: pointer;
  transition: color .43s
}

.qty-btn:hover {
  opacity: 0.6;
}

.qty-btn:disabled {
  opacity: 0.4;
  cursor: default;
}



.basket_tag {
  position: absolute;
  left: 0;
  top: 15px;
  z-index: 3;
  background: var(--sale-color);
  padding: 5px 12px;
  color: #fff;
  font-size: 18px;
}

.basket_row.gift .quantity {
  display: none;
}

.btn-black {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(37, 37, 37, 1);
  color: #fff;
  font-weight: 300;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border: 1px solid transparent;
  text-align: center;
  padding: 0;
  overflow: hidden;
  width: 54px;
  flex-shrink: 0;
  height: 54px;
  transition: var(--transition);
}

.btn-black:hover {
  background: transparent;
  border-color: rgba(37, 37, 37, 1);
  filter: brightness(0);
}

.basket_form_table * {
  font-size: var(--text3);
}

.basket_gift_table {
  font-size: var(--text2);
}

/* Блок подарунка */
.basket_gift_table .gift {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: auto auto 1fr;
  padding: 20px;
  margin-bottom: -1px;
  border: 1px solid #000;
  text-align: left;
  background: transparent;
}

/* Зображення */
.basket_gift_table .gift img {
  width: clamp(80px, 8vw, 160px);
  height: auto;
  object-fit: cover;
  aspect-ratio: 1/1;
}

/* Текст */
.basket_gift_table .gift div {
  font-size: var(--text2);
  line-height: 1.2;
  font-weight: 400;
}

.checkout {
  margin-top: 70px;
  padding-top: 60px;
}

.checkout .woocommerce-invalid {
  --color: var(--red) !important
}

.checkout-form {
  display: grid;
  align-items: flex-start;
  grid-template-columns: 1fr 450px;
  gap: 80px;
}

.checkout .woocommerce-checkout h3,
.checkout_title {
  margin-bottom: clamp(30px, 2.5vw, 40px);
  font-weight: 400;
  font-size: var(--h4);
  line-height: 1.25;
  text-transform: uppercase
}

.checkout #customer_details>div+div,
.checkout_title:not(:first-child) {
  margin-top: clamp(50px, 5vw, 70px)
}

#nova-poshta-shipping-info,
.checkout .wc_payment_methods,
.checkout_form,
.checkout_form .form-row.place-order,
.wcus-checkout-fields>div,
.wcus-checkout-fields>div>div,
.checkout_block__field-wrapper {
  display: grid;
  grid-gap: clamp(20px, 3vw, 40px)
}

.checkout_block_title {
  font-size: var(--h4);
  text-transform: uppercase;
  color: var(--black2);
}

#mrkv_ua_shipping_nova-poshta-shipping-info .form-row:not(:first-child),
#mrkv_ua_shipping_nova-poshta_address-shipping-info .form-row:not(:first-child),
#mrkv_ua_shipping_nova-poshta_poshtamat-shipping-info .form-row:not(:first-child),
#mrkv_ua_shipping_ukr-poshta-shipping-info .form-row:not(:first-child),
#mrkv_ua_shipping_ukr-poshta_address-shipping-info .form-row:not(:first-child) {
  margin-top: clamp(20px, 2vw, 30px)
}

.checkout .woocommerce-checkout .form-row label:not(.checkbox),
.checkout_form ._input p {
  font-weight: 300;
  text-transform: uppercase
}

.checkout .woocommerce-checkout .form-row label abbr {
  text-decoration: none
}

.checkout .form-row label span.error,
.checkout_form ._input p span {
  --color: red;
  font-size: var(--small);
  margin-left: .4rem
}

.checkout .form-row.error input,
.checkout_form ._input.error input {
  border-color: var(--red)
}

.checkout_form input[type=checkbox]+span {
  --color: var(--gray)
}

.checkout_form .spechial {
  --color: var(--gray);
  font-weight: 300
}

.checkout_form table {
  width: 100%;
  margin-bottom: -20px;
  border-spacing: 0
}

.checkout_form td {
  --color: var(--gray);
  padding: 10px 0;
  font-size: var(--text2)
}

.checkout_form td:last-child {
  font-size: var(--h6);
  text-align: right
}

.checkout_right {
  position: sticky;
  top: 100px;
}

.checkout-review-order {
  overflow-y: auto;
  max-height: min(680px, 80vh);
  padding-bottom: 20px;
}


.checkout-review-order::-webkit-scrollbar {
  width: thin;
}

.checkout-review-order::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 4px;
}



.checkout_list {
  --gap: clamp(10px, 2vw, 20px);
  padding-right: 20px;
  padding-bottom: 20px;
}

.checkout_list li+li {
  margin-top: var(--gap);
}

.checkout_form h3 {
  display: none !important
}

.checkout_form #shipping_method {
  display: flex;
  flex-direction: column;
  grid-gap: 10px
}

.checkout-inline-error-message {
  display: none
}

.checkout-form .form-row {
  display: flex;
  gap: 30px;
}

.checkout-form .form-group {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
}

.checkout-form label {
  font-size: var(--text3);
  margin-bottom: 0;
  font-family: 'Gilroy', sans-serif;
  color: var(--black2);
}


.checkout-form .checkbox label {
  flex-direction: row;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.checkout-form .checkbox input {
  width: 16px;
  height: 16px;
}

.checkout-btn {
  width: 100%;
  padding: 15px;
  border: 1px solid #000;
  background: #000;
  color: #fff;
  cursor: pointer;
  transition: .3s;
}

.checkout-btn:hover {
  background: #333;
}

/* ===== Помилки ===== */

.checkout-form .error-text {
  display: none;
  color: #e30613;
  font-size: 12px;
  margin-top: 5px;
}

.checkout-form .error input,
.checkout-form .error .select2-selection {
  border-color: #e30613 !important;
}

.checkout-form .error .error-text {
  display: block;
}

/* ===== Select2 кастом ===== */

.checkout-form .select2-container {
  width: 100% !important;
}

.checkout-form .select2-container--default .select2-selection--single {
  border: none;
  border-bottom: 1px solid rgba(37, 37, 37, .4);
  border-radius: 0;
  height: 40px;
  padding: 5px 0;
  background: transparent;
}

.checkout-form .select2-container--default .select2-selection__rendered {
  padding-left: 0;
  line-height: 30px;
}

.checkout-form .select2-container--default .select2-selection__arrow {
  height: 100%;
}



.form-group input::placeholder {
  font-weight: 300;
  color: rgba(160, 160, 159, 1);
}

input {
  font-family: 'Gilroy';
}

.checkout-page .select2-container .select2-results__option {
  text-transform: unset !important;
}

.checkout-page .select2-container {
  border: 1px solid #000 !important;
}

.checkout-page .select2-container .select2-selection__rendered {
  text-transform: none !important;
  padding: 0 8px;
}


/* ── Custom Radio ── */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text);
  user-select: none;
}

.radio-label input[type="radio"] {
  display: none;
}

.radio-custom {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid var(--black2);
  background: transparent;
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.2s;
}

.radio-custom::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-color);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.2s;
}

.radio-label input[type="radio"]:checked+.radio-custom {
  border-color: var(--primary-color);
}

.radio-label input[type="radio"]:checked+.radio-custom::after {
  transform: translate(-50%, -50%) scale(1);
}

.radio-label:hover .radio-custom {
  border-color: var(--primary-color);
}

/* ── Dynamic panels ── */
.delivery-panel {
  display: none;
}

.delivery-panel.active {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* ── Additional info (second section) ── */
.field-textarea {
  width: 100%;
  border: none;
  border-bottom: 1.5px solid var(--border);
  background: transparent;
  padding: 8px 0;
  font-size: 13px;
  color: var(--muted);
  font-family: var(--font-ui);
  resize: none;
  outline: none;
  transition: border-color 0.2s;
  min-height: 36px;
}

.field-textarea:focus {
  border-color: var(--accent);
  color: var(--text);
}

.field-textarea::placeholder {
  color: var(--muted);
  font-size: 13px;
}

.delivery-panel .field-label {
  text-transform: uppercase;
  font-size: var(--text3);
  display: block;
  font-weight: 300;
}

.checkout_other-info {
  margin-top: 70px;
}

.checkout_block_subtitle {
  font-size: var(--text3);
  text-transform: uppercase;
  margin-top: 10px;
}

.payment_box {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.payment_box p {
  font-weight: 300;
  font-size: var(--text3);
  color: var(--black2);
  line-height: 100%;
  letter-spacing: 0.05em;


}

.payment_box p a {
  font-weight: 400;
  text-decoration: underline;
}

.place-order {
  color: var(--text3);
}

.place-order:not(:first-child) {
  margin-top: 50px;
}


.item {
  display: flex;
  gap: 25px;
}

.item_img {
  flex-shrink: 0;
}

.item_img img {
  width: 135px;
  height: 155px;
  object-fit: cover;

}

.item_info {
  display: flex;
  flex-direction: column;
  grid-gap: 10px;
  flex-grow: 1
}

.item_name {
  font-weight: 300;
  font-size: var(--text3);
  line-height: 1.17;
}

.item_size {
  display: flex;
  grid-gap: 10px;
  font-size: var(--small);
  font-weight: 300;
  text-transform: uppercase
}

.item_size span {
  --color: var(--black2)
}


.item_bottom {
  flex-grow: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  grid-gap: 15px
}

.item_count {
  font-size: var(--small);
  font-weight: 300;
  text-transform: uppercase
}

.item_price {
  font-size: var(--h6);
  font-weight: 300;
  line-height: 1;
  letter-spacing: .02em
}

.item_package {
  font-weight: 300;
  font-size: var(--small);
  line-height: 100%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 5px;
}

.checkout_list .item {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(191, 192, 192, 1);
}

.auth-head--center {
  justify-content: center;
}

.favorite-btn img:last-child {
  display: none;
}

.footer_contact .accent {
  padding-top: 12px;
  display: block;
  font-size: var(--text2);
  letter-spacing: 0.05em;
}

.footer_contact p a {
  font-size: 18px;
  display: block;
  padding-top: 12px;
}

.footer_mail {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer_mail a {
  font-size: 18px;
}

.footer_mail a p {
  letter-spacing: 0.05em;
}

.soc a img {
  width: 28px !important;
  height: 28px !important;
}


.noUi-base {
  height: 2px !important;
}

.noUi-connects {
  background: rgba(37, 37, 37, 0.3) !important;
}

.lost_reset_password {
  display: flex;
  flex-direction: column;
  grid-gap: 40px;
  max-width: 500px;
  margin: 50px auto 0;
}

.lost_reset_password p:first-child {
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 1.25;
}



#other-receiver-fields {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

#other-receiver-fields.active {
  max-height: max-content;
  margin-top: 50px;
}

#other-receiver-fields .form-row+.form-group {
  margin-top: 40px;
}

.order-success {
  padding: 70px 0 140px;
  margin-top: 60px;
}



.order-title {
  text-align: center;
  font-size: var(--h4);
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 50px;
}

.order-info {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 30px;
  margin-bottom: 36px;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-label {
  font-size: 14px;
  color: rgba(101, 101, 100, 1);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
}

.info-value {
  font-size: var(--text2);
  line-height: 1;
}

.order-table {
  width: 100%;

}

.order-table .table-head,
.order-table .table-row {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr 1fr;
  gap: 20px;
  padding: 14px 0;
}

.order-table .table-head {
  font-size: var(--text3);
  color: rgba(101, 101, 100, 1);
  font-weight: 300;
  border-bottom: 1px solid rgba(37, 37, 37, 0.2);
}

.order-table .table-row {
  font-size: var(--text3);
  border-bottom: 1px solid rgba(37, 37, 37, 0.2);
}

.order-summary {
  margin-top: 26px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  line-height: 1;
}

.summary-row span:first-child {
  color: rgba(51, 51, 51, 1);
  font-size: var(--text3);
}

.summary-row span:last-child {
  color: rgba(51, 51, 51, 1);
  font-size: var(--text2);
}

.notify-form .form-control-wrap {
  width: calc(50% - 20px);
}

.form-control-wrap {
  position: relative;
}

.form-control-wrap .error-text {
  position: absolute;
  bottom: -20px;
  color: rgba(204, 18, 18, 1);
  font-size: 12px;
}

.field-error {
  color: red;
  font-size: 12px;
  position: absolute;
  bottom: -20px;
}

.woocommerce-form-row {
  position: relative;
}


.wholesale {
  margin-top: 40px;
  padding-top: 60px;
  padding-bottom: 180px;
}

.wholesale_title_wrappre {
  overflow: hidden
}

.wholesale_title {
  max-width: 1100px;
  font-size: var(--h3);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.15;
}

.wholesale_net {
  display: flex;
  grid-gap: 50px;
  justify-content: flex-start;
  margin-top: 80px;
}

.wholesale_text {
  width: 100%;
  max-width: 700px;
  font-weight: 300;
  font-size: var(--text3);
}

.wholesale_text table {
  width: 100%;
  border-spacing: 0;
  margin-top: 20px;
}

.wholesale_text table strong {
  font-size: var(--h6);
  font-weight: inherit
}

.wholesale_text table {
  border-collapse: separate;
  border-spacing: 0 25px;
}

.wholesale_text table td {
  padding-bottom: 20px;
  font-size: var(--text3);
  border-bottom: 1px solid var(--primary-color)
}

.wholesale_text table td:last-child {
  text-align: right
}

.wholesale_contact {
  margin-top: 30px;
  font-weight: 300;
  text-transform: uppercase
}

.wholesale_contact li p:first-child {
  font-size: var(--text3);
  line-height: 1;
}

.wholesale_contact a {
  display: block;
  margin-top: 20px;
  font-weight: 400;
  font-size: var(--text2)
}

#form-log .form-row,
#form-reg .form-row {
  position: relative;
}

.success-notification {
  color: green;
  font-size: 15px;
  text-align: center;
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
}

.wholesale_text.content p:not(:last-child) {
  padding-bottom: 54px;
}

.wholesale_contact {
  display: flex;
  gap: 90px;
}

.field-error-email-off {
  color: red;
  font-size: 13px;
  text-align: center;
  position: absolute;
  bottom: 62px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

.about {
  margin-top: 50px;
  padding-top: 100px;
  padding-bottom: 0;
}

.about_top {
  gap: 30px;
  align-items: flex-end;
}

.about_top:before {
  content: '';
  flex-grow: 1;
  margin-bottom: calc(var(--h3) * .28);
  border-bottom: 1px solid var(--primary-color)
}

.about_caption_wrapper {
  order: -1;
  overflow: hidden
}

.about_title_wrapper {
  overflow: hidden;
  max-width: 888px;
  width: 100%
}


.about_caption {
  font-size: var(--h4);
  text-transform: uppercase;
  font-weight: 400;
}

.about_title {
  text-align: right;
  font-size: var(--h3);
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1.15;
}

.about_content {
  margin-top: 76px;
}

.about_block {
  margin-top: 150px;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
}

.about_image {
  width: 100%;
  display: block;
  height: 500px;
  object-fit: cover;
  object-position: center;
}

.about_images {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 778px;
}

.about_images li img,
.about_images li video {
  transition: height .83s
}

.about_images li video {
  top: auto;
  bottom: 0;
  object-fit: cover;
  height: 100%;
}


.about_images li:first-child {
  --percent: 144%;
  width: 55%;
  aspect-ratio: 310/450;
}

.about_images li:last-child {
  --percent: 144%;
  width: 40%;
  aspect-ratio: 230/330;
  margin-bottom: 40px
}

.about_block_content {
  width: 736px;
}

.about_block_text p {
  font-size: var(--text2)
}

.about_block_list {
  gap: 100px;
  margin-top: 70px;
  font-weight: 300;
  text-transform: uppercase
}

.about_block_list li strong {
  font-size: var(--h3);
}

.about_block_list p {
  margin-top: 10px;
  font-size: var(--text3);
  max-width: 140px;
}

.about_content .about-new {
  padding-top: 130px;
}

.about-block-quote {
  position: relative;

  font-size: var(--h5);
  font-weight: 300;
  text-transform: uppercase;
  display: flex;
  gap: 10px;

  align-items: flex-start;
}

.about-block-quote span {
  font-size: var(--h2);
}

.about-block-quote p {
  padding-top: 10px;
  max-width: 1461px;
  width: 100%;
}

.about_images video {
  width: 100%;
}

.about-block-heading {
  font-size: var(--h3);
  margin-bottom: 40px;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 5%;
  max-width: 670px;
}



.text-page h1 {
  font-size: var(--h4);
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 60px;
}



.text-page li,
.text-page p {
  font-size: var(--text3);
  font-weight: 300;
}

.text-page ol {
  counter-reset: item;
  margin-top: 1em;
  padding-left: 0;
}

.text-page ol li:before {
  content: counters(item, '.') ".";
  counter-increment: item;
  padding-right: 10px;
  color: var(--primary-color);
}

.text-page a:hover {
  opacity: 0.7;
}

.faq:not(:last-child) {
  padding-bottom: 0;
}

.faq-category {
  margin-top: 50px;
}

.faq-category-title {
  font-size: var(--h4);
  font-weight: 400;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(160, 160, 159, 1);
  margin-bottom: 40px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 860px;
  width: 100%;
  margin-left: auto;
  color: #232323;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-size: var(--h5);
  font-weight: 300;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #232323;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
}

.faq-icon {
  width: 12px;
  height: 12px;
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
  transform: rotate(45deg);
  transition: transform 0.4s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(-135deg);
}

.faq-answer {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: height 0.4s ease, opacity 0.3s ease;
}

.faq-item.active .faq-answer {
  opacity: 1;
  max-width: 820px;
  width: 100%;
}

.faq-answer p {
  font-size: var(--text2);
  line-height: 1.15;
  padding-top: 16px;
}

.faq-category+.faq-category {
  margin-top: 80px;
}

/* ====== Responsive ====== */






/* NAV */
.account-nav {
  display: flex;
  gap: 60px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 15px;
}

.tab {
  background: none;
  border: none;
  font-size: var(--text3);
  cursor: pointer;
  position: relative;
  padding-bottom: 10px;
  transition: .3s;
  letter-spacing: 0.05em;
  color: var(--black2);
}

.tab.active {
  color: var(--primary-color);
}

.tab.active::after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
}

.tab:hover {
  opacity: .6;
}

.logout {
  color: #c0392b;
}

/* CONTENT ANIMATION */
.account-content {
  position: relative;
  overflow: hidden;
}

.account-content .table-head {
  font-size: var(--small);
}

.account-content .table-row {
  font-size: var(--text2);
}

.tab-content {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: .4s ease;
  position: absolute;
  width: 100%;
}

.tab-content.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}

/* TABLE */
.orders-table {
  margin-top: 40px;
}

.table-head,
.table-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 60px;
  padding: 18px 0;
  border-bottom: 1px solid #ccc;
  align-items: center;
}

.table-head {
  font-size: 14px;
  color: rgba(101, 101, 100, 1);
  font-weight: 300;
}

.table-row {
  transition: .3s;
  font-size: 18px;
}

.table-row:hover {
  background: rgba(0, 0, 0, 0.03);
}


.details-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  transition: .3s;
}

/* DETAILS */
.back-btn {
  margin-top: 30px;
  cursor: pointer;
  color: var(--black2);
  display: block;
  font-size: var(--text3);
  transition: .3s;
}

.order-status {
  font-weight: 300;
  font-size: var(--h6);
  line-height: 100%;
  letter-spacing: 0.02em;
  margin-top: 50px;

}

#order-details .section-title {
  font-size: var(--h4);
  margin-top: 50px;
}

.back-btn:hover {
  opacity: .6;
}

.details-info {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 50px 0;
}

.details-table {}

.details-info>div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.details-info>div strong {
  color: rgba(101, 101, 100, 1);
  font-weight: 300;
  font-size: var(--text3);
  line-height: 100%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.details-info>div span {
  font-weight: 400;
  font-size: var(--text2);
  line-height: 100%;
  letter-spacing: 0.05em;
}

.details-row {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr 1fr;
  padding: 15px 0;
  font-weight: 300;
  font-size: var(--text3);
  border-bottom: 1px solid rgba(37, 37, 37, 0.2);
}

.details-row.head {
  color: var(--black2);

  text-transform: uppercase;

}

.details-row>div:not(:first-child),
.order-table .table-row>div:not(:first-child),
.order-table .table-head>div:not(:first-child) {
  text-align: center;
}

.details-row>div:last-child,
.order-table .table-row>div:last-child,
.order-table .table-head>div:last-child {
  text-align: right;
}

.address {
  margin-top: 20px;
  line-height: 1.6;
  font-size: var(--text2);
}


/* зелений фон при додаванні в кошик */
.notice--success {
  background: rgba(65, 135, 74, 1);
  color: #fff;
}

.address-default {
  padding-top: 50px;
  padding-bottom: 50px;
}


.address-default__description {
  font-size: var(--h6);
  line-height: 1;
  margin-bottom: 50px;
}

.address-default__info p {
  margin: 0 0 30px 0;
  font-size: var(--text3);
  font-weight: 300;
}

.account-form__btn {
  margin-top: 30px;
  padding: 16px 120px;
  background: rgba(101, 101, 100, 1);
  color: #fff;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.account-form__btn:hover {
  background: var(--primary-color);
}


.account-form {
  padding-top: 50px;
  padding-bottom: 50px;
}

.account-form .form {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.account-form .form input {
  border-color: var(--black2);
}

.account-form .form__group {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.account-form .form__group label {
  font-size: var(--text3);
}

.form__password-title {
  margin: 10px 0 0;
  font-size: 20px;
  font-weight: 300;
  color: var(--black2);
}

.account-form .account-form__btn {
  margin-top: 10px;
}

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

input[type="search"]::-webkit-search-decoration {
  display: none;
}


.fade-in {
  opacity: 0;
  /* спочатку невидимий */
  transition: var(--transition);
  /* плавна поява */
}

/* клас, який додаємо коли елемент в viewport */
.fade-in.visible {
  opacity: 1;
}

.banner-swiper .swiper-slide {
  cursor: grab;
}

.btn.btn-main {
  /* padding-top: 6%; */
  padding-bottom: 0;
  justify-content: center
}

.btn.btn-main:after {
  --size: clamp(30px, 5.3vw, 100px);
}

.category[data-aos] {
  transform: scale(0.96);
}

.category[data-aos].aos-animate {
  transform: scale(1);
}

.select2-container--default .select2-dropdown {
  opacity: 0;
  /* спочатку приховано */
  transform: scaleY(0);
  /* зменшено по вертикалі */
  transform-origin: top;
  /* розкривається зверху вниз */
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.select2-container--open .select2-dropdown {
  opacity: 1;
  transform: scaleY(1);
  /* повний розмір */
}

select {
  opacity: 0;
  /* приховуємо стандартний select до ініціалізації */
  transition: opacity 0.2s ease;
}

.catalog_content .product-card {
  opacity: 0;
  transform: translateY(12px);
  will-change: opacity, transform;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.catalog_content .product-card.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width:1760px) {
  .product_catalog+.twins {
    padding-top: 80px;
  }
}

@media only screen and (min-width: 1741px) {
  .product_image {
    position: relative;
    padding-left: 90px;
  }

  .product_image_small {
    --size: 100px;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 80px;
  }


  .product_image_small .thumbs-prev,
  .product_image_small .thumbs-next {
    right: 0;
    bottom: auto;
    width: 100%;
    height: 40px;
  }

  .product_image_small .thumbs-next {
    bottom: 0 !important;
    top: unset !important;
  }

  .product_image_small .thumbs-next:after,
  .product_image_small .thumbs-prev:after {
    transform: rotate(100grad);
  }
}

@media only screen and (max-width: 1740px) {
  .product_image_small .thumbs-next {
    left: unset;
    right: 0;
  }

  .product_net {
    gap: 90px;
  }

  .product_image_small .swiper-slide {
    opacity: 0.6;
  }

  .product_image_small .swiper-slide-thumb-active {
    opacity: 1;
  }

  .size-item span {
    font-size: 18px;
  }

  .product_info .old-price {
    font-size: 12px;
  }
}

@media (max-width: 1739px) {
  .faq-answer p {
    font-size: 16px;
  }

  .header-content {
    padding: 15px 0;
  }


  .sidebar-wrapper {
    padding-right: 60px;
  }
}

@media (max-width:1281px) {
  .product_net {
    justify-content: space-between;
    gap: 25px;
  }

  .about_title_wrapper {
    max-width: 808px;
  }



}

@media (max-width:1200px) {
  .contact_adress {
    font-size: 16px;
  }

  .open-search-cont {
    right: 50%;
    transform: translateX(50%);
    max-width: 500px;
  }

  .anime-link__arrows img {
    width: 100% !important;
    height: 100% !important;
  }

  .category {
    justify-content: flex-start;
    padding: 20px;
  }

  .size-options {
    gap: 10px;
  }

  .product-options:not(:first-child) {
    margin-top: 25px;
  }

  .product-options {
    gap: 20px;
  }

  .size-item span {
    font-size: 14px;
  }

  .product_actions {
    margin-top: 30px;
  }

  .product_bottom {
    flex-wrap: wrap;
  }

  .product_actions .wishlist-add-button {
    width: 40px;
    height: 40px;
  }

  .popup_name {
    font-size: 18px;
  }

  .popup-content {
    margin-top: 50px;
  }
}

@media (max-width:1201px) {
  .lost_reset_password p:first-child {
    font-size: 14px;
  }

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

  .image-grid img:nth-child(6) {
    display: none;
  }

  .collection-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .collection-title {
    margin-right: 0;
  }

  .collection-content {
    margin-left: 0;
  }

  .collection-list {
    grid-template-columns: 1fr;
    padding-bottom: 30px;
  }

  .collection-list {
    width: calc(100vw - 30px);
  }

  .collection-content .btn-main {
    margin-left: auto;
  }


  .collection-info {
    align-items: flex-end;
  }

  .collection-title {
    margin-bottom: 0;
  }

  .collection-content .btn-main {
    margin-bottom: 0;
    margin-top: auto;
  }


  .product-card__wish {
    opacity: 1 !important;
  }

  .twins_images img {
    height: 40px;
    min-width: 40px;
    width: 40px;
  }

  .basket_tag {
    font-size: 14px;
  }

  .checkout-form {
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
  }

  .checkout_right {
    position: relative;
    top: unset;
    width: 100%;
  }


  .basket_row {
    row-gap: 0;
  }

  .about_images li:last-child {
    display: none;
  }

  .about_images li:first-child {
    width: 100%;
  }


  .about_title_wrapper {
    max-width: 60vw;
  }


  .footer_mail a,
  .footer_contact p a {
    font-size: 13px;
  }

}

@media (max-width:1100px) {
  .modal-content .btn-main {
    right: -20px;
    bottom: -20px;
  }

  .modal-content {
    padding: 60px 40px;
  }
}

@media only screen and (max-width: 1201px) {
  .footer_bottom {
    flex-wrap: wrap;
  }

  .collection_fixed {
    position: relative;
    top: unset;
    height: max-content;
  }

  .collection-list {
    display: none;
  }

  .collection__slider {
    padding-bottom: 30px;
    height: auto;
    padding-bottom: 30px;
  }

  .header .main-nav .nav-link:last-child {
    display: none;
  }

  .products-section .anime-link {
    flex-shrink: 0;
  }


  .categories__grid {
    display: none;
  }

  .categories__slider {
    display: block !important;
  }

  .swiper-slide .category {
    aspect-ratio: 285/400;
    height: auto;
  }

  .categories .swiper-pagination-bullet {
    background: #000;
    opacity: 0.3;
  }

  .categories .swiper-pagination-bullet-active {
    opacity: 1;
  }


  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer_right {
    width: 100%;
    max-width: none;
    margin-top: 36px;
  }

  .footer_desing {
    order: 1;
    justify-content: flex-end;
    width: 45%;
  }

  .footer_net {
    grid-template-columns: 1fr;
  }

  .footer_links {
    justify-content: flex-end;
    flex-grow: 1;
  }

  .footer_cop {
    width: 45%;
  }



  .products-section {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

@media (max-width: 1024px) {
  .menu-item {
    font-size: 14px;
  }

  .footer_soc a img {
    width: 24px !important;
    height: 24px !important;
  }

}

@media (max-width: 920px) {
  .main-nav {
    gap: 26px;
  }

  .btn-secondary {
    font-size: var(--text2);
  }

  .banner-swiper {
    height: max-content;
  }

  .slider_content {
    padding: 4px;
  }

  .swiper-pagination-bullet {
    font-size: 12px !important;
  }

  .instagram-section .section-title:not(:last-child) {
    margin-bottom: 50px;
  }


}

@media (max-width: 768px) {

  .header-content {
    padding: 12px 0;
    padding-left: 10px;
  }

  .footer_telegram_link .anime-link__arrows {
    width: 26px;
    height: 26px;
  }

  .twins_images img {
    height: 65px;
    min-width: 65px;
    width: 65px;
  }

  .details-info {
    margin: 30px 0;
  }

  .tab-content .address {
    font-size: 14px;
  }

  .order-status {
    margin-top: 16px;
  }

  .account-section {
    height: max-content;
  }

  .wholesale_text {
    max-width: 100%;
  }

  .empty_button:not(:first-child) {
    margin-top: 30px;
  }

  .empty_title:not(:first-child) {
    margin-top: 10px;
  }

  .empty_text:not(:first-child) {
    margin-top: 15px;
  }

  .empty_icon img {
    width: 120px !important;
    height: 120px !important;
    object-fit: contain;
  }

  .basket_tag {
    font-size: 12px;
  }

  .about_title_wrapper {
    max-width: 100%;
  }




  .hero-subtitle:not(:first-child) {
    margin-top: 0;
  }

  .about-section .btn-main {
    margin-top: 0 !important;
  }

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

  .image-grid img:nth-child(5),
  .image-grid img:nth-child(6) {
    display: none;
  }




  .menu-link {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-nav .container {
    gap: 20px;
  }

  .submenu-link {
    padding-left: 30px;
    padding-right: 0;
  }

  .sidebar-menu {
    max-width: 100%;
    width: 100%;
  }

  .hero-slider {
    height: 50vh;
  }

  .slide-content {
    bottom: 40px;
    left: 30px;
  }

  .hero-subtitle {
    font-size: 13px;
  }

  .slider-nav {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .slider-nav.prev {
    left: 20px;
  }

  .slider-nav.next {
    right: 20px;
  }


  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-video-mobile {
    display: block;
  }

  .hero-video-desktop {
    display: none;
  }

  .modal-content .btn-main {
    right: -10px;
    bottom: -10px;
  }

  .modal-text {
    max-width: 80%;
  }

  .modal-content {
    padding: 60px 20px;
  }

  .page-numbers {
    font-size: 14px;
  }



  .contact_adress {
    font-size: 13px;
  }

  .contact_net {
    flex-wrap: wrap;
  }

  .contact_miso {
    --delay: 0s !important;
    grid-gap: 20px 50px;
    width: 100%;
    max-width: none;
  }

  .contact_miso_image {
    --percent: 49.7%;
    grid-row: 1 / 3;
  }

  .catalog .catalog-search-input:focus {
    width: 160px !important;
  }



  .section-header {
    width: 100%;
    justify-content: space-between;
  }

  .sold-out-label {
    font-size: 20px;
  }


  .contact_image {
    max-width: 50%;
  }

  .contact_country {
    font-size: 12px;
  }

  .contact_form_block {
    grid-template-columns: 1fr
  }

  .contact form .__btn {
    margin-top: 20px
  }

  .contact_form .contact_form_block {
    grid-template-columns: 1fr;
  }

  .contact_form {
    padding-bottom: 120px;
  }

  .contact_miso {
    display: flex;
    gap: 50px;
    align-items: flex-end;
  }

  .contact_miso {
    display: grid;
    grid-template-columns: 60% 1fr;
    column-gap: 50px;
    grid-template-rows: 1fr auto;
    row-gap: 0;
    align-items: start;
  }

  .contact_miso_image {
    grid-column: 1;
    max-height: 228px;
    height: 100%;
    grid-column: 1;
    grid-row: 1 / span 2;

  }

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

  .contact_miso_title {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
  }

  .contact_miso_link {
    grid-column: 2;
    grid-row: 2;
  }

  .close-modal {
    top: 10px;
    height: 10px;
    width: 34px;
    height: 34px;
  }

  .checkout-form .form-row {
    flex-direction: column;
    gap: 25px;
  }

  .about_title_wrapper {
    order: -2;
  }

  input:not([type=checkbox], [type=radio], [type=submit], [type=range], [type=button]),
  textarea {
    font-size: 11px;
  }

  .select2-container--default .select2-results__options {
    padding: 10px;
  }


  .about_content img {
    width: 100%;
  }



  .about_top {
    flex-wrap: wrap;
  }



  .text-page h1 {
    margin-bottom: 40px;
  }

  .tab-content .table-row {
    font-size: 12px;
  }

  .table-row {

    gap: 5px;
    padding: 20px 0;
  }

  .details-row {

    gap: 5px;
  }

  .account-nav {
    gap: 20px;
    flex-wrap: wrap;
  }

  .menu-open .header {
    background: var(--bg);
  }

  .sidebar-nav {
    height: max-content;
  }

  .account-form__btn {
    width: 100%;
    text-align: center;
  }

  .sidebar-menu {
    padding-bottom: 50px;
  }

  .faq-list {
    gap: 36px;
  }

  .faq-title {
    font-size: 22px;
  }

  .faq-icon {
    width: 8px;
    height: 8px;
  }


  .order-info {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }


  .order-success .table-row {
    padding: 15px 0;
    border-bottom: 1px solid rgba(37, 37, 37, 0.2);
  }

  .order-success .table-row>div {
    display: flex;
    justify-content: space-between;
    gap: 8px;
  }


  .order-summary {
    max-width: 100%;
    margin-top: 30px;
  }

  .wishlist-notice {
    top: 52px;
  }

  #footer_soc-desktop {
    flex-wrap: wrap;
  }
}

@media (max-width:768px) {
  .about-images .parallax-bg {
    top: 0;
  }
  .checkout_detail.mob {
    display: flex !important;
  }

  .checkout {
    padding-top: 30px;
    margin-bottom: 52px;
  }

  #coupon_code {
    font-size: var(--text3);
  }

  .btn-black {
    width: 40px;
    height: 40px;
  }


  .menu-toggle {
    margin-top: 0;
  }


  .product_image_active,
  .product_image_active img {
    height: 460px;
    min-height: 0;
    aspect-ratio: auto;
  }

  .color-box {
    width: 24px;
    height: 24px;
  }

  .color-options {
    gap: 12px;
  }

  .popup_name {
    font-size: 14px;
  }

  .product_package {
    max-width: 100% !important;
  }

  .product_catalog {
    padding-top: 50px;
    padding-bottom: 60px;
  }

  .anime-text {
    margin-top: 2px;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }

  input[type=checkbox]+label,
  input[type=checkbox]+p,
  input[type=checkbox]+span,
  input[type=radio]+label {
    --size: 12px;
  }

  .menu-toggle {
    display: flex;
  }

  .twins_net {
    flex-direction: column;
  }

  .twins_right {
    width: 100%;
  }

  .twins_left {
    width: 100%;
  }

  .footer_left {
    display: grid;
    grid-template-columns: 158px auto;
    max-width: none;
  }

  .footer_nav {
    position: relative;
    grid-template-columns: 1fr;
  }

  .footer_nav ul {
    column-gap: 40px;
  }

  .slider_catalog {
    margin-bottom: 100px;
    margin-right: 20px;
  }

  .menu-item {
    font-size: 13px;
  }

  .about-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    align-items: stretch;
  }

  .about-grid .section-title {
    margin-bottom: 40px;
  }

  .about-images {
    width: 140px;
    padding-bottom: 90px;
  }

  .about-images .parallax-bg {
    width: 100%;
    height: 100%;
  }

  .about-content {
    width: 179px;
    display: flex;
    flex-direction: column;
    margin-left: auto;
    justify-content: space-between;
  }

  .collection__slider {
    padding-bottom: 25px;
  }

  .contact.page {
    padding-top: 72px;
    padding-bottom: 40px;
  }

  .page {
    padding-top: 32px;
    padding-bottom: 40px;
  }

  .price-values * {
    font-size: 12px;
  }

  .price-values {
    margin-bottom: 24px;
  }

  .filter_block_select {
    margin-top: 10px;
    margin-bottom: 20px;
  }

  .filter_columns {
    gap: 36px;
  }

  .catalog_content ul {
    --net: 2;
  }

  .tab-content .table-head,
  .tab-content .table-row {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 40px;
  }

  .tab-content .table-head {
    font-size: 12px;
  }

  .account-form .form {
    gap: 30px;
  }


  .tab-content .table-row {
    font-size: 10px;
  }

  .footer_desing {
    width: max-content;
  }

  .twins_left {
    gap: 20px;
  }

  .twins_title {
    margin-top: 0px;
  }

  .twins_images {
    gap: 10px;
  }

  .twins_net {
    padding-bottom: 20px;
  }


  .wholesale_contact {
    grid-template-columns: 1fr;
  }

  .size-title {
    font-size: 16px;
  }

  .empty_icon img {
    width: 96px !important;
    height: auto;
  }

  .empty_title:not(:first-child) {
    margin-top: 10px;
  }

  .empty_text:not(:first-child) {
    margin-top: 15px;
  }

  .empty_text p {
    font-size: 11px;
  }


  .empty_button:not(:first-child) {
    margin-top: 30px;
  }

  .accent {
    font-size: 16px;
  }


  .notify-form .form-row {
    flex-direction: column;
  }

  .notify-form .form-control-wrap {
    width: 100%;
  }



  .product-card__title {
    font-size: 11px;
  }

  .mob {
    display: block !important;
  }

  .categories-images.mob {
    display: grid;
  }

  .desc {
    display: none;
  }

  .bar_nav ul li span {
    font-size: 11px;
  }

  .about-images .parallax-bg-wrapper:first-child {
    width: 80%;
  }

  .about-images .parallax-bg-wrapper:last-child {
    width: 110px;
    height: 126px;
    left: 50px;
    top: 140px;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .categories-images {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .instagram-section .section-title {
    flex-direction: column;
    align-items: center;
  }

  .instagram-section .section-title:not(:last-child) {
    margin-bottom: 30px;
  }

  .anime-link__arrows {
    width: 16px;
    height: 16px;
  }

  .top-block {
    margin-left: 0 !important;
  }


  .section-divider {
    max-width: 30px;
  }



  .section-divider {
    display: none;
  }

  .section-header:not(:last-child) {
    margin-bottom: 20px;
  }

  .about-content .section-text {
    margin-left: 0;
  }

  .collection-image img {
    width: 110%;
    height: 110%;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }


  .header_basket {
    display: block;
  }

  .cart-btn {
    display: none;
  }

  .hero-content {
    flex-wrap: wrap;
    gap: 18px;
  }

  .hero__divider {
    max-width: 190px;
  }

  .hero-container {
    padding-bottom: 30px !important;
  }

  .bar_nav ul {
    gap: 25px;
  }

  .lost_reset_password p:first-child {
    font-size: 11px;
  }

  .checkout_list {
    width: 100%;
  }

  .checkout_right {
    width: 100%;
  }


}

@media only screen and (max-width: 420px) {
  .basket_info {
    margin-left: -46px;
  }
}

@media (max-width:380px) {
  .twins_right {
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

@media (max-width:330px) {
  .auth-head {
    gap: 20px;
  }

  .field-error-email-off {
    gap: 50px;
  }
}

[data-aos="fade-up"].section-title {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}

[data-aos="fade-up"].aos-animate.section-title {
  opacity: 1;
  transform: translateY(0);
}

.content-reveal {
  opacity: 0;
  animation: revealUp 1.2s ease forwards;
  ;
  will-change: opacity, transform;
  animation-fill-mode: forwards;
  animation-delay: 0.5s;
}

@keyframes revealUp {
  to {
    opacity: 1;
  }
}

.simplecheckout-button-block {
  position: relative;
  display: grid;
  align-items: flex-start;
  grid-template-columns: 1fr clamp(380px, 31.6vw, 450px);
  grid-gap: clamp(30px, 5vw, 80px);
}

@media (max-width:768px) {
  .simplecheckout-button-block {
    grid-template-columns: 1fr;
  }
}

.edit-address .section-title {
  text-align: center;
  text-transform: uppercase;
  font-weight: 300;
}

.edit-address .section-title:not(:last-child) {
  margin-bottom: 50px;
}

/* Контейнер Select2 */
.select2-container--bootstrap .select2-selection--single {
  background-color: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  display: flex;
  align-items: center;
  padding: 0 !important;
  cursor: pointer;
  font-family: inherit !important;
  font-size: var(--text3);
  position: relative;
  transition: var(--transition);
  text-transform: uppercase;
}

.select2-selection__rendered {
  font-size: var(--text3);
}

/* Hover/фокус */
.select2-container--bootstrap .select2-selection--single:hover {
  border: none !important;
}

.select2-container--bootstrap .select2-selection--single:focus,
.select2-container--bootstrap .select2-selection--single.select2-selection--focus,
.select2-container--bootstrap.select2-container--focus .select2-selection,
.select2-container--bootstrap.select2-container--open .select2-selection {
  border: none !important;
  border-color: transparent !important;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
  outline: none !important;
}

/* Стрілка */
.select2-container--bootstrap .select2-selection__arrow {
  height: 100%;
  right: 10px;
  top: 0;
  width: 20px;
  position: absolute;
}

.select2-container--bootstrap .select2-selection__arrow b {
  border-color: #333 transparent transparent transparent;
  border-style: solid;
  border-width: 6px 5px 0 5px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
}

.select2-container--bootstrap .select2-selection--single .select2-selection__rendered {
  color: var(--black2) !important;
  line-height: 1 !important;
}

/* Кнопка очищення */
.select2-container--bootstrap .select2-selection__clear {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: #000;
  cursor: pointer;
  transition: all 0.2s ease;
}

.select2-container--bootstrap .select2-selection__clear:hover {
  color: #ff4d4f;
}

/* Список опцій */
.select2-container--bootstrap .select2-results__options {
  background: #fff;
  max-height: 400px !important;
  height: max-content;
  overflow-y: auto;
  padding: 4px 15px 15px;
  scrollbar-width: thin;
  margin-top: 0 !important;
}

/* Опції */
.select2-container--bootstrap .select2-results__option {
  color: rgba(101, 101, 100, 1);
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 300;
  font-size: var(--text3);
  display: flex;
  gap: 10px;
  align-items: center;
  transition: all 0.43s ease;
}

/* базовий стан */
.select2-container--bootstrap .select2-results__option {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.25s ease;
}

/* псевдоелемент */
.select2-container--bootstrap .select2-results__option::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50px;
  background: rgba(37, 37, 37, 1);
  flex-shrink: 0;

  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

/* активний стан */
.select2-container--bootstrap .select2-results__option--highlighted,
.select2-container--bootstrap .select2-results__option[aria-selected="true"] {
  transform: translateX(4px);
}

.select2-container--bootstrap .select2-results__option--highlighted::before,
.select2-container--bootstrap .select2-results__option[aria-selected="true"]::before {
  opacity: 1;
  transform: scale(1);
}

.select2-container--bootstrap .select2-results__option--highlighted,
.select2-container--bootstrap .select2-results__option[aria-selected="true"] {
  background-color: transparent !important;
  color: inherit !important;
}

.select2-search--dropdown {
  padding: 4px 15px !important;
}


.select2-search--dropdown input {
  border: 1px solid #ccc !important;
}


.select2-dropdown {
  padding-bottom: 16px;
}

/* Scrollbar */
.select2-container--bootstrap .select2-results__options::-webkit-scrollbar {
  width: 4px;
}

.checkout-form input[data-valid="false"] {
  border-color: rgba(204, 18, 18, 1);
}


.checkout-form .form-group {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "label error"
    "input input";
  column-gap: 20px;
  row-gap: 10px;
  align-items: center;
}

@media (max-width:768px) {
  .checkout-form .form-group {
    column-gap: 10px;
  }
}

/* label */
.checkout-form .control-label {
  grid-area: label;
}

/* прибираємо wrapper */
.checkout-form .col-sm-8 {
  display: contents;
}

.checkout-form .simplecheckout-rule-group {
  display: contents;
}

/* input */
.checkout-form input,
.checkout-form .select2 {
  grid-area: input;
}

/* помилка */
.checkout-form .simplecheckout-error-text {
  grid-area: error;
  color: rgba(204, 18, 18, 1);
  font-size: var(--small);
  font-weight: 300;
  text-transform: uppercase;
}

.checkout-form .form-group>* {
  float: none !important;
}

.select2-container--bootstrap {
  padding: 16px 20px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 0 !important;
}

.payment_method label {
  margin-bottom: 20px;
}

.result-list-product {
  max-height: 50vh;
  overflow-y: auto;
}

@media (max-width:768px) {
  .result-item {
    padding-left: 0;
    padding-right: 0;
  }
}

.terms_content p+p,
.return_content p+p,
.delivery_content p+p {
  margin-top: 16px;
  display: block;
}

.terms_content,
.return_content,
.delivery_content {
  line-height: 1.19;
}

.terms_content p,
.return_content p,
.delivery_content p {
  color: rgba(37, 37, 37, 1);
}

.return_content h5,
.content-heading {
  font-size: var(--h5);
  font-weight: 300;
  line-height: 1.25;
  text-transform: uppercase;
}

.return_content h5:not(:first-child),
.content-heading:not(:first-child) {
  margin-top: 40px;
  margin-bottom: 10px;
}

.select2-container--bootstrap .select2-results__options {
  max-height: 300px !important;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.select2-dropdown {
  overscroll-behavior: none;
}

.dvdy-modal-dialog .dvdy-modal-dialog__content {
  background: var(--bg) !important;
  margin: 0 !important;
}

.dvdy-modal-dialog {
  top: 70px !important;
}

.dvdy-modal-dialog {
  padding-top: 0 !important;
}

.dvdy-modal-dialog .dvdy-modal-dialog__content {
  padding-left: 20px;
  padding-right: 20px;
}

.dvdy-modal-dialog .dvdy-modal-dialog__content {
  max-height: calc(100vh - 80px) !important;
}

.select2-dropdown {
  z-index: 100 !important;
}

.edit-address .select2-container {
  border: 1px solid #000 !important;
  padding: 16px 20px;
}

.ocf-theme-light-block.ocf-vertical .ocf-active {
  background: transparent !important;
}

.filter_head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 12px;
}

.ocf-theme-light-block .ocf-noUi-connects:before,
.ocf-theme-light-block .ocf-noUi-connects:after {
  display: none !important;
}

.ocf-value-list-body {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 16px 32px;
}

.filter_body .ocf-value-name {
  --size: 15px;
  display: flex !important;
  align-items: center;
  grid-gap: 15px;
  font-size: var(--text2);
  color: var(--black2);
  cursor: pointer;
  margin: 0 !important;
}

.filter_body .ocf-value-append {
  display: none !important;
}

.ocf-value {
  --size: 15px;

  display: flex;
  align-items: center;
  gap: 15px;

  font-size: var(--text2);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.ocf-value-input {
  width: var(--size);
  min-width: var(--size);
  height: var(--size);

  border: 1px solid var(--color);
  transition: box-shadow .3s, border-color .3s;
}

.ocf-value.selected .ocf-value-input,
.ocf-value.ocf-selected .ocf-value-input {
  box-shadow:
    inset 0 0 0 calc(var(--size) / 5) var(--white),
    inset 0 0 0 var(--size) var(--color);
}

.ocf-value.ocf-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.ocf-value:hover .ocf-value-input {
  border-color: var(--black);
}

.ocf-value-input {
  transition: box-shadow .25s ease, border-color .25s ease, transform .15s ease;
}

.ocf-value:active .ocf-value-input {
  transform: scale(0.95);
}

.ocf-popover-content {
  display: none;
}

.price-separator {
  display: none !important;
}

.price-block span {
  font-size: var(--text3);
  font-weight: 300;
}

.ocf-filter-body .ocf-value-append {
  display: none !important;
}

.ocf-value-input {
  margin: 0 !important;
}

.ocf-value-input-checkbox::after {
  content: '';
  width: 8px;
  height: 5px;

  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);

  transform: rotate(-45deg) scale(0);
  transition: transform .2s ease;
}


.ocf-value:hover .ocf-value-input-checkbox {
  border-color: var(--black);
}

.ocf-value.ocf-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.quantity+.product_actions {
  margin-top: 20px;
}

.product-options+.quantity {
  margin-top: 50px;
}

@media (max-width:768px) {
  .product-options+.quantity {
    margin-top: 0;
  }
}

.quantity button {
  transition: var(--transition);
}

.quantity+.product_actions {
  margin-top: 20px;
}

.product-options+.quantity {
  margin-top: 50px;
}

.product_price+.quantity {
  margin-top: 50px;
}

@media (max-width:768px) {
  .product-options+.quantity {
    margin-top: 24px;
  }

  .product_price+.quantity {
    margin-top: 20px;
  }
}

.quantity button {
  transition: var(--transition);
}

.ocf-form-control:focus,
input.ocf-form-control:focus,
textarea.ocf-form-control:focus {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.ocf-value-input::after {
  display: none !important;
}

.ocf-value.ocf-selected .ocf-value-input-checkbox::before {
  background-color: #000 !important;
  border-color: #000;
  box-shadow: inset 0 0 0 4px #fff;
}

.ocf-filter-body .ocf-value-name {
  --size: 15px;
  display: flex !important;
  align-items: center;
  grid-gap: 15px;
  font-size: var(--text2);
  color: var(--black2);
  cursor: pointer;
  margin: 0 !important;
}

.ocf-filter-body .ocf-value-append {
  display: none !important;
}

.ocf-form-control[disabled],
.ocf-form-control[readonly] {
  background: transparent !important;
}

.ocf-input-group .ocf-form-control {
  flex: 0 0 auto;
  width: auto;
  min-width: 3ch;
  max-width: 10ch;
  text-align: center;
  box-sizing: content-box;
  padding: 0;
  margin: 0;
}

.ocf-value-list .price-values {
  margin-bottom: 20px !important;
}

.ocf-footer .ocf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  padding: 15px 30px;
  font-weight: 300;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0.02em;
  text-align: center;
  color: #FFF;
  text-transform: uppercase;
  background-color: #252525;
  border: 1px solid #252525;
  cursor: pointer;
  transition: var(--transition);
}

.ocf-footer .ocf-btn:hover {
  background-color: transparent;
  color: #252525;
}

.icon-btn {
  cursor: pointer;
}

.ocf-mobile.ocf-close-mobile {
  display: none;
}

.ocf-filter-header-append {
  display: none !important;
}


#price-range-slider .ocf-theme-light-block .ocf-noUi-connects:before,
.ocf-theme-light-block .ocf-noUi-connects:after,
.ocf-theme-light-block .ocf-noUi-base:before {
  background-color: rgba(37, 37, 37, 0.3) !important;
}

#price-range-slider .ocf-noUi-base:before,
.ocf-noUi-connect:before {
  height: 2px !important;
}

.ocf-value,
.ocf-value:active,
.ocf-value:focus,
.ocf-value:visited,
.ocf-value:hover {
  align-items: center !important;
}

.filter_close {
  width: 24px !important;
  height: 24px !important;
}

@media (max-width:768px) {
  .ocf-body .ocf-filter-body>.ocf-value-list {
    display: block !important;
    position: relative !important;
    transform: none !important;
    height: max-content !important;
    overflow: unset !important;
    width: unset;
    min-width: unset !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
  }

  .ocf-filter.ocf-active {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }


  .ocf-filter-body>.ocf-value-list {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .ocf-theme-light-block .ocf-active .ocf-filter-header {
    color: inherit !important;
  }


  .ocf-container {
    width: 100% !important;
  }

  .ocf-footer {
    padding: 10px 20px 10px 8px !important;
    margin: 0 !important;
  }
}

.basket_error {
  background: var(--sale-color);
  color: #fff;
  padding: 4px 20px;
  width: 100%;
  grid-column: 1 / -1;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--text2);
  backdrop-filter: blur(4px);
  grid-row: 1;
  margin-top: -10px;
  margin-bottom: 20px;
}

.ocf-value-input-checkbox::before {
  border-radius: 0 !important;
  border-color: var(--primary-color) !important;
}

@media (max-width:768px) {
  .basket_error {
    margin-top: 0;
    margin-bottom: 10px;
    padding: 4px 16px;
  }
}

.basket_error:empty {
  padding: 0 !important;
  margin-bottom: 0;
}

.filter_scroll::-webkit-scrollbar {
  width: 4px;
}

.ocf-filter-name {
  text-transform: uppercase;
  font-size: var(--h6) !important;
  font-weight: 300 !important;
  letter-spacing: .02em !important;
  color: var(--primary-color) !important;
}

.ocf-selected .ocf-value-input::before {
  border-color: #000 !important;
}

.select2-dropdown {
  border-radius: 0 !important;
  border-color: var(--primary-color) !important;
}

.simplecheckout-warning-block {
  color: var(--black2);
  font-size: var(--text3);
  margin-bottom: 16px;
  font-weight: 300;
}

@media (max-width:768px) {
  .faq-question {
    font-size: 18px !important;
  }
}

.ocf-value,
.ocf-value:active,
.ocf-value:focus,
.ocf-value:visited,
.ocf-value:hover {
  margin-bottom: 0 !important;
}

.ocf-active .ocf-active-label {
  display: none !important;
}

@media (max-width: 767px) {
  .ocf-value-input {
    width: 16px !important;
    height: 16px !important;
    flex: 0 0 16px !important;
  }

  #price-range-slider.ocf-value-slider {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

.option-error:empty {
  display: none;
}

.faq * {
  letter-spacing: 0.05em;
}

@media (min-width:768px) {
  .category-btn {
    margin-bottom: -5px;
  }
}

.instagram-section .section-title {
  font-size: var(--h2) !important;

}

.instagram-section .section-title .anime-link__arrows {
  --size: 30px;
  margin-left: var(--size);
  width: var(--size);
  height: var(--size);
  margin-top: 6px;
}

.instagram-section .section-title .anime-link {
  align-items: flex-start;
}

@media (max-width:1200px) {
  .instagram-section .section-title .anime-link__arrows {
    --size: 20px;
  }
}

@media (max-width:768px) {
  .instagram-section .section-title .anime-link__arrows {
    --size: 13px;
  }
}

@media (max-width:450px) {
  .instagram-section .section-title .anime-link__arrows {
    --size: 12px;
  }
}

.anime-link__arrows img {
  aspect-ratio: 1/1 !important;
}

.field-error {
  color: red;
  font-size: 12px;
  position: absolute;
  bottom: -20px;
}

.filter_scroll .ocf-between {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 12px !important;
}

.filter_scroll .ocf-footer {
  padding-bottom: 0 !important;
}

.ocf-between .ocf-btn {
  border-radius: 0 !important;
}

.ocf-footer .ocf-btn {
  font-size: 13px !important;
}

.ocf-footer .ocf-btn-block.ocf-search-btn {
  background: var(--primary-color) !important;
}

@media (max-width:768px) {
  .ocf-footer .ocf-btn {
    font-size: 12px !important;
    padding: 10px 15px;
  }
}

.ocf-footer .ocf-btn-link {
  background: transparent !important;
  border: 1px solid var(--primary-color) !important;
  color: var(--primary-color) !important;
}

.ocf-selected-card .ocf-between {
  display: none;
}

.ocf-theme-light-block .ocf-selected-card {
  box-shadow: none !important;
  padding: 0 !important;
}

.ocf-selected-card .ocf-selected-header {
  display: none;
}

.ocf-selected-filter {
  border-radius: 0 !important;
  background: rgba(37, 37, 37, 0.1) !important;
  padding: 5px 10px;
}

.ocf-btn-link:hover,
.ocf-btn-link:focus {
  text-decoration: none !important;
}

@media (max-width:768px) {
  .filter_scroll .ocf-footer {
    padding-bottom: 12px !important;
  }
}

.ocf-value,
.ocf-value:active,
.ocf-value:focus,
.ocf-value:visited,
.ocf-value:hover {
  color: var(--primary-color);
}

.ocf-footer .ocf-btn-block {
  background-color: #252525 !important;
}

.ocf-footer .ocf-btn-block:hover {
  background: transparent !important;
}

.ocf-selected-card .ocf-theme-light-block .ocf-selected-filter {
  background-color: transparent !important;
  padding: 0 !important;
}

.ocf-selected-filter .ocf-selected-discard {
  background: rgba(37, 37, 37, 0.1) !important;
  padding: 5px 20px;
  border-radius: 0 !important;
  font-weight: 300;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  gap: 6px;
  align-items: center;
}

.ocf-footer .ocf-btn:hover {
  color: #252525 !important;
}

.ocf-selected-card .ocf-selected-filter {
  background-color: transparent !important;
  padding: 0 !important;
}

.ocf-selected-value-name {
  margin-right: 5px !important;
}

@media (min-width:768px) {
  .ocf-selected-card .ocf-selected-filter {
    margin-top: 10px;
  }
}

@media (max-width:768px) {
  .ocf-theme-light-block .ocf-selected-card {
    display: flex !important;
    flex-direction: column;
    gap: 10px;
    /* margin-left: 20px;
    margin-right: 20px; */
    align-items: flex-start;
  }



  .ocf-selected-filter .ocf-selected-discard {
    font-size: 10px;
  }

  .ocf-selected-value-name {
    margin-right: 0;
  }

  .ocf-selected-value-name+img {
    width: 12px !important;
    height: 12px !important;
  }

  .footer_soc {
    width: 108px;
    height: 46px;
  }

  .soc {
    width: 96px;
    height: 46px;
  }
}

.select2-container {
  transition: all 0.3s ease;
}

.select2-container--open {
  background: var(--bg) !important;
}

.select2-selection__arrow {
  transition: all 0.3s ease;
}

.simplecheckout-block.radio-group .form-group+.form-group {
  margin-top: 20px;
}

@media (min-width: 769px) {
  .checkout-page .select2-container--open .select2-dropdown {
    margin-top: -20px;
    padding-bottom: 0px;
    left: -1px;
  }
}

.select2-container {
  transition: all 0.3s ease;
}

.checkout .select2-container--open {
  background: #fff !important;
}

.select2-selection__arrow b {
  display: none !important;
}

.select2-selection__arrow::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  --selcet_arrow_size: calc(var(--text2) * 1.66);
  --selcet_arrow_inner: 20px;
  width: var(--selcet_arrow_size);
  height: var(--selcet_arrow_size);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transform: translate3d(0, -50%, 0);
  transition: transform .43s;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22.5 11.25L15 18.75L7.5 11.25' stroke='%23656564' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-position: center;
}

.select2-container--open .select2-selection__arrow::before {
  transform: rotate(180deg);
  transform-origin: center;
}

.select2-container--open .select2-selection__arrow::before {
  top: 0 !important;
}

.select2-selection__arrow::before {
  transition: all 0.4s ease;
}

.select2-results__option {
  padding-left: 0;
  padding-right: 0;
}

input[type="checkbox"] {
  cursor: pointer;
}

@media (max-width:768px) {
  .select2-container--open .select2-dropdown {
    margin-top: -8px;
    padding-bottom: 0px;
    left: -1px;
  }

  .select2-container--bootstrap .select2-results__options {
    padding-left: 10px;
    padding-right: 10px;
  }

  .select2-container--bootstrap {
    padding: 6px 10px;
  }

  .select2-results__option {
    padding-left: 0;
  }

  .select2-selection__arrow::before {
    right: 0;
  }
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
  box-shadow: 0 0 0 1000px transparent inset !important;

  -webkit-text-fill-color: var(--primary-color) !important;
  /* твій колір тексту */
  transition: background-color 9999s ease-in-out 0s;
}

.ocf-footer .ocf-btn-link:hover {
  background: var(--primary-color) !important;
  color: #fff !important;
}

@media (max-width: 768px) {
  .account-form__btn {
    display: flex;
    font-size: var(--text2);
    padding: 16px 20px;
    justify-content: center;
  }
}

.ocf-value-input::before,
.ocf-value-input::after {
  width: 15px !important;
  height: 15px !important;
  border: 1px solid var(--primary-color) !important;
}

.catalog_sort .select2-selection__arrow::before {
  right: 0 !important;
}

.select2-container--bootstrap .select2-selection--single {
  height: 20px;
}

.price-currency {
  font-weight: 400 !important
}

.ocf-btn-label {
  display: none;
}

.select2-selection__clear {
  display: none !important;
}

.payment-methods label[for="wayforpay"] {
  margin-bottom: 8px !important;
}

.simplecheckout-button-block .checkbox {
  grid-column: 1 / -1;
  /* растянуть на всю ширину */
  order: 3;
  /* поставить ниже кнопки */
  text-align: left;
  margin-top: 10px;
  width: auto;
  max-width: 704px;
}

.simplecheckout-button-block {
  gap: 26px !important;
}

#agreement_warning {
  display: none;
}

.popup-block {
  position: fixed;
  z-index: 2001;
  display: none;
}

.popup.active {
  display: block;
}

.popup__overl {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

/* ===== CONTENT ===== */
.popup__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #f5f3f0;
  max-width: 1290px;
  width: calc(100% - 20px);
}

/* CLOSE */
.popup__close {
  position: absolute;
  top: 9px;
  right: 9px;
  border: none;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
  background: #f5f3f0 !important;
  padding: 5px;
  border-radius: 0 !important;
}

/* INNER */
.popup__inner {
  display: flex;

}

@media (min-width:1201px) {
  .popup__inner {
    padding: 10px;
    flex-direction: column;
  }

  .collection__slider {
    display: none;
  }
}


/* IMAGE */
.popup__image {
  width: 100%;
  height: 290px;
  object-fit: cover;
}

@media (max-width:1200px) {
  .popup__image {
    width: 40%;
  }

  .wholesale_net {
    flex-direction: column;
  }
}

.popup__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TEXT */
.popup__text {
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;

}

@media (min-width:1200.9px) {
  .popup__text {
    align-items: center;
    text-align: center;
  }
}



.popup__text h2 {
  font-size: var(--h2);
  letter-spacing: 0.05em;
  margin-bottom: 15px;
  font-weight: 400;
}

.popup__text p {
  font-size: var(--h5);
  letter-spacing: 0.05em;
  margin-bottom: 55px;
  text-transform: uppercase;
  font-weight: 300;
}

.popup__btn {
  width: 496px;
  max-width: 100%;
}

@media (max-width:1200px) {
  .popup__close {
    width: 30px;
    height: 30px;
    padding: 0;
  }

  .popup__text {
    width: 60%;
  }

  .popup__content {
    max-width: 1120px;
  }
}


#simplecheckout_proceed_payment {
  position: relative;
  top: 48px;
  font-size: 14px;
}

.input-radio-payment {
  position: absolute;
  opacity: 0;
}

.marg_head {
  margin-top: 70px;
}

.cart.popup {
  inset: 0 0 0 auto !important;
  transition: transform 0.6s cubic-bezier(.76, 0, .24, 1);
}

#promoPopup {
  inset: 0;
}

.line {
  line-height: 1.7;
}

.img-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.table-cell {
  font-weight: 300;
}

.line-divider {
  display: block;
  border-bottom: 1px solid transparent;
}

.popup-content ol li {
  font-size: var(--text3);
  font-weight: 3;
}

.sklad {
  display: grid;
  gap: 16px;
  text-align: left !important;
  min-width: 230px;
  width: auto;
}

.table p {
  font-weight: 300;
  font-size: var(--text3);
}

.p-1 {
  line-height: 1.7;
}

.parametr {
  padding-top: 14px;
}

.line-divider-ogl {
  display: block;
  border-bottom: 1px solid transparent;
  margin-bottom: 8px;
}

.btn-secondary-popup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 15px 30px;
  font-weight: 300;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0.05em;
  text-align: center;
  color: #FFF;
  text-transform: uppercase;
  background-color: #252525;
  border: 1px solid #252525;
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary-popup:hover {
  background-color: transparent;
  color: #252525;
}

.footer_nav a:last-child {
  justify-self: end;
}

.footer_telegram_link {
  width: 261px;
  height: 30px;
}

.category-actions span {
  font-family: 'Gilroy', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 26px;
  line-height: 100%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.category span {
  margin-right: 20px;
}

.category-btn {
  letter-spacing: 0.02em;
}

.swiper-scrollbar {
  background: rgba(240, 240, 240, 1) !important;
}

.swiper-scrollbar-drag {
  border-radius: 0 !important;
}

.swiper-horizontal>.swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  height: 5px !important;
}

@media (max-width: 1741px) {

  .category-divider {
    display: none;
  }

  .category .category-actions {
    justify-content: space-between;
    flex-direction: column;
    height: 100%;
    align-items: flex-start;
  }

  .category .category-actions .category-btn {
    opacity: 1 !important;
    transform: translate(0) !important;
  }

  .category-btn .anime-link__arrows {
    width: 24px;
    height: 24px;
  }

  .category::after {
    background: rgba(0, 0, 0, 0.25);
  }


}

@media (min-width: 1741px) {
  .category-btn {
    flex-basis: 0;
    transform: translateX(20px);

    transition:
      opacity 0.2s ease,
      transform 0.2s ease,
      flex-basis 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) 0.15s;
  }

  .category:hover .category-btn {
    flex-basis: 145px;
    transition:
      flex-basis 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
      opacity 0.25s ease 0.2s,
      transform 0.25s ease 0.2s;
  }
}

@media (max-width: 480px) {
  .category-btn .anime-link__arrows {
    width: 16px !important;
    height: 16px !important;
    margin-top: 1px;
  }
}

.category-btn {
  overflow: hidden;
}

.category img {
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  will-change: transform;
  transform-origin: center;
}

.category:hover img {
  transform: scale(1.06);
}

.sidebar-nav .menu-item {
  margin-bottom: 0 !important;
}

@media (min-width:768.1px) {
  .sidebar-nav .menu-item {
    max-width: 320px;
    width: 100%;
    margin-left: auto;
  }

  .sidebar-wrapper {
    padding-top: 10px;
  }
}

.sidebar-wrapper {
  scrollbar-gutter: stable;
}

.hero-nav .swiper-pagination-bullet {
  height: unset !important;
}

@media (max-width:767px) {
  .sidebar-wrapper {
    padding-top: 0;
  }
}

@media (max-width:767px) {
  .bar_nav_bottom .menu-item {
    margin-bottom: 0 !important;
  }
}

@media (max-width: 768px) {
  .submenu-link {
    line-height: 16px;
  }

  .menu-link {
    height: 24px;
  }
}

.sidebar-wrapper .menu-item.has-submenu:first-child .menu-link {
  color: #CC1212;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0.05em;
}

.product-card__title {
  padding-bottom: 2px;
}

.product-card__title {
  -webkit-line-clamp: 2 !important;
}

.price-current-price {
  font-weight: 300;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0.02em;
}

.products-mobile-block {
  display: none;
}

@media (max-width:768px) {
  #top-products .products-swiper {
    display: none;
  }

  .products-mobile-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    column-gap: 4px;
    row-gap: 15px;
  }
}

@media (max-width: 768px) {
  .products-section .section-divider {
    display: block;
    height: 0.5px;
    margin-bottom: 2px;
    max-width: 100px;
    flex-shrink: unset;
  }

  .products-section .section-header {
    gap: 5px;
  }

  .products-section .section-title {
    margin-bottom: -2px;
    flex-shrink: 0;
  }
}

.hero-swiper::after,
.hero-content {
  pointer-events: none;
}

.hero-swiper {
  opacity: 0;
}

.hero-swiper.swiper-initialized {
  opacity: 1;
  transition: opacity 0.3s;
}

.sidebar-wrapper::-webkit-scrollbar {
  display: none !important;
  /* Chrome, Safari, Edge */
}

.sidebar-menu active::-webkit-scrollbar {
  display: none !important;
  /* Chrome, Safari, Edge */
}

.footer_first p {
  line-height: 1.18;
  letter-spacing: 0.05em;
}

.footer_content p {
  line-height: 1.18;
  letter-spacing: 0.05em;
}

.footer_trigger svg {
  transition: transform 0.3s ease;
}

.footer_trigger.is-open svg {
  transform: rotate(180deg);
}

.truncate-text {
  /* Максимальная высота в строках */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* Количество строк */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.footer_nav .menu-item a {
  font-family: 'Gilroy', sans-serif;
  font-weight: 400;
  font-size: var(--text2);
  line-height: 100%;
  letter-spacing: 0.05em;
  color: rgba(101, 101, 100, 1);
}

.menu-item a:hover {
  color: rgba(37, 37, 37, 1);
  opacity: 1 !important;
}

.cart-count-mob {
  display: none
}

.product-breadcrumbs.page {
  padding-top: 50px;
  padding-bottom: 30px;
}

#column-left {
  z-index: 2002 !important;
}

.ocf-theme-light-block .ocf-filter {
  background: none !important;
  border-radius: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

#column-left .ocf-filter-header,
.ocf-module-page-header {
  font-weight: 300 !important;
  font-size: 20px !important;
  line-height: 100%;
  letter-spacing: 0.02em;
  margin-top: 30px;
  margin-bottom: 20px !important;
}

#column-left .ocf-header.filter_top {
  margin-bottom: 0;
}

.filter_body .price-block input {
  min-height: max-content !important;
  height: max-content !important;
}

.filter_body .price-block {
  align-items: flex-end !important;
}

.filter_body .ocf-form-control,
.filter_body .price-currency {
  font-size: 18px !important;
}

.basket_image img {
  aspect-ratio: 1/1;
  object-fit: cover;
}

@media (min-width: 1201px) and (max-width: 1740px) {
  .wishlist-notice {
    font-size: 14.5px;
    padding: 12.8px;
  }
  .lost_reset_password .woocommerce-form-row label {
    font-size: 13.64px;
  }
  .lost_reset_password p:first-child {
    font-size: 13.64px;
  }
  .submenu-link {
    font-size: 20px;
  }
  .product_shares:not(:first-child) {
    margin-top: 15px;
}
  .select2-container--default .select2-results__option::before {
    width: 3px;
    height: 3px;
  }
  .product-card__bottom {
     bottom: 5px;
  }
  .twins_logo img {
    width: 226px;
    height: 60px;
  }

  .twins_title::before {
    height: 46.73px;
  }

  .popup__content {
    max-width: 1120px;
    height: 564px;
  }

  .btn-secondary-popup {
    height: 46px;
    font-size: 16px;
  }

  #cart .btn-close {
    height: 24px;
    width: 24px;
  }

  .product-card {
    width: 276px;
    aspect-ratio: 276 / 394;
  }
}

/* 1740 – 1920 */
@media (min-width: 1741px) and (max-width: 1920px) {
  #simplecheckout_shipping .checkout_block_title {
      margin-bottom: 28px;
  }
  #simplecheckout_customer {
    margin-top: 40px;
  }
  .basket_gift_info {
    font-size: 46px;
  } 
  .basket_gift {
      margin-top: 8px;      
  }
  .catalog_content {
    margin-top: 40px;
  }
  .wholesale_net {
    column-gap: 163px;
  }

  .product-card__delivery {
    padding: 5px 20px;
    padding-bottom: 4.3px;
    bottom: 42px;
  }

  .share_title {
    height: 43px;
  }

  .product_image_small img {
    height: 100px;
  }

  .hero-title {
    font-size: 260px;
  }

  .account-page .container {
    max-width: 1320px;
  }

  .faq .container {
    max-width: 1280px;
    padding-left: 42px;
  }

  .text-page .container {
    max-width: 1320px;
  }

  .checkout .container {
    max-width: 1300px;
  }

  .product_image_small .swiper-button-next::before {
    transform: rotate(90deg);
    width: 15px;
  }

  .product_image_small .swiper-button-prev::before {
    transform: rotate(270deg);
    width: 15px;
  }

  .about-images .parallax-bg-wrapper:last-child {
    width: 360px;
    height: 420px;
  }

  #information-information .page {
    padding-bottom: 200px;
  }


  .product-breadcrumbs.page {
    padding-top: 60px;
    padding-bottom: 20px;
  }

  .collection-section {
    padding-top: 200px;
  }

  .hero-subtitle {
    font-size: 64px;
  }

  .about-content .section-title {
    margin-left: 0;
  }

  .about-section .btn-main {
    margin-right: 60px;
    margin-bottom: 10px;
    margin-top: auto;
  }

  .about-content {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .products-section .anime-link {
    margin-bottom: -4px;
  }

  .banner .slider_title_wrapper {
    margin-bottom: 6px;
  }

  .slider_nav {
    gap: 30px;
    bottom: 38px;
  }

  .slider_nav .swiper-pagination {
    gap: 25px;
  }

  .product_image_small .swiper-slide {
    width: 80px !important;
    height: 100px !important;
  }

  .category .anime-link__arrows {
    width: 28px;
    height: 28px;
  }

  .basket .container {
    max-width: 1320px;
  }

  .basket_row {
    padding-bottom: 30px;
    padding-top: 30px;
  }

  .order-success .container {
    max-width: 1320px;
    margin: 0 auto;
  }

  .about-images .parallax-bg-wrapper:first-child {
    width: 400px;
  }


  .about_top:before {
    margin-bottom: 2px;
    margin-right: -104px;
  }

  .about_small+.twins {
    margin-top: 220px;
  }

  .catalog.wishlist {
    padding-bottom: 220px;
  }

  .catalog_content ul {
    gap: 20px;
  }

  .about-images {
    padding-bottom: 150px;
  }
}

/* 1200 – 1739 */
@media (min-width: 1201px) and (max-width: 1740px) {
  #simplecheckout_customer {
    margin-top: 30px;
  }
  .item_info {
     grid-gap: 15px;
  }
  .item_package {
    margin-top: 0;
  } 
  .marg_head {
     margin-top: 60px;
  }
  .submenu-link {
    font-size: 20px;
  }
  .basket_gift_table td:last-child {
    font-size: 18px;
  }
  .basket_gift_table td {
    font-size: 16px;
  }
  .catalog_sort .select2-selection__arrow::before {
      top: 14.5px;
      width: 24px;
      height: 24px;
  }

  .select2-results {
    width: 189px;
}
  .products-section--other {
    padding-top: 70px;
  }
  .product {
    padding-bottom: 70px;
  }
  .section-header:not(:last-child) {
    margin-bottom: 51px;
  }
  .wholesale_net {
    column-gap: 140px;
  }

  main:not(.main-content) {
    margin-top: 56px;
  }

  .product-card__delivery {
    padding: 4px 20px;
    padding-top: 6.5px;
    padding-bottom: 3px;
  }

  .share_title {
    height: 29px;
  }

  .banner-swiper {
    height: 660px;
  }

  .product_image_small img {
    height: 60px;
  }

  .about-images .parallax-bg-wrapper:first-child {
    width: 270px;
    height: 350px;
  }


  .card_favorit {
    --size: 22px;
    top: 15px;
    right: 15px;
  }

  .details-btn img {
    width: 24px !important;
    height: 24px !important;
    object-fit: contain;
  }

  .wholesale_net {
    margin-top: 70px;
  }

  .wholesale_text {
    max-width: 500px;
  }

  .wholesale_text.content p:not(:last-child) {
    padding-bottom: 45px;
  }

  .about_title_wrapper {
    max-width: 550px;
  }

  .about-block-quote {
    gap: 10px;
  }

  .about-block-quote p {
    padding-top: 4px;
    max-width: 970px;
    width: 100%;
  }

  .about_block_content {
    width: 510px;
  }

  .about_images {
    width: 560px;
  }

  .about_small+.twins {
    margin-top: 160px;
  }

  .about_top:before {
    margin-right: -31px;
    margin-bottom: 2px;
  }

  .contact_image {
    max-width: 456px;
    height: 600px;
  }

  .contact_miso {
    max-width: 240px;
    height: auto;
  }

  .contact_net {
    gap: 70px;
  }

  .contact_info {
    width: 270px;
  }

  .contact_title_wrapper:not(:last-child) {
    margin-bottom: 30px;
  }

  .contact_block+.contact_block {
    margin-top: 50px;
  }

  .contact_country+.btn-secondary {
    margin-top: 20px;
  }

  .contact_miso_link {
    font-size: 18px;
    margin-top: 18px;
  }

  .contact_form {
    padding-top: 100px;
    padding-bottom: 160px;
  }

  .contact_form_title {
    max-width: 950px;
  }

  .contact_form .contact_form_block {
    max-width: 950px;
    gap: 30px;
  }

  .contact_miso_link .anime-link__arrows {
    width: 26px;
    height: 26px;
  }

  .info-label {
    font-size: 11px;
  }

  .order-success {
    padding-top: 60px;
    padding-bottom: 106px;
  }

  .order-title {
    margin-bottom: 40px;
  }

  .order-info {
    margin-bottom: 46px;
  }

  .checkout-form {
    grid-template-columns: 680px 380px;
    gap: 60px;
  }

  .item {
    gap: 20px;
  }

  input:not([type=checkbox], [type=radio], [type=submit], [type=range], [type=button]),
  textarea {
    min-height: 46px;
  }

  .item_img img {
    width: 120px;
    height: 135px;
  }

  .basket_params:not(:first-child) {
    margin-top: 30px;
  }

  .basket_price .current_price,
  .basket_summ {
    font-size: 18px;
  }


  .old_price {
    font-size: 16px;
  }

  .basket {
    padding-bottom: 160px;
  }

  .basket_form_coupon .coupon {
    gap: 26px;
    align-items: flex-end;
  }

  .btn-black {
    width: 46px;
    height: 46px;
  }

  .btn-secondary {
    padding: 13px 30px;
  }

  .basket_row {
    --image: 160px;
  }

  .catalog_content ul {
    --net: 4;
  }

  .catalog_pagination {
    margin-top: 80px;
  }

  .sidebar-menu {
    max-width: calc((100vw - 1180px) / 2 + 400px);
  }

  .sidebar-nav {
    position: absolute;
    left: calc((100vw - 1180px) / 2);
    width: 400px;
    padding-right: 30px;
  }

  .sidebar-wrapper {
    padding-right: 26px;
    padding-left: 20px;
  }

  .sidebar-menu .header-nav {
    gap: 168px;
  }

  .sidebar-nav .menu-item {
    margin-right: auto;
    margin-left: 0 !important;
  }

  .product-card__cta {
    font-size: 14px;
  }

  .product-card__title {
    font-size: 12px;
  }

  .product-card__price {
    gap: 12px;
  }

  .product-card__wish {
    width: 28px;
    height: 28px;
  }

  .product-card__info {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .product-card:hover .product-card__cta {
    height: 38px;
  }

  .category .anime-link__arrows {
    width: 24px;
    height: 24px;
  }

  .section-divider {
    max-width: 150px;
  }

  .products-section .anime-link__arrows {
    width: 24px;
    height: 24px;
  }

  .products-section {
    padding-bottom: 70px;
  }

  .collection-content {
    padding-top: 30px;
    margin-left: -20px;
  }

  .collection-grid {
    grid-template-columns: 1fr 340px;
  }

  .collection-title {
    margin-right: -170px;
    width: calc(100% + 190px);
  }

  .categories-section {
    padding-top: 100px;
  }

  .about-content .section-text {
    margin-left: 80px;
    max-width: 340px;
  }

  .about-grid {
    grid-template-columns: 430px 1fr;
    gap: 0;
  }

  .about-images .parallax-bg-wrapper:last-child {
    width: 240px;
    top: 160px;
    height: 290px;
    left: 230px;
  }

  .about_content .about-new {
    padding-top: 80px;
  }

  .about_image {
    height: 300px;
  }

  .about_content {
    margin-top: 54px;
  }

  .about {
    padding-top: 90px;
  }

  .faq-list {
    gap: 36px;
  }

  .faq-category+.faq-category {
    margin-top: 70px;
  }

  #information-information .page {
    padding-bottom: 140px;
  }

  .hero-title {
    font-size: 200px;
  }

  .catalog_content ul {
    margin-top: 32px;
  }

  .filter_head {
    margin-top: 25px;
  }

  .filter_body .ocf-form-control,
  .filter_body .price-currency {
    font-size: 16px !important;
  }

  #column-left .ocf-filter-header,
  .ocf-module-page-header {
    font-size: 18px !important;
  }

  .product-breadcrumbs.page {
    padding-top: 60px;
    padding-bottom: 20px;
  }

  .basket_name {
    font-size: 18px;
  }

  .product_bottom {
    margin-top: 30px;
  }

  .btn.btn-main {
    --size: 210px;
  }

  .btn.btn-main:after {
    --size: 66px;
  }

  .about-section {
    padding-top: 120px;
    padding-bottom: 0;
  }

  .about-content .section-title {
    margin-left: 0;
  }

  .about-content .section-title:not(:last-child) {
    margin-bottom: 60px;
  }

  .breadcrumbs li,
  .breadcrumbs nav>span>span {
    font-size: 11px;
  }


  .slider_nav {
    gap: 30px;
    bottom: 38px;
  }

  .slider_nav .swiper-pagination {
    gap: 25px;
  }

  .hero-subtitle {
    font-size: 52px;
  }

  .section-text {
    font-size: 18px;
  }

  .products-section .anime-link {
    font-size: 18px;
    margin-bottom: -4px;
  }

  .product-card__delivery {
    font-size: 11px;
  }

  .price-current-price,
  .price-current {
    font-size: 18px;
  }

  .price-old {
    font-size: 12px;
    letter-spacing: 0.05em;
  }

  .category span {
    font-size: 18px;
    letter-spacing: 0.02em;
  }

  .footer_instagram a {
    margin-top: 20px;
    padding-bottom: 10px;
  }

  .footer-chat {
    font-size: 14px;
    padding: 6px 17px;
  }

  .category-btn {
    font-size: 18px;
  }

  .footer_nav .menu-item:not(:last-child) {
    margin-bottom: 16px;
  }

  .soc a img {
    width: 26px !important;
    height: 26px !important;
  }

  .soc {
    gap: 20px;
    width: 118px;
  }

  #footer_soc-desktop {
    gap: 50px;
  }

  .footer_left {
    gap: 45px;
  }

  .footer_telegram_link {
    margin-top: 10px;
  }

  .footer_bottom {
    margin-top: 50px;
  }

  .footer_contact {
    gap: 30px;
  }

  .footer_pay {
    gap: 30px;
  }

  .twins_left,
  .twins_title {
    gap: 22px;
  }

  .custom-logo-link {
    height: 102px;
  }

  .footer_net {
    margin-top: 80px;
  }

  .nav-link--menu::after {
    width: 24px;
    height: 24px;
  }

  .footer_instagram .anime-link__arrows2 {
    width: 34px;
    height: 38px;
  }

  .footer_instagram p {
    font-size: 18px;
  }

  .main-nav {
    gap: 40px;
  }

  .header-nav {
    gap: 60px;
  }

  .product_code {
    margin-top: 10px;
  }


  .product_image_small .swiper-slide {
    width: 60px;
    height: 60px;
  }

  .basket_params:not(:first-child) {
    margin-top: 30px;
  }

  .product_image_active img {
    aspect-ratio: 550/530;
  }

  .icon-btn {
    width: 24px;
    height: 24px;
  }

  .header-actions {
    gap: 20px;
  }

  .logo a img {
    height: 26px;
  }

  .about-block-heading {
    margin-bottom: 30px;
    max-width: 400px;
  }

  .about_block_list {
    margin-top: 60px;
    gap: 100px;
  }

  .about_block_list p {
    margin-top: 20px;
    max-width: 100px;
  }

  .about_block {
    margin-top: 100px;
    gap: 70px;
  }

  .container {
    max-width: 1180px;
  }

  .categories__grid {
    gap: 40px;
  }

  .instagram-section .section-title .anime-link__arrows {
    --size: 20px;
  }

  .instagram-section {
    padding-bottom: 160px;
  }

  .twins_images img {
    height: 60px;
    min-width: 60px;
    width: 60px;
  }

  .twins_images {
    gap: 15px;
  }

  .anime-link__arrows {
    width: 24px;
    height: 24px;
  }

  .footer_nav:not(:first-child) {
    margin-top: 60px;
  }

  .slider_catalog {
    bottom: 40px;
  }

  .instagram-section .section-title:not(:last-child) {
    margin-bottom: 60px;
  }

  .product_image {
    width: 550px;
  }

  .product_image_active {
    aspect-ratio: unset !important;
    height: 530px;
    width: 100%;
  }

  .product_catalog {
    padding-top: 70px;
  }

  .color-box {
    width: 30px;
    height: 30px;
  }

  .open-search__submit {
    width: 24px;
    height: 24px;
  }
}

  .lost_reset_password p {
      font-size: 16px;
  }

/* 768 – 1199 */
@media (min-width: 769px) and (max-width: 1200px) {
  .popup__content .btn-close {
    width: 30px;
    height: 30px;
  }
  #simplecheckout_customer {
    margin-top: 30px;
  }
  .marg_head {
     margin-top: 50px;
  }
  .wishlist-notice {
    font-size: 11.4px;
  }
  .contact_form_title {
    width: 675px;
  }
  .menu-link {
    font-size: 16px;
  }
  .product-options+.quantity {
    margin-top: 35px;
}
  .basket_form_table td {
    padding-bottom: 18px;
    height: unset;
  }
  .basket_gift_table td {
    font-weight: 300;
    font-size: 12px;
}
  .catalog_sort .select2-selection__arrow::before {
    top: 14.5px;
  }

  .select2-results {
    width: 190px;
  }

  .swiper-slide .product-card {
     aspect-ratio: 230 / 366;
  }

    main:not(.main-content) {
    margin-top: 49px;
  }

  .product-card__delivery {
    padding: 5px 20px;
    bottom: 24px;
    padding-bottom: 3px;
  }

  .share_title {
    height: 19px;
  }

  .product_image_small img {
    height: 53px;
  }

  .top-block {
    margin-left: 5px !important;
  }

  .sidebar-menu .header-nav {
    gap: 200px;
  }

  .popup__content {
    max-width: 720px;
    height: 286px;
  }

  .popup__image {
    width: 280px;
    height: 286px;
  }

  .popup__text {
    width: 440px;
  }

  .btn-secondary-popup {
    width: 360px;
    height: 40px;
    font-size: 13px;
    line-height: 145%;
    padding-top: 17.5px;
  }

  .popup__text p {
    margin-bottom: 30px;
  }

  .popup__text h2 {
    margin-bottom: 20px;
  }

  .simplecheckout-button-block .checkbox {
    max-width: 100%;
  }

  .about-grid {
    grid-template-columns: 260px 1fr;
    gap: 0;
  }


  .contact_country+.btn-secondary {
    height: 50px;
    padding: 13px 20px;
  }

  .banner-swiper {
    height: 430px;
  }

  .open-search__submit {
    width: 20px;
    height: 20px;
  }

  .btn-close {
    width: 30px;
    height: 30px;
  }

  .btn-close img {
    width: 15px;
    height: 15px;
  }

  .card_favorit {
    --size: 22px;
    top: 12px;
    right: 12px;
  }

  .details-btn img {
    width: 20px !important;
    height: 20px !important;
    object-fit: contain;
  }

  .auth-head {
    justify-content: center;
    gap: 50px;
  }

  .about_images {
    width: 280px;
    flex-shrink: 0;
  }

  .about_block {
    gap: 40px;
  }

  .about_block_list p {
    max-width: 100px;
  }

  .about_block_list p {
    margin-top: 120px;
  }

  .about-block-quote {
    gap: 3px;
  }

  .about-block-quote p {
    max-width: 648px;
    padding-top: 3px;
  }

  .wholesale_text table td {
    padding-bottom: 10px;
  }

  .wholesale_net {
    margin-top: 60px;
  }

  .wholesale_text table {
    margin-top: 20px;
  }

  .wholesale_text.content p:not(:last-child) {
    padding-bottom: 30px;
  }

  .wholesale_contact {
    gap: 140px;
  }

  .wholesale {
    padding-bottom: 120px;
    padding-top: 40px;
  }

  .wholesale_text table {
    border-spacing: 0 10px;
  }

  .contact_net {
    flex-wrap: wrap;
    column-gap: 55px;
    row-gap: 70px;
  }

  .contact_image {
    max-width: 395px;
  }

  .contact_miso {
    max-width: 100%;
    display: flex;
    flex-direction: row;
    gap: 50px;
    align-items: flex-end;
  }

  .contact_col {
    padding-bottom: 50px;
  }

  .contact_miso_title {
    margin-top: 0;
  }

  .contact_miso_link {
    font-size: 14px;
  }

  .contact_miso_link .anime-link__arrows {
    width: 22px;
    height: 22px;
  }

  .contact_miso_link {
    gap: 10px !important;
  }

  .contact_form {
    padding-top: 60px;
    padding-bottom: 120px;
  }

  .contact_form .contact_form_block {
    gap: 30px;
  }

  .contact_form .btn-secondary {
    height: 40px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .contact_form form {
    margin-top: 40px;
  }

  .contact_miso_image {
    height: 227px;
    width: 456px;
    flex-shrink: 0;
  }

  .contact_miso_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .contact_info {
    width: 270px;
  }

  .info-label {
    font-size: 11px;
  }

  .order-info {
    grid-template-columns: 2fr 1fr 2fr auto;
    margin-bottom: 46px;
  }

  .order-table .table-head,
  .order-table .table-row {
    grid-template-columns: 1fr 65px 65px 65px;
  }

  .order-summary {
    margin-top: 40px;
  }

  .order-success {
    padding-top: 48px;
    padding-bottom: 66px;
  }

  .order-title {
    margin-bottom: 40px;
  }

  .item_img img {
    width: 100px;
    height: 112px;
  }

  .checkout_list .item {
    gap: 20px;
  }

  .item_size {
    margin-top: 10px;
  }

  .checkout_list .item {
    padding-bottom: 15px;
  }

  .checkout_list li+li {
    margin-top: 15px;
  }

  input:not([type=checkbox], [type=radio], [type=submit], [type=range], [type=button]),
  textarea {
    min-height: 40px;
  }

  input[type=checkbox]+label:before,
  input[type=checkbox]+p:before,
  input[type=checkbox]+span:before,
  input[type=radio]+label:before {
    --size: 12px;
  }

  .checkout-review-order {
    max-height: 310px;
    padding-bottom: 0;
  }

  .basket_params:not(:first-child) {
    margin-top: 15px;
  }

  .basket_form_table tr:last-child td {
    padding-top: 16px;
    height: 50px;
  }

  .basket {
    padding-bottom: 140px;
  }

  .basket_bottom {
    gap: 60px;
  }

  .basket_form {
    max-width: 280px;
  }

  .btn-black {
    width: 40px;
    height: 40px;
  }

  .basket_row {
    grid-template-columns: var(--image) 280px 1fr 1fr 1fr;
    column-gap: 20px;
    padding-top: 20px !important;
    padding-bottom: 20px !important;

  }

  .basket_clear img {
    width: 20px;
    height: 20px;
  }

  .basket_package {
    margin-top: 10px;
  }

  .basket_price .current_price,
  .basket_summ {
    font-size: 14px !important;
  }

  .old_price {
    font-size: 16px;
  }

  .basket_row {
    --image: 130px;
  }


  .product.content-reveal+.products-section--other {
    padding-top: 20px;
  }

  .products-section--other+.product_catalog {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .color-box {
    width: 26px;
    height: 26px;
  }

  .product_image {
    width: 332px;
  }

  .catalog_content .product-card {
    min-height: 366px;
  }

  .catalog_content .product-card {
    width: 100%;
    aspect-ratio: unset;
  }

  .pagination span,
  .pagination a {
    font-size: 14px;
    font-weight: 300;
  }

  .pagination .next,
  .pagination .prev {
    width: 20px;
    height: 20px;
  }

  .pagination .next img,
  .pagination .prev img {
    width: 100%;
    object-fit: contain;
  }

  .catalog_content ul {
    --net: 3;
  }

  .catalog_sort .select2-container .select2-selection--single .select2-selection__rendered {
    padding-right: 33px;
  }

  .catalog_pagination {
    margin-top: 60px;
  }

  .sidebar-menu {
    max-width: 640px;
  }

  .recoment_block .rec-ul {
    column-gap: 15px !important;
  }

  .sidebar-nav {
    position: absolute;
    left: unset;
    right: 60px;
    width: 340px;
    padding-top: 15px;

  }

  .sidebar-wrapper {
    padding-right: 0;
    width: 100%;
  }

  .sidebar-nav .header-content {
    padding-left: 0px;
    padding-right: 0px;
  }

  .sidebar-wrapper {
    padding-left: 0px;
  }

  .product-card:hover .product-card__cta {
    height: 32px;
  }

  .product-card__cta {
    font-size: 14px;
  }

  .instagram-section {
    padding-bottom: 120px;
  }

  .twins_right .anime-link__arrows {
    width: 19px;
    height: 19px;
  }

  .twins_link {
    gap: 5px;
  }

  .twins_images {
    gap: 10px;
  }

  .twins_net {
    padding-bottom: 20px;
  }

  .footer_first {
    padding-top: 35px;
  }

  .footer_end {
    margin-top: 15px;
  }

  .footer-chat {
    margin-top: auto;
    margin-left: auto;
  }

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

  .instagram-grid a:last-child {
    display: none;
  }

  .instagram-section .section-title:not(:last-child) {
    margin-bottom: 30px;
  }

  .collection-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .collection-info {
    grid-template-columns: 245px auto;
    gap: 40px;
  }

  .collection-image {
    aspect-ratio: 245/319;
  }

  .slider_catalog {
    bottom: 30px;
  }

  .about-images .parallax-bg-wrapper:last-child {
    width: 190px;
    height: 221px;
    left: 107px;
    top: 154px;
  }

  .about-content .section-title {
    margin-left: 0;
  }

  .about-content .section-text {
    margin-left: 76px;
  }

  .about-section .btn-main {
    margin-top: 40px;
  }

  .footer_nav:not(:first-child) {
    margin-top: 50px;
  }

  .collection__slider {
    width: 760px;
  }

  .section-divider {
    max-width: unset;
    flex-shrink: 1;
  }

  .products-section .section-title {
    flex-shrink: 0;
  }

  .products-section .section-header {
    width: 100%;
  }

  .section-divider {
    max-width: unset;
  }

  .container {
    max-width: 760px;
  }

  .about_block {
    margin-top: 80px;
  }

  .about_block_list {
    margin-top: 40px;
    gap: 86px;
  }

  .about-block-heading {
    margin-bottom: 30px;
  }

  .about_content .about-new {
    padding-top: 50px;
  }

  .about_image {
    height: 220px;
  }

  .about_content {
    margin-top: 30px;
  }

  .about_title_wrapper {
    max-width: 390px;
  }

  .about_top:before {
    margin-right: -20px;
  }

  .about_top {
    gap: 15px;
  }

  .about {
    padding-top: 78px;
  }

  .faq-list {
    gap: 38px;
  }

  #information-information .page {
    padding-bottom: 120px;
    padding-top: 48px;
  }

  .faq-item.active .faq-answer {
    max-width: 680px;
  }

  #information-information .text-page h1 {
    margin-bottom: 50px;
  }

  .about-section {
    padding-top: 100px;
  }

  .catalog_content ul {
    margin-top: 30px;
  }

  .filter_body .ocf-form-control,
  .filter_body .price-currency {
    font-size: 13px !important;
    line-height: 145%;
  }

  #column-left .ocf-filter-header,
  .ocf-module-page-header {
    font-size: 14px !important;
  }

  .logo a img {
    height: 19px;
  }

  .icon-btn {
    width: 19px;
    height: 19px;
  }

  .header-actions {
    gap: 15px;
  }

  .filter_head {
    margin-top: 50px;
  }

  .product-breadcrumbs.page {
    padding-top: 48px;
    padding-bottom: 20px;
  }

  .collection-title {
    max-width: 300px;
  }

  .collection-section {
    padding-bottom: 60px;
  }

  .categories__title {
    text-align: left;
    margin-bottom: 30px;
  }

  .categories-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .instagram-section {
    padding-top: 60px;
  }

  .add-to-cart,
  .btn-notify {
    padding: 10.5px 20px;
  }

  .size-item span {
    padding: 10px 15px;
    min-width: 68px;
  }

  .product_shares {
    padding: 10px 15px;
  }


  .basket_name {
    font-size: 14px;
  }


  .product_bottom button {
    gap: 0;
  }

  .product_bottom button:after {
    --size: 16px;
  }

  .product_bottom {
    margin-top: 30px;
  }

  .product_image {
    gap: 10px;
  }

  .product_image_small .swiper-slide {
    width: 47px;
    height: 53px;
  }

  .breadcrumbs li,
  .breadcrumbs nav>span>span {
    font-size: 11px;
  }

  .btn.btn-main {
    --size: 132px;
  }

  .btn.btn-main:after {
    --size: 42px;
  }

  .slider_nav {
    gap: 20px;
    bottom: 30px;
  }

  .slider_nav .swiper-pagination {
    gap: 20px;
  }

  .products-section .anime-link {
    margin-bottom: -2px;
  }

  .about-content .section-title:not(:last-child) {
    margin-bottom: 75px;
  }

  .hero-title {
    font-size: 120px;
  }

  .hero-subtitle {
    font-size: 32px;
  }

  .section-text {
    font-size: 14px;
  }

  .products-section .anime-link {
    font-size: 14px;
  }

  .product-card__delivery {
    font-size: 11px;
  }

  .price-current-price,
  .price-current {
    font-size: 18px;
  }

  .price-old {
    font-size: 12px;
    letter-spacing: 0.05em;
  }

  .badge {
    line-height: 1.45;
  }

  .category span {
    font-size: 22px;

  }

  .footer_instagram a {
    margin-top: 10px;
    padding-bottom: 10px;
  }

  .footer_nav .menu-item a {
    line-height: 1.45;
  }

  .footer-chat {
    font-size: 12px;
    padding: 7px 11px;
  }

  .footer-chat img {
    width: 16px;
    height: 16px;
  }

  .footer_telegram_link {
    line-height: 145%;
  }

  .category-btn {
    font-size: 14px;
    gap: 5px;
  }

  .category .anime-link__arrows {
    width: 18px;
    height: 18px;
  }

  .footer_nav .menu-item:not(:last-child) {
    margin-bottom: 20px;
  }

  .soc a img {
    width: 24px !important;
    height: 24px !important;
  }

  .soc {
    gap: 12px;
  }

  .footer_left {
    gap: 40px;
  }

  .footer_telegram_link {
    margin-top: 10px;
  }

  .footer_bottom {
    margin-top: 60px;
  }

  #footer_soc-desktop {
    gap: 42px;
    margin-top: 0 !important;
  }

  .soc {
    width: 107px;
  }

  .footer_logo {
    width: max-content;
  }

  .footer_pay {
    gap: 20px;
  }

  .twins_left {
    gap: 12px;
  }

  .twins_title {
    gap: 12px;
  }

  .custom-logo-link {
    height: 62px;
  }

  .footer_net {
    margin-top: 60px;
  }

  .footer_left {
    flex-direction: row;
  }

  .footer_end {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .footer_contact {
    order: 2;
  }

  .footer_telegram_link span {
    font-size: var(--text2) !important;
  }

  .footer_telegram_link .anime-link__arrows {
    width: 26px !important;
    height: 26px !important;
  }

  .product_image_active img {
    aspect-ratio: 332/440;
  }

  .nav-link {
    line-height: 145%;
  }

  .nav-link--menu::after {
    width: 17px;
    height: 17px;
  }

  .swiper-button-next::before,
  .swiper-button-prev::before {
    height: 13px;
  }

  .slider_nav .swiper-pagination-bullet,
  .hero-swiper .swiper-pagination-bullet {
    font-size: 16px;
    letter-spacing: 0.05em;
  }

  .footer_instagram .anime-link__arrows2 {
    width: 26px;
    height: 30px;
  }

  .footer_instagram p {
    font-size: 14px;
  }

  .main-nav {
    gap: 26px;
  }

  .header-nav {
    gap: 40px;
  }

  .products-section {
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .products-section .section-header {
    margin-bottom: 29px;
  }

  .products-section .anime-link__arrows {
    width: 18px;
    height: 18px;
  }

  .section-divider {
    margin-bottom: 2px;
  }

  .slider_content {
    max-width: 400px;
  }

  .product_code {
    margin-top: 10px;
  }

  .twins_logo img {
    width: 151px;
    height: 40px;
  }


  .twins_title::before {
    height: 30.46px;
  }


  .anime-link span {
    font-size: 26px;
  }

  .anime-link__arrows2 img {
    width: 26px !important;
    height: 30px !important;
    transform: rotate(0deg);
  }

  .about-images .parallax-bg-wrapper:first-child {
    width: 204px;
    height: 255px;
  }
}

.field-error-log-reg {
  color: red;
  font-size: 12px;
  text-transform: uppercase;
}

@media (min-width: 320px) and (max-width: 768px) {
  .hide-mobile-footer {
      display: none;
  }
  .payment_box p {
    font-weight: 300;
    font-size: var(--text3);
    color: var(--black2);
    line-height: 1.24;
    letter-spacing: 0.05em;
}
.checkout_block_title {
  margin-bottom: 10px;
}
.account-section {
  padding-top: 0;
  padding-left: 20px;
  padding-right: 20px;
}
.account-section {
  min-height: 0;
}
  .basket_quantity {
    position: relative;
    bottom: 4px;
  }
  #cart .cart_item_remove img {
    width: 20px;
    height: 20px;
  }
  .product-card__wish {
        transition: none;
        transform: none;
    }
  .about_title {
     line-height: 1.25;
  }
  .about-block-quote p {
    line-height: 1.25 !important;
}
  #simplecheckout_customer {
    margin-top: 25px;
  }
  .marg_head {
     margin-top: 50px;
  }
  .wishlist-notice {
    font-size: 11px;
    text-align: left !important;
    padding: 6px 17px;
    line-height: 1.25;
    padding-bottom: 4.5px
  }
  .field-error-log-reg {
    font-size: 10px;
  }
  .woocommerce-form-row label {
     font-size: 11px;
   }
  .contact_form_title {
    width: 340px
  }
  .quantity+.product_actions {
       margin-top: 15px;
    }
  .product_actions .wishlist-add-button {
        width: 38px;
        height: 38px;
  }
  .basket_form_table td {
    height: unset;
    padding-bottom: 24px;
  }
  .basket_form_table tr:last-child td {
    padding-bottom: 0;
}
  .product_bottom {
    gap: 2px;
  }

      main:not(.main-content) {
    margin-top: 54px;
  }

  .share_title {
    height: 24px;
  }

  .product_image_small img {
    height: 64px;
  }

  .popup__content {
    max-width: 340px;
    height: 381px;
  }

  .recoment_block .rec-ul {
    column-gap: 4px !important;
    row-gap: 15px !important;
  }

  .about-block-quote p {
    padding-top: 2px;
  }

  .about-block-quote {
    gap: 4px;
  }

  .popup__image {
    width: 300px;
    height: 170px;
  }

  .popup__inner {
    padding: 20px;
    flex-direction: column;
  }

  #cart .btn-close {
    width: 24px;
    height: 24px;
  }

  .popup__close {
    top: 19px;
    right: 0px;
    left: 286px;
  }

  .popup__text {
    width: 100%;
    padding: 25px 20px;
    text-align: center;
    align-items: center;

  }

  .product_image {
    width: 100%;
  }

  .popup__text p {
    margin-bottom: 25px;
  }

  .popup__text h2 {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .popup__btn {
    max-width: 300px;
    height: 38px;
  }

  .btn-secondary-popup {
    font-size: 12px;
    line-height: 140%;
    font-weight: 400;
    padding-top: 16.9px;
  }

  .about_block {
    flex-direction: column;
    gap: 30px;
  }

  .btn-secondary {
    height: 40px;
    padding: 13px 20px;
  }

  .cart_content {
    padding: 20px;
  }

  .popup-content {
    margin-top: 41px;
  }

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

  .popup-content {
    gap: 20px;
  }

  .cart.popup {
    width: 100%;
  }

  .popup-content {
    margin-top: 40px;
  }

  .popup-content .size-table {
    padding-top: 0;
  }

  .popup-content .size-table:last-child {
    padding-bottom: 0;
  }

  .size-table .table-row {
    padding: 12px 0;
  }

  .tab-content .table-head,
  .tab-content .table-row {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .tab-content .table-head {
    row-gap: 8px;
  }

  .details-btn img {
    width: 16px !important;
    height: 16px !important;
    object-fit: contain;
  }

  .auth-head {
    gap: 20px;
  }

  .about_block_content {
    width: 100%;
  }

  .about_images {
    width: 100%;
  }

  .about_top:before {
    margin-right: 0;
    margin-bottom: 2px;
  }

  .twins_logo img {
    width: 188px;
    height: 50px;
  }

  .wholesale {
    padding-top: 30px;
    padding-bottom: 120px;
  }

  .wholesale_net {
    margin-top: 30px;
  }

  .wholesale_text table {
    border-spacing: 0 10px;
  }

  .wholesale_text table td {
    padding-bottom: 10px;
  }

  .contact {
    margin-top: 0;
  }

  .contact_title_wrapper:not(:last-child) {
    margin-bottom: 25px;
  }

  .contact_block+.contact_block {
    margin-top: 40px;
  }

  .contact_country+.btn-secondary {
    margin-top: 15px;
  }

  .contact_miso {
    margin-top: 40px;
  }

  .contact_miso_link {
    margin-top: 18px;
    font-size: 14px;
  }

  .contact_miso_link .anime-link__arrows {
    width: 22px;
    height: 22px;
  }

  .contact_form .contact_form_block {
    margin-top: 40px;
  }

  .contact_info {
    max-width: none
  }

  .contact_miso {
    grid-template-columns: 1fr;
    grid-template-rows: unset;
  }

  .contact_miso_image,
  .contact_miso_link,
  .contact_miso_title {
    grid-row: unset;
  }

  .contact_miso_title,
  .contact_miso_link {
    grid-column: unset;
  }

  .contact_miso_image {
    grid-column: unset;
  }

  .contact_form .contact_form_block {
    gap: 30px;
  }

  .contact_image {
    order: -1;
    max-width: none
  }


  .contact_form_block .btn-secondary {
    margin-top: 20px;
  }

  .contact_miso_link.twins_link {
    gap: 10px;
  }

  .contact_form {
    padding-top: 60px;
  }

  .order-success {
    padding-top: 30px;
  }

  .order-title {
    margin-bottom: 30px;
  }

  .info-label {
    font-size: 11px;
  }

  .order-info {
    column-gap: 80px;
  }

  .order-table .table-head {
    padding-bottom: 20px;
  }

  .table-row>div:not(:first-child):not(:last-child) {
    justify-content: center;
  }

  .order-table .table-head,
  .order-table .table-row {
    gap: 12px;
    grid-template-columns: 140px 42px 1fr 1fr;
  }


  .basket_table {
    margin-top: 15px
  }

  .basket_row {
    grid-template-columns: 64px 1fr 70px;
    column-gap: 0;
  }

  .basket_info:not(:last-child) {
    margin-bottom: 26px;
  }

  .basket_form_table {
    margin-top: 42px;
  }

  .basket_tag {
    font-size: 7px;
    padding: 2px 4px;
    top: 0;
  }

  .basket_image {
    margin-bottom: 0;
  }

  .not-found {
    justify-content: flex-start;
    padding-top: 100px;
  }

  .basket_row:first-child {
    display: none
  }

  .basket_image {
    grid-row: auto;

    margin: 0
  }

  .basket_image span,
  .item_img span {
    top: 5px;
    font-size: 0;
    padding: 4px
  }

  .basket_image span:before,
  .item_img span:before {
    --size: 12px;
    content: '';
    display: block;
    width: var(--size);
    height: var(--size);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 256 256'%3E%3Cpath fill='white' d='M216 74h-41.26a46.41 46.41 0 0 0 6-4.48a27.56 27.56 0 0 0 9.22-20A30.63 30.63 0 0 0 158.5 18a27.56 27.56 0 0 0-20 9.22A57.1 57.1 0 0 0 128 45.76a57.1 57.1 0 0 0-10.48-18.53A27.56 27.56 0 0 0 97.5 18A30.63 30.63 0 0 0 66 49.51a27.56 27.56 0 0 0 9.22 20a45.74 45.74 0 0 0 6 4.48H40A14 14 0 0 0 26 88v32a14 14 0 0 0 14 14h2v66a14 14 0 0 0 14 14h144a14 14 0 0 0 14-14v-66h2a14 14 0 0 0 14-14V88a14 14 0 0 0-14-14m-80.23-11c2.25-12.12 6.29-21.75 11.69-27.85a15.68 15.68 0 0 1 11.4-5.15h.55A18.6 18.6 0 0 1 178 49.14a15.68 15.68 0 0 1-5.18 11.4c-10.72 9.46-28.9 12.29-38.48 13.11c.25-2.89.66-6.57 1.43-10.65M83.45 35.45A18.69 18.69 0 0 1 96.59 30h.55a15.68 15.68 0 0 1 11.4 5.18c9.46 10.72 12.29 28.9 13.11 38.48c-2.89-.25-6.57-.68-10.61-1.43c-12.12-2.23-21.75-6.29-27.85-11.7A15.64 15.64 0 0 1 78 49.14a18.65 18.65 0 0 1 5.45-13.69M38 120V88a2 2 0 0 1 2-2h82v36H40a2 2 0 0 1-2-2m16 80v-66h68v68H56a2 2 0 0 1-2-2m148 0a2 2 0 0 1-2 2h-66v-68h68Zm16-80a2 2 0 0 1-2 2h-82V86h82a2 2 0 0 1 2 2Z'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain
  }

  .item_img span:before {
    --size: 24px
  }

  .basket_info {
    grid-column: 2/4;
    margin-left: 0;
  }

  .basket_params {
    flex-direction: row;
    flex-wrap: wrap;
    grid-gap: 15px 40px;
    grid-column: 1/4
  }

  .basket_package {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .basket_summ {
    margin-left: auto;
    text-align: right;
  }

  .basket_price .old_price {
    font-size: 12px;
  }

  .basket_row .basket_clear img {
    width: 20px;
    height: 20px;
    object-fit: contain;
  }

  .basket_row .basket_clear {
    margin-top: 16px;
  }

  .basket_image {
    margin-bottom: 26px;
  }

  .basket_params:not(:first-child) {
    margin-top: 15px;
  }

  .basket_clear {
    grid-column: 1/4
  }

  .basket_bottom {
    flex-direction: column;
    align-items: center
  }

  .basket_form,
  .basket_gift {
    max-width: none
  }

  .basket_price .current_price,
  .basket_summ {
    font-size: 14px !important;
  }

  .basket_gift_table .gift {
    gap: 10px;
  }

  .old_price,
  .old-price {
    font-size: 12px !important;
  }

  .basket_image {
    width: 52px;
  }

  .basket_row {
    --image: 52px;
  }


  .share_text {
    line-height: 24px;
  }

  .product_net {
    flex-direction: column;
    align-items: center;
  }

  .product_info {
    max-width: 100%;
  }

  .product.content-reveal {
    padding-bottom: 50px;
  }

  .product_catalog+.twins {
    padding-top: 60px;
  }

  .catalog_pagination {
    margin-top: 50px;
  }


  .sidebar-nav {
    position: absolute;
    left: 0;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .sidebar-wrapper,
  .bar_nav_bottom {
    padding-left: 0px;
    padding-right: 0px;
  }

  #nav-mob {
    display: flex;
  }

  .bar_nav_bottom ul {
    display: flex;
    flex-direction: column;
    grid-gap: 10px;
    margin-top: -20px;
    padding-top: 20px;
    font-size: var(--h5);
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: .05em;
    padding-left: 0;
    padding-right: 20px;
    width: 100%;
    text-transform: uppercase;
    border-top: 1px solid rgba(0, 0, 0, .4);

  }

  .banner-slider .swiper-slide {
    height: 570px;
  }

  .collection-section {
    padding-top: 100px;
    padding-bottom: 50px;
  }

  .categories-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .instagram-section {
    padding-top: 50px;
  }

  #footer_soc-mob {
    margin-top: 4px;
  }

  .product-card {
    aspect-ratio: auto;
  }

  .popular_list .product-card {
    aspect-ratio: 173 / 303;
    height: 303px;
  }

  .catalog_left,
  .catalog_right {
    flex-direction: column;
    grid-gap: 22px;
  }

  .catalog_left {
    align-items: flex-start;
    flex-direction: column-reverse;
  }

  .catalog_sort {
    max-width: 120px;
  }

  .catalog_sort .select2-container .select2-selection--single .select2-selection__rendered {
    padding-right: 35px;
  }

  .catalog_right {
    align-items: flex-end;
  }

  .breadcrumbs {
    flex-direction: column;
  }

  .breadcrumbs_title {
    text-align: left;
  }

  .categories__title {
    text-align: left;
    margin-bottom: 32px;
  }


  .catalog {
    padding-bottom: 120px;
  }

  .collection-grid {
    gap: 30px;
  }

  .collection-content .btn-main {
    margin-right: 35px;
  }

  .collection-image {
    width: 165px;
    max-height: unset;
    height: 220px;
  }

  .product-card__cta {
    display: none !important;
  }

  .product-card__info {
    padding: 8px 1px;
  }



  .about-section {
    padding-bottom: 50px;
  }

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

  .about-images {
    height: 100%;
  }


  .instagram-grid a {
    display: none;
    /* спочатку приховаємо всі */
  }

  .instagram-grid a:nth-child(-n+3) {
    display: block;
    /* покажемо тільки перші 3 */
  }


  .footer_nav:not(:first-child) {
    margin-top: 50px;
  }

  .collection__slider {
    width: 380px;
  }

  .footer_first {
    margin-bottom: 16px;
  }

  .truncate-text {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    /* Количество строк */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .anime-link__arrows2 img {
    width: 23px !important;
    height: 26px !important;
  }
}

/* 320 – 767 */
@media (min-width: 320px) and (max-width: 768px) {
  .wholesale_title {
    line-height: 1.25;
  } 
  .wholesale_content .text-opt {
    line-height: 1.25 !important;
  }

  .product-card__img-wrap {
        height: 230px;
  }

  .hero-title {
    font-size: 136px !important;
  }

  .about-content .section-text {
    max-width: 100%;
  }

  .banner-swiper {
    height: 570px;
  }

  .open-search__submit {
    width: 24px;
    height: 24px;
  }

  .filter {
    max-width: 100%;
  }

  .ocf-value {
    gap: 5px;
  }

  input:not([type=checkbox], [type=radio], [type=submit], [type=range], [type=button]),
  textarea {
    min-height: 40px;
  }

  .auth-head {
    gap: 20px;
  }

  .basket_gift_table tbody tr {
    padding-bottom: 10px;
  }

  .basket_gift_table .gift {
    padding: 10px;
  }

  .checkout-review-order {
    max-height: 300px;
    padding-bottom: 0;
  }

  .wholesale_net {
    gap: 38px;
  }

  .wholesale_text.content p:not(:last-child) {
    padding-bottom: 25px;
  }

  .wholesale_contact {
    gap: 70px;
  }

  .wholesale_contact li:first-child {
    flex-shrink: 0;
  }

  .item_img img {
    width: 95px;
    height: 118px;
  }

  .checkout_list .item {
    gap: 10px;
    padding-bottom: 10px;
  }

  .item_bottom {
    gap: 10px;
  }

  .contact_country+.btn-secondary {
    height: 40px;
    padding: 13px 20px;
  }

  .container {
    max-width: 460px;
  }

  .about_block {
    margin-top: 60px;
  }

  .about_block_list p {
    margin-top: 7px;
  }

  .about_block_list {
    margin-top: 40px;
    gap: 60px;
    line-height: 1.4;
  }

  .about-block-heading {
    margin-bottom: 20px;
    max-width: 340px;
    line-height: 1.25;
  }

  .about_content .about-new {
    padding-top: 40px;
  }

  .about_image {
    height: 170px;
  }

  .about_content {
    margin-top: 30px;
  }

  .about_block_list p {
    max-width: 100px;
  }

  .about_small+.twins {
    margin-top: 120px;
  }

  .about_top {
    row-gap: 20px;
    column-gap: 15px;
  }

  .about {
    padding-top: 60px;
  }

  .faq-list {
    gap: 36px;
  }

  #information-information .text-page h1 {
    margin-bottom: 40px;
  }

  #information-information .page {
    padding-top: 20px;
    padding-bottom: 100px;
  }

  .cart-count-mob {
    width: 16px;
    height: 16px;
    border-radius: 30px;
    padding: 3px 3px 3px 3px;
    background-color: #CC1212 !important;
    border: none;
    font-family: "Gilroy", sans-serif;
    font-weight: 300;
    font-size: 10px !important;
    line-height: 100%;
    letter-spacing: 0.05em;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    color: #FFFFFF;
    position: absolute;
    left: 15px;
  }

  .catalog_content ul {
    margin-top: 40px;
    column-gap: 4px;
  }

  .filter_body .ocf-form-control,
  .filter_body .price-currency {
    font-size: 12px !important;
    line-height: 140%;
  }

  .filter_head {
    margin-top: 25px;
  }

  .ocf-value-list .price-values {
    margin-bottom: 15px !important;
  }

  #column-left .ocf-filter-header,
  .ocf-module-page-header {
    font-size: 14px !important;
    margin-top: 25px !important;
    margin-bottom: 16px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .logo a img {
    height: 20px;
  }

  .basket {
    padding-top: 42px;
    padding-bottom: 120px;
  }

  .quantity input {
    width: 20px;
  }

  .btn-black {
    padding: 5px;
  }

  .icon-btn {
    width: 30px;
    height: 30px;
  }

  .header-actions {
    gap: 20px;
  }

  .product-breadcrumbs.page {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .product_image_small .swiper-button-next::before,
  .product_image_small .swiper-button-prev::before {
    height: 12px !important;
  }

  .product_name {
    font-size: 18px !important;
  }

  .product-options:not(:first-child) {
    margin-top: 20px;
  }

  .size-item span {
    min-width: 62px;
    padding: 10px 12px;
  }

  .car_top {
    margin-bottom: 0;
  }

  .add-to-cart,
  .btn-notify {
    padding: 11px 20px;
  }

  .size-options {
    gap: 12px;
  }

  .product_actions {
    gap: 15px;
  }

  .product_shares {
    padding: 10px 15px;
  }

  .option-title {
    margin-bottom: 6px;
  }

  .woocommerce-privacy-policy-text {
    font-size: 11px;
  }

  .bag-toggle {
    position: relative;
  }

  .cart-count-mob {
    z-index: 3;
  }

  .basket_name {
    font-size: 14px;
  }

  .sidebar-menu {
    box-shadow: none;
  }

  .basket_code {
    margin-top: 5px;
  }

  .product_bottom {
    display: flex;
    align-items: center;
    margin-top: 40px;
  }

  .product_bottom button:after {
    --size: 16px;
  }

  .product_bottom button {
    gap: 0;
  }

  .product_image_small .swiper-slide {
    width: 64px;
    height: 64px;
  }

  .product_image {
    gap: 5px;
  }

  .product_code {
    margin-top: 10px;
  }

  .btn.btn-main {
    --size: 100px;
  }

  .btn.btn-main:after {
    --size: 30px;
  }

  .breadcrumbs li,
  .breadcrumbs nav>span>span {
    font-size: 10px;
  }

  .products-section .anime-link {
    margin-bottom: -2px;
  }

  .about-section {
    padding-top: 60px !important;
  }

  .text-ob {
    font-size: 11px !important;
    letter-spacing: 0.05em;
  }

  .category-actions span {
    font-size: 20px !important;
    letter-spacing: 0.05em !important;
  }

  .instagram-section {
    padding-bottom: 120px !important;
  }

  .category {
    padding: 16px;
  }

  .collection-content {
    padding-bottom: 10px;
  }

  .slider_nav {
    gap: 20px;
    bottom: 20px;
  }

  .products-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .slider_nav .swiper-pagination {
    gap: 20px;
  }

  .footer_left p {
    font-size: 12px;
  }

  .custom-logo-link {
    height: 50px;
  }

  .hero-title {
    font-size: 140px;
    line-height: 0.80;
  }

  .footer_contact {
    gap: 26px;
  }

  .header-nav {
    gap: 15px;
    transform: translateX(-10px);
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }


  .twins_right {
    justify-content: space-between;
  }

  .footer_left {
    column-gap: 60px;
    row-gap: 30px;
  }


  .category-btn {
    font-size: 14px;
    gap: 0;
  }

  .hero-subtitle {
    font-size: 24px;
  }

  .section-text {
    font-size: 14px;
  }

  .products-section .anime-link {
    font-size: 14px;
  }

  .product-card__delivery {
    font-size: 9px;
    padding: 5px 16px;
    padding-bottom: 4.3px;
  }

  .price-current-price,
  .price-current {
    font-size: 14px;
  }

  .price-old {
    font-size: 11px;
    letter-spacing: 0.05em;
  }

  .footer_bottom {
    row-gap: 20px;
  }

  .badge {
    line-height: 1.4;
  }

  .category span {
    font-size: 14px;
    letter-spacing: 0.02em;
  }

  .footer_nav .menu-item a {
    line-height: 1.4;
  }

  .ocf-header {
    padding: 0 !important;
  }

  .footer_instagram a {
    margin-top: 15px;
    padding-top: 6px;
    padding-bottom: 6px;
    border-bottom: 0.68px solid rgba(160, 160, 159, 1);
  }

  .menu-link,
  .submenu-link {
    font-size: 14px;
  }

  .footer-chat {
    font-size: 10px;
    padding: 6px 13px;
  }

  .footer-chat img {
    width: 14px;
    height: 14px;
  }

  .footer_logo {
    width: max-content;
  }

  .footer_contact p {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .footer_links {
    justify-content: space-between;
  }

  .footer_left {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
  }

  .footer_contact .accent {
    font-size: 16px !important;
  }

  .footer_telegram_link {
    line-height: 140%;
  }

  .product-card__wish {
    top: 5px;
    right: 5px;
  }

  .footer_nav .menu-item:not(:last-child) {
    margin-bottom: 20px;
  }

  .soc a img {
    width: 24px !important;
    height: 24px !important;
  }

  .soc {
    gap: 12px;
  }

  .footer_telegram_link {
    margin-top: 8px;
  }

  .footer_bottom {
    margin-top: 58px;
  }

  .footer_pay {
    gap: 30px;
  }

  .hero-swiper .swiper-pagination {
    gap: 20px;
  }

  .twins_title {
    gap: 10px;
    padding-left: 15px;
  }

  .twins_left {
    flex-direction: column;
    row-gap: 20px;
  }

  #footer_soc-desktop .footer_soc {
    display: none;
  }

  #footer_soc-mob {
    display: flex;
    order: 1;
    width: max-content;
  }

  .footer_end {
    order: 2;
    width: 100%;
  }

  .footer_net {
    gap: 0;
    margin-top: 80px;
  }

  #footer_soc-desktop:not(:first-child) {
    margin-top: 26px;
  }

  .header-actions {
    gap: 20px;
  }


  .footer_contact .accent {
    padding-top: 0 !important;
  }

  .footer_instagram a {
    margin-top: 15px;
  }

  .footer_instagram p {
    font-size: 13px;
  }

  .footer_desing img {
    height: 13px !important;
    width: auto !important;
  }

  .swiper-button-next::before,
  .swiper-button-prev::before {
    height: 10px;
  }

  .slider_nav .swiper-pagination-bullet,
  .hero-swiper .swiper-pagination-bullet {
    font-size: 14px;
    letter-spacing: 0.02em;
  }

  .footer_instagram p {
    font-size: 13.6px;
  }

  .filter_scroll {
    padding: 20px !important;
  }

  .filter_scroll .ocf-footer {
    width: calc(100% - 40px) !important;
    padding: 0 !important;
  }

  .ocf-body {
    width: calc(100% - 40px) !important;
  }
}

@media (min-width:768px) {
  .footer-chat-mob {
    display: none;
  }
}

.footer-chat-mob {
  justify-self: flex-start !important;
}

@media (max-width:767px) {
  .footer_nav>.footer-chat {
    display: none;
  }
}

.filter_body .price-block input {
  line-height: 1;
}

.banner-container {
  position: relative;
}

@media (max-width: 399px) {
  .collection__slider {
    width: 340px;
  }
}

.products-mobile-block .product-card,
.collection__slider .product-card {
  height: 303px;
}

.quantity input[type="number"],
.qty-input {
  min-height: 20px !important;
}

.catalog_pagination:empty {
  margin-top: 0 !important;
}

.simplecheckout-cart-total .title {
  font-size: var(--text2) !important;
  color: rgba(101, 101, 100, 1);
}

@media (min-width: 1201px) and (max-width: 1740px) {
  .select2-container--default .select2-results__option {
      gap: 6px;
  }

  .select2-container--default .select2-results__options {
    padding-left: 5px;
    padding-right: 30px;
  }
  
  .basket_form_button {
    height: 46px;
  }

  .top-block {
    margin-left: 10px !important;
  }
}

@media (max-width: 1200px) {
  .basket_form_button {
    height: 40px;
  }
}

.footer-shedule {
  display: none;
}

@media (min-width: 769px) and (max-width: 1200px) {
  .woocommerce-form-row label {
     font-size: 12px;
  }
  .submenu-link {
    font-size: 16px;
  }
  .about-content .section-text {
      max-width: 338px;
      line-height: 1.17;
  }
  .footer-shedule {
    display: flex;
    margin-top: 40px;
  }

  .footer_left,
  #footer_soc-desktop {
    justify-content: flex-start;
  }

  .footer_right {
    margin-top: 32px;
  }

  .footer_contact li:first-child {
    display: none;
  }

  .footer-shedule .accent {
    font-size: var(--text2) !important;
    margin-top: 14px;
    display: block;
  }

  .footer_mail a {
    margin-top: 2px;
  }
}

@media (max-width: 768px) {
  .about-content .section-text {
      line-height: 1.17;
  }
  .about-images .parallax-bg-wrapper:first-child {
    width: 100% !important;
  }
}

.top-block {
  margin-left: 12px;
}

.menu-open .header {
  background: transparent !important;
}

@media (min-width: 769px) and (max-width: 1200px) {
  .catalog_content ul {
    column-gap: 15px;
  }
  .product-card__info {
    padding: 8px 2px;
  }
  .about_small+.twins {
    margin-top: 120px;
  }
}

.about-block-quote p {
  letter-spacing: 5%;
  line-height: 1.16;
}

.product_bottom li button {
  letter-spacing: 5%;
  color: var(--text-color);
}

.checkout_list .item_bottom {
  align-items: center;
  height: 24px;
  margin-top: auto;
  flex-grow: unset !important;
}

.checkout_list .item_price {
  letter-spacing: 0.02em;
}

.checkout_list .item_count {
  line-height: 17px;
}

.checkout_right {
  will-change: auto;
}

.input-radio-payment:checked+label:before {
  border-radius: 50% !important;
  box-shadow: inset 0 0 0 3px #FAF8F4 !important;
  width: 15px !important;
  height: 15px !important;
  border-color: rgba(101, 101, 100, 1) !important;
  background: rgba(37, 37, 37, 1) !important;
}

.input-radio-payment img {
  height: 18px;
  width: auto;
  object-fit: contain;
}

.payment-methods label[for="wayforpay"] {
  margin-bottom: 26px !important;
}


@media (max-width:1739px) {
  .input-radio-payment:checked+label:before {
    width: 12px !important;
    height: 12px !important;
    min-width: 12px;
  }

  .simplecheckout-block .radio-custom {
    width: 12px !important;
    height: 12px !important;

  }

  .radio-custom::after {
    width: 6px !important;
    height: 6px !important;
  }
}

@media (max-width:767px) {
  .payment-methods label[for="wayforpay"] {
    margin-bottom: 20px !important;
    row-gap: 10px;
  }

  .input-radio-payment img {
    padding-left: 27px;
  }
}

.input-radio-payment+label>img {
  height: 18px;
  width: auto;
  object-fit: contain;
}

.select2-container--bootstrap .select2-selection__arrow {
  right: 0 !important;
}

.input-radio-payment:checked+label:before {
  margin-top: 0 !important;
}

@media (max-width:767px) {
  .payment-methods label[for="wayforpay"] {
    flex-wrap: wrap;
  }

  .input-radio-payment+label>img {
    padding-left: 27px;
  }
}

.checkout_block_title—main {
  color: rgba(37, 37, 37, 1) !important;
}

@media (min-width: 769px) and (max-width: 1200px) {
  .about_block_list p {
    margin-top: 10px !important;
  }

  .about_block_text p {
    line-height: 1.45;
  }
}

.about_top:before {
  border-bottom: 1px solid rgba(101, 101, 100, 1) !important;
}

@media (min-width: 320px) and (max-width: 768px) {
  .woocommerce-form-login .woocommerce-LostPassword, .woocommerce-privacy-policy-text { 
    font-size: 11px;
  }
  .about_block_text p {
     line-height: 1.42 !important;
   }
}

.product-card__title {
  padding-bottom: 0px !important;
}


@media (min-width: 1740px) and (max-width: 1920px) {
  
  .text-opt {
     width: 817px;
  }
  .recoment_block {
    margin-top: 62px;
  }

  .product-card__title {
    height: 38px;
  }

  .product-card__price {
    height: 23px;
  }
}

.title-category {
  width: 120px;
}

@media (min-width: 1200px) and (max-width: 1739px) {
  .title-category {
    width: 83px;
  }
  
  .text-opt {
     width: 500px;
  }
  .wholesale_title {
    max-width: 740px;
  }

  .recoment_block {
    margin-top: 51px;
  }

  .product-card__title {
    height: 28px;
  }

  .product-card__price {
    padding-top: 5px;
    height: 21px;
  }
  .product-card__img {
    height: 320px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .title-category {
    width: 65px;
  }
  .product_bottom {
    gap: 2px;
  }
  .text-opt {
     width: 100%;
  }
  .wholesale_title {
    max-width: 510px;
  }

  .recoment_block {
    margin-top: 29px;
  }

  .product-card__title {
    height: 28px;
    font-size: 12px;
  }

  .product-card__price {
    padding-top: 5px;
    height: 17px;
  }

  .price-current-price,
  .price-current {
    font-size: 14px;
  }
}

.product-card__title {
  letter-spacing: 5%;

}

.menu-open .header {
  opacity: 0 !important;
  z-index: 0 !important;
}

.sidebar-nav {
  padding-top: 20px;
}

.sidebar-wrapper {
  padding-top: 40px;
}

.sidebar-nav .header-content {
  padding-left: 0px;
  padding-right: 0px;
}

.sidebar-wrapper {
  padding-left: 0px;
}

.sidebar-nav .header-actions {
  display: none;
}

@media (min-width: 320px) and (max-width: 768px) {
  .title-category {
    width: 56px;
  }
  .rec-ul {
    margin-top: 0px !important;
  }

  .recoment_block {
    margin-top: 21px;
  }

  .sidebar-nav {
    padding-top: 52px;
  }

  .menu-toggle {
    padding: 7px !important;
  }

  .logo {
    margin-bottom: 8px;
    margin-top: 2px;
  }

  .sidebar-nav .header-actions {
    display: flex;
    transform: translateX(10px);
  }

  .product-card__title {
    height: 26px;
  }

  .product-card__price {
    height: 17px;
  }
}

.logo {
  flex-shrink: 0;
}

.sidebar-nav .header-content {
  padding-top: 0;
  padding-bottom: 0;
}

.sidebar-menu .logo a img {
  filter: brightness(0);
}

.sidebar-menu .nav-link {
  color: #000;
}

.sidebar-menu .nav-link--menu::after {
  background: url('/front/assets/images/icons/arrow_right_light_dark.svg') no-repeat center;
  background-size: contain;
  transform: scaleX(-1) rotate(180deg);
}

@media (min-width:1920px) {
  .about-images .parallax-bg-wrapper:last-child {
    width: 360px;
    height: 420px;
  }

  .about-images .parallax-bg-wrapper:first-child {
    width: 400px;
  }
}

@media (min-width:1740px) {
  .recoment_block .rec-ul {
    row-gap: 60px !important;
  }
}

.wholesale_text p {
  line-height: 1;
  letter-spacing: 5%;
}

@media (min-width:1740px) {
  .sidebar-nav .header-content {
    padding-right: 60px;
    padding-left: 120px;
  }
}


.cart-count {
  font-size: 18px;
}

@media (min-width: 1201px) and (max-width: 1740px) {
  .cart-count {
    font-size: 16px;
  }
}

@media (min-width: 769px) and (max-width: 1200px) {
  .woocommerce-form-login .woocommerce-LostPassword, .woocommerce-privacy-policy-text { 
    font-size: 12px;
  }
  
  .cart-count {
    font-size: 13px;
  }
}

@media (min-width:1740px) {
  .footer_net {
    grid-template-columns: 528px 1fr;
    gap: 202px;
  }

  .footer_nav {
    grid-template-columns: 1fr 170px !important;
    gap: 168px !important;
  }
}

.footer_contact .accent {
  font-weight: 400;
}

@media (min-width: 1201px) and (max-width: 1740px) {
  .footer_net {
    grid-template-columns: 411px 1fr;
    gap: 69px;
  }

   .footer_nav {
    grid-template-columns: 1fr 150px !important;
    gap: 104px !important;
  }

  .footer_nav ul {
    column-gap: 36px;
  }

  .footer_links {
    gap: 27px;
  }

  #footer_soc-desktop {
    justify-content: flex-start;
  }

  .footer-chat {
    height: 34px;
  }
  .cart-btn {
    font-size: 12px;
  }
}

@media (min-width: 769px) and (max-width: 1200px) {
  .cart-btn {
    font-size: 12px;
  }
  .cart-count {
    font-size: 13px;
  }
  .popup_name {
    font-size: 14px;
    font-weight: 300;
  }
  .popup-content {
    gap: 25px;
  }
  .delivery-content p+.popup_name {
    margin-top: 5px;
  }
  .footer_left {
    gap: 60px;
  }

  .footer_nav {
    grid-template-columns: 1fr 120px !important;
    gap: 128px !important;
  }

  .footer_nav ul {
    column-gap: 150px;
  }
}

.footer_cop.mob {
  display: none;
}

@media (max-width:1200px) {
  .footer_cop.mob {
    display: block !important;
  }

  .footer_cop.pc {
    display: none;
  }
}

.recoment_block .product-card__delivery {
  padding: 5px 60px;
  padding-bottom: 4.3px;
}

@media (min-width: 1201px) and (max-width: 1740px) {
.recoment_block .product-card__delivery {
  padding: 5px 54px;
  padding-bottom: 4.3px;
}
   
   .banner-slider .slider_title_wrapper {
        display: flex;
        align-items: center;
        height: 103px;
    }

    .banner-slider .slider_content {
        width: 542.5px;
        height: 44px;
    }
    
}

@media (min-width: 769px) and (max-width: 1200px) {
   .select2-container--default .select2-selection--single .select2-selection__arrow {
      top: 2px;
  }

  .select2-container--default .select2-results__option {
      gap: 6px;
  }

  .select2-container--default .select2-results__options {
    padding-left: 5px;
    padding-right: 30px;
  }

  .select2-container--default .select2-results__option::before {
        width: 3px;
        height: 3px;
  }
  .recoment_block .product-card__delivery {
    padding: 5px 30px;
    padding-bottom: 3px;
  }

  .banner-slider .slider_title_wrapper {
        display: flex;
        align-items: center;
        height: 65px;
    }

    .banner-slider .slider_content {
        width: 343.21px;
        height: 34px;
    }
}

@media (min-width: 320px) and (max-width: 768px) {
  .select2-selection__arrow::before {
    width: 24px;
    height: 24px;
  }

  .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 11.5px;
  }

  .select2-container--default .select2-selection--single {
      align-items: flex-end;
  }

  .catalog_top {
    align-items: flex-end;
  } 

  .select2-container--default .select2-results>.select2-results__options {
      width: 181px;
  }

  .select2-container--default .select2-results__option {
      gap: 5px;
  }

  .select2-container--default .select2-results__options {
    padding-left: 5px;
    padding-right: 16px;
  }

  .select2-container--default .select2-results__option::before {
        width: 3px;
        height: 3px;
  }

  .banner-slider .slider_title_wrapper {
        display: flex;
        align-items: center;
        height: 48px;
    }

    .banner-slider .slider_content {
        width: 343.21px;
        height: 28px;
        padding: 0px;
    }
  
  .recoment_block .product-card__delivery {
    padding: 5px 16px;
  }
}

@media (min-width:1740px) {
  .footer_pay {
    margin-left: 130px;
    margin-right: 130px;
  }
}

@media (min-width: 1201px) and (max-width: 1740px) {
  #simplecheckout_shipping .checkout_block_title {
      margin-bottom: 23px;
  }
  .footer_pay {
    margin-left: 70px;
    margin-right: 70px;
  }
}

.footer_links {
  align-items: center;
}

.footer_cop.pc {
  line-height: 18px;
}

.swiper-slide {
  position: relative;
}

.swiper-slide::after .hero-block .swiper-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 10.37%, rgba(0, 0, 0, 0.28) 100%),
linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
  z-index: 2;
  pointer-events: none;
}

@media (min-width: 1201px) and (max-width: 1740px) {
.swiper-slide::after .hero-block .swiper-slide::after {
background: rgba(0, 0, 0, 0.3);
}
}

@media (min-width: 320px) and (max-width: 768px) {
.swiper-slide::after .hero-block .swiper-slide::after {
background: rgba(0, 0, 0, 0.3);
}
.page.text-page.content-reveal .content > p:first-of-type {
      margin-bottom: 16px;
  }
}

@media (min-width: 1740px) {
    .banner-slider .slider_content {
        margin-top: 6px;
    }

    .banner-slider .slider_title_wrapper {
        height: 148px;
        display: flex;
        align-items: center;
    }
}

.btn-main .title-category {    
     text-align: center;
}

.page.text-page.content-reveal .content > p:first-of-type {
  margin-bottom: 22px;
}

@media (min-width: 1741px) {
  .btn-main {
    padding-top: 51px;
  }
}

@media (min-width: 1201px) and (max-width: 1740px) {
  .btn-main {
    padding-top: 30px;
  }

}

@media (min-width: 769px) and (max-width: 1200px) {
  #simplecheckout_shipping .checkout_block_title {
      margin-bottom: 18px;
  }
  .btn-main {
  padding-top: 21px;
  }
}

@media (max-width: 768px) {
  .btn-main {
    padding-top: 17px;
  }
}

.btn.btn-main:after {
  margin-left: -2px;
}

@media (min-width: 1741px) {
 .twins_title::before {
    width: 26px;
    height: 73px;
    margin-bottom: 8px;
 }

  .twins_title {
      line-height: 1.18 !important;
  }
}

@media (min-width: 1201px) and (max-width: 1740px) {
  .twins_title::before {
    transform: rotate(5deg);
    margin-left: 2px;
  }

  .twins_title {
     line-height: 1.17;
  }

  .twins_title span {
    position: relative;
    top: 4px;
  }

  .page.text-page.content-reveal .content > p:first-of-type {
      margin-bottom: 19px;
  }
}

@media (min-width: 769px) and (max-width: 1200px) {
  .page.text-page.content-reveal .content > p:first-of-type {
      margin-bottom: 16px;
  }
  .twins_title::before {
    transform: rotate(4deg);
  }
   .twins_title {
     line-height: 1.17;
  }

  .twins_title span {
    position: relative;
    top: 4px;
  }
}
@media (max-width: 768px) {
  
  .twins_title {
     line-height: 1.155;
  }

  .twins_title span {
    position: relative;
    top: 3.7px;
  }
}

.product-card__wish {
  padding: 0 !important;
}

@media (min-width: 1741px) {
  .product-card__wish {
    width: 26px !important;
    height: 26px !important;
    top: 10px !important;
    right: 10px !important;
  }
}

@media (min-width: 1201px) and (max-width: 1740px) {
  .product-card__wish {
    width: 24px !important;
    height: 24px !important;
    top: 15px !important;
    right: 15px !important;
  }
}

@media (min-width: 769px) and (max-width: 1200px) {
   .product-card__wish {
    width: 22px !important;
    height: 22px !important;
    top: 12px !important;
    right: 12px !important;
  }
}
@media (max-width: 768px) {
   .product-card__wish {
    width: 22px !important;
    height: 22px !important;
    top: 5px !important;
    right: 5px !important;
  }
}

.header-hidden {
  transform: translateY(-100%) !important;
}

#simplecheckout_shipping_address {
  display: grid;
  grid-gap: clamp(20px, 3vw, 40px);
}

.text-page ol {
  margin-top: 0 !important;
} 

.text-page .content > ol {display: flex; flex-direction: column; gap: 16px;}

.text-page .container {
    letter-spacing: 5%;
    line-height: 100%;
}

.cart_bottom {
  background: #FAF8F4;
  margin: 0 -40px -40px;
  padding: 20px 40px 40px;
  margin-top: auto;
}

.widget_shopping_cart_content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.cart_products::-webkit-scrollbar {
  width: 4px !important;
}

.cart_products::-webkit-scrollbar-track {
  background: rgba(37, 37, 37, 0.1) !important;
  border-radius: 100px !important;
}

.cart_products::-webkit-scrollbar-thumb {
  background: #252525 !important;
  border-radius: 100px !important;
}

.cart_products::-webkit-scrollbar-thumb:hover {
  background: #252525 !important;
}

.ocf-content.filter_scroll {width: 100%;}
.ocf-selected-filter {    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.popupCart {
  display: none;
}


.empty_popup {
  display: none;
  align-items: center;
  flex-direction: column;
  margin: auto;
  width: 100%;
  text-align: center;
}

.empty_title_popup {
  font-weight: 300;
  font-size: 26px;
  text-transform: uppercase;
}

.empty_title_popup:not(:first-child) {
  margin-top: 20px;
}

.empty_text_popup:not(:first-child) {
  margin-top: 24px;
}

.empty_button_popup:not(:first-child) {
  margin-top: 50px;
  width: 100%;
}

.empty_text_popup p {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.17;
  text-align: center;
}

.popup-total {
    font-size: 18px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 5%;
}

#cart .btn-secondary {
    font-size: 20px;
  }

  .empty_text_popup p {
    max-width: 450px;
  }

@media (min-width: 1201px) and (max-width: 1740px) {
  .empty_title_popup {
    font-size: 18px;
  }
  #cart .btn-secondary {
    font-size: 18px;
  }
  .empty_text_popup p {
    font-size: 12px;
  }
  .popup-total {
    font-size: 16px;
  }
}

@media (min-width: 769px) and (max-width: 1200px) {
  #cart .btn-secondary {
    font-size: 14px;
  }
  .empty_title_popup {
    font-size: 14px;
  }
  .popup-total {
    font-size: 13px;
    line-height: 145%;
  }
}

@media (max-width: 768px) {

  .cart_title {
    font-size: 18px;
  }

  #cart .btn-secondary {
    font-size: 14px;
  }

  .empty_text_popup p {
    max-width: 320px;
  }

  .empty_text_popup p {
    font-size: 11px;
  }

.empty_title_popup {
    font-size: 12px;
  }

   .popup-total {
    font-size: 12px;
    line-height: 140%;
  }
}

.qty-input-popup {
  border-bottom: none !important;
}

.cart_recommend_swiper {
  overflow: hidden;
}

.cart_recommend_arrows button {
  cursor: pointer;
}

.free-shipping__top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.free-shipping__icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.free-shipping__icon img {
    width: 100%;
    height: 100%;
    display: block;
}

.free-shipping__text {
    font-family: 'Gilroy';
    font-size: 18px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0.05em;
    color: #252525;
}

.free-shipping__text span {
    font-weight: 300;
}

.free-shipping__progress {
    width: 100%;
    height: 1px;
    background: #656564;
    position: relative;
}

.free-shipping__progress-fill {
    position: absolute;
    left: 0;
    top: -1px;
    width: 60.2%;
    height: 3px;
    background: #252525;
    transition: width 0.6s ease;
}

#cart .cart_close img {
  width: 24px !important;
  height: 24px !important;
}

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

#cart .cart_top {
  margin-bottom: 30px;
}

#cart .cart_checkout {
  font-weight: 300 !important;
  letter-spacing: 0.02em;
  background: rgba(37, 37, 37, 1) !important;
}

@media (min-width: 1741px) {
  #cart .cart_checkout {
    font-size: 20px;
    min-height: 54px !important;
  }

  #cart .cart_total {
    padding: 0 0 10px !important;
  }
}

@media (min-width: 1201px) and (max-width: 1740px) {
  .cart_title {
    font-size: 18px;
  }

  .about-content .section-text {
      line-height: 1.17;
  }

  .cart_content {
    padding: 40px 40px 28px;
  }

  #cart .cart_checkout {
    font-size: 18px;
    line-height: 22px;
    min-height: 46px !important;
  }

  #cart .cart_total {
    padding: 0 0 15px !important;
  }
}

@media (min-width: 769px) and (max-width: 1200px) {
  .empty_text_popup p {
    font-size: 12px;
  }
  .cart_title {
    font-size: 18px;
  }
  .cart_content {
    padding: 40px 40px 28px;
  }
  
  #cart .cart_checkout {
    font-size: 14px;
    line-height: 17px;
    min-height: 40px !important;
  }

  #cart .cart_total {
    padding: 0 0 15px !important;
  }
}

@media (max-width: 768px) {
  #cart .cart_top {
    margin-bottom: 26px;
  }

  #cart .cart_checkout {
    font-size: 14px;
    line-height: 17px;
    min-height: 40px !important;
  }

  #cart .cart_total {
    padding: 0 0 15px !important;
  }
}




#cart .cart_recommend_info {
  display: flex;
  flex-direction: column;
}

#cart .cart_recommend_info button {
  margin-top: auto;
  margin-left: auto;
  line-height: 100%;
  letter-spacing: 5%;
}

#cart .cart_total span:first-child {
  font-size: var(--text3) !important;
  font-weight: 300 !important;
  line-height: 1.1;
}

#cart .cart_recommend_price {
  margin-bottom: 10px;
}

#cart .cart_total .popup-total {
  font-size: var(--text2) !important;
  text-transform: uppercase;
}

#cart .cart_recommend_item {
  gap: 20px !important;
  border-color: rgba(160, 160, 159, 1) !important;
  padding-right: 15px !important;
}

#cart .cart_recommend_title {
  font-size: 16px !important;
  font-weight: 300 !important;
  margin-bottom: 15px !important;
}


.popup-product-link::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-left: 6px;
    background: url('/front/assets/images/icons/popup_right_light.svg') no-repeat center;
    background-size: contain;
    vertical-align: -7px;
}

#cart .cart_recommend_price {
    letter-spacing: 2%;
    line-height: 100%;
}

#cart .popup-text-title {
    font-weight: 300;
    line-height: 100%;
    letter-spacing: 2%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

#cart .cart_total span {
  font-size: 16px;
}

#cart .cart_item_title {
    font-weight: 300;
  }

   #cart .cart_item_price {
      line-height: 100%;
      letter-spacing: 2%;
      text-transform: uppercase;
      font-weight: 300;
  }

  .qty-input-popup {
      font-weight: 300;
      line-height: 100%;
      letter-spacing: 5%;
      text-align: center;
      
  }


  .cart_recommend_prev,
.cart_recommend_next {
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    cursor: pointer;
    position: relative;
}

.cart_recommend_prev::before,
.cart_recommend_next::before {
    content: '';
    position: absolute;
    inset: 0;
    margin: auto;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.cart_recommend_prev::before {
    background-image: url('/front/assets/images/icons/popup_down_left.svg');
}

.cart_recommend_next::before {
    background-image: url('/front/assets/images/icons/popup_down_right.svg');
}

  .qty-minus-popup img,
  .qty-plus-popup img {
      max-width: none;
  }

  #popup-count {
    margin-left: 8px;
  }

  #cart .cart_item {
    padding: 10px 0;
  }




/* MIN-WIDTH 1741px */

@media (min-width: 1741px) {

  .catalog_sort .select2-selection__arrow::before {
    top: 14.8px;
  }

  .catalog_sort .select2-container .select2-selection--single .select2-selection__rendered {
     padding-right: 45px;
  }

  .select2-container--default .select2-results__option {
      width: 223px !important;
  }

  #cart .popup-product-link {
    font-size: 16px;
  }

  #cart .cart_item_img,
  #cart .cart_item_img img {
    width: 90px;
    height: 95px;
  }

  .qty-minus-popup img,
  .qty-plus-popup img {
    width: 24px !important;
    height: 24px !important;
  }

  #data-popup-total .qty-btn {
    width: 24px;
    height: 24px;
  }

  .qty-input-popup {
      font-size: 16px !important;
  }

  #cart .cart_item_price {
      font-size: 20px;
  }

  #cart .cart_item_title {
      font-size: 16px;
  }

  #cart .popup-text-title {
    font-size: 20px;
  }
  #cart .cart_recommend_info button {
      font-size: 18px;
  }
  #cart .cart_recommend {
    padding-top: 26px !important;
  }

  #cart .cart_recommend_item .popup-product-img {
    width: 90px !important;
    height: 100px !important;
  }

  #cart .cart_recommend_price {
    font-size: 20px;
    letter-spacing: 2%;
    line-height: 100%;
    text-transform: uppercase;
  }
}

/* (MIN-WIDTH: 1201px) and (MAX-WIDTH: 1740px) */

@media (min-width: 1201px) and (max-width: 1740px) {

  .product_shares {
    padding: 15px 15px;
  }

  .product-options+.quantity {
    margin-top: 38px;
  }

  .product_actions .wishlist-add-button {
    width: 46px;
    height: 46px;
  }

  .add-to-cart, .btn-notify {
    padding: 12.5px 20px;
  }

  .catalog_sort .select2-container .select2-selection--single .select2-selection__rendered {
     padding-right: 35px;
  }
  .select2-container--default .select2-results__option {
      gap: 6px;
  }

  .select2-container--default .select2-results__options {
    padding-left: 5px;
    padding-right: 30px;
  }

  #cart .popup-product-link {
    font-size: 12px;
  }

  #cart .cart_item_remove img {
      width: 20px;
      height: 20px;
  }
  
  #cart .cart_item_img,
  #cart .cart_item_img img {
    width: 76px;
    height: 80px;
  }

  .free-shipping__text {
    font-size: 16px;
  }
  
  .qty-minus-popup img,
  .qty-plus-popup img,
  .qty-minus-pr img,
  .qty-plus-pr img, 
  .qty-minus img, 
  .qty-plus img {
    width: 20px !important;
    height: 20px !important;
  }

  #data-popup-total .qty-btn {
    width: 20px;
    height: 20px;
  }

  .qty-input-popup {
      font-size: 12px !important;
  }

  #cart .cart_item_price {
      font-size: 18px;
  }

  #cart .cart_item_title {
      font-size: 12px;
  }

  #cart .cart_total span {
     font-size: 12px;
  }
  #cart .popup-text-title {
    font-size: 18px;
    margin-bottom: 16px;
  }
  #cart .cart_recommend_info button {
      font-size: 16px;
  }
  #cart .cart_recommend_price {
    font-size: 18px;
  }
  .popup-product-link::after {
    width: 20px;
    height: 20px;  
  }
  
  #cart .cart_recommend_title {
      font-size: 12px !important;
  }
  #cart .cart_recommend {
    padding-top: 26px !important;
    padding-bottom: 24px !important;
  }

  #cart .cart_recommend_item .popup-product-img {
    width: 83px !important;
    height: 92px !important;
  }
}

/* (MIN-WIDTH: 769px) and (MAX-WIDTH: 1200px) */

@media (min-width: 769px) and (max-width: 1200px) {

  .qty-minus-popup img,
  .qty-plus-popup img,
  .qty-minus-pr img,
  .qty-plus-pr img, 
  .qty-minus img, 
  .qty-plus img {
    width: 20px !important;
    height: 20px !important;
  }

  #popup-count {
    margin-left: 5px;
  }

  #cart .popup-product-link {
    font-size: 12px;
  }

  #cart .cart_item_remove img {
      width: 20px;
      height: 20px;
  }

  #cart .cart_item_title {
      font-size: 12px;
  }
  
  #cart .cart_item_img,
  #cart .cart_item_img img {
    width: 76px;
    height: 80px;
  }

  .free-shipping__text {
    font-size: 13px;
    line-height: 145%;
  }

  .qty-minus-popup img,
  .qty-plus-popup img {
    width: 20px !important;
    height: 20px !important;
  }

  #data-popup-total .qty-btn {
    width: 20px;
    height: 20px;
  }

  .qty-input-popup {
      font-size: 12px !important;
  }

  #cart .cart_item_price {
      font-size: 14px;
  }
  #cart .cart_total span {
     font-size: 12px;
  }
  #cart .popup-text-title {
    font-size: 18px;
    margin-bottom: 16px;
  }
  #cart .cart_recommend_info button {
      font-size: 13px;
      line-height: 145%;
  }
  #cart .cart_recommend_price {
    font-size: 14px;
  }
  .popup-product-link::after {
    width: 18px;
    height: 18px;
  }
  #cart .cart_recommend_title {
      font-size: 12px !important;
  }
  #cart .cart_recommend {
    padding-top: 26px !important;
    padding-bottom: 28px !important;
  }

  #cart .cart_recommend_item .popup-product-img {
    width: 83px !important;
    height: 92px !important;
  }
}

#data-popup-total .qty-btn {
    color: #656564;
}

/* (MIN-WIDTH: 768px) */

@media (max-width: 768px) {
  .qty-minus-popup img,
  .qty-plus-popup img,
  .qty-minus-pr img,
  .qty-plus-pr img, 
  .qty-minus img, 
  .qty-plus img {
    width: 20px !important;
    height: 20px !important;
  }

 #cart .cart_bottom {
      padding: 15px 20px 20px;
      margin: 0 -20px -20px;
      margin-top: auto;
   }
  
  #cart .cart_product {
     min-height: 414px;
  }
  
  #popup-count {
    margin-left: 5px;
  }

  #cart .popup-product-link {
    font-size: 11px;
  }

  #cart .cart_item_title {
      font-size: 11px;
  }
  
  #cart .cart_item_img,
  #cart .cart_item_img img {
    width: 57px;
    height: 60px;
    flex: 0 0 57px;
    margin-left: 10px;
  }

  .cart_item_top {
    margin-bottom: 5px;
  }

  .cart_discount_icon {
    font-size: 20px;
  }

  .free-shipping__text {
    font-size: 12px;
  }

  .qty-minus-popup img,
  .qty-plus-popup img {
    width: 20px !important;
    height: 20px !important;
  }

  #data-popup-total .qty-btn {
    width: 20px;
    height: 20px;
  }

  .qty-input-popup {
      font-size: 11px !important;
  }

  #cart .cart_item_price {
      font-size: 14px;
  }

  #cart .cart_total span {
     font-size: 11px;
  }
  #cart .popup-text-title {
    font-size: 14px;
  }
   #cart .cart_recommend_info button {
      font-size: 12px;
      position: absolute;
      bottom: 5px;
      right: 5px;
  }
  #cart .cart_recommend_price {
    font-size: 14px;
  }
  .popup-product-link::after {
    width: 15px;
    height: 15px;  
    margin-left: 5px;
    vertical-align: -5px;
     margin-bottom: 2px;
  }
  
  #cart .cart_recommend {
    padding-top: 14px !important;
    padding-bottom: 25px !important;
    padding: unset;
  }

   #cart .cart_recommend_item {
    padding: 5px;
    padding-right: 5px !important;
  }

  #cart .cart_recommend_item img {
    width: 57px !important;
    height: 60px !important;
  }

  #cart .cart_recommend_item {
    gap: 10px !important;
  }

  #cart .cart_recommend_title {
    margin-bottom: 10px !important;
    font-size: 11px;
  }
}

#cart .cart_qty {
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
}

#cart .cart_qty .qty-btn {
  border: 0;
  background: transparent;
  padding: 0;
  height: auto;
  line-height: 1;
  color: #656564;
  cursor: pointer;
}

#cart .cart_qty .qty-input {
  width: 20px;
  border: 0;
  padding: 0;
  text-align: center;
  background: transparent;
  font-size: 18px;
  color: #666;
}

#cart .cart_qty {
  min-width: 0;
}

.cart_recommend_prev.swiper-button-disabled,
.cart_recommend_next.swiper-button-disabled {
    opacity: 0.3;
    pointer-events: none;
    cursor: default;
}

.cart_recommend_prev,
.cart_recommend_next {
    transition: opacity 0.3s ease;
}

#cart .cart_checkout {
    border: 1px solid transparent;
}

#cart .cart_checkout:hover {
    background-color: transparent !important;
    color: #222;
    border-color: #222 !important;
}

#cart .cart_item_remove img {
    max-width: none;
}

.customer-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 50px;
}

.customer-info__item {
    font-family: 'Gilroy', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: #656564;
}

.cart_products {
  scrollbar-color: auto;
}

.cart_products::-webkit-scrollbar {
  width: 4px;
}

.cart_products::-webkit-scrollbar-track {
  background: #D9D9D9; 
}

.cart_products::-webkit-scrollbar-thumb {
  background: #252525; 
}

.cart_products::-webkit-scrollbar-thumb:hover {
  background: #252525; 
}

#order_review {
  scrollbar-color: auto;
}

#order_review::-webkit-scrollbar {
  width: 5px;
}

.mob-del {
  display: none;
}

.desc-del {
  display: block;
}

@media (max-width: 768px) {

  #cart .cart_recommend_price {
     margin-bottom: 0px !important;
  }

  .desc-del {
       display: none;
    }

    .mob-del {
      display: block;
    }
  
    #order_review::-webkit-scrollbar {
         width: 3px;
    }

    .product-card__img-wrap {
    position: relative;
}

.product-card__delivery {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    color: #656564;
    text-align: center;
    font-size: 9px;
    line-height: 1.12;
    z-index: 2;
}
}

#order_review::-webkit-scrollbar-track {
  background: #D9D9D9; 
}

#order_review::-webkit-scrollbar-thumb {
  background: #252525; 
}

#order_review::-webkit-scrollbar-thumb:hover {
  background: #252525; 
}

.customer-block {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.customer-block__row {
    display: flex;
    gap: 32px;
}

.customer-block__firstname,
.customer-block__lastname,
.customer-block__address,
.customer-block__city,
.customer-block__country,
.customer-block__phone,
.customer-block__email {
    font-family: 'Gilroy', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 120%;
    color: #656564;
    text-decoration: none;
}

.customer-block__phone:hover,
.customer-block__email:hover {
    text-decoration: underline;
}

.menu-item.has-submenu .submenu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 0;
    overflow-y: hidden;
    padding-top: 0;
    padding-bottom: 0;
    transition: max-height .7s ease;
}

.menu-item.has-submenu.active .submenu {
    max-height: 500px;
}

.menu-item.has-submenu.scroll .submenu {
    overflow-y: auto;
}

.product_popups .popup-content {
   overflow: auto;
}

.product_popups .popup-content {
  scrollbar-color: auto;
}

.product_popups .popup-content::-webkit-scrollbar {
  width: 4px;
}

.product_popups .popup-content::-webkit-scrollbar-track {
  background: #D9D9D9; 
}

.product_popups .popup-content::-webkit-scrollbar-thumb {
  background: #252525; 
}

.product_popups .popup-content::-webkit-scrollbar-thumb:hover {
  background: #252525; 
}

[data-popup="composition"] .popup-content {
    height: auto;
    overflow: visible !important;
}

.ocf-btn.ocf-disabled, .ocf-btn[disabled] {
    opacity: unset !important;
}

.about_block_text p {
  line-height: 1.15;
}

.wholesale_content .text-opt {
  line-height: 1.15;
}

.entry-summary {
  position: relative;
}

.sidebar-wrapper {
  scrollbar-color: auto;
}

.sidebar-wrapper::-webkit-scrollbar {
  width: 4px;
}

.sidebar-wrapper::-webkit-scrollbar-track {
  background: #D9D9D9; 
}

.sidebar-wrapper::-webkit-scrollbar-thumb {
  background: #252525; 
}

.sidebar-wrapper::-webkit-scrollbar-thumb:hover {
  background: #252525; 
}

.product_image_active,
.product_image_active .swiper-slide,
.product_image_active img {
  touch-action: pan-y !important;
}

.popup-cart-option {
    font-weight: 300 !important;
    letter-spacing: 0.02em;
    background: rgba(37, 37, 37, 1) !important;
    color: #fff;
    font-size: 12px;
    padding: 5px;
}

.popup-cart-option:active {
    transform: translateY(1px) scale(.995);
    box-shadow: 0 2px 5px rgba(0,0,0,.1);
}

.popup-cart-option-dropdown {
    position: relative;
    display: inline-block;
}

.popup-cart-option-dropdown__list {
    position: fixed;
    width: 180px;
    background: #fff;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: .2s;
}

.popup-cart-option-dropdown.active .popup-cart-option-dropdown__list {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.popup-cart-option-dropdown__item {
    display: block;
    width: 100%;
    padding: 12px 18px;
    border: 0;
    background: #fff;
    text-align: left;
    cursor: pointer;
    transition: background .2s;
}

.popup-cart-option-dropdown__item:hover {
    background: #f5f5f5;
}

.cart_checkout.disabled {
    opacity: .5;
    cursor: not-allowed;
}

@media (min-width: 1201px) and (max-width: 1740px) {
   .popup-cart-option {
      font-size: 11px;
   }
}

@media (min-width: 769px) and (max-width: 1200px) {
   .popup-cart-option {
      font-size: 11px;
   }
}

@media (min-width: 320px) and (max-width: 768px) {
  .instagram-section .section-title .anime-link__arrows {
      margin-top: 3.5px;
  }
   .popup-cart-option {
      font-size: 10px;
   }
}

.cart_discount-3 {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0px 0 15px 0;
  border-bottom: 1px solid #222;
}

.cart_discount_icon {
    background: url('/front/assets/images/icons/star_2.svg') no-repeat center;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.cart_recommend_prev::before,
.cart_recommend_next::before {
    margin: 0;
    margin-top: 3px;
}

.cart_discount_title-3 {
  font-size: 18px;
  text-transform: uppercase;
}

.cart_discount_text-3 {
  font-size: 16px;
  color: #777;
}

.bl-text-3 {
  line-height: 1.14;
}

.basket_gift_title {
  line-height: 1.2;
}

.hero-swiper {
    --bottom-offset: clamp(30px, 4vw, 70px);
    --line-gap: 50px;
}

.blocr-banner-line {
    position: absolute;
    left: clamp(24px, 8vw, 160px);
    right: clamp(24px, 8vw, 160px);
    bottom: calc(var(--bottom-offset) + var(--line-gap));
    display: flex;
    align-items: flex-end;
    gap: clamp(20px, 3vw, 35px);
    flex-direction: row-reverse;
}

.banner-line {
  display: block;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.7);
}

.banner-title-line {
  font-size: clamp(40px, 6.5vw, 108px);
  color: white;
  transform: translateY(clamp(6.9px, 1.1vw, 17.8px));
}

@media (min-width: 320px) and (max-width: 768px) {
  #simplecheckout_shipping .checkout_block_title {
      margin-bottom: 13px;
  }
  .item_info {
     grid-gap: 15px;
  }
  .item_package {
    margin-top: 0;
  } 
  .quantity+.product_actions {
      margin-top: 20px;
}

  .hero-swiper {
    --line-gap: 62px;
  }
}

body:has(.overlay.active) .header.header-main:not(.scrolled)::before {
    background: none;
}

/* Overlay */
.header::before {
    content: "";
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.5);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    z-index: 10;

    transition:
        opacity 0.3s ease,
        visibility 0s linear 0.3s;
}

.header.no-before::before {
    display: none;
}

.overlay {
    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.3s ease,
        visibility 0s linear 0.3s;
}

.overlay.active,
body:has(.overlay.active) .header::before {
    opacity: 1;
    visibility: visible;

    transition:
        opacity 0.3s ease,
        visibility 0s;
}

.overlay.active {
    pointer-events: auto;
}

.search-popup {
    position: relative;
    z-index: 11;
}

body:has(.overlay.active) .header .main-nav,
body:has(.overlay.active) .header .logo,
body:has(.overlay.active) .header .header-actions > *:not(.open-search-cont) {
    pointer-events: none;
}

body:has(.popup-block.active) .header .main-nav,
body:has(.popup-block.active) .header .logo,
body:has(.popup-block.active) .header .header-actions > *:not(.open-search-cont) {
    pointer-events: none;
}

body:has(.overlay.active) .header .header-content {
    color: rgba(255,255,255,.5);
}

body:has(.overlay.active) .header.header-main:not(.scrolled) .main-nav,
body:has(.overlay.active) .header.header-main:not(.scrolled) .logo,
body:has(.overlay.active) .header.header-main:not(.scrolled) .header-actions > *:not(.open-search-cont) {
    opacity: .5;
}

.notice--error {
    background-color: #CC1212;
}

.basket_name {
   line-height: 1.17 !important;
}

.select2-selection__arrow {
    position: absolute;
    right: 18px;
    top: 50%;
    width: 48px; /* место для спиннера и стрелки */
    height: 24px;
}

.select2-selection__arrow b {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.simplecheckout_overlay {
    position: absolute;
    right: 44px;          /* расстояние до стрелки */
    top: 0;
    width: 24px;
    height: 24px;
    margin-top: -2px;

    border: 2px solid #e6e6e6;
    border-top-color: #5c5c5c;
    border-radius: 50%;

    animation: spin .8s linear infinite;
    box-sizing: border-box;
}

@media (min-width: 320px) and (max-width: 768px) {
    .simplecheckout_overlay {
        right: 32px;  
        width: 18px;
        height: 18px;
        margin-top: 1px;
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* //ZOOM */
.product-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(18, 18, 20, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
}

.product-gallery-modal.active {
  display: flex;
}

.gallery-open {
  overflow: hidden;
}

.pg-counter {
  position: absolute;
  top: 18px;
  left: 20px;
  color: #fff;
  font-size: 18px;
  z-index: 10;
}

.pg-actions {
  position: absolute;
  top: 12px;
  right: 18px;
  display: flex;
  align-items: center;
  gap: 18px;
  z-index: 10;
}

.pg-actions button,
.pg-arrow {
  background: none;
  border: 0;
  color: #fff;
  cursor: pointer;
}

.pg-actions button {
  font-size: 30px;
  line-height: 1;
}

.pg-close {
  font-size: 42px !important;
}

.pg-main {
  max-width: 44vw;
  max-height: 86vh;
  overflow: hidden;
}

.pg-main img {
  display: block;
  max-width: 100%;
  max-height: 86vh;
  object-fit: contain;
  transition: transform .25s ease;
  cursor: zoom-in;
}

.pg-main img.zoomed {
  transform: scale(1.8);
  cursor: zoom-out;
}

.pg-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 70px;
  line-height: 1;
  z-index: 10;
}

.pg-prev {
  left: 30px;
}

.pg-next {
  right: 30px;
}

.pg-thumbs {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  max-width: 80vw;
  overflow-x: auto;
  z-index: 10;
}

.pg-thumbs img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  cursor: pointer;
  opacity: .6;
  border: 2px solid transparent;
}

.pg-thumbs img.active {
  opacity: 1;
  border-color: #fff;
}

.pg-grid {
  position: absolute;
  inset: 70px 80px 110px;
  background: rgba(18, 18, 20, .96);
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 12px;
  overflow-y: auto;
  z-index: 9;
  padding: 20px;
}

.pg-grid.active {
  display: grid;
}

.pg-grid img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  cursor: pointer;
}

.pg-thumbs {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  width: 560px;
  max-width: 80vw;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  z-index: 10;
}

.pg-thumbs::-webkit-scrollbar {
  display: none;
}

.pg-thumbs img {
  flex: 0 0 70px;
  width: 70px;
  height: 70px;
  object-fit: cover;
  cursor: pointer;
  opacity: .55;
  transition: opacity .25s ease, transform .25s ease;
}

.pg-thumbs img.active {
  opacity: 1;
}

@media (min-width: 395px) and (max-width: 768px) {
     .main-text-block {
        margin-left: -40px !important;
      }
}
 

@media (max-width: 768px) {
  .edit-address .select2-container {
    padding: 6px 20px;
  }

  .edit-address .select2-container .select2-selection--single .select2-selection__rendered {
    margin-bottom: auto;
    margin-top: auto;
  }

   .product-gallery-modal {
    align-items: flex-start;
  }

  .pg-counter {
    top: 24px;
    left: 12px;
  }

  .pg-actions {
    top: 20px;
    right: 12px;
    gap: 16px;
  }

  .pg-main {
    width: calc(100vw - 10px);
    max-width: none;
    margin-top: 170px;
    max-height: calc(100vh - 300px);
  }

  .pg-main img {
    width: 100%;
    max-height: calc(100vh - 300px);
    object-fit: contain;
  }

  .pg-arrow {
    top: 50%;
    font-size: 52px;
  }

  .pg-prev {
    left: 26px;
  }

  .pg-next {
    right: 26px;
  }

  .pg-thumbs {
    width: 100vw;
    max-width: 100vw;
    bottom: 18px;
    padding: 0 calc(50vw - 27px);
  }

  .pg-thumbs img {
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
  }

}

.basket_gift_table tbody tr td {
  width: 100%;
}

.categories__slider.swiper-backface-hidden .swiper-slide {
  -webkit-transform: none;
  transform: none;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
}

.select2-container--default .select2-selection--single:focus,
.select2-container--default .select2-selection--single:active,
.select2-container--default .select2-selection--single {
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

/* ===========================
   MOBILE ACCOUNT ORDERS
=========================== */

@media (max-width: 768px) {

    .orders-table {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

   #orders .table-head {
        display: none;
    }

   #orders .table-row {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 20px;
        border-radius: 16px;
        background: #fff;
    }

   #orders .table-row > div {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 24px;
        padding: 16px 0;
        border-bottom: 1px solid #f1ede8;
        font-size: 16px;
        color: #3b3b3b;
    }

   #orders .table-row > div:last-child {
        border-bottom: none;
        padding-top: 18px;
    }

    /* подписи */

  #orders .table-row > div::before {
        color: #9c9c9c;
        font-size: 13px;
        white-space: nowrap;
        margin-right: auto;
    }

   #orders .table-row > div:nth-child(1)::before {
        content: "№ Замовлення";
    }

   #orders .table-row > div:nth-child(2)::before {
        content: "Дата";
    }

   #orders .table-row > div:nth-child(3)::before {
        content: "Статус";
    }

   #orders .table-row > div:nth-child(4)::before {
        content: "Загалом";
    }

   #orders .table-row > div:nth-child(5)::before {
        content: "Накладна";
    }

   #orders .table-row > div:nth-child(6)::before {
        content: "Дії";
    }

    /* значения справа */

   #orders .table-row > div > * {
        margin-left: auto;
        text-align: right;
    }

    /* кнопка */

  #orders  .table-row > div:last-child a {
        width: 38px;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #ddd;
        border-radius: 10px;
        flex-shrink: 0;
    }

   #orders .table-row > div {
    display:flex;
    justify-content:space-between;
    align-items:center;
    width: 100%;
}

  #orders .table-row > div::before {
        color:#999;
    }

  #orders .table-row > div span {
      margin-left:auto;
      text-align:right;
  }
}

.select2-results {
  width: calc(100%) !important;
}

.select2-search--dropdown .select2-search__field {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}


















