/* ============================================================
   WinRox® — Global stylesheet
   ============================================================ */

:root {
  --wx-red: #d92318;
  --wx-red-dark: #ae1a11;
  --wx-navy: #14181f;
  --wx-navy-soft: #1e242e;
  --wx-ink: #232a33;
  --wx-body: #5a6472;
  --wx-line: #e4e7ec;
  --wx-bg: #ffffff;
  --wx-bg-alt: #f6f7f9;
  --wx-radius: 10px;
  --wx-shadow: 0 2px 10px rgba(20, 24, 31, 0.06);
  --wx-shadow-lg: 0 14px 40px rgba(20, 24, 31, 0.12);
  --wx-header: 84px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Barlow", "Segoe UI", Arial, sans-serif;
  color: var(--wx-body);
  background: var(--wx-bg);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: "Oswald", "Barlow", Arial, sans-serif;
  color: var(--wx-ink);
  letter-spacing: 0.4px;
  line-height: 1.2;
  margin: 0 0 0.6em;
  font-weight: 600;
}

a { color: var(--wx-red); text-decoration: none; }
a:hover { color: var(--wx-red-dark); }
img { max-width: 100%; height: auto; }

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

.wx-section { padding: 84px 0; }
.wx-section--alt { background: var(--wx-bg-alt); }
.wx-section--tight { padding: 60px 0; }

/* ---------- section headings ---------- */
.wx-eyebrow {
  display: inline-block;
  font-family: "Oswald", Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--wx-red);
  margin-bottom: 12px;
}
.wx-eyebrow::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 2px;
  background: var(--wx-red);
  vertical-align: middle;
  margin-right: 10px;
}
.wx-heading { font-size: clamp(26px, 3.2vw, 40px); text-transform: uppercase; }
.wx-sub { max-width: 680px; margin: 0 auto; }
.wx-center { text-align: center; }

/* ---------- buttons ---------- */
.wx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: "Oswald", Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 13px 26px;
  border: 2px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.22s ease;
  white-space: nowrap;
}
.wx-btn--primary { background: var(--wx-red); color: #fff; }
.wx-btn--primary:hover { background: var(--wx-red-dark); color: #fff; transform: translateY(-2px); }
.wx-btn--outline { background: transparent; color: var(--wx-ink); border-color: var(--wx-line); }
.wx-btn--outline:hover { border-color: var(--wx-red); color: var(--wx-red); }
.wx-btn--light { background: #fff; color: var(--wx-ink); }
.wx-btn--light:hover { background: var(--wx-red); color: #fff; }
.wx-btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.45); }
.wx-btn--ghost-light:hover { background: #fff; color: var(--wx-ink); }
.wx-btn--sm { padding: 10px 18px; font-size: 13px; }
.wx-btn--block { width: 100%; }

/* ---------- header ---------- */
.wx-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: #fff;
  border-bottom: 1px solid var(--wx-line);
  transition: box-shadow 0.25s ease, padding 0.25s ease;
}
.wx-header__bar {
  display: flex;
  align-items: center;
  gap: 20px;
  height: var(--wx-header);
  transition: height 0.25s ease;
}
.wx-header.is-stuck { box-shadow: var(--wx-shadow); }
.wx-header.is-stuck .wx-header__bar { height: 66px; }
.wx-header.is-stuck .wx-logo img { height: 82px; }

.wx-logo { display: flex; align-items: center; flex: 0 0 auto; }
.wx-logo img { height: 44px; width: auto; object-fit: contain; transition: height 0.25s ease; }

.wx-nav { margin-left: auto; }
.wx-nav__list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
}
.wx-nav__list > li { position: relative; }
.wx-nav__link {
  display: block;
  font-family: "Oswald", Arial, sans-serif;
  font-size: 14.5px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--wx-ink);
  padding: 10px 13px;
  border-radius: 5px;
}
.wx-nav__link:hover, .wx-nav__link.is-active { color: var(--wx-red); }
.wx-nav__link .fa-chevron-down { font-size: 9px; margin-left: 5px; }

.wx-dropdown {
  list-style: none;
  margin: 0;
  padding: 8px;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 235px;
  background: #fff;
  border: 1px solid var(--wx-line);
  border-radius: var(--wx-radius);
  box-shadow: var(--wx-shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
}
.wx-has-dropdown:hover > .wx-dropdown,
.wx-has-dropdown:focus-within > .wx-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.wx-dropdown a {
  display: block;
  padding: 9px 12px;
  color: var(--wx-ink);
  font-size: 15px;
  border-radius: 5px;
}
.wx-dropdown a:hover { background: var(--wx-bg-alt); color: var(--wx-red); }

.wx-header__cta { flex: 0 0 auto; }
.wx-burger {
  display: none;
  background: none;
  border: 1px solid var(--wx-line);
  border-radius: 6px;
  width: 44px;
  height: 42px;
  font-size: 18px;
  color: var(--wx-ink);
  cursor: pointer;
}
.wx-nav__close { display: none; }

/* ---------- topbar ---------- */
.wx-topbar {
  background: var(--wx-navy);
  color: rgba(255,255,255,0.78);
  font-size: 13.5px;
}
.wx-topbar .wx-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  padding-bottom: 8px;
}
.wx-topbar__items { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.wx-topbar a { color: rgba(255,255,255,0.85); }
.wx-topbar a:hover { color: #fff; }
.wx-topbar i { color: var(--wx-red); margin-right: 7px; }

/* ---------- responsive banner slider ---------- */
.wx-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 1600 / 533;
  min-height: 220px;
  overflow: hidden;
  background: var(--wx-bg-alt);
  isolation: isolate;
}
.wx-slider__track, .wx-slide { position: absolute; inset: 0; }
.wx-slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.65s ease, visibility 0.65s ease;
}
.wx-slide.is-active { opacity: 1; visibility: visible; z-index: 1; }
.wx-slide img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; }
.wx-slider__arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.75);
  border-radius: 50%;
  background: rgba(20,24,31,0.55);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.wx-slider__arrow:hover { background: var(--wx-red); transform: translateY(-50%) scale(1.06); }
.wx-slider__arrow--prev { left: clamp(12px, 3vw, 48px); }
.wx-slider__arrow--next { right: clamp(12px, 3vw, 48px); }
.wx-slider__dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: flex;
  gap: 9px;
  padding: 7px 10px;
  border-radius: 30px;
  background: rgba(20,24,31,0.42);
}
.wx-slider__dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.65);
  cursor: pointer;
}
.wx-slider__dots button.is-active { width: 28px; border-radius: 10px; background: #fff; }

/* ---------- hero ---------- */
.wx-hero {
  position: relative;
  background: linear-gradient(180deg, #fbfbfc 0%, #f2f3f5 100%);
  overflow: hidden;
  padding: 74px 0 66px;
}
.wx-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.wx-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border: 1px solid var(--wx-line);
  border-radius: 40px;
  padding: 7px 16px;
  font-size: 13px;
  font-family: "Oswald", Arial, sans-serif;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--wx-ink);
  margin-bottom: 20px;
}
.wx-hero__badge i { color: var(--wx-red); }
.wx-hero h1 {
  font-size: clamp(32px, 4.4vw, 56px);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.wx-hero h1 span { color: var(--wx-red); }
.wx-hero__tag {
  font-family: "Oswald", Arial, sans-serif;
  font-size: 17px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--wx-red);
  margin-bottom: 8px;
}
.wx-hero p { font-size: 17.5px; max-width: 560px; }
.wx-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.wx-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  margin-top: 40px;
  padding-top: 26px;
  border-top: 1px solid var(--wx-line);
}
.wx-hero__stat strong {
  display: block;
  font-family: "Oswald", Arial, sans-serif;
  font-size: 27px;
  color: var(--wx-ink);
}
.wx-hero__stat span { font-size: 13.5px; text-transform: uppercase; letter-spacing: 1px; }

.wx-hero__media { position: relative; text-align: center; }
.wx-hero__media img {
  position: relative;
  z-index: 2;
  max-height: 540px;
  object-fit: contain;
  animation: wxFloat 6s ease-in-out infinite;
}
.wx-blob {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}
.wx-blob--1 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(217,35,24,0.14), rgba(217,35,24,0) 70%);
  top: 4%; left: 50%; transform: translateX(-50%);
}
.wx-blob--2 {
  width: 190px; height: 190px;
  border: 2px dashed rgba(20,24,31,0.12);
  bottom: 6%; right: 4%;
  animation: wxSpin 34s linear infinite;
}
@keyframes wxFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes wxSpin { to { transform: rotate(360deg); } }

/* ---------- page banner ---------- */
.wx-banner {
  background: var(--wx-navy);
  color: #fff;
  padding: 58px 0;
  position: relative;
  overflow: hidden;
}
.wx-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 240px at 88% 20%, rgba(217,35,24,0.35), transparent 70%);
}
.wx-banner .wx-container { position: relative; z-index: 2; }
.wx-banner h1 { color: #fff; font-size: clamp(28px, 3.6vw, 44px); text-transform: uppercase; margin-bottom: 8px; }
.wx-crumbs { font-size: 14px; color: rgba(255,255,255,0.7); }
.wx-crumbs a { color: rgba(255,255,255,0.9); }
.wx-crumbs span { margin: 0 8px; }

/* ---------- about ---------- */
.wx-about__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: center;
}
.wx-about__media {
  position: relative;
  background: var(--wx-bg-alt);
  border: 1px solid var(--wx-line);
  border-radius: var(--wx-radius);
  padding: 26px;
  text-align: center;
}
.wx-about__media img { max-height: 470px; object-fit: contain; }
.wx-badge-iso {
  position: absolute;
  bottom: -18px;
  right: -12px;
  background: var(--wx-red);
  color: #fff;
  font-family: "Oswald", Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 18px;
  border-radius: 8px;
  box-shadow: var(--wx-shadow-lg);
  max-width: 220px;
  line-height: 1.35;
}
.wx-list { list-style: none; margin: 24px 0 0; padding: 0; }
.wx-list li {
  position: relative;
  padding: 0 0 12px 32px;
  color: var(--wx-ink);
  font-size: 16.5px;
}
.wx-list li i { position: absolute; left: 0; top: 5px; color: var(--wx-red); }

/* ---------- category cards ---------- */
.wx-grid { display: grid; gap: 26px; }
.wx-grid--3 { grid-template-columns: repeat(3, 1fr); }
.wx-grid--4 { grid-template-columns: repeat(4, 1fr); }
.wx-grid--2 { grid-template-columns: repeat(2, 1fr); }

.wx-cat {
  background: #fff;
  border: 1px solid var(--wx-line);
  border-radius: var(--wx-radius);
  overflow: hidden;
  box-shadow: var(--wx-shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.wx-cat:hover { transform: translateY(-5px); box-shadow: var(--wx-shadow-lg); }
.wx-cat__img {
  height: 250px;
  background: var(--wx-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 14px;
}
.wx-cat__img img { max-height: 100%; object-fit: contain; transition: transform 0.4s ease; }
.wx-cat:hover .wx-cat__img img { transform: scale(1.07); }
.wx-cat__body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.wx-cat__body h3 { font-size: 21px; text-transform: uppercase; margin-bottom: 8px; }
.wx-cat__body p { flex: 1; font-size: 15.5px; }
.wx-tag {
  display: inline-block;
  font-size: 12px;
  font-family: "Oswald", Arial, sans-serif;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  background: var(--wx-bg-alt);
  border: 1px solid var(--wx-line);
  color: var(--wx-body);
  padding: 4px 10px;
  border-radius: 40px;
  margin-bottom: 10px;
}
.wx-tag--live { background: rgba(217,35,24,0.08); border-color: rgba(217,35,24,0.25); color: var(--wx-red); }

/* ---------- product cards ---------- */
.wx-card {
  background: #fff;
  border: 1px solid var(--wx-line);
  border-radius: var(--wx-radius);
  box-shadow: var(--wx-shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.wx-card:hover { transform: translateY(-5px); box-shadow: var(--wx-shadow-lg); border-color: rgba(217,35,24,0.3); }
.wx-card__img {
  position: relative;
  height: 260px;
  background: var(--wx-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  overflow: hidden;
}
.wx-card__img img { max-height: 100%; max-width: 100%; object-fit: contain; transition: transform 0.4s ease; }
.wx-card:hover .wx-card__img img { transform: scale(1.08); }
.wx-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--wx-red);
  color: #fff;
  font-family: "Oswald", Arial, sans-serif;
  font-size: 11.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}
.wx-card__body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.wx-card__body h3 { font-size: 19px; margin-bottom: 4px; text-transform: uppercase; }
.wx-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  font-size: 13.5px;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px dashed var(--wx-line);
}
.wx-card__meta i { color: var(--wx-red); margin-right: 5px; }
.wx-card__desc { font-size: 14px; color: var(--wx-body); margin: 0 0 14px; line-height: 1.5; }
.wx-detail__desc { font-size: 16.5px; margin-bottom: 14px; }
.wx-card__feat { list-style: none; margin: 0 0 18px; padding: 0; flex: 1; font-size: 14.5px; }
.wx-card__feat li { position: relative; padding-left: 20px; }
.wx-card__feat li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  font-size: 10px;
  color: var(--wx-red);
}

/* ---------- toolbar / filters ---------- */
.wx-toolbar {
  background: #fff;
  border: 1px solid var(--wx-line);
  border-radius: var(--wx-radius);
  padding: 20px;
  box-shadow: var(--wx-shadow);
  margin-bottom: 34px;
}
.wx-search { position: relative; margin-bottom: 16px; }
.wx-search i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--wx-body);
}
.wx-search input {
  width: 100%;
  padding: 13px 15px 13px 42px;
  border: 1px solid var(--wx-line);
  border-radius: 6px;
  font-size: 15.5px;
  font-family: inherit;
  color: var(--wx-ink);
}
.wx-search input:focus { outline: none; border-color: var(--wx-red); }
.wx-filters { display: flex; flex-wrap: wrap; gap: 18px 28px; align-items: flex-start; }
.wx-filter__label {
  font-family: "Oswald", Arial, sans-serif;
  font-size: 12.5px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--wx-ink);
  margin-bottom: 8px;
  display: block;
}
.wx-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.wx-chip {
  font-family: "Oswald", Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0.8px;
  background: #fff;
  border: 1px solid var(--wx-line);
  color: var(--wx-ink);
  padding: 7px 14px;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.wx-chip:hover { border-color: var(--wx-red); color: var(--wx-red); }
.wx-chip.is-active { background: var(--wx-red); border-color: var(--wx-red); color: #fff; }
.wx-toolbar__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--wx-line);
  font-size: 14.5px;
}
.wx-empty {
  text-align: center;
  padding: 60px 20px;
  border: 1px dashed var(--wx-line);
  border-radius: var(--wx-radius);
  background: #fff;
}
.wx-empty i { font-size: 34px; color: var(--wx-line); display: block; margin-bottom: 14px; }

/* ---------- features ---------- */
.wx-feature {
  background: #fff;
  border: 1px solid var(--wx-line);
  border-radius: var(--wx-radius);
  padding: 30px 24px;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.wx-feature:hover { transform: translateY(-5px); box-shadow: var(--wx-shadow-lg); }
.wx-feature__icon {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background: rgba(217,35,24,0.09);
  color: var(--wx-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}
.wx-feature h3 { font-size: 17.5px; text-transform: uppercase; margin-bottom: 6px; }
.wx-feature p { margin: 0; font-size: 15px; }

/* ---------- why strip ---------- */
.wx-why {
  background: var(--wx-navy);
  color: rgba(255,255,255,0.8);
}
.wx-why h2, .wx-why h3 { color: #fff; }
.wx-why__item {
  display: flex;
  gap: 16px;
  padding: 22px;
  background: var(--wx-navy-soft);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--wx-radius);
  height: 100%;
}
.wx-why__item i { color: var(--wx-red); font-size: 22px; margin-top: 4px; }
.wx-why__item h3 { font-size: 17px; margin-bottom: 4px; text-transform: uppercase; }
.wx-why__item p { margin: 0; font-size: 15px; }

/* ---------- table ---------- */
.wx-table-wrap {
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--wx-line);
  border-radius: var(--wx-radius);
  box-shadow: var(--wx-shadow);
  -webkit-overflow-scrolling: touch;
}
table.wx-table { width: 100%; min-width: 940px; border-collapse: collapse; font-size: 14.5px; }
.wx-table th, .wx-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--wx-line); vertical-align: top; }
.wx-table thead th {
  background: var(--wx-navy);
  color: #fff;
  font-family: "Oswald", Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  white-space: nowrap;
}
.wx-table tbody tr:nth-child(even) { background: var(--wx-bg-alt); }
.wx-table tbody tr:hover { background: rgba(217,35,24,0.05); }
.wx-table td:first-child { font-family: "Oswald", Arial, sans-serif; color: var(--wx-ink); white-space: nowrap; }
.wx-scroll-hint { font-size: 13.5px; margin-top: 10px; }

/* ---------- catalogue ---------- */
.wx-catalogue {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
}
.wx-catalogue__pages { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.wx-catalogue__pages img {
  width: 100%;
  border: 1px solid var(--wx-line);
  border-radius: 8px;
  box-shadow: var(--wx-shadow);
  background: #fff;
  cursor: zoom-in;
  transition: transform 0.25s ease;
}
.wx-catalogue__pages img:hover { transform: translateY(-4px); }

/* ---------- gallery ---------- */
.wx-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.wx-gallery__item {
  position: relative;
  border: 1px solid var(--wx-line);
  border-radius: var(--wx-radius);
  background: #fff;
  overflow: hidden;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-in;
  padding: 10px;
}
.wx-gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.wx-gallery__item:hover img { transform: scale(1.08); }
.wx-gallery__item::after {
  content: "\f00e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20,24,31,0.45);
  color: #fff;
  font-size: 22px;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.wx-gallery__item:hover::after { opacity: 1; }

/* ---------- lightbox ---------- */
.wx-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(12, 15, 20, 0.93);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
}
.wx-lightbox.is-open { display: flex; }
.wx-lightbox img { max-width: min(94vw, 1000px); max-height: 84vh; object-fit: contain; }
.wx-lightbox__close, .wx-lightbox__nav {
  position: absolute;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 17px;
  cursor: pointer;
}
.wx-lightbox__close { top: 22px; right: 22px; }
.wx-lightbox__nav { top: 50%; transform: translateY(-50%); }
.wx-lightbox__nav--prev { left: 18px; }
.wx-lightbox__nav--next { right: 18px; }
.wx-lightbox__close:hover, .wx-lightbox__nav:hover { background: var(--wx-red); border-color: var(--wx-red); }
.wx-lightbox__caption {
  position: absolute;
  bottom: 18px;
  left: 0;
  right: 0;
  text-align: center;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  padding: 0 20px;
}

/* ---------- contact ---------- */
.wx-contact__grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 46px; align-items: start; }
.wx-map {
  margin-top: 20px;
  border-radius: var(--wx-radius);
  overflow: hidden;
  border: 1px solid var(--wx-line);
  box-shadow: 0 6px 18px rgba(20, 24, 31, 0.08);
}
.wx-map iframe { display: block; width: 100%; height: 280px; border: 0; }
.wx-contact__card {
  display: flex;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--wx-line);
  border-radius: var(--wx-radius);
  padding: 20px;
  margin-bottom: 16px;
}
.wx-contact__card i { color: var(--wx-red); font-size: 20px; margin-top: 4px; }
.wx-contact__card h3 { font-size: 16px; margin-bottom: 2px; text-transform: uppercase; }
.wx-contact__card p { margin: 0; }
.wx-note {
  background: rgba(217,35,24,0.06);
  border: 1px dashed rgba(217,35,24,0.3);
  border-radius: var(--wx-radius);
  padding: 16px 18px;
  font-size: 14.5px;
}

.wx-form {
  background: #fff;
  border: 1px solid var(--wx-line);
  border-radius: var(--wx-radius);
  box-shadow: var(--wx-shadow);
  padding: 28px;
}
.wx-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.wx-field { margin-bottom: 18px; }
.wx-field label {
  display: block;
  font-family: "Oswald", Arial, sans-serif;
  font-size: 12.5px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--wx-ink);
  margin-bottom: 7px;
}
.wx-field input, .wx-field textarea, .wx-field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--wx-line);
  border-radius: 6px;
  font-family: inherit;
  font-size: 15.5px;
  color: var(--wx-ink);
  background: #fff;
}
.wx-field textarea { min-height: 130px; resize: vertical; }
.wx-field input:focus, .wx-field textarea:focus, .wx-field select:focus { outline: none; border-color: var(--wx-red); }
.wx-field.has-error input, .wx-field.has-error textarea { border-color: var(--wx-red); background: rgba(217,35,24,0.03); }
.wx-error { display: none; color: var(--wx-red); font-size: 13px; margin-top: 6px; }
.wx-field.has-error .wx-error { display: block; }
.wx-form__status {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 6px;
  background: rgba(217,35,24,0.07);
  border: 1px solid rgba(217,35,24,0.25);
  color: var(--wx-ink);
  font-size: 15px;
}
.wx-form__status.is-visible { display: block; }

/* ---------- product detail ---------- */
.wx-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.wx-detail__media {
  background: var(--wx-bg-alt);
  border: 1px solid var(--wx-line);
  border-radius: var(--wx-radius);
  padding: 26px;
  text-align: center;
}
.wx-detail__media img { max-height: 560px; object-fit: contain; cursor: zoom-in; }
.wx-detail h1 { font-size: clamp(26px, 3.4vw, 40px); text-transform: uppercase; margin-bottom: 6px; }
.wx-specs { list-style: none; margin: 22px 0; padding: 0; border-top: 1px solid var(--wx-line); }
.wx-specs li {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  padding: 12px 2px;
  border-bottom: 1px solid var(--wx-line);
}
.wx-specs strong {
  font-family: "Oswald", Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--wx-body);
  font-weight: 500;
}
.wx-specs span { color: var(--wx-ink); text-align: right; }
.wx-pills { display: flex; flex-wrap: wrap; gap: 9px; margin: 0 0 22px; padding: 0; list-style: none; }
.wx-pills li {
  background: var(--wx-bg-alt);
  border: 1px solid var(--wx-line);
  border-radius: 40px;
  padding: 7px 14px;
  font-size: 14px;
  color: var(--wx-ink);
}
.wx-pills li i { color: var(--wx-red); margin-right: 7px; }
.wx-detail__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.wx-spec-box {
  background: #fff;
  border: 1px solid var(--wx-line);
  border-radius: var(--wx-radius);
  padding: 24px;
}
.wx-spec-box h2 { font-size: 20px; text-transform: uppercase; }

/* ---------- cta strip ---------- */
.wx-cta {
  background: var(--wx-red);
  color: #fff;
  padding: 52px 0;
}
.wx-cta__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
}
.wx-cta h2 { color: #fff; margin-bottom: 4px; text-transform: uppercase; }
.wx-cta p { margin: 0; color: rgba(255,255,255,0.9); }
.wx-cta__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- footer ---------- */
.wx-footer { background: var(--wx-navy); color: rgba(255,255,255,0.72); padding: 62px 0 0; }
.wx-footer h3 {
  color: #fff;
  font-size: 15.5px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.wx-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 34px; }
.wx-footer__logo {
  background: #fff;
  border-radius: 8px;
  padding: 12px 16px;
  display: inline-block;
  margin-bottom: 18px;
}
.wx-footer__logo img { height: 40px; object-fit: contain; }
.wx-footer ul { list-style: none; margin: 0; padding: 0; }
.wx-footer ul li { margin-bottom: 10px; }
.wx-footer a { color: rgba(255,255,255,0.75); }
.wx-footer a:hover { color: #fff; }
.wx-footer__iso {
  display: inline-block;
  margin-top: 16px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 40px;
  padding: 6px 14px;
  font-size: 13px;
  letter-spacing: 0.6px;
}
/* footer social — brand-coloured buttons */
.wx-social-block { margin-top: 22px; }
.wx-social-block__title {
  display: block;
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
}
.wx-social { display: flex; flex-wrap: wrap; gap: 10px; }
.wx-social__btn {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  color: #fff !important;
  border: none;
  transition: transform 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease;
}
.wx-social__btn:hover { transform: translateY(-3px); filter: brightness(1.1); box-shadow: 0 8px 20px rgba(0,0,0,0.35); }
.wx-social__btn--facebook { background: #1877f2; }
.wx-social__btn--instagram { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285aeb 90%); }
.wx-social__btn--youtube { background: #ff0000; }
.wx-social__btn--linkedin { background: #0a66c2; }
.wx-social__btn--whatsapp { background: #25d366; }
.wx-footer__bottom {
  margin-top: 46px;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 20px 0;
  font-size: 14px;
  text-align: center;
}

/* ---------- back to top ---------- */
.wx-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 950;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--wx-red);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  box-shadow: var(--wx-shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.25s ease;
}
.wx-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }

/* ---------- floating social bar (left) ---------- */
.wx-social-float {
  position: fixed;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 940;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px 8px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--wx-line);
  border-radius: 40px;
  box-shadow: 0 10px 30px rgba(20,24,31,0.14);
}
.wx-social-float::before {
  content: "";
  display: block;
  width: 3px; height: 18px;
  margin: 0 auto 2px;
  border-radius: 3px;
  background: var(--wx-red);
}
.wx-social-float__item {
  position: relative;
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  background: var(--wx-bg-alt);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.wx-social-float__item--facebook { color: #1877f2; }
.wx-social-float__item--instagram { color: #d6249f; }
.wx-social-float__item--youtube { color: #ff0000; }
.wx-social-float__item--linkedin { color: #0a66c2; }
.wx-social-float__item:hover { color: #fff; transform: scale(1.08); }
.wx-social-float__item--facebook:hover { background: #1877f2; }
.wx-social-float__item--instagram:hover { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285aeb 90%); }
.wx-social-float__item--youtube:hover { background: #ff0000; }
.wx-social-float__item--linkedin:hover { background: #0a66c2; }
.wx-social-float__tip {
  position: absolute;
  left: calc(100% + 14px);
  top: 50%;
  transform: translate(-6px, -50%);
  white-space: nowrap;
  background: var(--wx-navy);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.4px;
  padding: 5px 10px;
  border-radius: 6px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.2s ease;
}
.wx-social-float__tip::before {
  content: "";
  position: absolute;
  right: 100%; top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-right-color: var(--wx-navy);
}
.wx-social-float__item:hover .wx-social-float__tip { opacity: 1; visibility: visible; transform: translate(0, -50%); }

/* ---------- floating WhatsApp button (bottom-left) ---------- */
.wx-wa-float {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 945;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 18px 6px 6px;
  background: #25d366;
  color: #fff !important;
  border-radius: 40px;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.wx-wa-float:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(37, 211, 102, 0.5); }
.wx-wa-float__icon {
  position: relative;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  color: #25d366;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
}
.wx-wa-float__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #fff;
  animation: wxWaPulse 2s ease-out infinite;
}
@keyframes wxWaPulse {
  0% { transform: scale(1); opacity: 0.9; }
  100% { transform: scale(1.6); opacity: 0; }
}
.wx-wa-float__text { display: flex; flex-direction: column; line-height: 1.15; font-weight: 600; font-size: 14px; }
.wx-wa-float__text small { font-weight: 400; font-size: 11px; opacity: 0.9; }

@media (max-width: 768px) {
  .wx-social-float { display: none; } /* social icons remain in the footer on mobile */
  .wx-wa-float { left: 14px; bottom: 14px; padding: 0; background: transparent; box-shadow: none; }
  .wx-wa-float__text { display: none; }
  .wx-wa-float__icon { width: 54px; height: 54px; background: #25d366; color: #fff; font-size: 28px; box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45); }
  .wx-wa-float__icon::after { border-color: #25d366; }
}
@media (prefers-reduced-motion: reduce) { .wx-wa-float__icon::after { animation: none; } }

/* ---------- scroll animations ---------- */
.wx-reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.wx-reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .wx-reveal { opacity: 1; transform: none; transition: none; }
  .wx-hero__media img { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .wx-nav__link { padding: 10px 10px; font-size: 13.5px; }
}
@media (max-width: 1080px) {
  .wx-grid--4 { grid-template-columns: repeat(3, 1fr); }
  .wx-gallery { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 991px) {
  .wx-section { padding: 62px 0; }
  .wx-burger { display: inline-flex; align-items: center; justify-content: center; margin-left: auto; }
  .wx-header__cta { display: none; }
  .wx-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 86vw);
    height: 100vh;
    background: #fff;
    box-shadow: var(--wx-shadow-lg);
    padding: 76px 20px 30px;
    overflow-y: auto;
    transition: right 0.3s ease;
    margin-left: 0;
    z-index: 1000;
  }
  .wx-nav.is-open { right: 0; }
  .wx-nav__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 18px;
    right: 18px;
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid var(--wx-line);
    background: #fff;
    color: var(--wx-ink);
    cursor: pointer;
  }
  .wx-nav__list { flex-direction: column; align-items: stretch; gap: 2px; }
  .wx-nav__link { padding: 12px 6px; border-bottom: 1px solid var(--wx-line); font-size: 15px; }
  .wx-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 4px 0 8px 12px;
    min-width: 0;
  }
  .wx-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(12,15,20,0.45);
    z-index: 990;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease;
  }
  .wx-nav-overlay.is-open { opacity: 1; visibility: visible; }

  .wx-hero { padding: 48px 0 54px; }
  .wx-hero__grid,
  .wx-about__grid,
  .wx-catalogue,
  .wx-contact__grid,
  .wx-detail { grid-template-columns: 1fr; gap: 34px; }
  .wx-about__media { order: 2; }
  .wx-hero__media { order: 2; }
  .wx-hero__media img { max-height: 400px; }
  .wx-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .wx-footer__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .wx-section { padding: 52px 0; }
  .wx-grid--4, .wx-grid--3, .wx-grid--2 { grid-template-columns: repeat(2, 1fr); }
  .wx-gallery { grid-template-columns: repeat(2, 1fr); }
  .wx-card__img { height: 210px; }
  .wx-cat__img { height: 200px; }
  .wx-form__row { grid-template-columns: 1fr; }
  .wx-hero__stats { gap: 22px; }
  .wx-topbar { display: none; }
}
@media (max-width: 560px) {
  .wx-grid--4, .wx-grid--3, .wx-grid--2 { grid-template-columns: 1fr; }
  .wx-gallery { grid-template-columns: repeat(2, 1fr); }
  .wx-gallery__item { height: 170px; }
  .wx-catalogue__pages { grid-template-columns: repeat(2, 1fr); }
  .wx-hero__actions .wx-btn, .wx-detail__actions .wx-btn { width: 100%; }
  .wx-badge-iso { position: static; margin-top: 16px; max-width: none; display: block; }
  .wx-form { padding: 20px; }
  .wx-specs span { text-align: left; }
}

/* ---------- mobile product slider ---------- */
.wx-scroll-hint--mobile { display: none; }
@media (max-width: 767px) {
  .wx-grid--slider {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 6px 4px 18px;
    margin: 0 -4px;
    scrollbar-width: thin;
  }
  .wx-grid--slider::-webkit-scrollbar { height: 6px; }
  .wx-grid--slider::-webkit-scrollbar-thumb { background: rgba(217,35,24,0.35); border-radius: 10px; }
  .wx-grid--slider > * {
    flex: 0 0 78%;
    max-width: 78%;
    scroll-snap-align: center;
  }
  .wx-scroll-hint--mobile { display: block; margin-top: 4px; }
}
@media (max-width: 480px) {
  .wx-grid--slider > * { flex-basis: 86%; max-width: 86%; }
}

/* Banner and compact-screen refinements */
@media (max-width: 767px) {
  .wx-container { padding-left: 16px; padding-right: 16px; }
  .wx-slider { aspect-ratio: 1600 / 533; min-height: 0; }
  .wx-slider__arrow { width: 34px; height: 34px; font-size: 12px; }
  .wx-slider__arrow--prev { left: 7px; }
  .wx-slider__arrow--next { right: 7px; }
  .wx-slider__dots { bottom: 7px; padding: 5px 7px; gap: 6px; }
  .wx-slider__dots button { width: 7px; height: 7px; }
  .wx-slider__dots button.is-active { width: 20px; }
  .wx-header__bar { height: 66px; }
  .wx-logo img { height: 36px; max-width: 160px; }
  .wx-heading { overflow-wrap: anywhere; }
  .wx-toolbar { padding: 16px; }
  .wx-filters > div { width: 100%; }
  .wx-chips { gap: 7px; }
  .wx-chip { flex: 1 1 auto; min-height: 40px; }
  .wx-cta__inner { text-align: center; justify-content: center; }
  .wx-cta__inner .wx-btn { width: 100%; }
  .wx-footer__grid { gap: 28px; }
}
@media (max-width: 560px) {
  .wx-section { padding: 44px 0; }
  .wx-gallery { grid-template-columns: 1fr; }
  .wx-gallery__item { height: auto; aspect-ratio: 4 / 3; padding: 0; }
  .wx-footer__grid { grid-template-columns: 1fr; }
  .wx-toolbar__foot .wx-btn { width: 100%; }
  .wx-lightbox__nav { width: 40px; height: 40px; }
  .wx-lightbox__nav--prev { left: 8px; }
  .wx-lightbox__nav--next { right: 8px; }
}
@media (prefers-reduced-motion: reduce) {
  .wx-slide { transition: none; }
}

/* ---------- testimonials ---------- */
.wx-testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.wx-testi {
  position: relative;
  margin: 0;
  background: #fff;
  border: 1px solid var(--wx-line);
  border-top: 4px solid var(--wx-red);
  border-radius: var(--wx-radius);
  padding: 30px 28px 26px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--wx-shadow);
}
.wx-testi__mark {
  position: absolute;
  top: 22px;
  right: 24px;
  font-size: 38px;
  color: var(--wx-red);
  opacity: 0.12;
}
.wx-testi__stars { color: #f5a623; font-size: 14px; display: flex; gap: 3px; margin-bottom: 14px; }
.wx-testi blockquote { margin: 0 0 22px; color: var(--wx-ink); font-size: 16px; line-height: 1.7; flex: 1; }
.wx-testi figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--wx-line);
}
.wx-testi__avatar {
  width: 44px; height: 44px; flex: 0 0 44px;
  border-radius: 50%;
  background: var(--wx-navy);
  color: #fff;
  display: grid; place-items: center;
  font-family: "Oswald", Arial, sans-serif;
  font-size: 18px;
}
.wx-testi figcaption strong { display: block; font-family: "Oswald", Arial, sans-serif; color: var(--wx-ink); font-weight: 600; letter-spacing: 0.3px; }
.wx-testi figcaption small { display: block; font-size: 13px; color: var(--wx-body); }
@media (max-width: 991px) {
  .wx-testimonials { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .wx-testimonials {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 86%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
  }
  .wx-testi { scroll-snap-align: start; padding: 26px 22px 22px; }
}
