:root {
  --brand-yellow: #ffda08;
  --brand-yellow-hover: #ffb800;
  --brand-black: #0a0c11;
  --brand-dark: #101820;
  --brand-dark-soft: #252c33;
  --brand-text: #c0cbdc;
  --brand-white: #fff;
  --brand-width: 1440px;
  --brand-radius: 2px;
  --brand-gap: clamp(16px, 2vw, 32px);
  --brand-heading: "Oswald", "Arial Narrow", sans-serif;
  --brand-body: "Roboto", Arial, sans-serif;
  --brand-category-image: linear-gradient(var(--brand-dark), var(--brand-dark));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--brand-black);
  color: var(--brand-text);
  font-family: var(--brand-body);
  font-size: 16px;
}
body a { color: inherit; }
body img { max-width: 100%; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

h1, h2, h3, h4, .h1, .h2, .h3, .h4, .homepage-group-title {
  margin-top: 0;
  color: var(--brand-white);
  font-family: var(--brand-heading);
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
}

.container,
.index-content-wrapper,
.type-category .content,
.p-detail-inner,
.p-detail-tabs-wrapper,
.breadcrumbs {
  width: min(100% - 32px, var(--brand-width));
  margin-inline: auto;
}

.top-navigation-bar {
  min-height: 38px;
  border: 0;
  background: var(--brand-dark);
  color: var(--brand-text);
  font-size: 14px;
}
.top-navigation-bar .container {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.brand-contact-bar .top-navigation-contacts {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.brand-contact-bar .top-navigation-contacts > strong,
.brand-contact-bar .top-navigation-menu,
.brand-contact-bar .top-navigation-tools,
.brand-contact-bar .topbar-secondary { display: none; }
.brand-contact-bar .project-email,
.brand-contact-bar .project-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-white);
  font-weight: 500;
  letter-spacing: .01em;
  text-decoration: none;
}
.brand-contact-bar .project-email::before,
.brand-contact-bar .project-phone::before {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.brand-contact-bar .project-email::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffda08' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m3 7 9 6 9-6'/%3E%3C/svg%3E");
}
.brand-contact-bar .project-phone::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffda08' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.79 19.79 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.96.36 1.9.69 2.8a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.91.33 1.85.56 2.81.69A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
}
.top-navigation-bar a:hover { color: var(--brand-yellow); }

#header {
  position: sticky;
  top: 0;
  z-index: 50;
  border: 0;
  background: var(--brand-yellow);
  color: var(--brand-black);
  box-shadow: 0 1px 0 rgb(0 0 0 / 12%);
}
#header .navigation-wrapper {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 64px);
}
#header .site-name {
  flex: 0 0 clamp(170px, 20vw, 280px);
  margin: 0;
}
#header .site-name img {
  display: block;
  width: auto;
  max-width: 260px;
  max-height: 58px;
}
#navigation { flex: 1; }
.navigation-in > ul {
  display: flex;
  align-items: stretch;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.navigation-in > ul > li > a {
  display: flex;
  min-height: 78px;
  align-items: center;
  padding: 0 20px;
  color: var(--brand-black);
  font-family: var(--brand-heading);
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}
.navigation-in > ul > li > a:hover,
.navigation-in > ul > li > a:focus-visible,
.navigation-in > ul > li.active > a,
.navigation-in > ul > li > a.active { background: var(--brand-yellow-hover); }
.navigation-buttons {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.navigation-buttons a,
.navigation-buttons button {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--brand-black);
  cursor: pointer;
  text-decoration: none;
}
.navigation-buttons a:hover,
.navigation-buttons button:hover { background: rgb(10 12 17 / 10%); }
.nav-icon { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; }
.menu-toggle { display: none !important; }

#carousel {
  position: relative;
  margin: 0;
  background: var(--brand-black);
}
#carousel .item { position: relative; min-height: clamp(520px, 58vw, 760px); overflow: hidden; }
#carousel .brand-hero {
  min-height: inherit;
  position: relative;
  background-image: var(--brand-hero-image, url("/user/documents/upload/hero-gx12.jpg"));
  background-position: 34% center;
  background-size: cover;
}
#carousel .item > img,
#carousel .item > a > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 34% center;
}
#carousel .item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(10 12 17 / 18%) 0 42%, rgb(10 12 17 / 82%) 68%, var(--brand-black) 100%);
}
#carousel .extended-banner-texts {
  position: relative;
  z-index: 2;
  min-height: inherit;
  width: min(100% - 32px, var(--brand-width));
  margin: auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  text-align: left;
}
#carousel .hero-copy { width: min(48%, 680px); }
#carousel .eyebrow,
.brand-page-title .eyebrow {
  display: block;
  margin-bottom: 12px;
  color: var(--brand-yellow);
  font-family: var(--brand-heading);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
#carousel h1 {
  margin-bottom: 20px;
  font-size: clamp(50px, 6vw, 92px);
}
#carousel p {
  max-width: 580px;
  margin: 0 0 30px;
  color: var(--brand-white);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
}

.btn,
a.btn,
button.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--brand-yellow);
  border-radius: var(--brand-radius);
  padding: 12px 22px;
  background: var(--brand-yellow);
  color: var(--brand-black);
  font-family: var(--brand-heading);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .03em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}
.btn:hover,
a.btn:hover,
button.btn:hover { border-color: var(--brand-yellow-hover); background: var(--brand-yellow-hover); color: var(--brand-black); }
.btn.btn-secondary {
  border-color: var(--brand-dark-soft);
  background: var(--brand-dark-soft);
  color: var(--brand-white);
}
.btn.btn-secondary:hover { border-color: var(--brand-yellow); color: var(--brand-yellow); }

.benefitBanner {
  width: min(100% - 32px, var(--brand-width));
  margin: clamp(36px, 6vw, 80px) auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.benefitBanner__item {
  width: auto;
  min-width: 0;
  margin: 0;
  min-height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  padding: 24px 18px;
  border: 1px solid var(--brand-dark-soft);
  background: var(--brand-dark);
  text-align: center;
}
.benefitBanner__picture { width: 54px; height: 54px; flex: 0 0 54px; margin: 0; }
.benefitBanner__content { width: 100%; padding: 0; }
.benefitBanner__picture img { width: 100%; height: 100%; object-fit: contain; }
.benefitBanner__title {
  display: block;
  margin-bottom: 5px;
  color: var(--brand-white);
  font-family: var(--brand-heading);
  font-size: 20px;
  text-transform: uppercase;
}
.benefitBanner__data { color: var(--brand-text); font-size: 14px; line-height: 1.45; }

.homepage-tabs-wrapper,
.category-products { padding: clamp(30px, 5vw, 70px) 0; }
.homepage-tabs-wrapper { width: min(100% - 32px, var(--brand-width)); margin: auto; }
.type-category .products-top-wrapper { display: none !important; }
.homepage-heading,
.homepage-group-title {
  margin-bottom: 26px;
  font-size: clamp(38px, 5vw, 66px);
  text-align: center;
}
.homepage-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 0 0 38px;
  padding: 0;
  list-style: none;
}
.homepage-tabs a {
  display: block;
  padding: 12px 20px;
  background: var(--brand-dark);
  color: var(--brand-text);
  font-family: var(--brand-heading);
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}
.homepage-tabs .active a,
.homepage-tabs a:hover { background: var(--brand-dark-soft); color: var(--brand-yellow); }

.products-block {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--brand-gap);
  margin: 0;
}
.products-block > div,
.products-block .product { min-width: 0; padding: 0; }
.products-block > .product {
  width: auto !important;
  max-width: none !important;
  padding: 0 !important;
}
.products-block .p {
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid #d9dde2;
  background: var(--brand-white);
  color: var(--brand-black);
}
.products-block .image {
  position: relative;
  aspect-ratio: 4 / 3;
  display: block;
  overflow: hidden;
  background: #f1f2f3;
}
.products-block .image img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .35s ease; }
.products-block .p:hover .image img { transform: scale(1.025); }
.flags { position: absolute; z-index: 2; top: 10px; left: 0; display: flex; align-items: flex-start; flex-direction: column; gap: 3px; }
.flag { padding: 6px 11px; background: #bd5d45; color: white; font-size: 12px; font-weight: 700; text-transform: uppercase; }
.flag.flag-tip { background: var(--brand-dark-soft); color: var(--brand-yellow); }
.flag.flag-new { background: #3a6e42; }
.products-block .p-in {
  width: 100% !important;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px !important;
  text-align: left;
}
.products-block .name {
  min-height: 55px;
  display: block;
  color: var(--brand-black);
  font-family: var(--brand-heading);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
  text-align: left !important;
  text-transform: uppercase;
}
.products-block .availability { min-height: 42px; margin: 12px 0; color: #68717b; font-size: 13px; line-height: 1.4; text-align: left !important; }
.products-block .prices { text-align: left !important; }
.products-block .price-final { margin-top: auto; color: var(--brand-black); font-family: var(--brand-heading); font-size: 25px; font-weight: 700; }
.products-block .p-tools {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 8px;
  margin-top: 18px;
  padding: 0 !important;
}
.products-block .p-tools .btn { min-width: 0; padding-inline: 10px; font-size: 14px; }

.home-cta {
  width: min(100% - 32px, var(--brand-width));
  min-height: 360px;
  margin: clamp(60px, 8vw, 120px) auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: var(--brand-yellow);
  color: var(--brand-black);
}
.home-cta__copy { display: flex; justify-content: center; flex-direction: column; padding: clamp(32px, 6vw, 86px); }
.home-cta h2 { color: var(--brand-black); font-size: clamp(38px, 4vw, 62px); }
.home-cta p { max-width: 560px; font-size: 18px; line-height: 1.6; }
.home-cta .btn { align-self: flex-start; border-color: var(--brand-black); background: var(--brand-black); color: var(--brand-white); }
.home-cta__image { min-height: 360px; }
.home-cta__image img { width: 100%; height: 100%; object-fit: cover; }

.breadcrumbs {
  min-height: 44px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-block: 10px;
  color: #84909e;
  font-size: 13px;
}
.breadcrumbs a { color: inherit; }
.breadcrumbs .navigation-bullet { display: none; }
.breadcrumbs > span + span::before { content: "›"; margin-right: 10px; color: var(--brand-yellow); }

.type-product .breadcrumbs {
  min-height: 48px;
  border-bottom: 1px solid var(--brand-dark-soft);
  color: var(--brand-text);
  font-size: 15px;
  line-height: 1.5;
}
.type-product .breadcrumbs > span:last-of-type { color: var(--brand-white); font-weight: 500; }
.type-product .breadcrumbs a:hover { color: var(--brand-yellow); }
.type-product .breadcrumbs a:focus-visible { outline: 2px solid var(--brand-yellow); outline-offset: 3px; }

.brand-page-title {
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  padding: clamp(70px, 10vw, 150px) 20px;
  background-image:
    linear-gradient(rgb(10 12 17 / 80%), rgb(10 12 17 / 88%)),
    var(--brand-category-image);
  background-position: center 57%;
  background-size: cover;
  text-align: center;
}
.brand-page-title h1 { margin-bottom: 22px; font-size: clamp(56px, 8vw, 100px); }
.brand-page-title .category-perex { max-width: 940px; margin: 0 auto; color: var(--brand-text); font-size: 18px; line-height: 1.7; }
.brand-page-title .breadcrumbs { justify-content: center; margin: 0 auto 24px; }
.type-category .content-wrapper { background: var(--brand-black); }

.theme-category--with-subcategories .brand-page-title {
  min-height: 0;
  padding: clamp(54px, 7vw, 96px) 16px clamp(48px, 7vw, 88px);
  background:
    linear-gradient(rgb(10 12 17 / 76%), rgb(10 12 17 / 91%)),
    var(--brand-category-image);
  background-position: center 57%;
  background-size: cover;
}
.theme-category--with-subcategories .brand-page-title h1 { margin-bottom: clamp(30px, 4vw, 52px); }
.theme-category--with-subcategories .subcategories.with-image {
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.theme-category--with-subcategories .subcategories.with-image > li {
  width: auto !important;
  min-width: 0;
  display: flex;
  flex: 0 0 calc((100% - 60px) / 6);
  margin: 0;
  padding: 0;
  float: none;
}
.theme-category--with-subcategories .subcategories.with-image > li > a {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 18%);
  background: #c9cdd1;
  color: var(--brand-black);
  text-decoration: none;
  box-shadow: 0 10px 28px rgb(0 0 0 / 20%);
  transition: border-color .2s ease, transform .2s ease;
}
.theme-category--with-subcategories .subcategories.with-image > li > a:hover,
.theme-category--with-subcategories .subcategories.with-image > li > a:focus-visible {
  border-color: var(--brand-yellow);
  outline: 0;
  transform: translateY(-3px);
}
.theme-category--with-subcategories .subcategories.with-image > li > a .image {
  width: 100%;
  height: auto;
  margin: 0;
  aspect-ratio: 7 / 5;
  display: block;
  overflow: hidden;
  background: #d9dde1;
}
.theme-category--with-subcategories .subcategories.with-image > li > a .image img {
  width: 100%;
  height: 100%;
  max-height: none;
  display: block;
  object-fit: cover;
  transition: transform .3s ease;
}
.theme-category--with-subcategories .subcategories.with-image a:hover .image img,
.theme-category--with-subcategories .subcategories.with-image a:focus-visible .image img { transform: scale(1.035); }
.theme-category--with-subcategories .subcategories.with-image .text {
  min-height: 70px;
  display: grid;
  place-items: center;
  padding: 12px 9px;
  border-top: 4px solid var(--brand-yellow);
  background: var(--brand-white);
  font-family: var(--brand-heading);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}
.theme-category--with-subcategories #footer { margin-top: 0; }
.category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  padding: 16px 18px;
  border: 1px solid var(--brand-dark-soft);
  background: var(--brand-dark);
}
.category-header button {
  border: 1px solid var(--brand-dark-soft);
  padding: 9px 13px;
  background: transparent;
  color: var(--brand-text);
  cursor: pointer;
}
.category-header button.active,
.category-header button:hover { border-color: var(--brand-yellow); color: var(--brand-yellow); }

.type-product .content-wrapper { background: var(--brand-black); }
.p-detail-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(420px, .8fr);
  gap: clamp(40px, 6vw, 90px);
  padding-block: clamp(40px, 7vw, 90px);
}
.p-image-wrapper { min-width: 0; }
.p-image {
  aspect-ratio: 4 / 3;
  display: block;
  overflow: hidden;
  border: 1px solid var(--brand-dark-soft);
  background: #eff1f2;
}
.p-image img { width: 100%; height: 100%; object-fit: cover; }
.p-thumbnails { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; margin-top: 12px; }
.p-thumbnails button { aspect-ratio: 1; overflow: hidden; border: 1px solid var(--brand-dark-soft); padding: 0; background: var(--brand-dark); cursor: pointer; }
.p-thumbnails button.active,
.p-thumbnails button:hover { border-color: var(--brand-yellow); }
.p-thumbnails img { width: 100%; height: 100%; object-fit: cover; }
.p-data-wrapper { align-self: start; }
.p-data-wrapper h1 { margin: 18px 0 26px; font-size: clamp(42px, 4vw, 64px); }
.rating { color: var(--brand-yellow); letter-spacing: 2px; }
.p-short-description { color: var(--brand-text); font-size: 17px; line-height: 1.7; }
.p-short-description strong { color: var(--brand-yellow); }
.p-price-wrapper { margin: 28px 0; padding: 22px; border: 1px solid var(--brand-dark-soft); background: var(--brand-dark); }
.p-final-price-wrapper { color: var(--brand-white); font-family: var(--brand-heading); font-size: 40px; font-weight: 700; }
.price-additional { color: var(--brand-text); font-size: 13px; }
.availability-label { margin: 16px 0; color: #83bd72; font-weight: 700; }
.p-to-cart-block { display: flex; gap: 10px; }
.quantity { width: 78px; border: 1px solid var(--brand-dark-soft); background: var(--brand-black); color: var(--brand-white); text-align: center; }
.detail-parameters { width: 100%; margin-top: 28px; border-collapse: collapse; }
.detail-parameters th,
.detail-parameters td { padding: 11px 8px; border-bottom: 1px solid var(--brand-dark-soft); text-align: left; }
.detail-parameters th { color: var(--brand-white); }
.type-product .p-detail-tabs-wrapper {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 0 clamp(64px, 8vw, 110px);
  background: #eef0f2;
  color: #252c33;
}
.shp-tabs-row,
.shp-tabs-holder { width: 100%; }
.shp-tabs-holder { background: var(--brand-dark); }
.shp-tabs {
  width: min(100% - 32px, 1200px);
  display: flex;
  gap: 2px;
  margin: 0 auto;
  padding: 0;
  border: 0;
  list-style: none;
}
.shp-tabs li { flex: 0 0 auto; }
.shp-tabs a {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 15px 22px;
  background: var(--brand-dark-soft);
  color: var(--brand-white);
  font-family: var(--brand-heading);
  font-weight: 700;
  letter-spacing: .025em;
  text-decoration: none;
  text-transform: uppercase;
}
.shp-tabs a:hover,
.shp-tabs a:focus-visible { color: var(--brand-yellow); outline: 0; }
.shp-tabs .active a,
.shp-tabs .shp-tab.active a {
  background: var(--brand-yellow);
  color: var(--brand-black);
}
.tab-content {
  width: min(100% - 32px, 1200px);
  margin: 0 auto;
  padding-top: clamp(42px, 6vw, 76px);
}
.tab-pane[hidden] { display: none !important; }
.description-inner {
  max-width: none;
  color: #303841;
  font-size: 17px;
  line-height: 1.75;
}
.description-inner h1,
.description-inner h2,
.description-inner h3,
.description-inner h4 { color: var(--brand-black); }
.description-inner h2 { max-width: 1000px; margin: 0 0 28px; font-size: clamp(34px, 4vw, 52px); }
.description-inner h3 { margin: 48px 0 18px; font-size: clamp(25px, 2.5vw, 34px); }
.description-inner p { max-width: 980px; margin: 0 0 20px; }
.description-inner ul { max-width: 980px; margin: 0 0 28px; padding-left: 22px; }
.description-inner li { margin-bottom: 9px; }
/* Imported descriptions can contain utility classes that collide with Step's .flex. */
.description-inner .basic-description .flex.flex-col { display: block; }
.description-inner .basic-description .w-fit { width: 100%; min-width: 0; }
.type-product .description-inner table {
  width: 100%;
  margin: 0 0 30px;
  border-collapse: collapse;
  background: var(--brand-white);
  box-shadow: 0 8px 28px rgb(16 24 32 / 8%);
}
.description-inner th,
.description-inner td { padding: 14px 18px; border-bottom: 1px solid #d9dde2; text-align: left; }
.description-inner th { background: var(--brand-dark); color: var(--brand-white); font-family: var(--brand-heading); text-transform: uppercase; }
.description-inner td:first-child { width: 58%; font-weight: 700; }
.description-inner tr:last-child td { border-bottom: 0; }
.tab-panel-heading { margin: 0 0 28px; color: var(--brand-black); font-size: clamp(34px, 4vw, 50px); }
.related-file {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
  border-left: 5px solid var(--brand-yellow);
  background: var(--brand-white);
  color: var(--brand-black);
  font-weight: 700;
  text-decoration: none;
}
.related-file:hover { color: var(--brand-black); box-shadow: 0 8px 28px rgb(16 24 32 / 10%); }
.discussion-placeholder { padding: clamp(28px, 5vw, 52px); background: var(--brand-white); }
.discussion-placeholder p { max-width: 720px; margin-bottom: 24px; }
.type-product #productDiscussion h2 { color: var(--brand-black); }
.type-product #productDiscussion .form-control { min-height: 48px; border-color: #c9cdd1; background: var(--brand-white); color: var(--brand-black); }
.type-product #productDiscussion .btn { border-color: var(--brand-yellow); background: var(--brand-yellow); color: var(--brand-black); }

#footer { margin-top: 80px; border: 0; background: var(--brand-dark); color: var(--brand-text); }
.footer-rows {
  width: min(100% - 32px, var(--brand-width));
  margin: auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--brand-gap);
  padding: 70px 0 55px;
}
#footer h4 { margin-bottom: 20px; color: var(--brand-yellow); font-size: 20px; }
#footer nav { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
#footer a { color: var(--brand-text); }
#footer a:hover { color: var(--brand-yellow); }
.footer-logo { max-width: 230px; margin-bottom: 20px; filter: grayscale(1) brightness(4); }
.footer-bottom { padding: 16px; border-top: 1px solid var(--brand-dark-soft); color: #8793a1; text-align: center; font-size: 12px; }

/* Native Step markup */
.overall-wrapper,
#content-wrapper,
.content-wrapper-in,
#content { background-color: var(--brand-black); }

#navigation { min-width: 0; }
.navigation-in { min-width: 0; background-color: transparent; }
.navigation-in > ul > li > a b { font: inherit; }
.menu-helper {
  flex: 0 0 auto;
  color: var(--brand-black);
  font-family: var(--brand-heading);
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
}
/* Match Step's ul specificity; later loading alone does not override it. */
.navigation-in ul.menu-level-2,
.menu-helper > ul.menu-level-1 {
  --color-header-background: var(--brand-dark);
  --_color-header-text: var(--brand-white);
  border: 0;
  background: var(--brand-dark);
  box-shadow: 0 14px 35px rgb(0 0 0 / 28%);
}
.menu-helper > span,
.menu-helper::after { background: transparent; color: var(--brand-black); }
.menu-helper:hover > span,
.menu-helper:focus-visible > span { background: var(--brand-yellow-hover); }
.navigation-in ul.menu-level-2 a,
.menu-helper > ul.menu-level-1 a { color: var(--brand-white); }
.navigation-in ul.menu-level-2 a:hover,
.navigation-in ul.menu-level-2 a:focus-visible,
.menu-helper > ul.menu-level-1 a:hover,
.menu-helper > ul.menu-level-1 a:focus-visible {
  background: var(--brand-dark-soft);
  color: var(--brand-yellow);
}
.navigation-in a:focus-visible,
.menu-helper:focus-visible,
.menu-helper a:focus-visible { outline: 2px solid currentColor; outline-offset: -2px; }

/* Native cookie consent: styling only, Shoptet owns choices and persistence. */
.siteCookies {
  --cookies-notice-background: #28394d;
  --cookies-notice-color: var(--brand-white);
  --cookies-notice-link-hover: var(--brand-dark-soft);
  --cookies-notice-button-hover: var(--brand-yellow-hover);
  font-family: var(--brand-body);
  /* The outer banner expands on scroll; its inner form stays 670px wide. */
  border-top: 3px solid var(--brand-yellow);
}
.siteCookies .siteCookies__form {
  border-top: 0;
  border-radius: var(--brand-radius);
  box-shadow: 0 8px 32px rgb(0 0 0 / 35%);
}
.siteCookies .siteCookies__text { line-height: 1.5; }
.siteCookies .siteCookies__text a { color: var(--brand-yellow); }
.siteCookies .siteCookies__text a:hover { color: var(--brand-yellow-hover); }
.siteCookies .siteCookies__link {
  border-color: var(--brand-yellow);
  border-radius: var(--brand-radius);
  color: var(--brand-yellow);
}
.siteCookies .siteCookies__link:hover { color: var(--brand-white); }
.siteCookies .siteCookies__button,
.cookiesDialog .cookiesSetting__button,
.cookiesDialog .cookiesSetting__uncheckLink {
  min-height: 48px;
  border: 2px solid var(--brand-yellow);
  border-radius: var(--brand-radius);
  background: var(--brand-yellow);
  color: var(--brand-black);
  font-family: var(--brand-body);
  font-weight: 700;
  line-height: 1.35;
  padding: 12px 15px;
  text-align: center;
}
.siteCookies .siteCookies__button:hover,
.cookiesDialog .cookiesSetting__button:hover,
.cookiesDialog .cookiesSetting__uncheckLink:hover {
  border-color: var(--brand-yellow-hover);
  background: var(--brand-yellow-hover);
  color: var(--brand-black);
  opacity: 1;
}
#cboxContent.cookiesDialog {
  background: var(--brand-dark);
  color: var(--brand-text);
  border-radius: var(--brand-radius);
  box-shadow: inset 0 3px var(--brand-yellow);
}
.cookiesDialog .cookiesSetting__title { color: var(--brand-yellow); padding-right: 24px; }
.cookiesDialog .cookiesSetting__perex,
.cookiesDialog .cookiesSetting__item__text { color: var(--brand-text); }
.cookiesDialog .cookiesSetting__item__name { color: var(--brand-white); }
.cookiesDialog .cookiesSetting__data {
  border-color: var(--brand-dark-soft);
  border-radius: var(--brand-radius);
  background: var(--brand-black);
}
.cookiesDialog .cookiesSetting__item { border-color: var(--brand-dark-soft); }
.cookiesDialog .cookiesSetting__item__status {
  min-height: 48px;
  border-color: var(--brand-yellow);
  border-radius: var(--brand-radius);
  background: var(--brand-dark);
  color: var(--brand-white);
}
.cookiesDialog .cookiesSetting__item__status:hover {
  border-color: var(--brand-yellow);
  background: var(--brand-dark-soft);
  color: var(--brand-white);
}
.cookiesDialog .cookiesSetting__item__checkbox:checked + label::before {
  border-color: var(--brand-yellow);
  background-color: var(--brand-yellow);
}
.cookiesDialog .cookiesSetting__item__checkbox:checked + label::after { color: var(--brand-black); }
.cookiesDialog .cookiesSetting__bottom {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 12px;
}
.cookiesDialog .cookiesSetting__bottom > *,
.cookiesDialog .cookiesSetting__uncheckLink { width: 100%; margin: 0; }
.cookiesDialog .cookiesSetting__uncheckLink { height: 100%; }
.cookiesDialog #cboxClose {
  /* Native Shoptet close button sets its background with !important. */
  background-color: var(--brand-dark) !important;
  color: var(--brand-white);
  border-radius: var(--brand-radius);
}
.cookiesDialog #cboxClose:hover { color: var(--brand-yellow); }
.siteCookies button:focus-visible,
.siteCookies a:focus-visible,
.cookiesDialog button:focus-visible,
.cookiesDialog .cookiesSetting__item__checkbox:focus-visible + label {
  outline: 2px solid var(--brand-yellow);
  outline-offset: 3px;
}
@media (max-width: 767px) {
  .cookiesDialog .cookiesSetting__bottom { grid-template-columns: 1fr; }
}

/* Native search, cart and account panels retain Shoptet's open/close behavior. */
.content-window-in,
#login {
  --dialog-bg-color: var(--brand-dark);
  --colors-surface-primary: var(--brand-dark);
  --colors-surface-white: var(--brand-dark);
  --colors-foregrounds-content-primary-dark: var(--brand-white);
  --colors-foregrounds-content-secondary: var(--brand-text);
  --colors-foregrounds-borders-secondary: var(--brand-dark-soft);
  background: var(--brand-dark);
  color: var(--brand-text);
}
.content-window-in h2,
.content-window-in h3,
#login .dialog__heading { color: var(--brand-white); }
.content-window-in .form-control,
#login .form-control { border-color: var(--brand-dark-soft); background: var(--brand-black); color: var(--brand-white); }
.content-window-in .form-control::placeholder,
#login .form-control::placeholder { color: var(--brand-text); opacity: 1; }
.content-window-in .btn.btn-default,
#login .btn.btn-primary,
#login .btn.btn-conversion {
  border-color: var(--brand-yellow);
  background: var(--brand-yellow);
  color: var(--brand-black);
}
.content-window-in .recommended-products .p-name,
.content-window-in .recommended-products .price,
.content-window-in .search-whisperer .p-name,
.content-window-in .search-whisperer .price { color: var(--brand-white); }
.content-window-in .search-whisperer { background: var(--brand-black); border-color: var(--brand-dark-soft); }
.content-window-in .search-whisperer a:not(.btn) { color: var(--brand-text); }
.content-window-in .search-whisperer a:hover { background: var(--brand-dark-soft); }
.search-window-in .search-form { margin-bottom: 28px; }
.content-window-in .form-control:focus-visible,
#login .form-control:focus-visible { outline: 2px solid var(--brand-yellow); outline-offset: 2px; box-shadow: none; }

.breadcrumbs > span {
  width: auto !important;
  display: inline-flex !important;
  align-items: center;
  flex: 0 0 auto !important;
  margin: 0 !important;
}
.breadcrumbs .navigation-home-icon { color: inherit; }
.breadcrumbs > span + span::before { flex: 0 0 auto; }
.brand-page-title > .category-title {
  width: min(100%, var(--brand-width));
  margin-inline: auto;
  text-align: center !important;
}
.brand-page-title > .category-perex { width: min(100%, 940px); }
.theme-category--leaf .brand-page-title {
  min-height: 360px;
  padding-block: clamp(64px, 8vw, 110px);
}
.type-category .category-top[hidden] { display: none !important; }
.type-category main > .category-top { margin: 0 auto; }

.products-block .p-in-in { flex: 0 0 auto; }
.products-block .p-bottom { margin-top: auto; padding-inline: 0 !important; }
.products-block .prices { margin-top: 12px; }
.products-block .price-final strong { font: inherit; }
.products-block .p-tools form { width: 100%; }
.products-block .p-tools .btn { width: 100%; }
.products-block .p-desc { display: none; }
.products-block > .product > .p > .p-code { display: none; }

.category-content-wrapper { padding: clamp(30px, 5vw, 70px) 0; }
.category-header { min-height: 66px; }
.listSorting__controls {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.category-header .listSorting__control--current { border-color: var(--brand-yellow); color: var(--brand-yellow); }
#filters-wrapper { margin: -14px 0 28px; }
.filters-unveil-button-wrapper { display: flex; justify-content: flex-end; }
#filters-wrapper .filters-unveil-button-wrapper .unveil-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--brand-yellow);
  padding: 0 20px;
  background: var(--brand-yellow);
  color: var(--brand-black);
  font-family: var(--brand-heading);
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}
#filters-wrapper .filters-unveil-button-wrapper .unveil-button:hover,
#filters-wrapper .filters-unveil-button-wrapper .unveil-button:focus-visible { background: var(--brand-yellow-hover); color: var(--brand-black); }
#filters {
  margin-top: 12px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--brand-dark-soft);
  background: var(--brand-dark);
  color: var(--brand-text);
}
#filters .slider-wrapper { width: min(100%, 660px); margin: 0 auto 24px; }
#filters h4 { margin: 0 0 12px; color: var(--brand-white); font-size: 18px; }
#filters .slider-header { display: flex; justify-content: space-between; gap: 20px; }
#filters .slider-header .to { text-align: right; }
#filters .slider-content { height: auto; margin: 0; border: 0; padding: 16px 9px 8px; }
#filters .param-price-filter { position: relative; height: 4px; border: 0; background: var(--brand-dark-soft); }
#filters .ui-slider-range { position: absolute; inset: 0; border: 0; background: var(--brand-yellow); }
#filters .ui-slider-handle {
  position: absolute;
  display: block;
  width: 18px;
  height: 18px;
  top: -7px;
  margin-left: -9px;
  border: 2px solid var(--brand-black);
  border-radius: 50%;
  background: var(--brand-yellow);
}
#filters .filter-sections {
  border: 1px solid var(--brand-dark-soft);
  background: var(--brand-black);
}
#filters .filter-section {
  margin: 0;
  padding: 14px 16px;
  border: 0;
  background: transparent;
}
#filters .filter-section + .filter-section,
#filters #category-filter-hover { border-top: 1px solid var(--brand-dark-soft); }
#filters #category-filter-hover .filter-section + .filter-section { border-top: 1px solid var(--brand-dark-soft); }
#filters #category-filter-hover .filter-section:first-child { border-top: 0; }
#filters fieldset { margin: 0; border: 0; padding: 0; }
#filters input[type="checkbox"] {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
#filters .filter-label {
  position: relative;
  width: 100%;
  min-height: 22px;
  display: flex;
  align-items: center;
  margin: 0;
  padding-left: 30px;
  color: var(--brand-white);
  cursor: pointer;
}
#filters .filter-label::before {
  position: absolute;
  left: 0;
  width: 18px;
  height: 18px;
  top: 50%;
  content: "";
  border: 1px solid var(--brand-dark-soft);
  background: var(--brand-dark);
  transform: translateY(-50%);
}
#filters .filter-label::after {
  position: absolute;
  left: 7px;
  top: 50%;
  width: 5px;
  height: 9px;
  content: "";
  border: solid var(--brand-black);
  border-width: 0 2px 2px 0;
  opacity: 0;
  transform: translateY(-62%) rotate(45deg);
}
#filters input:checked + .filter-label::before { border-color: var(--brand-yellow); background: var(--brand-yellow); }
#filters input:checked + .filter-label::after { opacity: 1; }
#filters input:focus-visible + .filter-label::before { outline: 2px solid var(--brand-yellow); outline-offset: 2px; }
#filters .filter-count {
  margin-left: auto;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--brand-dark-soft);
  color: var(--brand-text);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}
#filters .toggle-filters { color: var(--brand-yellow); font-weight: 700; text-decoration: none; }
#filters .filter-total-count { color: var(--brand-text); text-align: right; }
#filters .filter-total-count strong { color: var(--brand-yellow); font-size: 18px; }

.type-product .p-detail-inner { width: min(100% - 32px, var(--brand-width)); }
.type-product .p-image-wrapper,
.type-product .p-data-wrapper {
  width: auto !important;
  padding-inline: 0 !important;
}
.type-product .p-image-wrapper { order: -1; align-self: start; }
.type-product .p-image { width: 100% !important; height: auto !important; margin: 0 !important; padding: 0 !important; }
.type-product .p-main-image { width: 100%; height: auto !important; display: block; }
.type-product .p-data-wrapper { color: var(--brand-text); }
.type-product .stars-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-bottom: 12px;
  color: var(--brand-yellow);
}
.type-product .stars-label,
.type-product .p-code,
.type-product .link-icons a { color: var(--brand-text); }
.type-product .stars-wrapper .btn--link {
  min-height: 0;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--brand-text);
  font-family: var(--brand-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-decoration: underline;
  text-transform: none;
}
.type-product .stars-wrapper .btn--link:hover { color: var(--brand-yellow); background: transparent; }
.type-product #product-detail-form {
  margin-top: 28px;
  padding: 22px;
  border: 1px solid var(--brand-dark-soft);
  background: var(--brand-dark);
}
.type-product .p-basic-info-block { display: flex; flex-wrap: wrap; gap: 12px 28px; margin-bottom: 18px; }
.type-product .p-basic-info-block .block { margin: 0; }
.type-product .p-basic-info-block,
.type-product .p-to-cart-block { border-color: var(--brand-dark-soft); }
.type-product .p-basic-info-block .p-code { color: var(--brand-text); }
.type-product .p-to-cart-block { align-items: stretch; flex-direction: column; gap: 18px; }
.type-product .p-final-price-wrapper { width: 100%; }
.type-product .p-final-price-wrapper .price-final { color: var(--brand-white); font-family: var(--brand-heading); font-size: 40px; }
.type-product .add-to-cart { width: 100%; display: flex; gap: 10px; flex-wrap: wrap; }
.type-product .p-to-cart-block .p-add-to-cart-wrapper { width: 100%; margin-left: 0; }
.type-product .p-to-cart-block .p-add-to-cart-wrapper .add-to-cart { width: 100%; }
.type-product .quantity {
  width: 144px;
  min-width: 144px;
  height: 48px;
  flex: 0 0 144px;
  display: block;
  position: relative;
  padding: 0;
  overflow: hidden;
}
.type-product .quantity label { display: block; height: 100%; margin: 0; }
.type-product .quantity .amount { width: 100%; height: 100%; padding: 0 44px; border: 0; background: transparent; color: var(--brand-white); font-size: 16px; text-align: center; }
.type-product .quantity button { border: 0; border-left: 1px solid var(--brand-dark-soft); background: transparent; color: var(--brand-white); }
.type-product .quantity .increase,
.type-product .quantity .decrease { position: absolute; top: 0; width: 42px; height: 46px; }
.type-product .quantity .increase { right: 0; left: auto; }
.type-product .quantity .decrease { left: 0; right: auto; border-left: 0; border-right: 1px solid var(--brand-dark-soft); }
.type-product .quantity button:focus-visible { outline: 2px solid var(--brand-yellow); outline-offset: -3px; }
.type-product .add-to-cart .btn.btn-conversion,
.products-block .p-tools .btn:is(.btn-conversion, .btn-cart) {
  flex: 1 1 auto;
  min-height: 48px;
  border-color: var(--brand-yellow);
  background: var(--brand-yellow);
  color: var(--brand-black);
}
.type-product .add-to-cart .btn.btn-conversion:hover,
.products-block .p-tools .btn:is(.btn-conversion, .btn-cart):hover { background: var(--brand-yellow-hover); border-color: var(--brand-yellow-hover); }
.products-block .p-tools { width: 100%; }
.products-block .product .p .p-bottom .p-tools :is(form, .btn) { width: 100%; }
.products-block .product .p .p-bottom .p-tools .btn.btn-cart { width: 100%; min-width: 0; padding: 10px; }
.type-product .p-param-block { margin-top: 28px; }
.type-product .p-param-block .detail-parameters { margin-top: 0; }
.type-product .container--bannersBenefit {
  width: min(100% - 32px, var(--brand-width));
  padding: 0;
}
.type-product .position--benefitProduct { margin-block: clamp(34px, 5vw, 70px); }

.type-page #content,
.type-post #content,
.type-posts-listing #content {
  width: min(100% - 32px, 1100px);
  margin-inline: auto;
  padding-block: clamp(40px, 6vw, 80px);
  color: var(--brand-text);
}
.type-page #content h1,
.type-post #content h1,
.type-posts-listing #content h1 { font-size: clamp(42px, 6vw, 72px); }
.type-page #content h2,
.type-post #content h2,
.type-posts-listing #content h2 { margin-top: 42px; font-size: clamp(28px, 4vw, 42px); }
.type-page #content p,
.type-page #content li,
.type-post #content p,
.type-post #content li { line-height: 1.75; }
.type-page #content a,
.type-post #content a { text-decoration-color: var(--brand-yellow); text-underline-offset: 3px; }

#footer .footer-newsletter {
  width: min(100% - 32px, var(--brand-width));
  padding-block: 48px;
}
#footer .footer-rows .footer-row { display: contents; }
#footer .footer-rows .footer-block { min-width: 0; }
#footer .footer-rows ul { margin: 0; padding: 0; list-style: none; }
#footer .footer-rows li + li { margin-top: 10px; }
#footer .contact-box { color: var(--brand-text); }
#footer .contact-box img { display: none; }
#footer .newsletter-header h3 { color: var(--brand-yellow); font-size: 28px; }
#footer .subscribe-form fieldset { display: flex; align-items: flex-end; gap: 12px; border: 0; padding: 0; }
#footer .subscribe-form .form-group { flex: 1; margin: 0; }
#footer .subscribe-form input { min-height: 48px; }
#footer .footer-bottom {
  width: min(100% - 32px, var(--brand-width));
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-inline: auto;
}
@media (max-width: 767px) {
  /* Step's -20px row margins exceed our mobile container's 12–16px inset. */
  #footer .custom-footer.row { margin-inline: 0; }
}

.ordering-process .sidebar { display: none !important; }
.ordering-process .content-wrapper-in { display: block; }
.ordering-process #content {
  width: min(100% - 32px, 1180px);
  margin-inline: auto;
  padding-block: clamp(36px, 6vw, 80px);
}
.ordering-process .cart-header {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}
.ordering-process .cart-header .step {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background: var(--brand-dark);
  color: var(--brand-text);
  text-align: center;
}
.ordering-process .cart-header .active { background: var(--brand-yellow); color: var(--brand-black); }
.ordering-process .cart-header a { color: inherit; text-decoration: none; }
.ordering-process .cart-inner,
.ordering-process .co-box,
.ordering-process .order-summary {
  border: 1px solid var(--brand-dark-soft);
  background: var(--brand-dark);
  color: var(--brand-text);
}
.ordering-process .cart-inner { padding: clamp(18px, 3vw, 36px); }
.ordering-process .cart-heading,
.ordering-process .co-box h2,
.ordering-process .order-summary h2 { color: var(--brand-white); }
.ordering-process .cart-table { width: 100%; color: var(--brand-text); }
.ordering-process .cart-table td { border-color: var(--brand-dark-soft); }
.ordering-process .cart-table .main-link,
.ordering-process .cart-table .price-final { color: var(--brand-white); }
.ordering-process .price-wrapper { color: var(--brand-text); }
.ordering-process .price-wrapper .price { color: var(--brand-white); font-family: var(--brand-heading); font-size: 30px; }
.ordering-process .co-box,
.ordering-process .order-summary { margin-bottom: 20px; padding: clamp(18px, 3vw, 30px); }
.ordering-process .shipping-billing-table { color: var(--brand-text); }
.ordering-process .form-control,
.ordering-process select,
.ordering-process textarea { border-color: var(--brand-dark-soft); background: var(--brand-black); color: var(--brand-white); }
.ordering-process .next-step { display: flex; justify-content: space-between; gap: 12px; margin-top: 28px; }
.ordering-process .next-step-back { border-color: var(--brand-dark-soft); background: var(--brand-dark-soft); color: var(--brand-white); }
.ordering-process .empty-cart-boxes a { color: var(--brand-yellow); }
.ordering-process .cart-empty .cart-row { display: grid; grid-template-columns: minmax(0, 1.7fr) minmax(280px, .8fr); gap: 34px; }
.ordering-process .cart-empty .cart-row > * { width: auto; margin: 0; }
.ordering-process .cart-empty .cart-content { height: 100%; }
.ordering-process .cart-empty .empty-cart-boxes { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.ordering-process .cart-empty .empty-cart-boxes > * { width: auto; }
.ordering-process .cart-empty .contact-box { min-height: 120px; display: grid; align-content: center; gap: 8px; }
.ordering-process .cart-empty .contact-box img { display: none; }
.ordering-process .cart-empty .contact-box ul { margin: 0; padding: 0; list-style: none; }

@media (max-width: 991px) {
  .ums_mobile_header_v1--on .overall-wrapper { padding-top: 0; }
  /* The theme uses a sticky header; disable Step's fixed-header scroll translation. */
  .scrolled-down .ums_mobile_header_v1--on #header,
  .ums_mobile_header_v1--on #header { transform: none; }
  #header .navigation-wrapper { min-height: 64px; flex-wrap: nowrap; gap: 8px; }
  /* Native clearfix pseudo-elements must not become extra flex items. */
  #header .navigation-wrapper::before,
  #header .navigation-wrapper::after { display: none; }
  #header .site-name { flex: 0 1 190px; min-width: 0; padding: 0; }
  #header .site-name a { display: flex; align-items: center; min-height: 44px; }
  #header .site-name img { width: 100%; max-width: 190px; max-height: 48px; object-fit: contain; }
  /* Keep icons in the same flex row as the logo, including open-menu/scroll states. */
  #header .navigation-buttons {
    position: static;
    flex: 0 0 auto;
    gap: 2px;
    margin: 0 0 0 auto;
    padding: 0;
    border: 0;
  }
  #header .navigation-buttons > a,
  #header .navigation-buttons > button {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--brand-black);
    font-size: 22px;
    line-height: 1;
  }
  #header .navigation-buttons > a:hover,
  #header .navigation-buttons > button:hover { background: rgb(10 12 17 / 10%); }
  #header .navigation-buttons > a:focus-visible,
  #header .navigation-buttons > button:focus-visible,
  #header .site-name a:focus-visible { outline: 2px solid var(--brand-black); outline-offset: -2px; }
  #navigation { display: none; position: absolute; top: 64px; left: 0; width: 100%; height: calc(100dvh - 64px); padding: 10px 16px 20px; background: var(--brand-yellow); }
  .navigation-window-visible #navigation { display: block; width: 100%; overflow-y: auto; }
  #navigation .navigation-in { height: auto; min-height: 100%; background: var(--brand-yellow); }
  #navigation .navigation-close { display: none; }
  .navigation-in > ul { align-items: stretch; flex-direction: column; }
  .navigation-in > ul > li > a { min-height: 48px; padding: 0 12px; }
  .menu-toggle { display: grid !important; }
  #carousel .item { min-height: 660px; }
  #carousel .item::after { background: linear-gradient(0deg, var(--brand-black) 0, rgb(10 12 17 / 72%) 60%, rgb(10 12 17 / 18%) 100%); }
  #carousel .extended-banner-texts { align-items: flex-start; justify-content: flex-end; padding-bottom: 50px; }
  #carousel .hero-copy { width: min(100%, 650px); }
  .benefitBanner { grid-template-columns: repeat(2, 1fr); }
  .products-block { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .p-detail-inner { grid-template-columns: 1fr; }
  .home-cta { grid-template-columns: 1fr; }
  .home-cta__image { order: -1; min-height: 300px; }
  .theme-category--with-subcategories .subcategories.with-image > li { flex: 0 0 calc((100% - 24px) / 3); }
  .ordering-process .cart-table { display: block; overflow-x: auto; }
}

@media (max-width: 620px) {
  .container,
  .index-content-wrapper,
  .type-category .content,
  .p-detail-inner,
  .p-detail-tabs-wrapper,
  .breadcrumbs { width: min(100% - 24px, var(--brand-width)); }
  .brand-contact-bar .container { min-height: 36px; justify-content: center; }
  .brand-contact-bar .top-navigation-contacts { justify-content: center; gap: 10px 16px; padding-block: 7px; }
  .brand-contact-bar .project-email,
  .brand-contact-bar .project-phone { font-size: 13px; }
  .type-product .breadcrumbs { min-height: 46px; gap: 8px; font-size: 14px; }
  .type-product .breadcrumbs > span + span::before { margin-right: 8px; }
  #header .site-name { flex-basis: 145px; }
  #header .site-name img { max-width: 100%; }
  .ordering-process #header { position: relative; }
  .ordering-process #header .navigation-wrapper { min-height: 64px; }
  .ordering-process #header .site-name { display: block !important; }
  #carousel .item { min-height: 630px; }
  #carousel .item > img,
  #carousel .item > a > img { object-position: 42% center; }
  #carousel .brand-hero { background-position: 42% center; }
  #carousel h1 { font-size: 48px; }
  .benefitBanner { grid-template-columns: 1fr 1fr; gap: 8px; }
  .benefitBanner__item { min-height: 160px; padding: 18px 10px; }
  .benefitBanner__title { font-size: 17px; }
  .products-block { grid-template-columns: 1fr; }
  .products-block .name { min-height: auto; }
  .category-header { align-items: stretch; flex-direction: column; }
  .brand-page-title { min-height: 430px; }
  .brand-page-title h1 { font-size: 50px; }
  .theme-category--with-subcategories .brand-page-title {
    min-height: 0;
    padding: 38px 12px 48px;
    background:
      linear-gradient(rgb(10 12 17 / 82%), rgb(10 12 17 / 94%)),
      var(--brand-category-image);
    background-position: 46% center;
    background-size: cover;
  }
  .theme-category--with-subcategories .brand-page-title .breadcrumbs { margin-bottom: 14px; }
  .theme-category--with-subcategories .brand-page-title h1 { margin-bottom: 26px; font-size: 46px; }
  .theme-category--with-subcategories .subcategories.with-image { gap: 8px; }
  .theme-category--with-subcategories .subcategories.with-image > li { flex: 0 0 calc((100% - 8px) / 2); }
  .theme-category--with-subcategories .subcategories.with-image .text { min-height: 66px; padding: 10px 7px; font-size: 14px; }
  #filters { padding: 16px; }
  #filters .filter-section { padding: 13px 14px; }
  .theme-category--leaf .brand-page-title { min-height: 310px; }
  .p-thumbnails { grid-template-columns: repeat(5, 1fr); }
  .p-data-wrapper h1 { font-size: 40px; }
  .p-to-cart-block { align-items: stretch; flex-direction: column; }
  .quantity { width: 100%; height: 48px; }
  .shp-tabs { width: 100%; overflow-x: auto; padding: 0 12px; scrollbar-width: thin; }
  .shp-tabs a { min-height: 54px; padding: 13px 16px; font-size: 14px; white-space: nowrap; }
  .tab-content { width: min(100% - 24px, 1200px); padding-top: 38px; }
  .description-inner { font-size: 16px; }
  .description-inner h3 { margin-top: 36px; }
  .description-inner table { display: table; font-size: 14px; }
  .description-inner th,
  .description-inner td { padding: 11px 10px; }
  .related-file { align-items: flex-start; flex-direction: column; }
  #footer .subscribe-form fieldset,
  #footer .footer-bottom,
  .ordering-process .next-step { align-items: stretch; flex-direction: column; }
  .ordering-process .cart-header { font-size: 13px; }
  .ordering-process .cart-header .step { min-height: 54px; padding: 8px; }
  .ordering-process .cart-table,
  .ordering-process .cart-table tbody { display: block; overflow: visible; }
  .ordering-process .cart-table tr:not(.related) {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 10px 14px;
  }
  .ordering-process .cart-table tr:not(.related) > td {
    width: auto !important;
    display: block;
    padding: 0;
    border: 0;
  }
  .ordering-process .cart-p-image { grid-row: 1 / 4; }
  .ordering-process .cart-p-image img { width: 90px; height: 90px; object-fit: cover; }
  .ordering-process .p-name,
  .ordering-process .p-availability,
  .ordering-process .p-quantity,
  .ordering-process .p-price,
  .ordering-process .p-total { grid-column: 2; }
  .ordering-process .p-label { display: block; margin-bottom: 4px; color: #8793a1; font-size: 12px; }
  .ordering-process .cart-inner { padding: 18px; }
  .ordering-process .cart-empty .cart-heading { margin-bottom: 26px; font-size: 34px; line-height: 1.12; }
  .ordering-process .cart-empty .cart-row,
  .ordering-process .cart-empty .empty-cart-boxes { grid-template-columns: 1fr; gap: 24px; }
  .ordering-process .cart-empty .cart-content,
  .ordering-process .cart-empty .box { margin: 0; }
  .ordering-process .cart-empty .contact-box { min-height: 0; }
  .footer-rows { grid-template-columns: 1fr; padding-block: 50px; text-align: center; }
  #footer nav { align-items: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
