﻿/*
Theme Name: CustomMaster
Theme URI: https://custommaster.com.ua/
Author: ONChumak
Author URI: https://t.me/ONChumak
Description: Minimal WordPress theme for custommaster.com.ua
Version: 1.0.40
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: custommaster
*/

:root {
  --red: #ed0606;
  --white: #ffffff;
  --body: #0f1113;
  --gray: #909090;
  --gray-light: #909090;
  --font-inter: "Inter", sans-serif;
  --font-sans: "IBM Plex Sans", sans-serif;
  --wr: 20rem;
  --mw: 1440rem;
  --f-xs: max(14px, 14rem);
  --f-s: max(16px, 16rem);
  --f-d: 16rem;
  --f-price: max(18px, 18rem);
  --f-m: max(25px, 25rem);
  --f-b: max(30px, 30rem);
  --f-l: max(60px, 60rem);
  --f-xl: max(80px, 80rem);
  --f-xxl: max(90px, 90rem);
  --f-xxxl: max(50px, 100rem);
  --app-height: 100dvh;
  --headroom-height: auto;
  --sl: 1rem;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 1px;
  scroll-behavior: smooth;
}

.document {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 400;
  font-size: var(--f-s);
  line-height: 1.2;
  color: var(--body);
}

.container {
  display: flex;
  flex-direction: column;
  min-height: var(--app-height);
}

.wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--wr);
  max-width: var(--mw);
}

.section {
  margin-bottom: 100rem;
}

a {
  margin: 0;
  padding: 0;
  outline: none;
  text-decoration: none;
  font-size: 1em;
  font-style: inherit;
  font-weight: inherit;
  font-family: inherit;
  text-align: inherit;
  color: inherit;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0 var(--sl);
  transition:
    background-size 0.5s cubic-bezier(0.2, 1, 0.3, 1),
    color 0.25s;
}

.topbar-logo a,
.button-primary,
.category_card__link,
.product_card__link,
.blog_card__link,
.products-pagination__link,
.footer-brand__logo,
.footer-social__link,
.s4-1-1-2-1 {
  background-image: none;
  background-size: 0 0;
}

img {
  max-width: 100%;
  height: auto;
}

/*Topbar*/

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--body);
  height: 55rem;
  width: 100%;
  top: 0;
  left: 0;
  position: fixed;
  z-index: 999;
  transition:
    background-color 0.35s ease,
    transform 0.35s ease;
  font-family: "IBM Plex Mono", monospace;
  color: var(--white);
  font-weight: 500;
  text-transform: uppercase;
}

.topbar-nav {
  display: none;
}

.topbar-nav__item {
  width: 100%;
}

.topbar.is-hidden {
  transform: translateY(-100%);
}

.topbar.is-transparent {
  background-color: rgba(15, 17, 19, 0.2);
}

.topbar.is-transparent:hover {
  background-color: var(--body);
}

.topbar-lang {
  position: relative;
  z-index: 4;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  font: inherit;
  line-height: 1;
  cursor: pointer;
}

.lang-switcher__icon {
  display: block;
  flex: 0 0 auto;
  width: 5rem;
  height: 5rem;
  color: currentColor;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.lang-switcher.is-active .lang-switcher__icon {
  transform: rotate(180deg);
}

.lang-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 8rem;
  min-width: 53rem;
  padding: 10rem 12rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background-color: var(--body);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease;
  transform: translateY(-8rem);
}

.lang-menu.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.lang-menu__link {
  color: var(--white);
  width: fit-content;
}

.lang-menu__link.is-active {
  color: var(--red);
}

.topbar-contact {
  display: flex;
  gap: 15rem;
  margin-left: 20rem;
}

.topbar-contact__link {
  display: inline-flex;
  align-items: center;
  gap: 8rem;
  padding-bottom: 2rem;
}

.topbar-contact__icon {
  display: block;
  color: currentColor;
}

.topbar-contact__text {
  display: inline-flex;
  align-items: center;
  gap: 4rem;
}

.topbar-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6rem;
  color: var(--white);
}

.topbar-nav__icon {
  display: none;
  flex: 0 0 auto;
  width: 8rem;
  height: 8rem;
  color: currentColor;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.topbar-dropdown {
  display: none;
}

.topbar-dropdown-panels {
  display: none;
}

.topbar-nav.is-active {
  position: fixed;
  top: 55rem;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  background-color: var(--body);
  overflow-y: auto;
  z-index: 998;
}

.topbar-nav.is-active .topbar-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16rem 20rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.topbar-nav.is-active > a.topbar-nav__link {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.topbar-nav.is-active .topbar-nav__item {
  display: flex;
  flex-direction: column;
}

.topbar-nav.is-active .topbar-nav__link .topbar-nav__icon {
  display: block;
}

.topbar-nav.is-active .topbar-nav__link.is-active .topbar-nav__icon {
  transform: rotate(180deg);
  color: var(--white);
}

.mobile-submenu {
  display: none;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.25);
}

.mobile-submenu.is-open {
  display: flex;
}

.mobile-submenu__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14rem 20rem 14rem 32rem;
  color: var(--white);
  font-size: var(--f-d);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background-image: none;
}

.mobile-submenu__link--all {
  font-weight: 600;
  opacity: 0.75;
}

.topbar-contact__link--skype .topbar-contact__text,
.topbar-contact__link--phone .topbar-contact__text {
  display: none;
}

.topbar-contact__link--skype .topbar-contact__icon,
.topbar-contact__link--phone .topbar-contact__icon {
  display: block;
  width: 24rem;
  height: 24rem;
}

.topbar-logo {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 10rem 20rem;
  background-color: var(--white);
}

.topbar-lang,
.topbar-contact {
  position: relative;
  z-index: 2;
}

.topbar-lang {
  display: flex;
  height: 100%;
  margin-left: 10rem;
  padding-left: 10rem;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-menu {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  margin-left: 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  aspect-ratio: 1 / 1;
}

.nav-toggle {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6rem;
  width: 55rem;
  height: 55rem;
  padding: 0;
  border: 0;
  background-color: transparent;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}

.nav-toggle.is-active {
  background-color: var(--red);
}

.nav-toggle__line {
  width: 22rem;
  height: 2rem;
  background-color: var(--white);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    background-color 0.3s ease;
}

.nav-toggle.is-active .nav-toggle__line:nth-child(1) {
  transform: translateY(8rem) rotate(45deg);
}

.nav-toggle.is-active .nav-toggle__line:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active .nav-toggle__line:nth-child(3) {
  transform: translateY(-8rem) rotate(-45deg);
}

.nav-open .topbar {
  background-color: var(--body);
}

.topbar-nav a {
  color: var(--white);
}

.curtain {
  display: none;
}

.icon-nav-btn-wrapper {
  aspect-ratio: 1 / 1;
}

/*WooCommerce*/

.wc-shell {
  padding: 75rem 16rem 24rem;
}

.wc-container {
  width: min(100%, 1360rem);
  margin: 0 auto;
  padding: 18rem;
  background-color: var(--white);
  color: var(--body);
}

/*UI*/

.title__default {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 30rem;
  letter-spacing: -0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.title__default h1,
.title__default h2 {
  margin: 0;
  font: inherit;
}

.title__small {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: var(--f-b);
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.title__small-2 {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: var(--f-b);
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.title__small-2 h1,
.blog-single__excerpt p,
.title__small h3 {
  margin: 0;
  font: inherit;
}

.button-primary {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12rem;
  padding: 20rem 30rem;
  border: 0;
  background-color: var(--red);
  color: var(--white);
  font-family: "IBM Plex Mono", monospace;
  font-size: 25rem;
  line-height: 1;
  text-transform: uppercase;
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    transform 0.3s ease;
}

.button-primary__icon {
  flex: 0 0 auto;
  color: currentColor;
  transition: transform 0.6s ease;
  transform: rotate(0deg);
}

.button-primary__text {
  transition: transform 0.3s ease;
}

/*Products archive*/

.products-archive {
  padding: 95rem 0 60rem;
}

.products-archive__inner {
  display: flex;
  flex-direction: column;
  gap: 26rem;
}

.products-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8rem;
  padding: 0 0 18rem;
  border-bottom: 1px solid rgba(15, 17, 19, 0.24);
  font-family: "IBM Plex Mono", monospace;
  font-size: var(--f-d);
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  color: var(--gray);
}

.products-breadcrumbs__current {
  color: var(--body);
}

.products-breadcrumbs__separator {
  color: var(--gray);
}

.archive-toolbar {
  display: flex;
  flex-direction: column;
  gap: 14rem;
}

.archive-toolbar__group {
  margin: 0;
}

.archive-toolbar__field {
  display: flex;
  flex-direction: column;
  gap: 8rem;
}

.archive-toolbar__label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color 0.25s ease;
}

.archive-toolbar__field:focus-within .archive-toolbar__label {
  color: var(--white);
}

.archive-toolbar__select-wrap {
  position: relative;
  display: block;
}

.archive-toolbar__select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20rem;
  width: 7rem;
  height: 7rem;
  border-right: 1.5rem solid rgba(255, 255, 255, 0.35);
  border-bottom: 1.5rem solid rgba(255, 255, 255, 0.35);
  pointer-events: none;
  transform: translateY(-70%) rotate(45deg);
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.25s ease;
}

.archive-toolbar__select-wrap:focus-within::after {
  border-color: var(--red);
  transform: translateY(-25%) rotate(-135deg);
}

.archive-toolbar__select {
  width: 100%;
  min-height: 52rem;
  padding: 0 50rem 0 20rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  appearance: none;
  background-color: rgba(255, 255, 255, 0.05);
  font-family: "IBM Plex Mono", monospace;
  font-size: var(--f-d);
  font-weight: 500;
  line-height: 1;
  color: var(--white);
  cursor: pointer;
  outline: none;
  transition:
    border-color 0.25s ease,
    background-color 0.25s ease;
}

.archive-toolbar__select:focus {
  border-color: var(--red);
  background-color: rgba(237, 6, 6, 0.05);
  color: var(--white);
}

.archive-toolbar__select option {
  background-color: var(--body);
  color: var(--white);
}

/* в”Ђв”Ђ Custom Dropdown (cd) в”Ђв”Ђ */

.archive-toolbar__select-wrap.is-cd-enhanced::after {
  display: none;
}

.archive-toolbar__select {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
}

.cd {
  position: relative;
  user-select: none;
}

.cd__trigger {
  display: flex;
  align-items: center;
  gap: 14rem;
  width: 100%;
  padding: 0 0 16rem;
  border: 0;
  border-bottom: 1px solid rgba(15, 17, 19, 0.24);
  background: none;
  color: var(--body);
  -webkit-appearance: none;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.25s ease;
}

.cd__val {
  flex: 1 1 auto;
  font-family: "IBM Plex Mono", monospace;
  font-size: var(--f-d);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--body);
  transition: color 0.25s ease;
}

.cd__chevron {
  flex-shrink: 0;
  width: 8rem;
  height: 8rem;
  border-right: 1.5rem solid var(--body);
  border-bottom: 1.5rem solid var(--body);
  transform: rotate(45deg) translateY(-3rem);
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.25s ease;
}

.cd[aria-expanded="true"] .cd__trigger {
  border-bottom-color: var(--red);
}

.cd[aria-expanded="true"] .cd__val {
  color: var(--red);
}

.cd[aria-expanded="true"] .cd__chevron {
  border-color: var(--red);
  transform: rotate(-135deg) translateY(3rem);
}

.cd__panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: var(--white);
  border: 1px solid rgba(15, 17, 19, 0.24);
  padding: 6rem 0;
  margin: 0;
  list-style: none;
  visibility: hidden;
  clip-path: inset(0 0 100% 0);
  transition:
    clip-path 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0.38s;
}

.cd[aria-expanded="true"] .cd__panel {
  visibility: visible;
  clip-path: inset(0 0 -40rem 0);
  transition:
    clip-path 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0s;
}

.cd__opt {
  display: block;
  width: 100%;
  padding: 12rem 20rem;
  border: 0;
  border-bottom: 1px solid rgba(15, 17, 19, 0.07);
  background: none;
  text-align: left;
  font-family: "IBM Plex Mono", monospace;
  font-size: var(--f-d);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--body);
  cursor: pointer;
  transition: color 0.18s ease;
  list-style: none;
}

.cd__opt:last-child {
  border-bottom: 0;
}

.cd__opt.is-selected {
  color: var(--red);
}

.section-breadcrumbs {
  padding-top: 95rem;
  margin-bottom: 40rem;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 0;
  border-left: 0;
}

.products-grid .category_card {
  min-height: 100%;
  border-width: 1px;
}

.products-grid .category_card + .category_card {
  margin-top: -1px;
}

.products-grid .category_card__link {
  padding: 16rem 16rem 22rem;
}

.products-grid .category_card__image {
  margin-top: 10rem;
}

.products-grid .category_card__title {
  margin-top: auto;
  padding-top: 16rem;
}

.products-archive__empty {
  margin: 0;
  font-family: "IBM Plex Mono", monospace;
  font-size: 18rem;
  line-height: 1.4;
  color: var(--body);
}

.product_grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.product_card {
  min-height: 100%;
  background-color: #f2f2f2;
}

.product_card__link {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 16rem;
  color: var(--body);
  background-color: #f2f2f2;
  overflow: hidden;
}

.product_card__image {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 280 / 325;
  overflow: hidden;
}

.product_card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product_card__price {
  margin-top: 12rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: var(--f-price);
  font-weight: 500;
  line-height: 1.1;
  color: var(--red);
}

.products-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24rem;
}

.products-pagination__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44rem;
  height: 44rem;
  padding: 0 14rem;
  margin-left: -1px;
  border: 1px solid rgba(15, 17, 19, 0.16);
  background-color: var(--white);
  font-family: "IBM Plex Mono", monospace;
  font-size: var(--f-d);
  font-weight: 500;
  line-height: 1;
  color: var(--body);
  overflow: hidden;
  transition:
    color 0.28s ease,
    border-color 0.28s ease,
    background-color 0.28s ease;
}

.products-pagination__link::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--red);
  transform: translate3d(-101%, 0, 0);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.products-pagination__link > * {
  position: relative;
  z-index: 2;
}

.products-pagination__link:first-child {
  margin-left: 0;
}

.products-pagination__link.is-active {
  color: var(--white);
  border-color: var(--red);
}

.products-pagination__link.is-active::before {
  transform: translate3d(0, 0, 0);
}

.products-pagination__link--arrow {
  padding: 0 16rem;
}

/*Blog archive*/

.blog-archive {
  padding: 95rem 0 60rem;
}

.blog-archive__inner {
  display: flex;
  flex-direction: column;
  gap: 26rem;
}

.blog_grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8rem;
}

.blog_card {
  min-height: 100%;
}

.blog_card__link {
  display: flex;
  flex-direction: column;
  gap: 12rem;
  min-height: 100%;
  color: var(--body);
}

.blog_card__media {
  position: relative;
  display: block;
  aspect-ratio: 1 / 0.84;
  overflow: hidden;
  background-color: var(--body);
}

.blog_card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog_card__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(15, 17, 19, 0.7);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.blog_card__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 103rem;
  height: 103rem;
  color: var(--red);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.82);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.blog_card__icon-svg {
  width: 100%;
  height: 100%;
  color: currentColor;
}

.blog_card__body {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.blog_card__title {
  font-family: var(--font-inter);
  font-size: var(--f-d);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.blog_card__date {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12rem;
  line-height: 1.1;
  color: var(--gray);
}

/*Blog single*/

.blog-single {
  padding: 95rem 0 0;
}

.blog-single__inner {
  display: flex;
  flex-direction: column;
  gap: 26rem;
}

.blog-single__hero {
  display: flex;
  flex-direction: column;
  gap: 24rem;
}

.blog-single__intro {
  display: flex;
  flex-direction: column;
  gap: 18rem;
}

.blog-single__excerpt {
  color: var(--body);
}

.blog-single__share {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10rem;
}

.blog-single__share-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12rem;
  line-height: 1;
  text-transform: uppercase;
  color: var(--gray);
}

.blog-single__share-links {
  display: flex;
  align-items: center;
  gap: 6rem;
}

.blog-single__share-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48rem;
  height: 48rem;
  color: var(--body);
}

.blog-single__share-icon {
  width: 48rem;
  height: 48rem;
  color: currentColor;
  flex: 0 0 auto;
}

.blog-single__media {
  background-color: #f2f2f2;
}

.blog-single__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.blog-single__content {
  width: 100%;
  max-width: 820rem;
  margin: 0 auto;
  color: var(--body);
}

.blog-single__content > *:first-child {
  margin-top: 0;
}

.blog-single__content h2 {
  margin: 40rem 0 16rem;
  font-family: var(--font-inter);
  font-size: var(--f-b);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.blog-single__content h3 {
  margin: 28rem 0 12rem;
  font-family: var(--font-inter);
  font-size: var(--f-m);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.blog-single__content p {
  margin: 0 0 16rem;
  line-height: 1.5;
}

.blog-single__content a {
  color: var(--red);
  background-size: 100% var(--sl);
}

.blog-single__content strong {
  font-weight: 600;
}

.blog-single__content img {
  display: block;
  width: 100%;
  max-width: 620rem;
  height: auto;
  margin: 24rem auto;
  object-fit: cover;
}

.blog-single__content figure {
  margin: 20rem auto;
  width: 100%;
}

.blog-single__content figure img {
  max-width: none;
  margin: 0;
}

.blog-single__content ul,
.blog-single__content ol {
  margin: 0 0 16rem;
  padding-left: 24rem;
}

.blog-single__content ul li {
  list-style: disc;
  margin-bottom: 6rem;
  line-height: 1.5;
}

.blog-single__content ol li {
  list-style: decimal;
  margin-bottom: 6rem;
  line-height: 1.5;
}

/*Product single*/

.product-single {
  padding: 95rem 0 0;
}

.product-single__inner {
  display: flex;
  flex-direction: column;
  gap: 24rem;
}

.product-single__hero {
  display: flex;
  flex-direction: column;
  gap: 20rem;
}

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 10rem;
}

.product-gallery__stage {
  display: grid;
  grid-template-columns: 44rem minmax(0, 1fr) 44rem;
  align-items: center;
  gap: 8rem;
  padding: 16rem;
  border: 1px solid rgba(15, 17, 19, 0.16);
}

.product-gallery__stage--single {
  grid-template-columns: minmax(0, 1fr);
}

.product-gallery__main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320rem;
}

.product-gallery__main img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.product-gallery__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44rem;
  height: 44rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--red);
  cursor: pointer;
}

.product-gallery__arrow-icon {
  width: 20rem;
  height: 20rem;
  color: currentColor;
  flex: 0 0 auto;
}

.product-gallery__arrow--next .product-gallery__arrow-icon {
  transform: rotate(180deg);
}

.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8rem;
}

.product-gallery__thumb {
  position: relative;
  overflow: hidden;
  padding: 8rem;
  border: 0;
  background-color: var(--white);
  cursor: pointer;
  border: 1px solid rgba(15, 17, 19, 0.16);
}

.product-gallery__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(15, 17, 19, 0.18);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 2;
}

.product-gallery__thumb.is-active::after {
  opacity: 1;
}

.product-gallery__thumb img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.2;
  object-fit: contain;
}

.product-single__panel {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.product-single__info-item,
.product-single__contact-row {
  padding: 12rem 0;
  border-bottom: 1px solid rgba(15, 17, 19, 0.16);
}

.product-single__info-head {
  display: grid;
  grid-template-columns: 28rem minmax(0, 1fr);
  align-items: start;
  gap: 10rem;
}

.product-single__info-item--value .product-single__info-head {
  grid-template-columns: 28rem minmax(0, 1fr);
}

.product-single__info-item--value .product-single__info-value {
  grid-column: 2;
  text-align: start;
}

.product-single__info-count,
.product-single__info-title,
.product-single__contact-label {
  margin: 0;
  font-family: "IBM Plex Mono", monospace;
  font-size: var(--f-d);
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  color: var(--body);
}

.product-single__info-count {
  color: var(--body);
}

.product-single__info-value {
  font-family: var(--font-sans);
  font-size: 16rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--body);
  text-align: end;
}

.product-single__info-text {
  margin-top: 10rem;
}

.product-single__info-text p {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--f-s);
  line-height: 1.5;
  color: var(--body);
}

.product-single__info-list {
  display: flex;
  flex-direction: column;
  gap: 14rem;
  margin: 14rem 0 0;
  list-style: none;
}

.product-single__info-list li {
  position: relative;
  margin: 0;
  padding-left: 16rem;
  font-family: var(--font-sans);
  font-size: var(--f-s);
  line-height: 1.5;
  color: var(--body);
}

.product-single__info-list li::before {
  content: "";
  position: absolute;
  top: 9rem;
  left: 0;
  width: 6rem;
  height: 6rem;
  background-color: var(--red);
}

.product-single__price-row {
  padding: 18rem 0 14rem;
}

.product-single__price-switch {
  display: inline-flex;
  align-items: center;
  color: var(--red);
  font-family: "IBM Plex Mono", monospace;
  font-size: var(--f-b);
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.product-single__price-value {
  display: inline-flex;
  align-items: center;
  color: var(--body);
  font-family: "IBM Plex Mono", monospace;
  font-size: var(--f-b);
  font-weight: 500;
  line-height: 1;
}

.product-single__contact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12rem;
}

.product-single__contact-value {
  color: var(--red);
  font-family: "IBM Plex Mono", monospace;
  font-weight: 500;
  text-transform: uppercase;
}

.product-single__description {
  display: flex;
  flex-direction: column;
  gap: 14rem;
}

.product-single__related {
  display: flex;
  flex-direction: column;
  gap: 24rem;
}

.related-products .category_nav {
  display: none;
}

.related-posts-section {
  overflow: hidden;
}

.related-posts {
  display: flex;
  flex-direction: column;
  gap: 24rem;
}

.related-posts .category_nav {
  display: none;
}

.related-products__track {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20rem;
}

.product-single__description-content {
  color: var(--body);
}

.product-single__description-content p {
  margin: 0 0 12rem;
}

.product-single__description-content .spec-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid rgba(15, 17, 19, 0.16);
  border-bottom: 1px solid rgba(15, 17, 19, 0.16);
}

.product-single__description-content .spec-table tbody,
.product-single__description-content .spec-table tr,
.product-single__description-content .spec-table td {
  display: block;
  width: 100%;
}

.product-single__description-content .spec-table tr {
  padding: 16rem 0;
  border-bottom: 1px solid rgba(15, 17, 19, 0.16);
}

.product-single__description-content .spec-table tr:last-child {
  border-bottom: 0;
}

.product-single__description-content .spec-table td {
  padding: 0;
}

.product-single__description-content .spec-table td:first-child {
  margin-bottom: 8rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: var(--f-d);
  font-weight: 500;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--body);
}

.product-single__description-content .spec-table td:last-child {
  font-family: var(--font-sans);
  font-size: var(--f-s);
  line-height: 1.5;
  color: var(--body);
}

.product-single__description-content .mb-60 {
  margin-bottom: 40rem;
}

.product-single__description-content .mb-mobile-60 {
  margin-bottom: 40rem;
}

/* 360 Spin viewer */

.product-spin360 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: var(--white);
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.product-spin360.is-dragging {
  cursor: grabbing;
}

.product-spin360__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  pointer-events: none;
}

.product-spin360__hint {
  position: absolute;
  bottom: 16rem;
  left: 50%;
  display: inline-flex;
  align-items: center;
  gap: 8rem;
  padding: 7rem 16rem;
  background: var(--body);
  border-left: 2rem solid var(--red);
  color: var(--white);
  font-family: var(--font-inter);
  font-size: 11rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  opacity: 1;
  transform: translateX(-50%);
  transition: opacity 0.4s ease;
}

.product-spin360__hint.is-hidden {
  opacity: 0;
}

.product-spin360__hint svg {
  flex: 0 0 auto;
  color: var(--red);
}

.product-spin360__badge {
  position: absolute;
  top: 12rem;
  right: 12rem;
  padding: 5rem 10rem;
  background: var(--body);
  border-left: 2rem solid var(--red);
  color: var(--white);
  font-family: var(--font-inter);
  font-size: 11rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  pointer-events: none;
}

.related-posts__footer {
  display: flex;
  justify-content: center;
  margin-top: 40rem;
}

/*Footer*/

.site-footer {
  background-color: var(--body);
  color: var(--white);
}

.footer-main {
  display: flex;
  flex-direction: column;
  gap: 30rem;
  padding: 40rem 0 30rem;
}

.footer-brand__logo {
  display: inline-flex;
  max-width: 220rem;
}

.footer-brand__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-groups {
  display: flex;
  flex-direction: column;
  gap: 28rem;
}

.footer-group {
  display: flex;
  flex-direction: column;
  gap: 12rem;
}

.footer-group__title,
.footer-contact__label,
.footer-contact__line {
  margin: 0;
}

.footer-group__title {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 500;
  font-size: var(--f-d);
  line-height: 1;
  color: var(--white);
  text-transform: uppercase;
}

.footer-group__list {
  display: flex;
  flex-direction: column;
  gap: 8rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.7);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10rem;
}

.footer-social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40rem;
  height: 40rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background-color: var(--body);
  color: var(--white);
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease;
}

.footer-social__icon {
  width: 20rem;
  height: 20rem;
  color: currentColor;
  flex: 0 0 auto;
}

.footer-social__icon--facebook {
  width: 14rem;
  height: 15rem;
}

.footer-social__icon--youtube {
  width: 18rem;
  height: 18rem;
}

.footer-contact__line {
  font-family: "IBM Plex Mono", monospace;
  font-size: 16rem;
  line-height: 1.4;
  color: var(--white);
  text-transform: uppercase;
}

.footer-contact__label {
  margin-right: 4rem;
}

.footer-bottom {
  padding: 18rem 0 26rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom__copy {
  margin: 0;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12rem;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--white);
}

/*s1*/

.title__large {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: min(38rem, var(--f-xxxl));
  letter-spacing: -0.03em;
  line-height: 1.2;
  text-transform: uppercase;
}

.title__large h1 {
  margin: 0;
  font: inherit;
}

.text {
  font-family: var(--font-sans);
  font-size: var(--f-s);
  font-weight: 400;
  line-height: 1.3;
}

.hero {
  position: relative;
}

.hero_slider {
  position: relative;
  min-height: var(--app-height);
  color: var(--white);
  overflow: hidden;
  background-color: var(--body);
}

.hero_track {
  position: relative;
  min-height: inherit;
}

.hero_slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.7s ease,
    visibility 0.7s ease,
    transform 0.7s ease;
  transform: scale(1.02);
}

.hero_slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1);
}

.hero_media,
.hero_overlay {
  position: absolute;
  inset: 0;
}

.hero_media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero_overlay {
  background: linear-gradient(180deg, rgba(15, 17, 19, 0) 0%, var(--body) 100%);
  z-index: 1;
}

.hero_content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  min-height: var(--app-height);
  padding: 120rem 20rem 120rem;
  text-align: center;
}

.hero_content > * {
  opacity: 0;
  transform: translateY(100rem);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.hero_content > *:nth-child(2) {
  transition-delay: 0.08s;
}

.hero_text {
  margin-top: 14rem;
  color: var(--white);
}

.hero_slide.is-active .hero_content > * {
  opacity: 1;
  transform: translateY(0);
}

.hero_bullets {
  position: absolute;
  left: 50%;
  bottom: 28rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10rem;
  transform: translateX(-50%);
}

.hero_bullet {
  width: 15rem;
  height: 15rem;
  padding: 0;
  border: 0;
  background-color: var(--white);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease,
    width 0.35s ease,
    border-radius 0.35s ease;
}

.hero_bullet::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-color: var(--red);
  transform: scaleX(0);
  transform-origin: left center;
  opacity: 0;
}

.hero_bullet.is-active {
  width: 54rem;
  background-color: rgba(255, 255, 255, 0.16);
}

.hero_bullet.is-active::before {
  opacity: 1;
  animation: hero-bullet-progress var(--hero-autoplay-duration, 5000ms) linear
    forwards;
}

@keyframes hero-bullet-progress {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

/*s2*/

.s2 {
  position: relative;
  overflow: hidden;
}

.category {
  display: flex;
  flex-direction: column;
  gap: 20rem;
}

/* Category card template */

.category_slider {
  display: flex;
  flex-direction: column;
  gap: 20rem;
  max-width: none;
}

.category_nav,
.category_bullets {
  display: none;
}

.category_viewport {
  overflow: visible;
}

.category_track {
  display: flex;
  flex-direction: column;
}

.category_card + .category_card {
  margin-top: -1px;
}

.category_footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20rem;
}

.category_card {
  border: 1px solid rgba(15, 17, 19, 0.16);
  background-color: var(--white);
}

.category_card__link {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 14rem;
  color: var(--body);
  overflow: hidden;
}

.category_card__count {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12rem;
  line-height: 1;
}

.category_card__badge,
.product_card__badge {
  position: absolute;
  top: 0;
  right: 0;
  width: 50rem;
  height: 50rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--red);
  color: var(--white);
  opacity: 0;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  transform: translate(-8rem, 8rem) scale(0.84);
}

.category_card__image {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  aspect-ratio: 1 / 1;
  margin-top: 14rem;
}

.category_card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  aspect-ratio: 1 / 1.2;
}

.category_card__title,
.product_card__title {
  margin-top: 16rem;
  font-family: var(--font-inter);
  font-size: min(24rem, var(--f-l));
  font-weight: 700;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

/*s3*/

.s3 {
  background-color: var(--body);
  color: var(--white);
  overflow: visible;
}

.s3 .title__default,
.s3 .text {
  color: inherit;
}

.s3-1 {
  display: flex;
  flex-direction: column;
  gap: 20rem;
  padding: 50rem 0;
}

.s3-1-1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18rem;
}

.s3-1-1-1 {
  color: rgba(255, 255, 255, 0.8);
}

.s3-1-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14rem;
  overflow: visible;
}

.s3-1-2-1,
.s3-1-2-2 {
  position: relative;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.04);
}

.js-s3-parallax-item {
  --s3-shift-x: 0rem;
  --s3-shift-y: 0px;
  --s3-parallax-y: 0px;
  transform: translate3d(
    var(--s3-shift-x),
    calc(var(--s3-shift-y) + var(--s3-parallax-y)),
    0
  );
  will-change: transform;
}

.s3-1-2-1 img,
.s3-1-2-2 img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*category-description*/

.category-description__text {
  max-width: 100%;
}

/*s4*/

.s4 {
  background-color: var(--white);
  color: var(--body);
}

.s4 .title__large {
  color: inherit;
}

.s4 .title__large h2 {
  margin: 0;
  font: inherit;
}

.s4-1 {
  display: flex;
  justify-content: center;
  padding: 50rem 0;
}

.s4-1-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18rem;
  width: 100%;
  text-align: center;
}

.s4-1-1-1 {
  margin: 0;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12rem;
  line-height: 1.3;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray);
}

.s4-1-1-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10rem;
}

.s4-1-1-2-1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58rem;
  height: 58rem;
  background-color: var(--body);
  color: var(--white);
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.s4-1-1-2-1-1 {
  width: 22rem;
  height: 22rem;
  color: currentColor;
  flex: 0 0 auto;
}

/*s5*/

.s5 {
  color: var(--body);
}

.s5-1 {
  display: flex;
  flex-direction: column;
  gap: 30rem;
}

.s5-1-1 {
  display: flex;
  flex-direction: column;
  gap: 20rem;
}

.s5-1-1-1 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20rem;
}

.s5-1-1-1-1 {
  display: flex;
  flex-direction: column;
  gap: 10rem;
}

.s5-1-1-1-1-1 {
  margin: 0;
  font-family: "IBM Plex Mono", monospace;
  font-size: var(--f-d);
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--gray);
}

.s5-1-1-1-1-2 {
  color: var(--body);
  display: flex;
  flex-direction: column;
  gap: 10rem;
}

.s5-1-1-1-1-2 p {
  margin: 0;
}

.s5-1-1-1-1-2 a {
  width: fit-content;
}

.s5-1-2-1 {
  display: flex;
  flex-direction: column;
  gap: 16rem;
}

.s5-1-2-1-2 {
  padding: 14rem 16rem;
  border-left: 4rem solid var(--body);
  background-color: rgba(15, 17, 19, 0.05);
  font-family: var(--font-sans);
  font-size: var(--f-s);
  line-height: 1.4;
}

.s5-1-2-1-2.is-success {
  border-left-color: var(--red);
  background-color: rgba(237, 6, 6, 0.08);
}

.s5-1-2-1-2.is-error {
  border-left-color: var(--red);
}

.s5-1-2-1-1 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18rem;
}

.s5-1-2-1-1-1 {
  display: flex;
  flex-direction: column;
  gap: 8rem;
}

.s5-1-2-1-1-1.is-full {
  grid-column: 1 / -1;
}

.s5-1-2-1-1-2 {
  width: 100%;
  padding: 0 0 12rem;
  border: 0;
  border-bottom: 1px solid rgba(15, 17, 19, 0.2);
  border-radius: 0;
  background: transparent;
  color: var(--body);
  font-family: "IBM Plex Mono", monospace;
  font-size: var(--f-d);
  line-height: 1;
  outline: none;
  transition:
    border-color 0.25s ease,
    color 0.25s ease;
}

.s5-1-2-1-1-2::placeholder {
  color: var(--gray);
}

.s5-1-2-1-1-2.is-textarea {
  min-height: 110rem;
  resize: vertical;
  line-height: 1.4;
}

.s5-1-2-1-1-2.is-error {
  border-color: var(--red);
}

.s5-1-2-1-1-2:focus {
  border-color: var(--body);
}

.s5-1-2-1-1-3 {
  font-family: var(--font-sans);
  font-size: 14rem;
  line-height: 1.3;
  color: var(--red);
}

.s5-1-2-1-3 .button-primary {
  width: 100%;
  cursor: pointer;
}

/*s6*/

.s6-1 {
  display: flex;
  flex-direction: column;
  gap: 30rem;
}

.s6-1-1 {
  display: flex;
  flex-direction: column;
  gap: 24rem;
}

.s6-1-1-1 {
  max-width: 700rem;
}

.s6-1-1-2 {
  display: flex;
  flex-direction: column;
  gap: 18rem;
}

.s6-1-1-2 .title__default h3 {
  margin: 0;
  font: inherit;
}

.s6-1-1-2-1-1,
.s6-1-1-2-1-2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20rem;
  align-items: start;
  padding: 12rem 0;
  border-bottom: 1px solid rgba(15, 17, 19, 0.2);
}

.s6-1-1-2-1-1 {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--body);
}

.s6-1-1-2-1-2 {
  font-family: var(--font-sans);
  font-size: var(--f-s);
  line-height: 1.35;
}

.s6-1-1-2-1-2 span:last-child {
  color: var(--red);
  text-align: right;
  white-space: nowrap;
}

.s6-1-1-2-1-2-note {
  display: block;
  font-size: var(--f-xs);
  color: rgba(0, 0, 0, 0.606);
  font-weight: 400;
  margin-top: 3rem;
}

.s6-1-2-1 {
  display: flex;
  flex-direction: column;
  background-color: var(--body);
  color: var(--white);
}

.s6-1-2-1-1 {
  aspect-ratio: 1 / 0.62;
  overflow: hidden;
}

.s6-1-2-1-1 img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.s6-1-2-1-2 {
  display: flex;
  flex-direction: column;
  gap: 16rem;
  padding: 20rem;
}

.s6-1-2-1-2-1 h3 {
  margin: 0;
  font-family: var(--font-inter);
  font-size: var(--f-b);
  font-weight: 600;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.s6-1-2-1-2-2 {
  color: rgba(255, 255, 255, 0.8);
}

/*s7*/

.s7 {
  background-color: var(--body);
  color: var(--white);
  padding: 40rem 0;
}

.s7 .title__default {
  color: var(--white);
}

.s7-1 {
  display: flex;
  flex-direction: column;
  gap: 24rem;
}

.s7-1-1 {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 0.72;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background-color: #111;
  --ba-value: 50%;
}

.s7-1-1-1,
.s7-1-1-2 {
  position: absolute;
  inset: 0;
}

.s7-1-1-1 img,
.s7-1-1-2 img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.s7-1-1-2 {
  clip-path: inset(0 calc(100% - var(--ba-value)) 0 0);
}

.s7-1-1-1-1 {
  position: absolute;
  top: 12rem;
  left: 12rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 60rem;
  padding: 6rem 10rem;
  background-color: var(--white);
  color: var(--red);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12rem;
  line-height: 1;
  text-transform: uppercase;
}

.s7-1-1-1 .s7-1-1-1-1 {
  left: auto;
  right: 12rem;
  background-color: var(--red);
  color: var(--white);
}

.s7-1-1-3 {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--ba-value);
  width: 1px;
  background-color: rgba(255, 255, 255, 0.85);
  transform: translateX(-50%);
  pointer-events: none;
}

.s7-1-1-3-1 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42rem;
  height: 42rem;
  border-radius: 50%;
  background-color: var(--white);
  transform: translate(-50%, -50%);
}

.s7-1-1-3-1::before,
.s7-1-1-3-1::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 7rem;
  height: 7rem;
  border-top: 2px solid var(--body);
  border-right: 2px solid var(--body);
  transform: translateY(-50%) rotate(45deg);
}

.s7-1-1-3-1::before {
  left: 11rem;
  transform: translateY(-50%) rotate(225deg);
}

.s7-1-1-3-1::after {
  right: 11rem;
}

.s7-1-1-4 {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  margin: 0;
}

/*s8*/

.s8-1 {
  display: flex;
  flex-direction: column;
  gap: 40rem;
}

.s8-1-1 {
  display: flex;
  flex-direction: column;
  gap: 20rem;
}

.s8-1-1-1 {
  max-width: 820rem;
}

.s8-1-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20rem;
}

.s8-slider {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.s8-slider__viewport {
  overflow: hidden;
  aspect-ratio: 1 / 0.72;
  background-color: #111;
}

.s8-slider__track {
  display: flex;
  height: 100%;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.s8-slider__slide {
  flex: 0 0 100%;
  height: 100%;
}

.s8-slider__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.s8-slider__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0;
  padding: 12rem 0 0;
  border-top: 1px solid rgba(15, 17, 19, 0.14);
}

.s8-slider__counter {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12rem;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(15, 17, 19, 0.45);
}

.s8-slider__nav {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.s8-slider__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8rem;
  border: 0;
  background: transparent;
  color: var(--body);
  cursor: pointer;
  transition:
    color 0.25s ease,
    opacity 0.25s ease;
}

.s8-slider__btn + .s8-slider__btn {
  margin-left: 16rem;
}

.s8-slider__btn + .s8-slider__btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -8rem;
  width: 1px;
  height: 70%;
  background-color: rgba(15, 17, 19, 0.2);
  transform: translateY(-50%);
  pointer-events: none;
}

.s8-slider__btn[disabled] {
  opacity: 0.25;
  cursor: default;
}

.s8-slider__icon {
  width: 20rem;
  height: 20rem;
  flex: 0 0 auto;
}

.js-s8-next .s8-slider__icon {
  transform: rotate(180deg);
}

/*s9*/

.s9-1 {
  display: flex;
  flex-direction: column;
  gap: 30rem;
}

.s9-1-1 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16rem;
}

.s9-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(15, 17, 19, 0.14);
  background-color: var(--white);
  height: fit-content;
}

.s9-card__image {
  aspect-ratio: 1 / 0.72;
  overflow: hidden;
}

.s9-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.s9-card__text {
  padding: 16rem 18rem;
  border-top: 1px solid rgba(15, 17, 19, 0.1);
  font-family: var(--font-sans);
  font-size: var(--f-s);
  line-height: 1.55;
  color: rgba(15, 17, 19, 0.65);
}

.s9-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-sans);
  font-size: var(--f-s);
}

.s9-table__th {
  padding: 10rem 16rem;
  border-bottom: 1px solid rgba(15, 17, 19, 0.14);
  color: rgba(15, 17, 19, 0.45);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
}

.s9-table__th--right {
  text-align: right;
}

.s9-table__section-row {
  background-color: var(--body);
  color: var(--white);
}

.s9-table__section-title {
  padding: 10rem 16rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.4;
  text-transform: uppercase;
}

.s9-table__row:nth-child(even) {
  background-color: rgba(15, 17, 19, 0.03);
}

.s9-table__td {
  padding: 9rem 16rem;
  border-bottom: 1px solid rgba(15, 17, 19, 0.08);
  color: var(--body);
  line-height: 1.3;
}

.s9-table__td--right {
  color: var(--red);
  font-family: "IBM Plex Mono", monospace;
  font-size: 14rem;
  font-weight: 600;
  text-align: right;
  white-space: nowrap;
}

.s9-card__note {
  padding: 10rem 16rem;
  color: rgba(15, 17, 19, 0.45);
  font-family: var(--font-sans);
  font-size: max(13px, 13rem);
  line-height: 1.45;
}

/*s10*/

.s10-1 {
  display: flex;
  flex-direction: column;
  gap: 40rem;
}

.s10-1-1 {
  display: flex;
  flex-direction: column;
  gap: 48rem;
}

.s10-brand {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.s10-brand__header {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  padding-bottom: 16rem;
  border-bottom: 2px solid var(--body);
}

.s10-brand__logo {
  display: block;
  width: auto;
  max-height: 36rem;
  object-fit: contain;
}

.s10-brand__items {
  display: flex;
  flex-direction: column;
}

.s10-item {
  display: grid;
  grid-template-columns: 64rem 1fr auto;
  gap: 16rem;
  align-items: center;
  padding: 14rem 0;
  border-bottom: 1px solid rgba(15, 17, 19, 0.1);
}

.s10-item__image {
  width: 64rem;
  height: 64rem;
  flex: 0 0 auto;
  overflow: hidden;
}

.s10-item__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.s10-item__text {
  font-family: var(--font-sans);
  font-size: var(--f-s);
  line-height: 1.45;
  color: var(--body);
}

.s10-item__price {
  color: var(--red);
  font-family: "IBM Plex Mono", monospace;
  font-size: var(--f-s);
  font-weight: 600;
  text-align: right;
  white-space: nowrap;
}

.s10-products {
  display: flex;
  flex-direction: column;
  gap: 24rem;
  padding: 24rem 0;
  border-bottom: 1px solid rgba(15, 17, 19, 0.1);
}

.s10-product {
  display: flex;
  flex-direction: column;
  gap: 12rem;
}

.s10-product__text {
  color: rgba(15, 17, 19, 0.55);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.s10-product__variations {
  display: flex;
  flex-wrap: wrap;
  gap: 8rem;
}

.s10-variation {
  width: 300rem;
  height: auto;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(15, 17, 19, 0.1);
}

.s10-variation img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.s10-sizes {
  display: flex;
  flex-direction: row;
  gap: 20rem;
  padding: 24rem 0;
  border-bottom: 1px solid rgba(15, 17, 19, 0.1);
  flex-wrap: wrap;
}

.s10-sizes__section {
  display: flex;
  flex-direction: column;
  gap: 8rem;
  width: fit-content;
}

.s10-sizes__title {
  margin-bottom: 4rem;
  color: rgba(15, 17, 19, 0.45);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.s10-sizes__rows {
  display: flex;
  flex-direction: column;
}

.s10-sizes__row {
  display: grid;
  grid-template-columns: 60rem 1fr;
  gap: 12rem;
  align-items: baseline;
  padding: 6rem 0;
  border-bottom: 1px solid rgba(15, 17, 19, 0.07);
}

.s10-sizes__size {
  color: var(--body);
  font-family: "IBM Plex Mono", monospace;
  font-size: 13rem;
  font-weight: 600;
}

.s10-sizes__range {
  color: rgba(15, 17, 19, 0.65);
  font-family: var(--font-sans);
  font-size: var(--f-s);
  line-height: 1.3;
}

/*s11*/

.s11-1 {
  display: flex;
  flex-direction: column;
  gap: 30rem;
}

.s11-items {
  display: flex;
  flex-direction: column;
}

.s11-item {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 20rem 0;
  border-bottom: 1px solid rgba(15, 17, 19, 0.1);
}

.s11-item:first-child {
  border-top: 1px solid rgba(15, 17, 19, 0.1);
}

.s11-item__top {
  display: grid;
  grid-template-columns: 72rem 1fr;
  gap: 16rem;
  align-items: start;
}

.s11-item__image {
  width: 72rem;
  height: 72rem;
  flex: 0 0 auto;
  overflow: hidden;
}

.s11-item__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.s11-item__main {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.s11-item__text {
  color: var(--body);
  font-family: var(--font-sans);
  font-size: var(--f-s);
  line-height: 1.5;
}

.s11-item__price {
  color: var(--red);
  font-family: "IBM Plex Mono", monospace;
  font-size: var(--f-s);
  font-weight: 600;
}

.s11-sizes {
  display: flex;
  flex-direction: column;
  gap: 16rem;
  margin-top: 16rem;
  padding-top: 16rem;
  border-top: 1px solid rgba(15, 17, 19, 0.08);
}

.s11-sizes__section {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.s11-sizes__title {
  color: rgba(15, 17, 19, 0.45);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.s11-sizes__rows {
  display: flex;
  flex-direction: column;
}

.s11-sizes__row {
  display: grid;
  grid-template-columns: 60rem 1fr;
  gap: 12rem;
  align-items: baseline;
  padding: 5rem 10rem;
  border-bottom: 1px solid rgba(15, 17, 19, 0.06);
}

.s11-sizes__size {
  color: var(--body);
  font-family: "IBM Plex Mono", monospace;
  font-size: 13rem;
  font-weight: 600;
}

.s11-sizes__range {
  color: rgba(15, 17, 19, 0.65);
  font-family: var(--font-sans);
  font-size: var(--f-s);
  line-height: 1.3;
}

/*s12*/

.s12-1 {
  display: flex;
  flex-direction: column;
  gap: 30rem;
}

.s12-2 {
  display: flex;
  flex-direction: column;
  gap: 30rem;
}

.s12-2-1 {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 0.8;
}

.s12-img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.s12-img.is-active {
  opacity: 1;
}

.s12-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.s12-2-2 {
  display: flex;
  flex-direction: column;
}

.s12-item {
  padding: 18rem 0;
  border-bottom: 1px solid rgba(15, 17, 19, 0.14);
  cursor: pointer;
}

.s12-item:first-child {
  border-top: 1px solid rgba(15, 17, 19, 0.14);
}

.s12-item__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16rem;
}

.s12-item__title-link {
  display: flex;
  align-items: center;
  gap: 10rem;
  width: 100%;
  color: inherit;
  background-image: none;
}

.s12-item__title {
  color: rgba(15, 17, 19, 0.22);
  font-family: var(--font-inter);
  font-size: min(28rem, var(--f-l));
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  transition: color 0.3s ease;
}

.s12-item.is-active .s12-item__title {
  color: var(--body);
}

.s12-item__arrow {
  margin-left: auto;
  flex: 0 0 auto;
  color: var(--body);
  opacity: 0;
  transform: translate(-4rem, 4rem);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.s12-item.is-active .s12-item__arrow {
  opacity: 1;
  transform: translate(0, 0);
}

.s12-item__text {
  margin-top: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  color: rgba(15, 17, 19, 0.6);
  font-family: var(--font-sans);
  font-size: var(--f-s);
  line-height: 1.55;
  transition:
    max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    margin-top 0.3s ease,
    opacity 0.35s ease;
}

.s12-item.is-active .s12-item__text {
  margin-top: 10rem;
  max-height: 300rem;
  opacity: 1;
}

@media (max-width: 1023px) {
  .topbar-nav__link {
    font-size: 28px;
  }
}

@media (min-width: 1024px) {
  :root {
    --f-d: max(16px, 20rem);
  }

  html {
    font-size: 0.0625vw;
  }

  .section {
    position: relative;
    z-index: 1;
    margin-bottom: 130rem;
  }

  .title__default {
    font-size: var(--f-l);
  }

  .button-primary {
    width: fit-content;
  }

  /*Tapbar*/

  .mobile-menu {
    display: none;
  }

  .topbar-logo {
    padding: 0 16rem;
    background-color: var(--white);
    height: 100%;
    width: 250rem;
    display: flex;
    align-items: center;
  }

  .topbar-logo a {
    display: flex;
  }

  .topbar-nav {
    position: absolute;
    left: 45%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20rem;
    height: 100%;
  }

  .topbar-nav__link {
    gap: 8rem;
    white-space: nowrap;
  }

  .topbar-nav__icon {
    display: block;
    width: 8rem;
    height: 8rem;
  }

  .topbar-lang {
    order: 4;
    padding: 0 20rem;
    margin-left: 20rem;
    display: flex;
    align-items: center;
    height: 100%;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
  }

  .lang-switcher__icon {
    width: 8rem;
    height: 8rem;
  }

  .topbar-contact {
    order: 3;
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 20rem;
  }

  .topbar-contact__link {
    white-space: nowrap;
  }

  .topbar-contact__link--skype .topbar-contact__text,
  .topbar-contact__link--phone .topbar-contact__text {
    display: inline-flex;
  }

  .topbar-contact__icon {
    display: block;
    width: 18rem;
    height: 18rem;
  }

  .topbar-contact__label {
    display: none;
  }

  .topbar-lang .lang-menu {
    min-width: 100%;
  }

  .topbar-lang:hover .lang-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .topbar-lang:hover .lang-switcher__icon {
    transform: rotate(180deg);
  }

  .topbar-nav__item {
    position: relative;
    display: flex;
    align-items: center;
  }

  .topbar-nav__link.is-active,
  .topbar-nav__item--has-dropdown:hover .topbar-nav__link {
    color: var(--red);
  }

  .topbar-nav__link.is-active .topbar-nav__icon,
  .topbar-nav__item--has-dropdown:hover .topbar-nav__icon {
    color: var(--red);
    transform: rotate(180deg);
  }

  .topbar-dropdown-panels {
    display: block;
  }

  .topbar-dropdown {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: block;
    width: 100%;
    padding-top: 55rem;
    background-color: var(--body);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-100%);
    transition:
      opacity 0.3s ease,
      visibility 0.3s ease,
      transform 0.3s ease;
    z-index: 998;
  }

  .topbar-dropdown.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .topbar-dropdown__inner {
    width: 100%;
    padding: 28rem 32rem;
  }

  .topbar-dropdown__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(120rem, auto));
    gap: 32rem;
    width: 100%;
    font-family: var(--font-inter);
  }

  .topbar-dropdown__grid--service {
    grid-template-columns: repeat(2, minmax(140rem, auto));
  }

  .topbar-dropdown__column {
    display: flex;
    flex-direction: column;
    gap: 10rem;
  }

  .topbar-dropdown__link {
    color: var(--white);
    font-size: var(--f-b);
    font-family: var(--font-inter);
    font-weight: 600;
    letter-spacing: -0.06em;
    text-transform: uppercase;
    line-height: 1.15;
    white-space: nowrap;
    width: fit-content;
  }

  .wc-shell {
    padding: 95rem 32rem 48rem;
  }

  .wc-container {
    padding: 32rem;
  }

  /*s1*/

  .title__large {
    font-size: var(--f-xxxl);
  }

  .hero_bullets {
    bottom: 36rem;
  }

  .hero_content {
    padding: 120rem 80rem 12%;
    display: flex;
    align-items: flex-start;
    max-width: 60%;
    margin-left: auto;
    text-align: start;
  }

  .text.hero_text {
    max-width: 500rem;
  }

  /*s2*/

  .category_slider {
    width: calc(100% + var(--wr) + ((100vw - min(100vw, var(--mw))) / 2));
  }

  .s2-1,
  .category {
    display: flex;
    flex-direction: column;
    gap: 28rem;
  }

  .category_head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24rem;
  }

  .category_nav {
    display: inline-flex;
    align-items: center;
    gap: 0;
  }

  .category_nav__button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10rem;
    border: 0;
    background: transparent;
    color: var(--body);
    cursor: pointer;
    transition:
      background-color 0.3s ease,
      color 0.3s ease,
      transform 0.3s ease,
      opacity 0.3s ease;
  }

  .category_nav__button + .category_nav__button {
    margin-left: 20rem;
  }

  .category_nav__button + .category_nav__button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -10rem;
    width: 1px;
    height: 100%;
    background-color: var(--body);
    transform: translateY(-50%);
    pointer-events: none;
  }

  .category_nav__button[disabled] {
    opacity: 0.3;
    cursor: default;
  }

  .category_nav__icon {
    width: 30rem;
    height: 30rem;
    flex: 0 0 auto;
  }

  .category_nav__button--next .category_nav__icon {
    transform: rotate(180deg);
  }

  .category_track {
    display: flex;
    flex-direction: row;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
  }

  .category_card {
    flex: 0 0 calc(100% / 3.7);
    min-width: calc(100% / 3.7);
    min-height: 100%;
  }

  .category_track .category_card + .category_card {
    margin-left: -1px;
    margin-top: 0;
  }

  .category_card__link {
    padding: 16rem 16rem 22rem;
  }

  .category_card__image {
    margin-top: 10rem;
  }

  .category_card__title {
    margin-top: auto;
    padding-top: 16rem;
  }

  .category_footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24rem;
    margin-top: 18rem;
    padding-right: calc(var(--wr) + ((100vw - min(100vw, var(--mw))) / 2));
  }

  .category_bullets {
    display: flex;
    align-items: center;
    gap: 10rem;
  }

  .category_bullet {
    width: 15rem;
    height: 15rem;
    padding: 0;
    border: 0;
    background-color: var(--gray-light);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition:
      background-color 0.3s ease,
      transform 0.3s ease,
      width 0.35s ease,
      border-radius 0.35s ease;
  }

  .category_bullet::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background-color: var(--red);
    transform: scaleX(0);
    transform-origin: left center;
    opacity: 0;
    transition:
      transform 0.35s ease,
      opacity 0.3s ease;
  }

  .category_bullet.is-active {
    background-color: rgba(144, 144, 144, 0.18);
  }

  .category_bullet.is-active::before {
    opacity: 1;
    transform: scaleX(1);
  }

  /*s3*/

  .s3-1 {
    display: grid;
    grid-template-columns: minmax(300rem, 0.78fr) minmax(0, 1.22fr);
    align-items: center;
    gap: 40rem;
    min-height: 515rem;
    padding: 100rem 0;
  }

  .s3-1-1 {
    gap: 15rem;
  }

  .s3-1-2 {
    grid-template-columns: minmax(0, 1.12fr) minmax(220rem, 0.88fr);
    align-items: center;
    gap: 0;
    padding: 36rem 0;
  }

  .s3-1-1-1 {
    margin-bottom: 20rem;
  }

  .s3-1-2-1 {
    z-index: 2;
  }

  .s3-1-2-1.js-s3-parallax-item {
    --s3-shift-x: 56rem;
    --s3-shift-y: 0px;
  }

  .s3-1-2-2 {
    z-index: 1;
  }

  .s3-1-2-2.js-s3-parallax-item {
    --s3-shift-y: -80rem;
  }

  /*s4*/

  .s4-1 {
    padding: 78rem 0 84rem;
  }

  .s4-1-1 {
    gap: 20rem;
  }

  .s4 .title__large {
    font-size: clamp(78rem, 7vw, 150rem);
    letter-spacing: -0.06em;
    line-height: 0.95;
  }

  .s4-1-1-2-1 {
    width: 44rem;
    height: 42rem;
  }

  .s4-1-1-2-1-1 {
    width: 24rem;
    height: 24rem;
  }

  /*s5*/

  .s5-1 {
    display: grid;
    grid-template-columns: minmax(260rem, 0.78fr) minmax(0, 1.22fr);
    gap: 40rem;
    align-items: start;
  }

  .s5-1-1 {
    gap: 26rem;
  }

  .s5-1-1-1 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28rem;
  }

  .s5-1-2-1-1 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22rem 24rem;
  }

  /*s6*/

  .s6-1 {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(300rem, 0.78fr);
    gap: 48rem;
    align-items: start;
  }

  .s6-1--reverse {
    grid-template-columns: minmax(300rem, 0.78fr) minmax(0, 1.08fr);
  }

  .s6-1--reverse .s6-1-2 {
    order: -1;
  }

  .s6-1-1 {
    gap: 36rem;
  }

  .s6-1-1-2 {
    gap: 24rem;
  }

  .s6-1-2 {
    position: sticky;
    top: 75rem;
    align-self: start;
    width: 100%;
    margin-left: auto;
  }

  .s6-1-2-1-1 {
    aspect-ratio: 1 / 0.48;
  }

  /*s7*/

  .s7 {
    padding: 100rem 0;
  }

  .s7-1 {
    gap: 30rem;
  }

  .s7-1-1 {
    aspect-ratio: 1 / 0.42;
  }

  .s7-1-1-3-1 {
    width: 52rem;
    height: 52rem;
  }

  /*Products archive*/

  .products-archive {
    padding: 105rem 0 90rem;
  }

  .products-archive__inner {
    gap: 34rem;
  }

  .blog-archive {
    padding: 105rem 0 90rem;
  }

  .blog-archive__inner {
    gap: 34rem;
  }

  .blog-single {
    padding: 105rem 0 0;
  }

  .blog-single__inner {
    gap: 50rem;
  }

  .products-breadcrumbs {
    gap: 10rem;
    padding-bottom: 24rem;
  }

  .archive-toolbar {
    flex-direction: row;
    align-items: end;
    gap: 20rem;
  }

  .archive-toolbar__group {
    flex: 0 1 320rem;
  }

  .archive-toolbar__group--end {
    margin-left: auto;
  }

  .archive-toolbar__field {
    gap: 10rem;
  }

  .archive-toolbar__select {
    min-width: 260rem;
    min-height: 56rem;
  }

  .section-breadcrumbs {
    padding-top: 105rem;
  }

  .products-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid rgba(15, 17, 19, 0.16);
    border-left: 1px solid rgba(15, 17, 19, 0.16);
  }

  .products-grid .category_card {
    border-width: 0 1px 1px 0;
  }

  .products-grid .category_card + .category_card {
    margin-top: 0;
  }

  .product_grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .blog_grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .blog-single__hero {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420rem, 1.08fr);
    align-items: start;
    gap: 36rem;
  }

  .blog-single__intro {
    gap: 22rem;
    padding-top: 8rem;
  }

  .blog-single__content {
    max-width: 760rem;
  }

  .product-single__inner {
    gap: 50rem;
  }

  .related-products .category_nav {
    display: inline-flex;
    padding-bottom: 10rem;
  }

  .related-posts .category_nav {
    display: inline-flex;
    padding-bottom: 10rem;
  }

  .related-products__track {
    display: flex;
    flex-direction: row;
    gap: 20rem;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
  }

  .related-products__card {
    flex: 0 0 calc((100% - 6rem) / 4);
    min-width: calc((100% - 6rem) / 4);
    min-height: 100%;
  }

  .related-posts__card {
    flex: 0 0 calc((100% - 4rem) / 3);
    min-width: calc((100% - 4rem) / 3);
    min-height: 100%;
  }

  .product-single__description-content .spec-table tbody {
    display: table-row-group;
  }

  .product-single__description-content .spec-table tr {
    display: table-row;
    padding: 0;
  }

  .product-single__description-content .spec-table td {
    display: table-cell;
    padding: 18rem 0;
    vertical-align: top;
  }

  .product-single__description-content .spec-table td:first-child {
    width: 34%;
    padding-right: 24rem;
    margin-bottom: 0;
  }

  .product-single__description-content .spec-table td:last-child {
    width: 66%;
  }

  .product-single__hero {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320rem, 1.05fr);
    align-items: start;
    gap: 36rem;
  }

  .product-gallery__stage {
    grid-template-columns: 60rem minmax(0, 1fr) 60rem;
    gap: 18rem;
    padding: 22rem;
  }

  .product-gallery__stage--single {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .product-gallery__main {
    min-height: 620rem;
  }

  .product-gallery__thumbs {
    gap: 10rem;
  }

  .product-gallery__thumb {
    padding: 10rem;
  }

  .product-single__info-item,
  .product-single__contact-row {
    padding: 16rem 0;
  }

  .product-single__info-item--value .product-single__info-head {
    grid-template-columns: 28rem minmax(0, 1fr) auto;
  }

  .product-single__info-item--value .product-single__info-value {
    grid-column: auto;
    text-align: end;
  }

  .product-single__price-row {
    padding: 24rem 0 18rem;
  }

  .product-single__description {
    gap: 18rem;
  }

  .product-spin360__badge {
    opacity: 0;
    transition: opacity 0.2s ease;
  }

  .product-spin360:hover .product-spin360__badge {
    opacity: 0;
  }

  /*s8*/

  .s8-1-2 {
    grid-template-columns: 1fr 1fr;
    gap: 24rem;
  }

  /*s9*/

  .s9-1-1 {
    grid-template-columns: repeat(3, 1fr);
    gap: 24rem;
  }

  /*s10*/

  .s10-item {
    grid-template-columns: 80rem 1fr auto;
    gap: 24rem;
    padding: 16rem 0;
  }

  .s10-item__image {
    width: 80rem;
    height: 80rem;
  }

  /*s11*/

  .s11-item__top {
    grid-template-columns: 96rem 1fr;
    gap: 24rem;
  }

  .s11-item__image {
    width: 96rem;
    height: 96rem;
  }

  /*s12*/

  .s12-2 {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60rem;
    align-items: start;
  }

  .s12-2-1 {
    position: sticky;
    top: 100rem;
    aspect-ratio: 1 / 1;
  }

  .s12-item__title {
    font-size: min(36rem, var(--f-l));
  }

  /*Footer*/

  .footer-main {
    display: grid;
    grid-template-columns: minmax(260rem, 0.95fr) minmax(0, 1.55fr);
    align-items: start;
    gap: 60rem;
    padding: 48rem 0 54rem;
  }

  .footer-brand {
    padding-top: 12rem;
  }

  .footer-brand__logo {
    max-width: 300rem;
  }

  .footer-groups {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20rem;
    align-items: start;
  }

  .footer-social {
    gap: 8rem;
  }

  .footer-social__link {
    width: 50rem;
    height: 50rem;
  }

  .footer-social__icon--facebook,
  .footer-social__icon--youtube {
    width: 20rem;
    height: 20rem;
  }

  .footer-bottom {
    padding: 16rem 0 22rem;
  }
}

@media (min-width: 1024px) and (hover: hover) and (pointer: fine) {
  a:hover {
    background-size: 100% var(--sl);
    background-position: left bottom;
  }

  .blog-single__content a:hover {
    background-size: 0 var(--sl);
  }

  .category_card__link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10rem;
    background-color: var(--red);
    transform: translateY(120%);
    transition: transform 0.3s ease;
  }

  .topbar-nav__link:hover,
  .lang-switcher:hover,
  .lang-menu__link:hover,
  .topbar-dropdown__link:hover,
  .topbar-contact__link:hover {
    color: var(--red);
  }

  .button-primary:hover .button-primary__icon {
    transform: rotate(360deg);
  }

  .blog_card__link:hover .blog_card__title {
    color: var(--red);
  }

  .blog_card__link:hover .blog_card__overlay {
    opacity: 1;
  }

  .blog_card__link:hover .blog_card__icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  .blog-single__share-link:hover {
    color: var(--red);
  }

  .button-primary:hover .button-primary__text {
    transform: translateX(6rem);
  }

  .category_nav__button:not([disabled]):hover {
    background-color: var(--body);
    color: var(--white);
  }

  .category_card:hover .category_card__title {
    color: var(--red);
    transform: translateY(-10rem);
  }

  .category_card:hover .category_card__badge {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }

  .product_card:hover .product_card__badge {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }

  .category_card:hover .category_card__link::after {
    transform: translateY(0);
  }

  .s4-1-1-2-1:hover {
    background-color: var(--red);
  }

  .footer-group__list a:hover,
  .footer-contact__line a:hover {
    color: var(--red);
  }

  .footer-social__link:hover {
    background-color: var(--red);
    border-color: var(--red);
  }

  .products-pagination__link:hover {
    color: var(--white);
    border-color: var(--red);
  }

  .products-pagination__link:hover::before {
    transform: translate3d(0, 0, 0);
  }

  .archive-toolbar__select-wrap:hover::after {
    border-color: rgba(255, 255, 255, 0.65);
  }

  .archive-toolbar__select:hover {
    border-color: rgba(255, 255, 255, 0.28);
    background-color: rgba(255, 255, 255, 0.08);
  }

  .archive-toolbar__select-wrap:focus-within::after {
    border-color: var(--red);
  }

  .archive-toolbar__field:focus-within .archive-toolbar__label {
    color: var(--white);
  }

  .cd__trigger:hover {
    border-bottom-color: var(--red);
  }

  .cd__trigger:hover .cd__val {
    color: var(--red);
  }

  .cd__trigger:hover .cd__chevron {
    border-color: var(--red);
  }

  .cd[aria-expanded="true"] .cd__trigger .cd__chevron {
    border-color: var(--red);
  }

  .cd__opt:hover {
    color: var(--red);
  }

  .product-gallery__thumb:hover::after {
    opacity: 1;
  }

  .product-gallery__arrow:hover {
    color: var(--body);
  }

  .product-single__contact-value:hover {
    color: var(--body);
  }
}
