:root {
  --wm-bg: #ffffff;
  --wm-surface: #ffffff;
  --wm-surface-alt: #f7f7f7;
  --wm-text: #1b1b1b;
  --wm-muted: #707070;
  --wm-primary: #a37746;
  --wm-primary-strong: #8e6334;
  --wm-on-primary: #ffffff;
  --wm-border: #d9d9d9;
  --wm-border-strong: #bfbfbf;
  --wm-radius-sm: 0;
  --wm-radius-md: 0;
  --wm-radius-lg: 0;
  --wm-radius-button: 999px;
  --wm-space-xs: 0.35rem;
  --wm-space-sm: 0.65rem;
  --wm-space-md: 1rem;
  --wm-space-lg: 1.4rem;
  --wm-space-xl: 2rem;
  --wm-space-2xl: 2.8rem;
  --wm-container: 1280px;
	--wm-font-head: 'Geologica', 'Segoe UI', sans-serif;
	--wm-font-body: 'Geologica', 'Segoe UI', sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--wm-font-body);
  color: var(--wm-text);
  background: var(--wm-bg);
  line-height: 1.45;
}

.ws-sharp-corners *,
.ws-sharp-corners *::before,
.ws-sharp-corners *::after {
  border-radius: 0 !important;
}

a {
  color: var(--wm-text);
  text-decoration: none;
}

a:hover {
  color: var(--wm-primary-strong);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--wm-font-head);
  line-height: 1.18;
  margin: 0 0 0.45rem;
  color: #111;
}

h1 {
  font-size: clamp(1.7rem, 2.6vw, 2.7rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.25rem, 1.9vw, 2rem);
  font-weight: 700;
}

h3,
h4 {
  font-size: 1.05rem;
  font-weight: 700;
}

p {
  margin: 0 0 0.7rem;
  color: var(--wm-muted);
}

.ws-main {
  min-height: 72vh;
}

.woocommerce-cart .ws-main,
.woocommerce-checkout .ws-main,
.woocommerce-account .ws-main,
.page-template-page-b2b-request .ws-main,
.page-template-page-b2b-request-php .ws-main {
  padding-top: 1.5rem;
  padding-bottom: 2rem;
}

.woocommerce-cart .ws-main .ws-container > article > h1,
.woocommerce-checkout .ws-main .ws-container > article > h1,
.woocommerce-account .ws-main .ws-container > article > h1,
.page-template-page-b2b-request .ws-main .ws-container > article > h1,
.page-template-page-b2b-request-php .ws-main .ws-container > article > h1 {
  margin-bottom: 0.8rem;
}

.ws-hero--b2b {
  padding-top: 1.5rem;
  padding-bottom: 1rem;
}

.ws-b2b-page {
  padding-bottom: 2rem;
}

.ws-container {
  width: min(var(--wm-container), calc(100% - 2rem));
  margin: 0 auto;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 760px) {
  .woocommerce-cart .ws-main,
  .woocommerce-checkout .ws-main,
  .woocommerce-account .ws-main,
  .page-template-page-b2b-request .ws-main,
  .page-template-page-b2b-request-php .ws-main {
    padding-top: 1rem;
    padding-bottom: 1.4rem;
  }

  .ws-hero--b2b {
    padding-top: 1rem;
    padding-bottom: 0.75rem;
  }

  .ws-b2b-page {
    padding-bottom: 1.4rem;
  }
}

button,
.button,
input,
textarea,
select {
  font: inherit;
}

button,
.button,
.ws-account-link,
.ws-cart-toggle,
.ws-lang-switcher a {
  border: 1px solid var(--wm-border);
  padding: 0.48rem 2rem;
  border-radius: var(--wm-radius-button);
  background: #fff;
  color: #111;
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}

.ws-sharp-corners .button,
.ws-sharp-corners a.button,
.ws-sharp-corners button.alt,
.ws-sharp-corners .add_to_cart_button,
.ws-sharp-corners a.add_to_cart_button,
.ws-sharp-corners .added_to_cart,
.ws-sharp-corners a.added_to_cart,
.ws-sharp-corners .checkout-button,
.ws-sharp-corners a.checkout-button,
.ws-sharp-corners .single_add_to_cart_button,
.ws-sharp-corners #place_order,
.ws-sharp-corners .wc-block-cart__submit-button,
.ws-sharp-corners .wc-block-components-checkout-place-order-button,
.ws-sharp-corners .ws-product-slider__nav,
.ws-sharp-corners .ws-product-tabs__tab,
.ws-sharp-corners .ws-topbar__close,
.ws-sharp-corners .ws-footer__social-link,
.ws-sharp-corners .ws-mobile-nav__close,
.ws-sharp-corners .wm-cart-sidebar__close {
  border-radius: var(--wm-radius-button) !important;
}

button:hover,
.button:hover,
.ws-account-link:hover,
.ws-cart-toggle:hover,
.ws-lang-switcher a:hover {
  border-color: var(--wm-primary);
  color: var(--wm-primary-strong);
}

.button.alt,
button.alt {
  background: var(--wm-primary);
  border-color: var(--wm-primary);
  color: var(--wm-on-primary);
}

.button.alt:hover,
button.alt:hover {
  background: var(--wm-primary-strong);
  border-color: var(--wm-primary-strong);
  color: var(--wm-on-primary);
}

.ws-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.67rem;
  font-weight: 700;
  color: var(--wm-primary-strong);
  margin-bottom: 0.45rem;
}

.ws-topbar {
  background: #1f1f1f;
  color: #e8e8e8;
  font-size: 0.74rem;
  border-bottom: 1px solid #333;
}

.ws-topbar[hidden] {
  display: none !important;
}

.ws-topbar__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--wm-space-md);
  padding: 0.35rem 0;
}

.ws-topbar__left {
  min-width: 0;
}

.ws-topbar__message {
  display: block;
  line-height: 1.45;
}

.ws-topbar p,
.ws-topbar span,
.ws-topbar a {
  color: #e6e6e6;
  margin: 0;
}

.ws-topbar__controls {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.ws-topbar__right ul {
  list-style: none;
  display: flex;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
}

.ws-topbar__close {
  width: 1.42rem;
  min-width: 1.42rem;
  height: 1.42rem;
  min-height: 1.42rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #f1f1f1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.ws-topbar__close:hover,
.ws-topbar__close:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.ws-topbar__close-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.96rem;
  height: 0.96rem;
  line-height: 0;
  pointer-events: none;
}

.ws-topbar__close-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.ws-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: #fff;
  border-bottom: 1px solid var(--wm-border);
}

.ws-header-main {
  border-bottom: 0;
}

.ws-header-main__inner {
  display: grid;
  grid-template-columns: auto minmax(320px, 1fr) auto auto;
  align-items: center;
  column-gap: 1.55rem;
  row-gap: 0.75rem;
  padding: 0.8rem 0;
}

.ws-brand a {
  font-size: 1.5rem;
  font-weight: 800;
  color: #111;
  letter-spacing: 0.01em;
}

.ws-brand .custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.ws-brand .custom-logo {
  width: auto;
  max-height: 36px;
  display: block;
}

.ws-product-search {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 640px;
  min-width: 0;
  justify-self: stretch;
}

.ws-product-search input[type='search'] {
  width: 100%;
  min-height: 3rem;
  border: 0;
  padding: 0.76rem 1.25rem 0.76rem 3.15rem;
  border-radius: 999px !important;
  background-color: #F3F3F3;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='11' cy='11' r='6.5' stroke='%23585858' stroke-width='2'/%3E%3Cpath d='M16 16l4 4' stroke='%23585858' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 1rem center;
  background-size: 1.15rem 1.15rem;
  font-size: 0.94rem;
  color: #1b1b1b;
  box-shadow: none;
}

.ws-product-search input[type='search']::placeholder {
  font-size: 0.88rem;
  color: #666;
}

.ws-product-search input[type='search']:focus {
  outline: none;
  box-shadow: inset 0 0 0 2px #111;
  background-color: #F3F3F3;
}

.ws-header__actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  justify-self: end;
  margin-left: auto;
}

.ws-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-width: 2.5rem;
  min-height: 2.2rem;
  height: 2.2rem;
}

.ws-header__actions .ws-header-action {
  border: 0;
  background: transparent;
  padding: 0.03rem 0.08rem 0;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.22rem;
  min-width: 3.85rem;
  min-height: auto;
  height: auto;
  color: #111;
  line-height: 1;
  box-shadow: none;
}

.ws-header__actions .ws-header-action:hover,
.ws-header__actions .ws-header-action:focus-visible {
  border: 0;
  background: transparent;
  color: var(--wm-primary-strong);
  box-shadow: none;
}

.ws-header__actions .ws-header-action .ws-icon-link__icon {
  width: 1.82rem;
  height: 1.82rem;
  position: relative;
}

.ws-header__actions .ws-header-action .ws-icon-link__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.ws-icon-link__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.ws-icon-link__label {
  font-size: 0.68rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  line-height: 1.1;
}

.ws-cart-count {
  position: absolute;
  top: -0.2rem;
  right: -0.38rem;
  min-width: 1.15rem;
  height: 1.15rem;
  padding: 0 0.22rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px !important;
  background: var(--wm-primary);
  color: var(--wm-on-primary);
  font-size: 0.64rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 0 0 2px #fff;
}

.ws-cart-count.is-empty {
  display: none;
}

.ws-lang-switcher {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.25rem;
}

.ws-lang-switcher li {
  display: flex;
}

.ws-lang-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  min-height: 2.2rem;
  height: 2.2rem;
  font-size: 0.8rem;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.ws-lang-switcher li.is-current a {
  background: #111;
  border-color: #111;
  color: #fff;
}

.ws-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  min-height: 2.2rem;
  border: 1px solid var(--wm-border);
  background: #fff;
  color: #111;
}

.ws-nav-toggle:hover {
  border-color: var(--wm-primary);
  color: var(--wm-primary-strong);
}

.ws-nav-toggle__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ws-category-bar {
  background: #fff;
}

.ws-category-bar__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: stretch;
  padding: 0.3rem 0;
  border-top: 1px solid var(--wm-border);
}

.ws-categories-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 0;
  border-right: 0;
  background: transparent;
  color: #6a6a6a;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.68rem 1.2rem;
  transition: color 0.15s ease;
}

.ws-categories-toggle:hover,
.ws-categories-toggle.is-open {
  background: transparent;
  border-color: transparent;
  color: #111;
}

.ws-categories-toggle__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 auto;
}

.ws-categories-toggle__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.ws-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.ws-nav li {
  border-right: 0;
}

.ws-nav a {
  display: inline-flex;
  padding: 0.68rem 1.2rem;
  color: #6a6a6a;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color 0.15s ease;
}

.ws-nav a:hover {
  background: transparent;
  color: #111;
  box-shadow: none;
}

.ws-category-mega {
  border-top: 0;
  background: #fff;
  padding: 1rem 0 1.15rem;
}

.ws-category-mega__slider {
  --ws-slider-gap: 0.95rem;
  --ws-category-mega-visible: 5;
  --ws-slider-progress-position: 0%;
  --ws-slider-progress-size: 24%;
  position: relative;
}

.ws-category-mega__track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  gap: var(--ws-slider-gap);
}

.ws-category-mega__item {
  min-width: 0;
  flex: 0 0 calc((100% - ((var(--ws-category-mega-visible) - 1) * var(--ws-slider-gap))) / var(--ws-category-mega-visible));
  scroll-snap-align: start;
}

.ws-category-mega__card {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(190px, 20vw, 238px);
  padding: 1rem;
  border: 0;
  background-color: #171717;
  background-image:
    linear-gradient(180deg, rgba(10, 10, 10, 0.06) 0%, rgba(10, 10, 10, 0.24) 46%, rgba(10, 10, 10, 0.72) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.14)),
    var(--ws-category-mega-image, none);
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.ws-category-mega__card::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.ws-category-mega__card-label {
  position: relative;
  z-index: 1;
  color: inherit;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.24;
  max-width: 11ch;
}

.ws-category-mega__card:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(17, 17, 17, 0.12);
}

.ws-category-mega__slider .ws-product-slider__nav {
  top: 50%;
  background: rgba(17, 17, 17, 0.92);
}

.ws-category-mega__slider .ws-product-slider__nav--prev {
  left: -0.7rem;
}

.ws-category-mega__slider .ws-product-slider__nav--next {
  right: -0.7rem;
}

.ws-category-mega__slider .ws-product-slider__progress {
  margin-top: 0.95rem;
}

.ws-category-mega__empty {
  margin: 0;
}

.ws-mobile-nav {
  position: fixed;
  top: 0;
  left: -360px;
  width: min(340px, 90vw);
  height: 100vh;
  background: #fff;
  z-index: 101;
  transition: left 0.25s ease;
  box-shadow: 12px 0 28px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}

.ws-mobile-nav.is-open {
  left: 0;
}

.ws-mobile-nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.42);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
  z-index: 100;
}

.ws-mobile-nav__overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.ws-mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem 0.85rem;
  border-bottom: 1px solid var(--wm-border);
}

.ws-mobile-nav__brand {
  display: inline-flex;
  align-items: center;
}

.ws-mobile-nav__brand a {
  font-size: 1.3rem;
  font-weight: 800;
  color: #111;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.ws-mobile-nav__brand .custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.ws-mobile-nav__brand .custom-logo {
  width: auto !important;
  height: 30px !important;
  max-height: none;
  display: block;
}

.ws-mobile-nav__close {
  border: 1px solid var(--wm-border);
  min-width: 2.1rem;
  min-height: 2.1rem;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-size: 1.25rem;
  line-height: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ws-mobile-nav__close-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  line-height: 0;
  pointer-events: none;
}

.ws-mobile-nav__close-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.ws-mobile-nav__menu,
.ws-mobile-nav__utility {
  overflow-y: auto;
  padding: 0.9rem 1rem;
}

.ws-mobile-nav__categories {
  padding: 0.9rem 1rem 0;
}

.ws-mobile-nav__categories-toggle {
  width: 100%;
  border: 1px solid var(--wm-border);
  background: #fff;
  color: #111;
  padding: 0.72rem 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.78rem;
  font-weight: 700;
}

.ws-mobile-nav__categories-toggle.is-open .ws-mobile-nav__categories-icon {
  transform: rotate(180deg);
}

.ws-mobile-nav__categories-icon {
  width: 1rem;
  height: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.18s ease;
}

.ws-mobile-nav__categories-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.ws-mobile-nav__categories-panel {
  border: 1px solid var(--wm-border);
  border-top: 0;
  background: #fff;
  padding: 0.35rem 0.85rem;
}

.ws-mobile-nav__categories-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ws-mobile-nav__categories-list li + li {
  border-top: 1px solid #efefef;
}

.ws-mobile-nav__categories-list a {
  display: block;
  padding: 0.62rem 0.12rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.74rem;
  font-weight: 700;
  color: #1f1f1f;
}

.ws-mobile-nav__categories-empty {
  margin: 0;
  padding: 0.4rem 0;
  font-size: 0.78rem;
  color: #555;
}

.ws-mobile-nav__utility {
  border-top: 0;
  margin-top: 0;
  padding-top: 0;
}

.ws-mobile-nav__languages {
  border-top: 1px solid var(--wm-border);
  margin-top: auto;
  padding: 0.9rem 1rem 0.8rem;
}

.ws-mobile-nav__languages .ws-lang-switcher {
  display: flex;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
}

.ws-mobile-nav__languages .ws-lang-switcher a {
  width: 2.35rem;
  min-height: 2.35rem;
  height: 2.35rem;
  border: 1px solid var(--wm-border);
  background: #fff;
  color: #111;
  font-size: 0.78rem;
}

.ws-mobile-nav__languages .ws-lang-switcher li.is-current a {
  background: #111;
  border-color: #111;
  color: #fff;
}

.ws-mobile-nav__menu ul,
.ws-mobile-nav__utility ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ws-mobile-nav__menu li + li,
.ws-mobile-nav__utility li + li {
  border-top: 1px solid #efefef;
}

.ws-mobile-nav__menu a,
.ws-mobile-nav__utility a {
  display: block;
  padding: 0.62rem 0.12rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.78rem;
  font-weight: 700;
  color: #1f1f1f;
}

.ws-mobile-nav__menu a.is-active,
.ws-mobile-nav__utility a.is-active {
  color: var(--wm-primary-strong);
}

.ws-homepage {
  display: flex;
  flex-direction: column;
  gap: 1.7rem;
  padding-bottom: var(--wm-space-2xl);
  overflow-x: hidden;
}

.ws-home-section {
  padding: 3.1rem 0;
}

.ws-section-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.ws-section-heading a {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--wm-primary-strong);
}

.ws-section-heading p {
  margin: 0;
  font-size: 0.84rem;
}

.ws-section-heading h2 {
  border-left: 0;
  padding-left: 0;
  margin-bottom: 0;
}

.ws-home-hero {
  position: relative;
  padding: 0;
  background: #151515;
  color: #fff;
  overflow: hidden;
}

.ws-home-hero__viewport {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.ws-home-hero__viewport::-webkit-scrollbar {
  display: none;
}

.ws-home-hero__track {
  display: flex;
}

.ws-home-hero__slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  min-height: clamp(560px, 76vh, 760px);
  background: #181818;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  overflow: hidden;
}

.ws-home-hero__slide::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.12) 34%, rgba(0, 0, 0, 0.42) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.34) 0%, rgba(0, 0, 0, 0.12) 44%, rgba(0, 0, 0, 0) 72%);
}

.ws-home-hero__media {
  position: absolute;
  inset: 0;
  background: #181818;
}

.ws-home-hero__picture {
  display: block;
  width: 100%;
  height: 100%;
}

.ws-home-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ws-home-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
}

.ws-home-hero__overlay-inner {
  width: min(var(--wm-container), calc(100% - 2rem));
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.ws-home-hero__content {
  width: min(820px, 72vw);
  margin-left: 0;
  background: transparent;
  padding: clamp(1.6rem, 3vw, 2.8rem) 0 clamp(4.7rem, 8vw, 5.9rem);
  border: 0;
}

.ws-home-hero__content .ws-kicker,
.ws-home-hero__title {
  color: #fff;
}

.ws-home-hero__content .ws-kicker {
  margin: 0 0 0.75rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.79rem;
  letter-spacing: 0.14em;
}

.ws-home-hero__title {
  max-width: none;
  margin: 0;
  font-size: clamp(1.95rem, 3.8vw, 3.45rem);
  font-weight: 800;
  line-height: 0.98;
  text-wrap: balance;
}

.ws-home-hero__actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.35rem;
}

.ws-home-hero__actions .button,
.ws-home-hero__actions button {
  min-height: 2.85rem;
  padding: 0.68rem 1.45rem;
  border-color: var(--wm-primary);
  background: var(--wm-primary);
  color: var(--wm-on-primary);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}

.ws-home-hero__actions .button:hover,
.ws-home-hero__actions .button:focus-visible,
.ws-home-hero__actions button:hover,
.ws-home-hero__actions button:focus-visible {
  border-color: var(--wm-primary-strong);
  background: var(--wm-primary-strong);
  color: var(--wm-on-primary);
}

.ws-home-hero__slide[aria-hidden='true'] .ws-home-hero__actions {
  pointer-events: none;
}

.ws-home-hero__dots {
  position: absolute;
  left: 50%;
  bottom: 1.45rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  transform: translateX(-50%);
}

.ws-home-hero__dot {
  width: 2.8rem;
  height: 0.38rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  box-shadow: none;
}

.ws-home-hero__dot:hover,
.ws-home-hero__dot:focus-visible {
  background: rgba(255, 255, 255, 0.72);
  color: transparent;
}

.ws-home-hero__dot.is-active {
  background: var(--wm-primary);
}

.ws-home-hero__dot.is-active:hover,
.ws-home-hero__dot.is-active:focus-visible {
  background: var(--wm-primary);
}

@media (prefers-reduced-motion: reduce) {
  .ws-home-hero__viewport {
    scroll-behavior: auto;
  }
}

.ws-usp-strip {
  background: #fff;
}

.ws-usp-strip__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(100px, 1fr));
  gap: 0.85rem;
}

.ws-usp-strip__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.34rem;
  padding: 0.75rem 0.42rem;
  text-align: center;
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #2b2b2b;
}

.ws-usp-strip__icon {
  color: var(--wm-primary);
  font-weight: 800;
}

.ws-home-section--product-tabs {
  background: #fff;
}

.ws-home-section--category-tabs {
  padding-top: 1.2rem;
}

.ws-home-section--faq {
  background: #fff;
  padding: 1.45rem 0 3.3rem;
}

.ws-home-faq {
  width: 100%;
}

.ws-home-faq__intro {
  max-width: none;
  margin: 0 0 2rem;
}

.ws-home-faq__intro .ws-section-heading {
  display: block;
  margin-bottom: 0;
}

.ws-home-faq__eyebrow {
  margin: 0 0 0.62rem;
  color: var(--wm-primary);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ws-home-faq__intro .ws-section-heading h2 {
  margin-bottom: 0.6rem;
}

.ws-home-faq__intro .ws-section-heading p {
  max-width: 42rem;
  color: #5b5b5b;
  line-height: 1.7;
}

.ws-home-faq__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.ws-home-faq__column {
  border-top: 0;
}

.ws-home-faq__item {
  border-bottom: 1px solid var(--wm-border);
  transition: border-color 0.18s ease;
}

.ws-home-faq__question {
  list-style: none;
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.9rem;
  padding: 1.08rem 0;
  cursor: pointer;
}

.ws-home-faq__question::-webkit-details-marker {
  display: none;
}

.ws-home-faq__index {
  color: var(--wm-primary);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
}

.ws-home-faq__question-text {
  color: #171717;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.48;
  transition: color 0.18s ease;
}

.ws-home-faq__question::after {
  content: '';
  width: 0.68rem;
  height: 0.68rem;
  border-right: 1.5px solid #222;
  border-bottom: 1.5px solid #222;
  transform: rotate(45deg);
  transition: transform 0.18s ease, margin-top 0.18s ease, opacity 0.18s ease;
  margin-top: -0.18rem;
  opacity: 0.8;
}

.ws-home-faq__item[open] {
  border-bottom-color: #d8cec0;
}

.ws-home-faq__item[open] .ws-home-faq__question::after {
  transform: rotate(-135deg);
  margin-top: 0.18rem;
  opacity: 1;
}

.ws-home-faq__item[open] .ws-home-faq__question-text {
  color: #111;
}

.ws-home-faq__answer {
  padding: 0 1.5rem 1.2rem 2.9rem;
}

.ws-home-faq__answer p {
  margin: 0;
  max-width: 46rem;
  color: #585858;
  font-size: 0.94rem;
  line-height: 1.72;
}

@media (min-width: 960px) {
  .ws-home-faq__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.6rem;
    align-items: start;
  }

  .ws-home-faq__column {
    align-self: start;
  }
}

.ws-product-tabs {
  border: 0;
}

.ws-product-tabs__head {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.ws-product-tabs__tab {
  border: 2px solid transparent;
  border-radius: var(--wm-radius-button) !important;
  background: #efefef;
  color: #111;
  padding: 0.72rem 1.18rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.75rem;
  font-weight: 700;
  transition: border-color 0.15s ease, color 0.15s ease, background-color 0.15s ease;
}

.ws-product-tabs__tab.is-active {
  border-color: #111;
  background: #efefef;
  color: #111;
}

.ws-product-tabs__tab:hover,
.ws-product-tabs__tab:focus-visible {
  border-color: #111;
  background: #efefef;
  color: #111;
}

.ws-product-tabs__tab.is-active:hover,
.ws-product-tabs__tab.is-active:focus-visible {
  border-color: #111;
  background: #efefef;
  color: #111;
}

.ws-product-tabs__panel {
  display: none;
  padding: 1.15rem 0 0;
}

.ws-product-tabs__panel.is-active {
  display: block;
}

.ws-home-section--top-categories {
  padding-top: 0.45rem;
}

.ws-top-categories {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.85rem 1.45rem;
}

.ws-top-category {
  display: grid;
  gap: 0.82rem;
  align-content: start;
  color: #111;
  text-decoration: none;
}

.ws-top-category__media {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f3f3f3;
}

.ws-top-category__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.ws-top-category__name {
  color: #111;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.28;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.14em;
}

.ws-top-category:hover,
.ws-top-category:focus-visible,
.ws-top-category:hover .ws-top-category__name,
.ws-top-category:focus-visible .ws-top-category__name {
  color: #111;
}

.ws-product-slider {
  --ws-slider-gap: 1.1rem;
  --ws-slider-visible: 5;
  --ws-slider-progress-position: 0%;
  --ws-slider-progress-size: 24%;
  position: relative;
}

.ws-product-slider__viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  touch-action: auto;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

.ws-product-slider__viewport::-webkit-scrollbar {
  display: none;
}

.ws-product-slider__viewport.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  user-select: none;
}

.ws-product-slider .products.ws-home-products--tabs.ws-product-slider__track {
  display: flex;
  flex-wrap: nowrap;
  grid-template-columns: none;
  gap: var(--ws-slider-gap);
  margin: 0;
  padding: 0;
}

.ws-product-slider .products.ws-home-products--tabs.ws-product-slider__track li.product {
  flex: 0 0 calc((100% - ((var(--ws-slider-visible) - 1) * var(--ws-slider-gap))) / var(--ws-slider-visible));
  width: auto;
  scroll-snap-align: start;
}

.ws-product-slider__progress {
  position: relative;
  width: 100%;
  height: 2px;
  margin-top: 1.35rem;
  background: rgba(17, 17, 17, 0.14);
  overflow: hidden;
  pointer-events: none;
}

.ws-product-slider__progress-thumb {
  position: absolute;
  top: 0;
  left: var(--ws-slider-progress-position);
  height: 100%;
  width: var(--ws-slider-progress-size);
  background: #111;
}

.ws-product-slider__nav {
  position: absolute;
  top: clamp(5rem, 30%, 8.2rem);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  padding: 0;
  border: 0;
  background: #111;
  color: #fff;
  line-height: 0;
  box-shadow: 0 12px 26px rgba(17, 17, 17, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%);
  transition: opacity 0.18s ease, transform 0.18s ease, background-color 0.18s ease;
}

.ws-product-slider__nav--prev {
  left: -0.45rem;
}

.ws-product-slider__nav--next {
  right: -0.45rem;
}

.ws-product-slider:hover .ws-product-slider__nav,
.ws-product-slider:focus-within .ws-product-slider__nav {
  opacity: 1;
  pointer-events: auto;
}

.ws-product-slider:not(.is-scrollable) .ws-product-slider__nav {
  display: none;
}

.ws-product-slider:not(.is-scrollable) .ws-product-slider__progress {
  display: none;
}

.ws-product-slider:hover .ws-product-slider__nav:disabled,
.ws-product-slider:focus-within .ws-product-slider__nav:disabled {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  box-shadow: none;
}

.ws-product-slider__nav:hover:not(:disabled),
.ws-product-slider__nav:focus-visible:not(:disabled) {
  background: #111;
  color: #fff;
  transform: translateY(-50%);
}

.ws-product-slider__nav-icon,
.ws-product-slider__nav-icon svg {
  display: block;
  width: 1.16rem;
  height: 1.16rem;
}

@media (hover: none), (pointer: coarse) {
  .ws-product-slider__nav {
    display: none;
  }
}

.ws-home-products--tabs {
  margin: 0;
}

.products.ws-home-products,
.products.ws-home-products--tabs,
.products.ws-home-products--compact {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.products.ws-home-products li.product,
.products.ws-home-products--tabs li.product,
.products.ws-home-products--compact li.product {
  float: none;
  width: auto;
  margin: 0;
}

.ws-home-section__cta {
  margin: 1.8rem 0 0;
  text-align: right;
}

.button.ws-see-all-button {
  min-width: 0;
  justify-content: center;
  padding-inline: 1.5rem;
  background: #fff;
  border-color: #111;
  border-width: 2px;
  color: #111;
  font-weight: 700;
}

.button.ws-see-all-button:hover {
  background: #f5f5f5;
  border-color: #111;
  color: #111;
}

.ws-home-section--promo-banners {
  padding-top: 0;
}

.ws-promo-banners {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 0.85rem;
}

.ws-promo-banner {
  position: relative;
  aspect-ratio: 1 / 1;
  min-height: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 1.35rem;
  background-color: #2a2a2a;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.ws-promo-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 15, 0.14);
  transition: background-color 0.15s ease;
}

.ws-promo-banner:hover::before {
  background: rgba(15, 15, 15, 0.08);
}

.ws-promo-banner__title {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  max-width: 78%;
  min-height: 0;
  border-left: 2px solid var(--wm-primary);
  padding: 0.32rem 0 0.32rem 0.7rem;
  color: #fff;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.ws-home-section--news {
  background: #fff;
}

.ws-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 0.8rem;
}

.ws-news-card {
  background: transparent;
}

.ws-news-card__image {
  display: block;
}

.ws-news-card__image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.ws-news-card__body {
  padding: 0.8rem;
  display: grid;
  gap: 0.42rem;
}

.ws-news-card__meta {
  margin: 0;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ws-home-section--newsletter {
  padding: 0;
}

.ws-newsletter {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(1.6rem, 3vw, 2.45rem) clamp(1.35rem, 3.4vw, 2.6rem);
  background-color: #171717;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(300px, 0.95fr);
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2rem);
}

.ws-newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(15, 15, 15, 0.66) 0%, rgba(15, 15, 15, 0.44) 44%, rgba(15, 15, 15, 0.24) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.18) 100%);
}

.ws-newsletter > * {
  position: relative;
  z-index: 1;
}

.ws-newsletter__copy {
  display: grid;
  gap: 0.55rem;
  max-width: 35rem;
}

.ws-newsletter .ws-kicker {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ws-newsletter__copy h2 {
  margin: 0;
  max-width: 17ch;
  color: #fff;
  font-size: clamp(1.6rem, 3.2vw, 3rem);
  font-weight: 700;
  line-height: 1.04;
}

.ws-newsletter__summary {
  margin: 0;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.96rem;
  line-height: 1.58;
}

.ws-newsletter__form {
  display: grid;
  gap: 0.7rem;
  width: 100%;
  max-width: 34rem;
}

.ws-newsletter__fields {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.65rem;
  align-items: center;
}

.ws-newsletter__form input {
  width: 100%;
  min-width: 0;
  min-height: 3.2rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px !important;
  padding: 0.82rem 1.15rem;
  background: #f6f4ef;
  color: #111;
  font-size: 0.96rem;
  box-shadow: none;
}

.ws-newsletter__form input::placeholder {
  color: #7d776f;
}

.ws-newsletter__form input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.7);
  background: #fff;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.12);
}

.ws-newsletter__form .button {
  min-height: 3.2rem;
  padding: 0.78rem 1.45rem;
  border: 1px solid var(--wm-primary);
  border-radius: 999px !important;
  background: var(--wm-primary);
  color: var(--wm-on-primary);
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.ws-newsletter__form .button:hover,
.ws-newsletter__form .button:focus {
  border-color: var(--wm-primary-strong);
  background: var(--wm-primary-strong);
  color: var(--wm-on-primary);
}

.ws-newsletter__social {
  display: flex;
  justify-content: flex-start;
  margin-top: 0.1rem;
}

.ws-newsletter__social-links {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.ws-newsletter__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.ws-newsletter__social-link svg {
  display: block;
  width: 1.14rem;
  height: 1.14rem;
}

.ws-newsletter__social-link:hover,
.ws-newsletter__social-link:focus-visible {
  transform: translateY(-2px);
  border-color: var(--wm-primary);
  background: var(--wm-primary);
  color: var(--wm-on-primary);
}

.ws-contact-page {
  padding: clamp(4.5rem, 11vw, 8rem) 0 0;
  overflow-x: clip;
}

.ws-contact-page__intro {
  display: grid;
  justify-items: center;
  gap: 0.7rem;
  text-align: center;
  margin-bottom: clamp(2.8rem, 6vw, 4.6rem);
}

.ws-contact-page__brand {
  margin: 0;
  color: #111;
  font-family: var(--wm-font-head);
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
}

.ws-contact-page__title {
  margin: 0;
  font-size: clamp(1.45rem, 2.5vw, 2.3rem);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.ws-contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.4rem, 3vw, 2.2rem);
  align-items: start;
}

.ws-contact-grid__item {
  display: grid;
  gap: 0.65rem;
}

.ws-contact-grid__label {
  margin: 0;
  color: #4a4a4a;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ws-contact-grid__value {
  border-top: 1px solid #d9d9d9;
  padding-top: 0.65rem;
}

.ws-contact-grid__value p {
  margin: 0;
  color: #7a7a7a;
  font-size: 0.98rem;
  line-height: 1.7;
}

.ws-contact-grid__value a {
  color: inherit;
}

.ws-contact-grid__value a:hover {
  color: var(--wm-primary-strong);
}

.ws-contact-grid__social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
}

.ws-contact-map {
  width: 100%;
  margin: clamp(2.4rem, 5vw, 4rem) 0 0;
  background: #f4f4f4;
}

.ws-contact-map__frame {
  display: block;
  width: 100%;
  height: clamp(360px, 42vw, 560px);
  border: 0;
}

.ws-footer {
  background: #1d1d1d;
  color: #f2f2f2;
  padding-top: 2.4rem;
  border-top: 1px solid #383838;
}

.ws-footer p,
.ws-footer li,
.ws-footer a,
.ws-footer h3,
.ws-footer h4 {
  color: #f2f2f2;
}

.ws-footer h3,
.ws-footer h4 {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.82rem;
  margin: 0;
}

.ws-footer__top {
  display: grid;
  grid-template-columns: minmax(240px, 1.1fr) minmax(360px, 1.6fr);
  gap: 2.2rem;
  align-items: start;
}

.ws-footer__brand {
  display: grid;
  gap: 0.85rem;
  align-content: start;
}

.ws-footer__brand-logo .custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.ws-footer__brand-logo .custom-logo {
  display: block;
  width: auto;
  max-height: 54px;
}

.ws-footer__brand-logo a {
  font-size: 1.32rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.ws-footer__brand-copy {
  margin: 0;
  max-width: 36ch;
  color: #d7d7d7;
  font-size: 0.84rem;
  line-height: 1.55;
}

.ws-footer__social {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.ws-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid #4a4a4a;
  border-radius: 999px;
  color: #f2f2f2;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.ws-footer__social-link svg {
  width: 1.2rem;
  height: 1.2rem;
  display: block;
}

.ws-footer__social-link:hover {
  border-color: var(--wm-primary);
  color: #ffffff;
}

.ws-footer__links {
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 1fr));
  gap: 1.3rem;
}

.ws-footer__column {
  display: grid;
  gap: 0.62rem;
}

.ws-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.42rem;
}

.ws-footer ul li {
  line-height: 1.4;
}

.ws-footer a:hover {
  color: #ffffff;
}

.ws-footer__bottom {
  border-top: 1px solid #353535;
  margin-top: 1.7rem;
  padding: 1rem 0 1.2rem;
  text-align: center;
}

.ws-footer__bottom p {
  margin: 0;
  font-size: 0.9rem;
}

.ws-footer__bottom a {
  color: var(--wm-primary);
  text-decoration: underline;
  text-underline-offset: 0.11em;
}

.ws-footer__bottom a:hover {
  color: var(--wm-primary);
  text-decoration: underline;
}

.wm-b2b-request-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: var(--wm-space-md);
}

.wm-b2b-request-form p {
  margin: 0;
  display: grid;
  gap: 0.3rem;
}

.wm-b2b-request-form p:nth-last-child(-n + 2) {
  grid-column: 1 / -1;
}

.wm-hp-field {
  display: none !important;
}

.wm-b2b-request-form input,
.wm-b2b-request-form textarea,
.wm-b2b-request-form select,
.wm-catalog-filters input,
.wm-catalog-filters select,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.select2-container--default .select2-selection--single,
.woocommerce .quantity .qty,
.woocommerce input,
.woocommerce select,
.woocommerce textarea {
  width: 100%;
  border: 1px solid var(--wm-border);
  padding: 0.58rem 0.72rem;
  background: #fff;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border: 1px solid var(--wm-border);
  background: #fff;
  color: #222;
}

.woocommerce-checkout #ship-to-different-address {
  display: block;
  margin: 1.15rem 0;
}

.woocommerce-checkout #ship-to-different-address .woocommerce-form__label-for-checkbox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  width: 100%;
}

.woocommerce-checkout #ship-to-different-address .woocommerce-form__label-for-checkbox .input-checkbox {
  display: inline-block !important;
  order: 2;
  width: auto;
  min-width: 1rem;
  height: 1rem;
  margin: 0;
  flex: 0 0 auto;
  accent-color: #111;
}

.woocommerce-checkout #ship-to-different-address .woocommerce-form__label-for-checkbox span {
  order: 1;
  display: block;
  flex: 1 1 auto;
  padding-left: 0;
  text-align: left;
}

.woocommerce-checkout #ship-to-different-address .woocommerce-form__label-for-checkbox span::before,
.woocommerce-checkout #ship-to-different-address .woocommerce-form__label-for-checkbox span::after {
  display: none;
  content: none;
}

body.ws-nav-lock {
  overflow: hidden;
}

@media (max-width: 1180px) {
  .ws-topbar__right {
    display: none;
  }

  .ws-topbar__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.75rem;
  }

  .ws-topbar__message {
    font-size: 0.72rem;
  }

  .ws-header-main__inner {
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
      'brand actions toggle'
      'search search search';
    column-gap: 0.9rem;
    row-gap: 0.55rem;
  }

  .ws-brand {
    grid-area: brand;
  }

  .ws-product-search {
    grid-area: search;
    max-width: none;
    min-width: 0;
  }

  .ws-header__actions {
    grid-area: actions;
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 0;
  }

  .ws-nav-toggle {
    display: inline-flex;
    grid-area: toggle;
    border: 0;
    background: transparent;
    color: #111;
    box-shadow: none;
    width: auto;
    min-width: 0;
    min-height: 0;
    height: auto;
    padding: 0 0.34rem;
  }

  .ws-nav-toggle:hover,
  .ws-nav-toggle:focus-visible {
    background: transparent;
    color: var(--wm-primary-strong);
    box-shadow: none;
  }

  .ws-nav-toggle__icon {
    width: 1.7rem;
    height: 1.7rem;
  }

  .ws-nav-toggle__icon svg {
    width: 100%;
    height: 100%;
    display: block;
  }

  .ws-header__actions > .ws-lang-switcher,
  .ws-header__actions .ws-header-action--catalog,
  .ws-category-bar {
    display: none;
  }

  .ws-header__actions .ws-header-action {
    width: auto;
    min-width: 0;
    height: auto;
    min-height: 0;
    padding: 0;
    gap: 0;
  }

  .ws-header__actions .ws-header-action .ws-icon-link__icon {
    width: 1.74rem;
    height: 1.74rem;
  }

  .ws-header__actions .ws-header-action .ws-icon-link__label {
    display: none;
  }

  .ws-header__actions .ws-header-action .ws-cart-count {
    top: -0.22rem;
    right: -0.24rem;
    min-width: 1.02rem;
    height: 1.02rem;
    font-size: 0.56rem;
  }

  .ws-home-hero__slide {
    min-height: clamp(520px, 68vh, 660px);
  }

  .ws-home-hero__content {
    width: min(740px, 82vw);
  }

  .ws-home-hero__title {
    font-size: clamp(2rem, 4vw, 3.45rem);
  }

  .ws-usp-strip__list {
    grid-template-columns: repeat(3, minmax(120px, 1fr));
  }

  .ws-promo-banners {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }

  .ws-top-categories {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .ws-news-grid {
    grid-template-columns: repeat(2, minmax(150px, 1fr));
  }

  .ws-contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ws-footer__top {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .ws-footer__links {
    grid-template-columns: repeat(3, minmax(130px, 1fr));
  }

  .products.ws-home-products,
  .products.ws-home-products--tabs,
  .products.ws-home-products--compact {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .ws-product-slider {
    --ws-slider-visible: 4;
  }

  .ws-newsletter {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .ws-newsletter__social {
    justify-content: flex-start;
  }
}

@media (max-width: 980px) {
  .ws-top-categories {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .ws-topbar {
    font-size: 0.63rem;
  }

  .ws-topbar__inner {
    gap: 0.55rem;
    padding: 0.28rem 0;
  }

  .ws-topbar__message {
    font-size: 0.61rem;
    line-height: 1.28;
  }

  .ws-topbar__close {
    width: 1.3rem;
    min-width: 1.3rem;
    height: 1.3rem;
    min-height: 1.3rem;
  }

  .ws-header-main__inner {
    grid-template-columns: 1fr auto auto;
    grid-template-areas:
      'brand actions toggle'
      'search search search';
    gap: 0.5rem;
  }

  .ws-header__actions {
    grid-area: actions;
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-left: 0;
  }

  .ws-product-search {
    min-width: 0;
  }

  .ws-brand .custom-logo {
    width: auto !important;
    height: 28px !important;
    max-height: none;
  }

  .ws-header__actions .ws-icon-link,
  .ws-nav-toggle {
    width: auto;
    min-width: 0;
    height: auto;
    min-height: 0;
    padding: 0;
  }

  .ws-header__actions .ws-header-action {
    width: auto;
    min-width: 0;
    height: auto;
    min-height: 0;
    padding: 0;
    gap: 0;
  }

  .ws-header__actions .ws-header-action .ws-icon-link__icon {
    width: 1.72rem;
    height: 1.72rem;
  }

  .ws-header__actions .ws-header-action .ws-icon-link__label {
    display: none;
  }

  .ws-header__actions .ws-header-action .ws-cart-count {
    top: -0.22rem;
    right: -0.24rem;
    min-width: 1.02rem;
    height: 1.02rem;
    font-size: 0.56rem;
  }

  .ws-nav-toggle {
    border: 0;
    background: transparent;
    color: #111;
    box-shadow: none;
    padding: 0 0.34rem;
  }

  .ws-nav-toggle:hover,
  .ws-nav-toggle:focus-visible {
    border: 0;
    background: transparent;
    color: var(--wm-primary-strong);
    box-shadow: none;
  }

  .ws-nav-toggle__icon {
    width: 1.7rem;
    height: 1.7rem;
  }

  .ws-nav-toggle__icon svg {
    width: 100%;
    height: 100%;
    display: block;
  }

  .ws-category-bar {
    display: none;
  }

  .ws-mobile-nav__languages {
    padding: 0.8rem 1rem 0.7rem;
  }

  .ws-home-hero__slide {
    min-height: 500px;
  }

  .ws-home-hero__overlay-inner {
    align-items: flex-end;
  }

  .ws-home-hero__content {
    width: min(100%, 39rem);
    padding: 1.25rem 0 4.2rem;
  }

  .ws-home-hero__title {
    max-width: none;
    font-size: clamp(1.75rem, 7.4vw, 2.55rem);
  }

  .ws-home-hero__content .ws-kicker {
    margin-bottom: 0.6rem;
    font-size: 0.72rem;
  }

  .ws-home-hero__actions {
    margin-top: 1.05rem;
  }

  .ws-home-hero__actions .button,
  .ws-home-hero__actions button {
    width: auto;
    min-height: 2.7rem;
    padding-inline: 1.2rem;
    font-size: 0.88rem;
  }

  .ws-home-hero__dots {
    bottom: 1.05rem;
    gap: 0.42rem;
  }

  .ws-home-hero__dot {
    width: 2.1rem;
  }

  .ws-top-categories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.35rem 1rem;
  }

  .ws-top-category {
    gap: 0.62rem;
  }

  .ws-top-category__name {
    font-size: 0.94rem;
  }

  .ws-usp-strip__list {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }

  .ws-product-tabs__head {
    overflow-x: auto;
    white-space: nowrap;
    flex-wrap: nowrap;
  }

  .ws-product-tabs__tab {
    flex: 0 0 auto;
  }

  .ws-product-tabs__tab:hover {
    border-color: #111;
    background: #efefef;
    color: #111;
  }

  .ws-product-slider {
    --ws-slider-gap: 0.9rem;
    --ws-slider-visible: 2;
  }

  .ws-product-slider__progress {
    margin-top: 1rem;
  }

  .ws-product-slider__nav {
    display: none;
  }

  .ws-home-section--faq {
    padding: 0.9rem 0 2.45rem;
  }

  .ws-home-faq__intro {
    margin-bottom: 1.4rem;
  }

  .ws-home-faq__question {
    grid-template-columns: 1.7rem minmax(0, 1fr) auto;
    gap: 0.68rem;
    padding: 0.92rem 0;
  }

  .ws-home-faq__question-text {
    font-size: 0.9rem;
    line-height: 1.46;
  }

  .ws-home-faq__answer {
    padding: 0 0 0.95rem 2.38rem;
  }

  .ws-home-faq__answer p {
    font-size: 0.88rem;
    line-height: 1.65;
  }

  .ws-promo-banners,
  .ws-news-grid,
  .wm-b2b-request-form {
    grid-template-columns: 1fr;
  }

  .ws-contact-page {
    padding: 3.2rem 0 0;
  }

  .ws-contact-page__intro {
    margin-bottom: 2.2rem;
  }

  .ws-contact-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .ws-contact-grid__value p {
    line-height: 1.55;
  }

  .ws-contact-map {
    margin-top: 2rem;
  }

  .ws-contact-map__frame {
    height: 340px;
  }

  .ws-footer__top {
    gap: 2.4rem;
  }

  .ws-footer__links {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .ws-footer__brand-copy {
    max-width: none;
  }

  .ws-footer {
    padding-top: 2rem;
  }

  .ws-promo-banner {
    aspect-ratio: 1 / 1;
    min-height: 0;
    padding: 1rem;
  }

  .ws-promo-banner__title {
    max-width: 90%;
    min-height: 0;
    padding: 0.28rem 0 0.28rem 0.65rem;
    font-size: 1.15rem;
  }

  .ws-newsletter {
    padding: 1.25rem;
    gap: 1rem;
  }

  .ws-newsletter__copy h2 {
    max-width: none;
    font-size: clamp(1.45rem, 7vw, 2.1rem);
  }

  .ws-newsletter__summary {
    font-size: 0.9rem;
  }

  .ws-newsletter__fields {
    grid-template-columns: 1fr;
  }

  .ws-newsletter__form .button {
    width: 100%;
  }

  .ws-newsletter__social-links {
    flex-wrap: wrap;
  }

  .ws-homepage {
    gap: 1.15rem;
  }

  .products.ws-home-products,
  .products.ws-home-products--tabs,
  .products.ws-home-products--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
  }

  .ws-home-section {
    padding: 2.15rem 0;
  }

  .ws-nav-toggle {
    display: inline-flex;
  }
}
