/**
 * WOLVER CZ / SK — global layer for Joomla 5 + YOOtheme Pro 5
 * Scope: .wolver-* only, with a few deliberately small global accessibility rules.
 * Version: 1.0.4
 */

:root {
  --wolver-red: #f40004;
  --wolver-red-dark: #c90004;
  --wolver-red-soft: #fff0f1;
  --wolver-ink: #101216;
  --wolver-ink-2: #20242b;
  --wolver-steel: #343942;
  --wolver-muted: #6d727c;
  --wolver-line: rgba(16, 18, 22, .12);
  --wolver-line-light: rgba(255, 255, 255, .18);
  --wolver-paper: #f4f5f7;
  --wolver-white: #fff;
  --wolver-success: #177245;
  --wolver-radius-sm: 14px;
  --wolver-radius: 24px;
  --wolver-radius-lg: 36px;
  --wolver-shadow-sm: 0 12px 34px rgba(16, 18, 22, .08);
  --wolver-shadow: 0 24px 70px rgba(16, 18, 22, .14);
  --wolver-shadow-dark: 0 32px 90px rgba(0, 0, 0, .28);
  --wolver-ease: cubic-bezier(.2, .72, .2, 1);
  --wolver-container: 1320px;
  --wolver-font-body: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
}

::selection {
  background: var(--wolver-red);
  color: var(--wolver-white);
}

[id] {
  scroll-margin-top: 96px;
}

.wolver-page,
.wolver-catalog,
.wolver-product,
.wolver-dealers {
  color: var(--wolver-ink);
}

.wolver-catalog,
.wolver-product {
  font-family: var(--wolver-font-body);
}

.wolver-page *,
.wolver-catalog *,
.wolver-product *,
.wolver-dealers * {
  box-sizing: border-box;
}

.wolver-page img,
.wolver-catalog img,
.wolver-product img {
  display: block;
  max-width: 100%;
}

.wolver-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--wolver-red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.wolver-eyebrow::before {
  width: 28px;
  height: 2px;
  background: currentColor;
  content: "";
}

.wolver-eyebrow--light {
  color: var(--wolver-white);
}

.wolver-lead {
  max-width: 760px;
  color: var(--wolver-muted);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.7;
}

.wolver-lead--light {
  color: rgba(255, 255, 255, .78);
}

.wolver-glass {
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .10);
  box-shadow: 0 20px 70px rgba(0, 0, 0, .16);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.wolver-card {
  overflow: hidden;
  border: 1px solid var(--wolver-line);
  border-radius: var(--wolver-radius);
  background: var(--wolver-white);
  box-shadow: var(--wolver-shadow-sm);
}

.wolver-card--dark {
  border-color: rgba(255, 255, 255, .14);
  background: var(--wolver-ink);
  color: var(--wolver-white);
  box-shadow: var(--wolver-shadow-dark);
}

.wolver-card-hover {
  transition:
    transform .35s var(--wolver-ease),
    border-color .35s ease,
    box-shadow .35s var(--wolver-ease);
}

.wolver-card-hover:hover {
  border-color: rgba(244, 0, 4, .34);
  box-shadow: 0 28px 72px rgba(16, 18, 22, .16);
  transform: translateY(-6px);
}

.wolver-button,
.wolver-filter-toggle,
.wolver-more,
.wolver-map-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .055em;
  line-height: 1.2;
  padding: 13px 22px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background-color .2s ease,
    border-color .2s ease,
    color .2s ease,
    transform .2s var(--wolver-ease),
    box-shadow .2s ease;
}

.wolver-button:hover,
.wolver-button:focus-visible,
.wolver-filter-toggle:hover,
.wolver-filter-toggle:focus-visible,
.wolver-more:hover,
.wolver-more:focus-visible,
.wolver-map-button:hover,
.wolver-map-button:focus-visible {
  text-decoration: none;
  transform: translateY(-2px);
}

.wolver-button--primary,
.wolver-filter-toggle,
.wolver-more {
  background: var(--wolver-red);
  box-shadow: 0 12px 30px rgba(244, 0, 4, .24);
  color: var(--wolver-white);
}

.wolver-button--primary:hover,
.wolver-button--primary:focus-visible,
.wolver-filter-toggle:hover,
.wolver-filter-toggle:focus-visible,
.wolver-more:hover,
.wolver-more:focus-visible {
  background: var(--wolver-red-dark);
  color: var(--wolver-white);
}

.wolver-button--dark {
  background: var(--wolver-ink);
  color: var(--wolver-white);
}

.wolver-button--dark:hover,
.wolver-button--dark:focus-visible {
  background: var(--wolver-steel);
  color: var(--wolver-white);
}

.wolver-button--ghost {
  border-color: var(--wolver-line);
  background: rgba(255, 255, 255, .86);
  color: var(--wolver-ink);
}

.wolver-button--ghost:hover,
.wolver-button--ghost:focus-visible {
  border-color: var(--wolver-red);
  background: var(--wolver-white);
  color: var(--wolver-red);
}

.wolver-button--soft {
  border-color: rgba(244, 0, 4, .12);
  background: var(--wolver-red-soft);
  color: var(--wolver-red-dark);
}

.wolver-button--soft:hover,
.wolver-button--soft:focus-visible {
  border-color: rgba(244, 0, 4, .26);
  background: #ffe2e4;
  color: var(--wolver-red-dark);
}

.wolver-button--small {
  min-height: 40px;
  font-size: 11px;
  letter-spacing: .035em;
  padding: 9px 15px;
}

.wolver-button--light {
  border-color: rgba(255, 255, 255, .32);
  background: rgba(255, 255, 255, .10);
  color: var(--wolver-white);
}

.wolver-button--light:hover,
.wolver-button--light:focus-visible {
  border-color: var(--wolver-white);
  background: var(--wolver-white);
  color: var(--wolver-ink);
}

.wolver-button[aria-disabled="true"],
.wolver-button:disabled {
  cursor: not-allowed;
  filter: grayscale(.2);
  opacity: .52;
  transform: none;
}

.wolver-button:focus-visible,
.wolver-filter-toggle:focus-visible,
.wolver-more:focus-visible,
.wolver-map-button:focus-visible,
.wolver-catalog button:focus-visible,
.wolver-catalog input:focus-visible,
.wolver-catalog select:focus-visible,
.wolver-catalog a:focus-visible,
.wolver-product button:focus-visible,
.wolver-product a:focus-visible,
.wolver-dealers button:focus-visible,
.wolver-dealers input:focus-visible,
.wolver-dealers select:focus-visible,
.wolver-dealers a:focus-visible,
.wolver-float-shop:focus-visible {
  outline: 3px solid rgba(244, 0, 4, .34);
  outline-offset: 3px;
}

/* YOOtheme section helpers */
.wolver-facts.uk-section-primary {
  background-color: var(--wolver-red-dark);
  background-image: linear-gradient(
    100deg,
    var(--wolver-red-dark) 0%,
    var(--wolver-ink) 100%
  );
}

.uk-button.uk-button-primary {
  border-color: transparent;
  background: var(--wolver-red);
  box-shadow: 0 12px 30px rgba(244, 0, 4, .24);
  color: var(--wolver-white);
}

.uk-button.uk-button-primary:hover,
.uk-button.uk-button-primary:focus-visible,
.uk-button.uk-button-primary.uk-active,
.uk-button.uk-button-primary:active {
  border-color: transparent;
  background: var(--wolver-red-dark);
  color: var(--wolver-white);
}

.uk-button.uk-button-primary:disabled {
  background: var(--wolver-paper);
  box-shadow: none;
  color: var(--wolver-muted);
}

.wolver-hero-section {
  overflow: hidden;
  isolation: isolate;
}

.wolver-hero-section::after {
  position: absolute;
  z-index: 0;
  right: -14vw;
  bottom: -32vw;
  width: min(74vw, 980px);
  height: min(74vw, 980px);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.wolver-hero-section .uk-container {
  position: relative;
  z-index: 1;
}

.wolver-hero-panel {
  max-width: 760px;
  border-radius: var(--wolver-radius-lg);
  padding: clamp(24px, 4vw, 54px);
}

.wolver-hero-title {
  max-width: 940px;
  text-wrap: balance;
}

.wolver-facts .uk-grid > * {
  position: relative;
}

.wolver-facts .el-title {
  font-size: clamp(28px, 3.4vw, 52px) !important;
  font-weight: 800 !important;
  letter-spacing: -.035em;
  line-height: 1 !important;
}

.wolver-facts .el-meta {
  color: rgba(255, 255, 255, .68) !important;
  font-size: 11px !important;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.wolver-native-cards .uk-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--wolver-line);
  border-radius: var(--wolver-radius);
  box-shadow: var(--wolver-shadow-sm);
  transition:
    transform .35s var(--wolver-ease),
    box-shadow .35s var(--wolver-ease),
    border-color .35s ease;
}

.wolver-native-cards .uk-card:hover {
  border-color: rgba(244, 0, 4, .28);
  box-shadow: var(--wolver-shadow);
  transform: translateY(-6px);
}

.wolver-native-cards .el-image {
  transition: transform .65s var(--wolver-ease);
}

.wolver-native-cards .uk-card:hover .el-image {
  transform: scale(1.035);
}

.wolver-native-cards--dark .uk-card {
  border-color: rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .07) !important;
  box-shadow: none;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.wolver-native-cards--dark .el-title,
.wolver-native-cards--dark .el-content {
  color: var(--wolver-white) !important;
}

.wolver-native-cards--dark .el-meta {
  color: #ff6669 !important;
}

.wolver-world-map .el-image {
  width: 100%;
  max-height: 520px;
  filter: drop-shadow(0 20px 42px rgba(16, 18, 22, .12));
  object-fit: contain;
}

.wolver-contact-grid .uk-card {
  height: 100%;
  border: 1px solid var(--wolver-line);
  border-radius: var(--wolver-radius);
  box-shadow: var(--wolver-shadow-sm);
}

.wolver-contact-grid .uk-card-primary {
  border-color: transparent;
  background: linear-gradient(145deg, var(--wolver-red), var(--wolver-red-dark)) !important;
  color: var(--wolver-white);
}

/* Product catalog */
.wolver-catalog {
  --catalog-aside: 330px;
  max-width: var(--wolver-container);
  margin: 0 auto;
  padding: 0 22px 90px;
}

.wolver-catalog__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 24px;
}

.wolver-catalog__count {
  margin: 0;
  color: var(--wolver-muted);
  font-size: 14px;
  line-height: 1.5;
}

.wolver-catalog__count strong {
  color: var(--wolver-ink);
  font-size: 18px;
}

.wolver-catalog__tools {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wolver-catalog__sort {
  min-height: 44px;
  border: 1px solid var(--wolver-line);
  border-radius: 999px;
  background: var(--wolver-white);
  color: var(--wolver-ink);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  padding: 9px 36px 9px 15px;
}

.wolver-filter-toggle {
  display: none;
}

.wolver-catalog__layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, var(--catalog-aside)) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 54px);
}

.wolver-filter {
  position: sticky;
  top: 108px;
  overflow: hidden;
  max-height: calc(100vh - 128px);
  border: 1px solid var(--wolver-line);
  border-radius: var(--wolver-radius);
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--wolver-shadow-sm);
}

.wolver-filter__scroll {
  overflow-y: auto;
  max-height: inherit;
  overscroll-behavior: contain;
  padding: 24px;
  scrollbar-color: rgba(16, 18, 22, .24) transparent;
  scrollbar-width: thin;
}

.wolver-filter__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 20px;
}

.wolver-filter__title {
  margin: 0;
  color: var(--wolver-ink);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.02em;
}

.wolver-filter__close {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--wolver-line);
  border-radius: 50%;
  background: var(--wolver-white);
  color: var(--wolver-ink);
  cursor: pointer;
  font-size: 22px;
}

.wolver-filter__search {
  position: relative;
  margin: 0 0 20px;
}

.wolver-filter__search input,
.wolver-filter__facet-search,
.wolver-dealers__search input,
.wolver-dealers__select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--wolver-line);
  border-radius: 13px;
  background: var(--wolver-white);
  color: var(--wolver-ink);
  font: inherit;
  font-size: 15px;
  padding: 11px 14px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.wolver-filter__search input:focus,
.wolver-filter__facet-search:focus,
.wolver-dealers__search input:focus,
.wolver-dealers__select:focus {
  border-color: var(--wolver-red);
  box-shadow: 0 0 0 4px rgba(244, 0, 4, .08);
  outline: 0;
}

.wolver-filter__group {
  border-top: 1px solid var(--wolver-line);
}

.wolver-filter__group summary {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
  list-style: none;
  text-transform: uppercase;
}

.wolver-filter__group summary::-webkit-details-marker {
  display: none;
}

.wolver-filter__group summary::after {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: rotate(45deg) translateY(-2px);
  transition: transform .2s ease;
}

.wolver-filter__group[open] summary::after {
  transform: rotate(225deg) translate(-2px, -2px);
}

.wolver-filter__facet-search {
  min-height: 40px;
  margin: 0 0 10px;
  font-size: 13px;
  padding: 8px 11px;
}

.wolver-filter__options {
  display: grid;
  gap: 6px;
  max-height: 250px;
  overflow: auto;
  padding: 0 2px 16px;
  scrollbar-width: thin;
}

.wolver-filter__option {
  display: grid;
  min-height: 38px;
  align-items: center;
  border-radius: 10px;
  color: var(--wolver-steel);
  cursor: pointer;
  font-size: 14px;
  grid-template-columns: 20px minmax(0, 1fr) auto;
  gap: 9px;
  padding: 7px 8px;
  transition: background .2s ease, color .2s ease;
}

.wolver-filter__option:hover {
  background: var(--wolver-paper);
  color: var(--wolver-ink);
}

.wolver-filter__option input {
  width: 17px;
  height: 17px;
  margin: 0;
  accent-color: var(--wolver-red);
}

.wolver-filter__option span {
  overflow: hidden;
  text-overflow: ellipsis;
}

.wolver-filter__option small {
  color: var(--wolver-muted);
  font-size: 11px;
}

.wolver-filter__option.is-unavailable {
  opacity: .42;
}

.wolver-filter__reset {
  width: 100%;
  margin: 18px 0 0;
  border: 0;
  background: transparent;
  color: var(--wolver-red);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .05em;
  padding: 12px;
  text-transform: uppercase;
}

.wolver-filter__reset:disabled {
  cursor: default;
  opacity: .35;
}

.wolver-selected {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
}

.wolver-selected:empty {
  display: none;
}

.wolver-selected__chip {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(244, 0, 4, .16);
  border-radius: 999px;
  background: var(--wolver-red-soft);
  color: var(--wolver-red-dark);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 11px;
}

.wolver-selected__chip::after {
  content: "×";
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
}

.wolver-products {
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.wolver-product-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--wolver-line);
  border-radius: var(--wolver-radius);
  background: var(--wolver-white);
  box-shadow: 0 10px 34px rgba(16, 18, 22, .07);
  transition:
    transform .3s var(--wolver-ease),
    border-color .3s ease,
    box-shadow .3s var(--wolver-ease);
}

.wolver-product-card:hover {
  border-color: rgba(244, 0, 4, .30);
  box-shadow: 0 24px 58px rgba(16, 18, 22, .14);
  transform: translateY(-5px);
}

.wolver-product-card__media {
  position: relative;
  display: grid;
  min-height: 250px;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 38%, #fff 0 32%, rgba(244, 245, 247, .7) 72%),
    var(--wolver-paper);
  padding: 24px;
}

.wolver-product-card__media::after {
  position: absolute;
  right: -45px;
  bottom: -50px;
  width: 150px;
  height: 150px;
  border: 22px solid rgba(244, 0, 4, .035);
  border-radius: 50%;
  content: "";
}

.wolver-product-card__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 205px;
  object-fit: contain;
  transition: transform .5s var(--wolver-ease);
}

.wolver-product-card:hover .wolver-product-card__media img {
  transform: scale(1.04);
}

.wolver-product-card__segment {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  max-width: calc(100% - 28px);
  border-radius: 999px;
  background: rgba(16, 18, 22, .88);
  color: var(--wolver-white);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.25;
  padding: 7px 10px;
  text-transform: uppercase;
}

.wolver-product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.wolver-product-card__type {
  margin: 0 0 8px;
  color: var(--wolver-red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.wolver-product-card__title {
  margin: 0 0 11px;
  color: var(--wolver-ink);
  font-size: clamp(19px, 1.5vw, 23px);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.15;
}

.wolver-product-card__title a {
  color: inherit;
  text-decoration: none;
}

.wolver-product-card__title a:hover,
.wolver-product-card__title a:focus-visible {
  color: var(--wolver-red);
}

.wolver-product-card__specs {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 16px;
}

.wolver-spec {
  display: inline-flex;
  min-height: 29px;
  align-items: center;
  border: 1px solid var(--wolver-line);
  border-radius: 999px;
  background: var(--wolver-paper);
  color: var(--wolver-steel);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  padding: 6px 9px;
}

.wolver-spec--primary {
  border-color: rgba(244, 0, 4, .14);
  background: var(--wolver-red-soft);
  color: var(--wolver-red-dark);
}

.wolver-product-card__description {
  display: -webkit-box;
  overflow: hidden;
  margin: 0 0 16px;
  color: var(--wolver-muted);
  font-size: 14px;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.wolver-product-card__facts {
  display: grid;
  margin: 0 0 18px;
  border-top: 1px solid var(--wolver-line);
}

.wolver-product-card__fact {
  display: grid;
  min-height: 41px;
  align-items: center;
  border-bottom: 1px solid var(--wolver-line);
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 10px;
  padding: 8px 0;
}

.wolver-product-card__fact dt,
.wolver-product-card__fact dd {
  margin: 0;
  font-family: var(--wolver-font-body);
  line-height: 1.4;
}

.wolver-product-card__fact dt {
  color: var(--wolver-muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.wolver-product-card__fact dd {
  overflow-wrap: anywhere;
  color: var(--wolver-ink);
  font-size: 12px;
  font-weight: 680;
}

.wolver-product-card__actions {
  position: relative;
  z-index: 2;
  display: grid;
  margin: auto 0 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.wolver-product-card__actions .wolver-button {
  width: 100%;
  min-width: 0;
  white-space: normal;
}

.wolver-product-card__footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: auto 0 0;
  border-top: 1px solid var(--wolver-line);
  padding-top: 15px;
}

.wolver-product-card__pack {
  color: var(--wolver-muted);
  font-size: 11px;
  line-height: 1.4;
}

.wolver-product-card__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--wolver-red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-decoration: none;
  text-transform: uppercase;
}

.wolver-product-card__link::after {
  content: "→";
  font-size: 17px;
  font-weight: 400;
  transition: transform .2s ease;
}

.wolver-product-card:hover .wolver-product-card__link::after {
  transform: translateX(3px);
}

.wolver-catalog__empty {
  display: none;
  border: 1px dashed rgba(16, 18, 22, .22);
  border-radius: var(--wolver-radius);
  background: var(--wolver-paper);
  color: var(--wolver-muted);
  padding: 54px 28px;
  text-align: center;
}

.wolver-catalog__empty.is-visible {
  display: block;
}

.wolver-catalog__empty h3 {
  margin: 0 0 10px;
  color: var(--wolver-ink);
  font-size: 24px;
}

.wolver-catalog__more {
  display: flex;
  justify-content: center;
  margin: 32px 0 0;
}

.wolver-more[hidden] {
  display: none;
}

.wolver-filter-backdrop {
  display: none;
}

.wolver-catalog__status {
  min-height: 160px;
  border-radius: var(--wolver-radius);
  background:
    linear-gradient(100deg, transparent 18%, rgba(255, 255, 255, .78) 48%, transparent 78%),
    var(--wolver-paper);
  background-size: 220% 100%;
  color: var(--wolver-muted);
  padding: 70px 24px;
  text-align: center;
  animation: wolver-shimmer 1.6s linear infinite;
}

@keyframes wolver-shimmer {
  to { background-position: -220% 0; }
}

/* Generated Joomla article product detail */
.wolver-product {
  max-width: var(--wolver-container);
  margin: 0 auto;
  padding: clamp(22px, 4vw, 58px) 22px 96px;
}

.wolver-product__status {
  display: grid;
  min-height: 340px;
  place-items: center;
  border: 1px solid var(--wolver-line);
  border-radius: var(--wolver-radius);
  background: var(--wolver-paper);
  color: var(--wolver-muted);
  padding: 40px 24px;
  text-align: center;
}

.wolver-product__status--error {
  align-content: center;
  gap: 12px;
}

.wolver-product__status--error strong {
  color: var(--wolver-ink);
  font-size: 22px;
}

.wolver-product__summary {
  padding-top: 12px;
}

.wolver-product__breadcrumbs {
  margin: 0 0 30px;
  color: var(--wolver-muted);
  font-size: 12px;
}

.wolver-product__breadcrumbs a {
  color: inherit;
  text-decoration: none;
}

.wolver-product__breadcrumbs a:hover {
  color: var(--wolver-red);
}

.wolver-product__main {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1fr) minmax(400px, .86fr);
  gap: clamp(34px, 6vw, 84px);
}

.wolver-product__gallery {
  position: sticky;
  top: 110px;
  display: grid;
  min-height: 610px;
  place-items: center;
  overflow: hidden;
  border-radius: var(--wolver-radius-lg);
  background:
    radial-gradient(circle at 50% 42%, #fff 0 36%, rgba(244, 245, 247, .75) 76%),
    var(--wolver-paper);
  padding: clamp(28px, 4vw, 60px);
}

.wolver-product__gallery::after {
  position: absolute;
  right: -120px;
  bottom: -140px;
  width: 360px;
  height: 360px;
  border: 46px solid rgba(244, 0, 4, .035);
  border-radius: 50%;
  content: "";
}

.wolver-product__gallery img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 490px;
  object-fit: contain;
}

.wolver-product__segment {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--wolver-red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.wolver-product__segment::before {
  width: 20px;
  height: 2px;
  background: currentColor;
  content: "";
}

.wolver-product__title {
  margin: 0 0 18px;
  color: var(--wolver-ink);
  font-size: clamp(36px, 5vw, 70px);
  font-weight: 850;
  letter-spacing: -.052em;
  line-height: .98;
  text-wrap: balance;
}

.wolver-product__intro {
  margin: 0 0 26px;
  color: var(--wolver-muted);
  font-size: 17px;
  line-height: 1.72;
}

.wolver-product__primary-specs {
  display: grid;
  margin: 0 0 26px;
  border-top: 1px solid var(--wolver-line);
}

.wolver-product__primary-spec {
  display: grid;
  min-height: 58px;
  align-items: center;
  border-bottom: 1px solid var(--wolver-line);
  grid-template-columns: minmax(105px, .37fr) minmax(0, 1fr);
  gap: 18px;
  padding: 11px 0;
}

.wolver-product__primary-spec dt {
  color: var(--wolver-muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.wolver-product__primary-spec dd {
  margin: 0;
  color: var(--wolver-ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

.wolver-product__primary-spec.is-primary dd {
  color: var(--wolver-red);
  font-size: 22px;
  font-weight: 850;
}

.wolver-product__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
}

.wolver-product__note {
  margin: 0;
  color: var(--wolver-muted);
  font-size: 12px;
  line-height: 1.55;
}

.wolver-product__content {
  display: grid;
  margin: clamp(58px, 8vw, 112px) 0 0;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  gap: clamp(34px, 6vw, 80px);
}

.wolver-product__aside {
  min-width: 0;
}

.wolver-product__section + .wolver-product__section {
  margin-top: 48px;
}

.wolver-product__section h2 {
  margin: 0 0 18px;
  color: var(--wolver-ink);
  font-size: clamp(27px, 3vw, 42px);
  font-weight: 820;
  letter-spacing: -.035em;
}

.wolver-product__section h3 {
  margin: 0 0 14px;
  color: var(--wolver-ink);
  font-family: var(--wolver-font-body);
  font-size: 17px;
  font-weight: 800;
}

.wolver-product__section p,
.wolver-product__section li {
  font-family: var(--wolver-font-body);
  color: var(--wolver-steel);
  font-size: 16px;
  line-height: 1.75;
}

.wolver-product__prose > :first-child,
.wolver-product__editor > :first-child {
  margin-top: 0;
}

.wolver-product__prose > :last-child,
.wolver-product__editor > :last-child {
  margin-bottom: 0;
}

.wolver-product__editor a {
  color: var(--wolver-red-dark);
  font-weight: 700;
  text-underline-offset: 3px;
}

.wolver-product__editor ul,
.wolver-product__editor ol {
  padding-left: 1.25em;
}

.wolver-product__editor blockquote {
  margin: 24px 0;
  border-left: 3px solid var(--wolver-red);
  color: var(--wolver-steel);
  padding: 5px 0 5px 20px;
}

.wolver-product__feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.wolver-product__feature-group {
  border: 1px solid var(--wolver-line);
  border-radius: var(--wolver-radius-sm);
  background: var(--wolver-paper);
  padding: 20px;
}

.wolver-product__feature-group.is-benefit {
  border-color: rgba(244, 0, 4, .14);
  background: var(--wolver-red-soft);
}

.wolver-product__feature-group ul {
  display: grid;
  margin: 0;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.wolver-product__feature-group li {
  position: relative;
  font-size: 14px;
  line-height: 1.55;
  padding-left: 21px;
}

.wolver-product__feature-group li::before {
  position: absolute;
  top: .72em;
  left: 0;
  width: 9px;
  height: 2px;
  border-radius: 2px;
  background: var(--wolver-red);
  content: "";
}

.wolver-product__section-kicker {
  margin: 0 0 7px !important;
  color: var(--wolver-red) !important;
  font-size: 10px !important;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.wolver-product__approval-groups {
  display: grid;
  gap: 22px;
}

.wolver-product__approval-group h3 {
  margin-bottom: 10px;
  color: var(--wolver-muted);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.wolver-product__approval-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.wolver-product__approval-list li {
  border: 1px solid var(--wolver-line);
  border-radius: 999px;
  background: var(--wolver-paper);
  font-size: 12px;
  font-weight: 700;
  font-family: var(--wolver-font-body);
  line-height: 1.35;
  padding: 8px 11px;
}

.wolver-product__approval-list li.is-approval {
  border-color: rgba(244, 0, 4, .18);
  background: var(--wolver-red-soft);
  color: var(--wolver-red-dark);
}

.wolver-product__approval-list li.is-specification {
  border-color: rgba(16, 18, 22, .16);
  background: var(--wolver-white);
}

.wolver-product__side-card {
  border: 1px solid var(--wolver-line);
  border-radius: var(--wolver-radius);
  background: var(--wolver-white);
  box-shadow: var(--wolver-shadow-sm);
  padding: clamp(22px, 3vw, 34px);
}

.wolver-product__side-card + .wolver-product__side-card {
  margin-top: 18px;
}

.wolver-product__side-card h3 {
  margin: 0 0 16px;
  color: var(--wolver-ink);
  font-size: 20px;
  font-weight: 820;
  font-family: var(--wolver-font-body);
}

.wolver-product__table {
  width: 100%;
  border-collapse: collapse;
}

.wolver-product__table th,
.wolver-product__table td {
  border-bottom: 1px solid var(--wolver-line);
  color: var(--wolver-steel);
  font-size: 13px;
  font-family: var(--wolver-font-body);
  line-height: 1.5;
  padding: 11px 0;
  text-align: left;
  vertical-align: top;
}

.wolver-product__table th {
  width: 62%;
  padding-right: 14px;
  color: var(--wolver-muted);
  font-weight: 550;
}

.wolver-product__table th small {
  display: block;
  margin-top: 3px;
  color: var(--wolver-muted);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.wolver-product__table td {
  color: var(--wolver-ink);
  font-weight: 720;
}

.wolver-product__table tr:last-child th,
.wolver-product__table tr:last-child td {
  border-bottom: 0;
}

.wolver-product__table--typicals th {
  width: 68%;
}

.wolver-product__table--typicals td {
  white-space: nowrap;
}

.wolver-product__table--packages th {
  width: 54%;
}

.wolver-product__table-note {
  margin: 16px 0 0;
  border-top: 1px solid var(--wolver-line);
  color: var(--wolver-muted);
  font-size: 10px;
  line-height: 1.55;
  padding-top: 13px;
}

.wolver-downloads {
  display: grid;
  gap: 9px;
}

.wolver-download {
  display: grid;
  min-height: 54px;
  align-items: center;
  border: 1px solid var(--wolver-line);
  border-radius: 13px;
  color: var(--wolver-ink);
  grid-template-columns: 30px minmax(0, 1fr) auto;
  gap: 10px;
  padding: 10px 12px;
  text-decoration: none;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.wolver-download:hover {
  border-color: var(--wolver-red);
  background: var(--wolver-red-soft);
  color: var(--wolver-red-dark);
  text-decoration: none;
}

.wolver-download__icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 9px;
  background: var(--wolver-red);
  color: var(--wolver-white);
  font-size: 9px;
  font-weight: 850;
}

.wolver-download small {
  display: block;
  margin-top: 2px;
  color: var(--wolver-muted);
  font-size: 10px;
}

.wolver-download.is-missing {
  cursor: default;
  opacity: .54;
}

.wolver-download.is-missing:hover {
  border-color: var(--wolver-line);
  background: transparent;
  color: var(--wolver-ink);
}

.wolver-download__state,
.wolver-download__arrow {
  color: var(--wolver-muted);
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
}

/* Dealer map */
.wolver-dealers {
  max-width: var(--wolver-container);
  margin: 0 auto;
  padding: 0 22px 90px;
}

.wolver-dealers__notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0 0 22px;
  border: 1px solid rgba(244, 0, 4, .16);
  border-radius: var(--wolver-radius-sm);
  background: var(--wolver-red-soft);
  color: var(--wolver-red-dark);
  font-size: 13px;
  line-height: 1.6;
  padding: 14px 16px;
}

.wolver-dealers__filters {
  display: grid;
  margin: 0 0 24px;
  grid-template-columns: minmax(220px, 1fr) minmax(180px, 260px);
  gap: 12px;
}

.wolver-dealers__layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, .75fr);
  gap: clamp(24px, 4vw, 50px);
}

.wolver-map {
  position: sticky;
  top: 108px;
  overflow: hidden;
  border: 1px solid var(--wolver-line);
  border-radius: var(--wolver-radius-lg);
  background:
    radial-gradient(circle at 48% 48%, #fff 0 30%, rgba(244, 245, 247, .74) 72%),
    var(--wolver-paper);
  box-shadow: var(--wolver-shadow-sm);
  padding: clamp(18px, 4vw, 44px);
}

.wolver-map__stage {
  position: relative;
  aspect-ratio: 1.65;
}

.wolver-map__shape {
  width: 100%;
  height: 100%;
  overflow: visible;
  filter: drop-shadow(0 18px 32px rgba(16, 18, 22, .10));
}

.wolver-map__shape path {
  fill: rgba(255, 255, 255, .96);
  stroke: rgba(16, 18, 22, .28);
  stroke-linejoin: round;
  stroke-width: 1.2;
}

.wolver-map__marker {
  position: absolute;
  z-index: 2;
  width: 25px;
  height: 25px;
  border: 4px solid var(--wolver-white);
  border-radius: 50%;
  background: var(--wolver-red);
  box-shadow: 0 5px 16px rgba(16, 18, 22, .26);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform .2s var(--wolver-ease), box-shadow .2s ease;
}

.wolver-map__marker:hover,
.wolver-map__marker:focus-visible,
.wolver-map__marker.is-active {
  z-index: 4;
  box-shadow: 0 8px 22px rgba(244, 0, 4, .34);
  transform: translate(-50%, -50%) scale(1.22);
}

.wolver-map__marker.is-demo {
  background: var(--wolver-steel);
}

.wolver-map__popup {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 18px;
  width: min(360px, calc(100% - 28px));
  border-radius: var(--wolver-radius-sm);
  background: rgba(16, 18, 22, .95);
  box-shadow: var(--wolver-shadow-dark);
  color: var(--wolver-white);
  opacity: 0;
  padding: 16px;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity .2s ease, transform .2s var(--wolver-ease);
}

.wolver-map__popup.is-visible {
  opacity: 1;
  pointer-events: none;
  transform: translate(-50%, 0);
}

.wolver-map__popup strong {
  display: block;
  margin-bottom: 5px;
  font-size: 15px;
}

.wolver-map__popup span {
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  line-height: 1.5;
}

.wolver-dealer-list {
  display: grid;
  gap: 12px;
}

.wolver-dealer {
  border: 1px solid var(--wolver-line);
  border-radius: var(--wolver-radius);
  background: var(--wolver-white);
  box-shadow: 0 8px 28px rgba(16, 18, 22, .06);
  padding: 20px;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s var(--wolver-ease);
}

.wolver-dealer:hover,
.wolver-dealer.is-active {
  border-color: rgba(244, 0, 4, .34);
  box-shadow: var(--wolver-shadow-sm);
  transform: translateY(-2px);
}

.wolver-dealer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.wolver-dealer h3 {
  margin: 0 0 6px;
  color: var(--wolver-ink);
  font-size: 18px;
  font-weight: 820;
  line-height: 1.2;
}

.wolver-dealer__badge {
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--wolver-paper);
  color: var(--wolver-muted);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .08em;
  padding: 6px 8px;
  text-transform: uppercase;
}

.wolver-dealer__badge--real {
  background: #eaf8f0;
  color: var(--wolver-success);
}

.wolver-dealer p {
  margin: 0;
  color: var(--wolver-muted);
  font-size: 13px;
  line-height: 1.55;
}

.wolver-dealer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 15px 0 0;
}

.wolver-map-button {
  min-height: 38px;
  border-color: var(--wolver-line);
  background: var(--wolver-white);
  color: var(--wolver-ink);
  font-size: 10px;
  padding: 9px 13px;
}

.wolver-map-button:hover,
.wolver-map-button:focus-visible {
  border-color: var(--wolver-red);
  color: var(--wolver-red);
}

/* Social sharing */
.wolver-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 34px;
  border-top: 1px solid var(--wolver-line);
  padding-top: 22px;
}

.wolver-share__label {
  margin-right: 5px;
  color: var(--wolver-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.wolver-share__button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--wolver-line);
  border-radius: 999px;
  background: var(--wolver-white);
  color: var(--wolver-ink);
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 750;
  padding: 8px 13px;
  text-decoration: none;
}

.wolver-share__button:hover {
  border-color: var(--wolver-red);
  color: var(--wolver-red);
  text-decoration: none;
}

/* Global floating B2B CTA */
.wolver-float-shop {
  position: fixed;
  z-index: 980;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(20px, calc(env(safe-area-inset-bottom) + 14px));
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--wolver-red), var(--wolver-red-dark));
  box-shadow: 0 16px 42px rgba(16, 18, 22, .28);
  color: var(--wolver-white);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .055em;
  padding: 13px 20px 13px 14px;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .25s var(--wolver-ease), box-shadow .25s ease;
}

.wolver-float-shop:hover {
  box-shadow: 0 20px 52px rgba(16, 18, 22, .34);
  color: var(--wolver-white);
  text-decoration: none;
  transform: translateY(-3px);
}

.wolver-float-shop__icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  font-size: 16px;
}

.wolver-float-shop__copy {
  display: grid;
  gap: 2px;
}

.wolver-float-shop__copy small {
  color: rgba(255, 255, 255, .70);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: .02em;
  text-transform: none;
}

/* Footer */
.wolver-footer .el-title {
  font-weight: 800;
}

.wolver-footer .uk-list a {
  text-decoration: none;
}

.wolver-footer .uk-list a:hover {
  color: #ff6669;
}

@media (max-width: 1180px) {
  .wolver-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wolver-product__main {
    grid-template-columns: minmax(0, 1fr) minmax(350px, .85fr);
    gap: 40px;
  }
}

@media (max-width: 960px) {
  .wolver-filter-toggle {
    display: inline-flex;
  }

  .wolver-catalog__layout {
    display: block;
  }

  .wolver-filter {
    position: fixed;
    z-index: 1100;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(92vw, 390px);
    max-height: none;
    border: 0;
    border-radius: 0;
    box-shadow: -20px 0 60px rgba(16, 18, 22, .24);
    transform: translateX(105%);
    transition: transform .32s var(--wolver-ease);
  }

  .wolver-filter.is-open {
    transform: translateX(0);
  }

  .wolver-filter__scroll {
    max-height: 100%;
    padding: 24px 22px calc(30px + env(safe-area-inset-bottom));
  }

  .wolver-filter__close {
    display: inline-flex;
  }

  .wolver-filter-backdrop {
    position: fixed;
    z-index: 1090;
    inset: 0;
    border: 0;
    background: rgba(16, 18, 22, .52);
    cursor: pointer;
    opacity: 0;
    transition: opacity .25s ease;
  }

  .wolver-filter-backdrop.is-visible {
    display: block;
    opacity: 1;
  }

  body.wolver-filter-open {
    overflow: hidden;
  }

  .wolver-product__main,
  .wolver-product__content {
    grid-template-columns: 1fr;
  }

  .wolver-product__gallery {
    position: relative;
    top: auto;
    min-height: 480px;
  }

  .wolver-product__gallery img {
    height: 400px;
  }

  .wolver-dealers__layout {
    grid-template-columns: 1fr;
  }

  .wolver-map {
    position: relative;
    top: auto;
  }
}

@media (max-width: 680px) {
  [id] {
    scroll-margin-top: 76px;
  }

  .wolver-catalog,
  .wolver-product,
  .wolver-dealers {
    padding-right: 15px;
    padding-left: 15px;
  }

  .wolver-catalog__toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .wolver-catalog__tools {
    align-items: stretch;
    flex-direction: column;
  }

  .wolver-catalog__sort {
    width: 100%;
  }

  .wolver-filter-toggle {
    width: 100%;
  }

  .wolver-products {
    grid-template-columns: 1fr;
  }

  .wolver-product-card__media {
    min-height: 235px;
  }

  .wolver-product-card__media img {
    height: 190px;
  }

  .wolver-product {
    padding-top: 22px;
  }

  .wolver-product__title {
    font-size: clamp(35px, 12vw, 54px);
  }

  .wolver-product__gallery {
    min-height: 390px;
    border-radius: var(--wolver-radius);
  }

  .wolver-product__gallery img {
    height: 315px;
  }

  .wolver-product__actions .wolver-button {
    width: 100%;
  }

  .wolver-product__content {
    margin-top: 58px;
  }

  .wolver-product__feature-grid {
    grid-template-columns: 1fr;
  }

  .wolver-product__primary-spec {
    grid-template-columns: 94px minmax(0, 1fr);
    gap: 11px;
  }

  .wolver-product__table--typicals th,
  .wolver-product__table--packages th {
    width: 58%;
  }

  .wolver-dealers__filters {
    grid-template-columns: 1fr;
  }

  .wolver-map {
    padding: 12px;
  }

  .wolver-map__stage {
    aspect-ratio: 1.35;
  }

  .wolver-float-shop {
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    left: 12px;
    min-height: 54px;
    justify-content: center;
  }

  .wolver-float-shop__copy {
    display: flex;
    align-items: baseline;
    gap: 6px;
  }

  .wolver-float-shop__copy small {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .wolver-float-shop,
  .wolver-filter-toggle,
  .wolver-filter,
  .wolver-selected,
  .wolver-catalog__more,
  .wolver-product__actions,
  .wolver-share {
    display: none !important;
  }

  .wolver-product,
  .wolver-catalog {
    max-width: none;
    padding: 0;
  }

  .wolver-product__gallery {
    position: relative;
    min-height: 0;
    background: #fff;
  }

  .wolver-product__gallery img {
    height: 330px;
  }

  .wolver-product__main,
  .wolver-product__content {
    gap: 22px;
  }

  .wolver-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wolver-product-card {
    break-inside: avoid;
    box-shadow: none;
  }
}
