:root {
  --bg: #ffffff;
  --soft: #f6f7f8;
  --soft-2: #f1f3f5;
  --ink: #090b10;
  --muted: #5d6470;
  --line: #e6e8eb;
  --red: #df1019;
  --red-dark: #c80d16;
  --green: #12a85a;
  --shadow: 0 18px 50px rgba(15, 23, 42, .08);
  --radius: 18px;
  --max: 1200px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #c8ccd2 transparent;
}
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: #c8ccd2;
  border-radius: 999px;
  border: 2px solid #fff;
  background-clip: padding-box;
}
::-webkit-scrollbar-thumb:hover {
  background: #a8acb3;
  background-clip: padding-box;
  border: 2px solid #fff;
}
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.35;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.container { width: min(var(--max), calc(100% - 64px)); margin: 0 auto; }
.header .container { width: min(var(--max), calc(100% - 64px)); }
.header {
  height: 66px;
  border-bottom: 1px solid var(--line);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 20;
}
.nav {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo {
  font-weight: 850;
  font-size: 26px;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}
.logo small { display: block; color: #626873; font-size: 10px; font-weight: 500; margin-left: 32px; margin-top: 3px; }
.logo .dot { color: var(--red); font-size: .74em; }
.signal { color: var(--red); margin-right: 8px; font-weight: 900; }
.menu {
  display: flex;
  align-items: center;
  gap: 29px;
  margin-left: auto;
  font-weight: 750;
  font-size: 12.5px;
  line-height: 1;
  min-width: 0;
}
.menu a { white-space: nowrap; }
.menu a.active { color: var(--red); }
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  padding: 0;
}
.menu-toggle > span:not(.screen-reader-text) {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform .18s ease, opacity .18s ease;
}
.menu-toggle.is-open > span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.is-open > span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open > span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.actions { display: flex; align-items: center; gap: 10px; margin-left: 6px; }
.icon-btn, .cart-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;
  position: relative;
  color: transparent;
  font-size: 0;
}
.icon-btn {
  background-image: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='11' cy='11' r='6.5' stroke='%23090B10' stroke-width='2.2'/%3E%3Cpath d='M16.2 16.2L20 20' stroke='%23090B10' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E");
}
.header-search {
  position: relative;
  display: flex;
  align-items: center;
}
.header-search input {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  padding: 0;
  color: transparent;
  font-size: 12px;
  font-weight: 750;
  outline: 0;
  transition: width .18s ease, border-radius .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.header-search input::placeholder { color: transparent; }
.header-search.is-open input,
.header-search:focus-within input {
  width: 190px;
  border-radius: 999px;
  padding: 0 43px 0 15px;
  color: var(--ink);
}
.header-search.is-open input::placeholder,
.header-search:focus-within input::placeholder { color: #8b929d; }
.header-search input:focus {
  border-color: #cfd4dc;
  box-shadow: 0 0 0 4px rgba(9, 11, 16, .04);
}
.header-search .icon-btn {
  position: absolute;
  right: 0;
  top: 0;
  border-color: transparent;
  background-color: transparent;
}
.cart-btn {
  background-image: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.5 7.5h13l-1.2 7.1a2 2 0 0 1-2 1.7H9.2a2 2 0 0 1-2-1.7L5.7 4.8H3.5' stroke='%23090B10' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='9.2' cy='20' r='1.3' fill='%23090B10'/%3E%3Ccircle cx='17' cy='20' r='1.3' fill='%23090B10'/%3E%3C/svg%3E");
}
.cart-btn::after {
  content: attr(data-count);
  position: absolute;
  right: 4px;
  top: -4px;
  min-width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  display: grid;
  place-items: center;
  font-weight: 800;
}
.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  min-height: 42px;
  font-size: 14px;
  cursor: default;
}
.actions .btn {
  min-height: 38px;
  min-width: 140px;
  padding: 0 22px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
}
.btn .btn-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.btn-red { background: var(--red); color: #fff; box-shadow: 0 12px 26px rgba(223, 16, 25, .16); }
.btn-red:hover { background: var(--red-dark); }
.btn-white { background: #fff; border-color: var(--line); color: var(--ink); }
.btn-black { background: #111216; color: #fff; }
.eyebrow { color: var(--red); font-weight: 900; letter-spacing: .1em; text-transform: uppercase; font-size: 12px; }
.hero {
  position: relative;
  overflow: hidden;
  padding: 32px 0 24px;
  background: linear-gradient(90deg, #fff 0%, #fff 47%, #f4f6f7 100%);
}
.wc-shop-hero {
  background: #f4f6f7;
}
.hero-grid {
  min-height: 450px;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 30px;
  align-items: center;
}
.hero h1 {
  margin: 20px 0 18px;
  max-width: 520px;
  font-size: clamp(34px, 2.95vw, 36px);
  line-height: 1.07;
  letter-spacing: 0;
  font-weight: 900;
}
.category-hero h1 {
  margin: 20px 0 18px;
  max-width: 520px;
  font-size: clamp(34px, 2.95vw, 36px);
  line-height: 1.07;
  letter-spacing: 0;
  font-weight: 900;
}
.hero p { color: var(--muted); font-size: 15.5px; max-width: 455px; margin: 0 0 25px; line-height: 1.48; }
.category-hero p { color: var(--muted); font-size: 15.5px; max-width: 455px; margin: 0 0 25px; line-height: 1.48; }
.hero-buttons { display: flex; gap: 16px; align-items: center; margin-bottom: 30px; }
.brand-row { display: flex; gap: 27px; align-items: center; color: #343941; font-weight: 900; font-size: 13px; text-transform: uppercase; opacity: .82; }
.hero-grid > div:first-child { position: relative; z-index: 2; padding-left: 0; transform: translateY(7px); }
.hero-media {
  position: relative;
  min-height: 450px;
  display: grid;
  align-items: center;
  overflow: visible;
}
.hero-slideshow {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  margin-left: 0;
  padding: 32px 40px;
  box-sizing: border-box;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, #f9fafb 0%, #f0f2f4 100%);
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(15, 23, 42, .08);
}
.hero-slideshow::before {
  display: none;
}
.hero-slideshow::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 50% 60%, rgba(255,255,255,0) 0%, rgba(244,246,247,.55) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0;
  z-index: 2;
  animation: heroSlide 18s infinite;
}
.hero-slide:nth-child(1) {
  opacity: 1;
  animation-delay: 0s;
}
.hero-slide:nth-child(2) {
  animation-delay: 6s;
}
.hero-slide:nth-child(3) {
  animation-delay: 12s;
}
@keyframes heroSlide {
  0%, 30% { opacity: 1; transform: scale(1); }
  36%, 100% { opacity: 0; transform: scale(1.04); }
}
.hero-feature-stack {
  position: absolute;
  right: 5px;
  top: 55px;
  z-index: 3;
  display: grid;
  gap: 10px;
  width: 194px;
}
.hero-feature {
  min-height: 94px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 13px;
  box-shadow: 0 16px 34px rgba(15,23,42,.12);
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 10px;
  align-items: center;
  backdrop-filter: blur(10px);
}
.hero-feature__graphic {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #f4f6f8;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero-feature__graphic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-feature__icon {
  color: #101318;
  background: #fff;
}
.hero-feature__icon svg {
  width: 34px;
  height: 34px;
}
.hero-feature__copy {
  display: block;
  min-width: 0;
}
.hero-feature__copy strong {
  display: block;
  color: var(--ink);
  font-size: 12.5px;
  line-height: 1.15;
  font-weight: 900;
}
.hero-feature__copy span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 10.5px;
  line-height: 1.28;
  font-weight: 650;
}
.hero-feature__stat {
  margin: 0 0 3px !important;
  color: var(--red) !important;
  font-size: 22px !important;
  line-height: .9 !important;
  font-weight: 950 !important;
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    animation: none;
  }
  .hero-slide:not(:first-child) {
    opacity: 0;
  }
}
.value-strip {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .06);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}
.value-strip.container { width: min(var(--max), calc(100% - 64px)); }
.value { min-height: 82px; padding: 13px 22px; display: flex; gap: 14px; align-items: center; border-right: 1px solid var(--line); }
.value:last-child { border-right: 0; }
.ico { width: 32px; font-size: 28px; line-height: 1; text-align: center; flex: 0 0 32px; }
.value strong { display: block; font-size: 13px; line-height: 1.2; }
.value span { color: var(--muted); font-size: 10.8px; font-weight: 600; line-height: 1.35; }
.value-strip .ico {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: block;
  font-size: 0;
  line-height: 0;
  color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 26px 26px;
}
.value-strip .value:nth-child(1) .ico { background-image: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 2L6 13h5l-1 9 7-12h-5l1-8z' stroke='%23090B10' stroke-width='1.7' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.value-strip .value:nth-child(2) .ico { background-image: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 3.3l2.5 5.1 5.6.8-4 3.9.9 5.5-5-2.6-5 2.6.9-5.5-4-3.9 5.6-.8L12 3.3z' stroke='%23090B10' stroke-width='1.6' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.value-strip .value:nth-child(3) .ico { background-image: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2.8L5 5.9v5.4c0 4.8 2.9 8.3 7 10 4.1-1.7 7-5.2 7-10V5.9l-7-3.1Z' stroke='%23090B10' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='M8.5 12l2.2 2.1 4.8-5' stroke='%23090B10' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.value-strip .value:nth-child(4) .ico { background-image: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 21s6.5-5.7 6.5-11.2a6.5 6.5 0 0 0-13 0C5.5 15.3 12 21 12 21Z' stroke='%23090B10' stroke-width='2' stroke-linejoin='round'/%3E%3Ccircle cx='12' cy='9.8' r='2.35' stroke='%23090B10' stroke-width='2'/%3E%3C/svg%3E"); }
.section { padding: 46px 0; }
.brand-section { padding: 46px 0 32px; }
.reasons-section { padding: 34px 0 34px; }
.steps-section { padding: 26px 0 34px; }
.reviews-section { padding: 26px 0 32px; }
.cta-section { padding: 18px 0 56px; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 22px; }
.section h2 { margin: 0; font-size: 30px; line-height: 1.1; font-weight: 900; }
.reasons-section h2,
.steps-section h2,
.reviews-section h2 { font-size: 24px; }
.reviews-section .section-head { margin-bottom: 16px; }
.reviews-section .red-link { font-size: 12px; font-weight: 900; }
.section-lead { color: var(--muted); max-width: 720px; font-size: 18px; margin: 8px 0 0; }
.red-link { color: var(--red); font-weight: 850; }
.product-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.product-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 35px rgba(15,23,42,.06);
  position: relative;
}
.product-card .badge, .badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--red);
  color: #fff;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 900;
  z-index: 2;
}
.product-img { height: 158px; background: #fff; display: grid; place-items: center; padding: 12px; border-bottom: 1px solid var(--line); }
.product-row .product-img {
  position: relative;
  padding: 0;
  overflow: hidden;
}
.product-row .product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: none;
}
.product-row .product-card:first-child .product-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 76px;
  height: 58px;
  background: #fff;
}
.product-row .product-card:nth-child(1) .product-img img,
.product-row .product-card:nth-child(2) .product-img img,
.product-row .product-card:nth-child(3) .product-img img,
.product-row .product-card:nth-child(4) .product-img img,
.product-row .product-card:nth-child(5) .product-img img { transform: none; }
.product-card h3 { font-size: 15px; margin: 0 0 7px; font-weight: 850; }
.product-card p { color: var(--muted); margin: 0 0 10px; font-size: 13px; font-weight: 600; }
.product-body { padding: 16px; position: relative; }
.price { font-size: 20px; font-weight: 950; }
.bk-lowest-price {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 750;
}
.bk-lowest-price .woocommerce-Price-amount {
  color: var(--ink);
  font-weight: 900;
}
.product-card .bk-lowest-price {
  max-width: calc(100% - 44px);
  padding-right: 44px;
  font-size: 11px;
}
.bk-product-summary .bk-lowest-price {
  margin-top: 8px;
  font-size: 13px;
}
.cart-small {
  position: absolute;
  right: 14px;
  bottom: 12px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: transparent;
  font-size: 0;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.5 7.5h13l-1.2 7.1a2 2 0 0 1-2 1.7H9.2a2 2 0 0 1-2-1.7L5.7 4.8H3.5' stroke='%23090B10' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='9.2' cy='20' r='1.3' fill='%23090B10'/%3E%3Ccircle cx='17' cy='20' r='1.3' fill='%23090B10'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 19px 19px;
}
.home-featured-products .product-row {
  gap: 18px;
  align-items: stretch;
}
.home-featured-products .home-product-card {
  display: flex;
  flex-direction: column;
  min-height: 322px;
  border-radius: 8px;
}
.home-featured-products .product-card:first-child .product-img::before {
  display: none;
}
.home-featured-products .product-img {
  position: relative;
  height: 158px;
  min-height: 158px;
  padding: 10px;
}
.home-featured-products .product-img img {
  position: absolute;
  inset: 10px;
  width: calc(100% - 20px) !important;
  height: calc(100% - 20px) !important;
  max-width: none;
  max-height: none;
  aspect-ratio: auto !important;
  object-fit: contain;
  transform: none !important;
}
.home-featured-products .product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 16px 16px 50px;
}
.home-featured-products .product-card h3 {
  min-height: 38px;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.28;
}
.home-featured-products .product-card h3 a {
  color: var(--ink);
}
.home-featured-products .product-card p {
  min-height: 19px;
  margin-bottom: 14px;
  font-size: 12.5px;
  line-height: 1.35;
}
.home-featured-products .price {
  margin-top: auto;
  padding-right: 42px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.18;
}
.home-featured-products .price del {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
  opacity: .62;
}
.home-featured-products .price ins {
  text-decoration: none;
}
.home-featured-products .cart-small {
  right: 14px;
  bottom: 14px;
}
.category-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.category-card {
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  position: relative;
  box-shadow: 0 10px 30px rgba(15,23,42,.05);
}
.category-card img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.category-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg,#fff 0%,rgba(255,255,255,.9) 34%,rgba(255,255,255,.08) 100%); }
.category-content { position: relative; z-index: 1; padding: 27px; max-width: 230px; }
.category-content h3 { font-size: 26px; line-height: 1.05; margin: 0 0 13px; font-weight: 900; }
.ticks { margin: 0 0 22px; padding: 0; list-style: none; color: #20252d; font-weight: 700; font-size: 14px; }
.ticks li { margin: 5px 0; }
.ticks li::before { content: "✓ "; }
.category-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.category-tile {
  min-height: 284px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  position: relative;
  display: grid;
  box-shadow: 0 8px 24px rgba(15,23,42,.08);
}
.category-tile img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 62%;
  height: 100%;
  object-fit: cover;
}
.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,#fff 0%,rgba(255,255,255,.96) 43%,rgba(255,255,255,.15) 100%);
}
.tile-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-items: flex-start;
  padding: 26px;
  min-height: 284px;
  max-width: 245px;
}
.tile-content h3 {
  margin: 0 0 10px;
  font-size: 23px;
  line-height: 1.05;
  font-weight: 900;
}
.tile-content h3 a {
  color: inherit;
}
.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  color: #3d4550;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.35;
}
.check-list li {
  margin: 4px 0;
}
.check-list li::before {
  content: "✓";
  margin-right: 8px;
}
.check-list a {
  color: inherit;
}
.check-list a:hover,
.tile-content h3 a:hover {
  color: var(--red);
}
.tile-content .btn {
  position: relative;
  z-index: 3;
  align-self: end;
  min-height: 44px;
  padding: 0 22px;
  font-size: 13px;
  margin-top: 20px;
  white-space: nowrap;
  cursor: pointer;
}
.brand-panel {
  display: grid;
  grid-template-columns: 1.35fr repeat(5, 1fr);
  gap: 10px;
  align-items: stretch;
}
.brand-intro, .brand-box, .reason, .review, .info-card, .filter, .spec-card {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
}
.brand-intro {
  min-height: 246px;
  padding: 22px;
}
.brand-intro h2 {
  font-size: 24px;
  line-height: 1.05;
  max-width: 145px;
  margin-bottom: 15px;
}
.brand-intro p {
  margin: 0 0 17px;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.28;
  max-width: 150px;
}
.brand-intro .btn {
  min-height: 36px;
  padding: 0 18px;
  font-size: 12px;
}
.brand-box {
  min-height: 246px;
  padding: 60px 12px 55px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  font-size: 13px;
  font-weight: 900;
}
.brand-box small {
  color: var(--muted);
  display: block;
  font-size: 11px;
  font-weight: 850;
}
.reasons {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 22px;
  margin-top: 18px;
}
.reason {
  border: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: flex-start;
}
.reason .ico {
  width: 18px;
  flex-basis: 18px;
  font-size: 12px;
  line-height: 1.2;
  color: #3c4551;
}
.reason strong { font-size: 11px; line-height: 1.25; display: block; }
.reason span { color: var(--muted); font-size: 10px; line-height: 1.55; font-weight: 600; }
.steps {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 32px;
  margin-top: 18px;
}
.step {
  display: grid;
  grid-template-columns: 21px 18px 1fr;
  align-items: flex-start;
  gap: 10px;
  position: relative;
}
.num {
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 10px;
  flex: 0 0 auto;
}
.step .ico {
  width: 18px;
  flex-basis: 18px;
  font-size: 12px;
  line-height: 1.2;
  color: #3c4551;
}
.step strong { display: block; font-size: 11px; line-height: 1.25; }
.step span { color: var(--muted); font-size: 10px; line-height: 1.55; font-weight: 600; }
.reviews {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
}
.review {
  min-height: 96px;
  padding: 16px;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 12px;
  align-items: start;
  border-radius: 7px;
}
.avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(#f1f3f5,#e9edf2); display: grid; place-items: center; font-size: 16px; }
.stars { color: var(--red); letter-spacing: 2px; font-size: 11px; margin: 4px 0; }
.review strong { font-size: 12px; line-height: 1.2; }
.review p { color: #4f5661; margin: 0; font-size: 10px; line-height: 1.35; font-weight: 600; }
.cta {
  background: linear-gradient(100deg,#f7f7f8 0%,#fff 62%,#fbe9ea 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 31px 34px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  overflow: hidden;
}
.cta h2 { margin: 0 0 7px; font-size: 22px; line-height: 1.1; }
.cta p { margin: 0; color: var(--muted); font-weight: 600; font-size: 12px; }
.cta .hero-buttons { margin: 0; gap: 12px; }
.cta .btn { min-height: 38px; padding: 0 24px; font-size: 12px; }

.v2-section { padding: 56px 0; }
.v2-section--tight { padding: 36px 0; }
.v2-section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 24px;
}
.v2-section-title {
  margin: 0;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: 0;
  font-weight: 900;
}
.v2-section-link {
  font-size: 13px;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
}
.trust-tech-section {
  padding-top: 34px;
  padding-bottom: 42px;
}
.trust-tech {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 22px;
  align-items: center;
  min-width: 0;
}
.trust-tech__content {
  min-width: 0;
}
.trust-tech__content h2 {
  margin: 0 0 8px;
  font-size: 23px;
  line-height: 1.08;
  font-weight: 900;
}
.trust-tech__content p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 600;
}
.trust-tech__content .btn {
  min-height: 43px;
  padding: 0 20px;
  font-size: 12px;
}
.trust-tech__cards {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  min-width: 0;
}
.trust-tech__card {
  height: 104px;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15,23,42,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
}
.trust-tech__card img {
  width: 100%;
  height: 100%;
  max-height: 82px;
  max-width: 96%;
  margin: auto;
  object-fit: contain;
}
.v2-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.v2-why-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
}
.v2-why-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #fff1f2;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.v2-why-card__title {
  margin: 0 0 4px;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 900;
}
.v2-why-card__text {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 600;
}
.v2-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.v2-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
}
.v2-step__num {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.v2-step__title {
  margin: 0 0 4px;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 900;
}
.v2-step__text {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 600;
}
.v2-why-section {
  padding-top: 54px;
  padding-bottom: 18px;
}
.v2-process-section {
  padding-top: 22px;
  padding-bottom: 52px;
}
.v2-why-section .v2-section-head,
.v2-process-section .v2-section-head {
  margin-bottom: 24px;
}
.v2-benefits {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15,23,42,.05);
}
.v2-benefit {
  min-height: 116px;
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 12px;
  padding: 20px 18px;
  border-left: 1px solid var(--line);
}
.v2-benefit:first-child {
  border-left: 0;
}
.v2-benefit:last-child {
  border-right: 0;
}
.v2-benefit__icon {
  width: 46px;
  height: 46px;
  color: #15181d;
  display: flex;
  align-items: center;
  justify-content: center;
}
.v2-benefit__icon svg {
  width: 44px;
  height: 44px;
}
.v2-benefit__title {
  margin: 0 0 6px;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 900;
}
.v2-benefit__text {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 600;
}
.v2-process-shell {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(180deg, #fff 0%, #fbfbfc 100%);
  box-shadow: 0 14px 34px rgba(15,23,42,.05);
  padding: 26px 28px 30px;
}
.v2-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 42px;
}
.v2-process-step {
  position: relative;
  display: grid;
  grid-template-columns: 31px 44px 1fr;
  align-items: start;
  gap: 11px;
  min-height: 112px;
  padding: 4px 0;
}
.v2-process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: calc(100% + 8px);
  top: 24px;
  width: 34px;
  height: 1px;
  background-image: linear-gradient(to right, #c9ced5 45%, transparent 45%);
  background-size: 7px 1px;
}
.v2-process-step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: calc(100% + 40px);
  top: 20px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #b7bec7;
  border-right: 1px solid #b7bec7;
  transform: rotate(45deg);
}
.v2-process-step__num {
  width: 29px;
  height: 29px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.28);
}
.v2-process-step__icon {
  width: 42px;
  height: 42px;
  color: #15181d;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 3px;
}
.v2-process-step__icon svg {
  width: 38px;
  height: 38px;
}
.v2-process-step__title {
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 1.22;
  font-weight: 900;
}
.v2-process-step__text {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
  font-weight: 600;
}
.v2-tcards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.v2-tcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 196px;
}
.v2-tcard__stars {
  display: flex;
  gap: 2px;
  color: #f5a400;
  font-size: 14px;
  letter-spacing: 1px;
}
.v2-tcard__text {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 600;
}
.v2-tcard__person {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 4px;
}
.v2-tcard__avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #f1f3f5;
  background-size: cover;
  background-position: center;
  flex: 0 0 40px;
}
.v2-tcard__name {
  font-size: 13px;
  font-weight: 900;
}
.v2-tcard__role {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

.page-hero {
  position: relative;
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
  border: 0;
  border-radius: 0;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 58%;
  background-image: var(--page-hero-image);
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #fff 0%, #fff 38%, rgba(255,255,255,.85) 48%, rgba(255,255,255,.12) 72%);
  pointer-events: none;
}
.contact-page-hero { --page-hero-image: url("../images/contact-hero-support.jpg"); }
.contact-page-hero::before {
  width: 58%;
  background-size: cover;
  background-position: center right;
}
.contact-page-hero .container {
  width: 100%;
  min-height: 430px;
  padding-top: 30px;
  padding-bottom: 42px;
}
.contact-page-hero .page-hero-copy {
  width: 430px;
  padding-top: 58px;
}
.contact-page-hero .page-hero-copy h1 {
  margin-bottom: 18px;
  font-size: 42px;
}
.about-page-hero { --page-hero-image: url("../images/about-hero-mower.jpg"); }
.about-page-hero::before {
  width: 58%;
  background-size: cover;
  background-position: center right;
}
.page-hero .container {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 292px;
  padding: 30px 0 46px;
}
.page-hero .breadcrumb { margin-top: 0; }
.page-hero-copy {
  width: 390px;
  max-width: 100%;
  padding-top: 40px;
}
.page-hero-copy h1 {
  margin: 0 0 18px;
  font-size: 38px;
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: 0;
}
.page-hero-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 600;
}
.contact-quick {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: -58px;
  margin-bottom: 42px;
}
.contact-card {
  min-height: 110px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 15px 35px rgba(15,23,42,.06);
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-card div { min-width: 0; }
.contact-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff0f1;
  color: var(--red);
  font-size: 24px;
  font-weight: 900;
}
.contact-icon svg {
  width: 24px;
  height: 24px;
}
.contact-card .contact-icon {
  width: 54px;
  height: 54px;
  flex-basis: 54px;
  font-size: 28px;
}
.contact-card .contact-icon svg {
  width: 28px;
  height: 28px;
}
.contact-card strong {
  display: block;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 900;
  margin-bottom: 7px;
}
.contact-card span:not(.contact-icon) {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 650;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  padding: 0 0 54px;
}
.contact-layout h2,
.about-mission h2,
.about-why-section h2 {
  margin: 0 0 13px;
  font-size: 23px;
  line-height: 1.1;
  font-weight: 900;
}
.contact-form,
.contact-form-shortcode form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 18px;
}
.contact-form-shortcode .wpcf7,
.contact-form-shortcode .wpcf7-form,
.contact-form-shortcode .fluentform,
.contact-form-shortcode .frm_forms,
.contact-form-shortcode form {
  width: 100%;
}
.contact-form-shortcode p,
.contact-form-shortcode .ff-el-group,
.contact-form-shortcode .frm_form_field {
  margin: 0;
}
.contact-form label,
.contact-form-shortcode label,
.contact-form-shortcode .ff-el-input--label label,
.contact-form-shortcode .frm_primary_label {
  color: #4f5662;
  font-size: 13px;
  font-weight: 700;
}
.contact-form .full,
.contact-form-shortcode form > p:nth-of-type(n+3),
.contact-form-shortcode .ff-el-group:nth-of-type(n+3),
.contact-form-shortcode .frm_form_field:nth-of-type(n+3) { grid-column: 1 / -1; }
.contact-form input,
.contact-form select,
.contact-form textarea,
.contact-form-shortcode input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
.contact-form-shortcode select,
.contact-form-shortcode textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: #fff;
  color: var(--ink);
  padding: 12px 14px;
  font-size: 13.5px;
  outline: 0;
}
.contact-form textarea,
.contact-form-shortcode textarea {
  min-height: 125px;
  resize: vertical;
}
.contact-form button,
.contact-form-shortcode button,
.contact-form-shortcode input[type="submit"] {
  width: fit-content;
  min-width: 190px;
  min-height: 48px;
  margin-top: 2px;
  padding-left: 22px;
  padding-right: 22px;
  font-size: 14px;
  white-space: nowrap;
}
.contact-form-shortcode button,
.contact-form-shortcode input[type="submit"] {
  border: 0;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  cursor: pointer;
  font-weight: 900;
  box-shadow: 0 16px 28px rgba(223, 16, 25, .17);
}
.contact-form-shortcode .wpcf7-not-valid-tip,
.contact-form-shortcode .ff-el-is-error,
.contact-form-shortcode .frm_error {
  margin-top: 6px;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
}
.contact-form-shortcode .wpcf7-response-output,
.contact-form-shortcode .ff-message-success,
.contact-form-shortcode .frm_message {
  grid-column: 1 / -1;
  margin: 6px 0 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}
.map-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.map-panel img,
.map-panel iframe {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
  border: 0;
}
.map-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
}
.map-caption strong,
.map-caption span {
  display: block;
}
.map-caption strong {
  font-size: 15px;
  line-height: 1.2;
  margin-bottom: 5px;
}
.map-caption span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}
.contact-layout h2 {
  margin-bottom: 18px;
  font-size: 28px;
}
.about-page-hero .container {
  width: 100%;
  min-height: 430px;
  padding-top: 30px;
  padding-bottom: 42px;
}
.about-page-hero .page-hero-copy {
  width: 430px;
  padding-top: 58px;
}
.about-page-hero .page-hero-copy h1 {
  margin-bottom: 18px;
  font-size: 42px;
}
.about-page-hero .page-hero-copy p {
  font-size: 14px;
  line-height: 1.55;
}
.about-kpis {
  width: 585px;
  max-width: 100%;
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 14px 35px rgba(15,23,42,.07);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}
.about-kpis article {
  min-height: 118px;
  padding: 20px 14px;
  text-align: center;
}
.about-red-icon {
  display: block;
  color: var(--red);
  font-size: 28px;
  line-height: 1;
  margin-bottom: 12px;
  font-weight: 900;
}
.about-kpis strong,
.about-kpis b,
.about-kpis small {
  display: block;
}
.about-kpis strong,
.about-kpis b {
  font-size: 13px;
  line-height: 1.15;
  font-weight: 900;
}
.about-kpis small {
  margin-top: 9px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
  font-weight: 650;
}
.about-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 42px 0 28px;
}
.about-mission p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
  font-weight: 600;
}
.mission-values {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 30px;
  align-content: start;
}
.mission-values article {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.mission-values strong {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 900;
}
.mission-values .contact-icon {
  width: 42px;
  height: 42px;
  flex-basis: 42px;
  font-size: 20px;
}
.mission-values article:nth-child(3) {
  grid-column: 1 / -1;
  max-width: 360px;
}
.about-why-section {
  padding-top: 28px;
  padding-bottom: 54px;
}
.about-reasons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.about-reasons article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(15,23,42,.06);
}
.about-reasons img {
  width: 100%;
  height: 118px;
  object-fit: cover;
}
.about-reasons div {
  padding: 17px 18px 21px;
}
.about-reasons strong,
.about-reasons span {
  display: block;
}
.about-reasons strong {
  margin-bottom: 7px;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 900;
}
.about-reasons span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 650;
}
.document-page {
  background: #f5f7fa;
}
.document-hero {
  position: relative;
  overflow: hidden;
  padding: 42px 0 38px;
  border-bottom: 1px solid #edf0f3;
  background:
    radial-gradient(520px 320px at 72% 12%, rgba(223, 16, 25, .12), transparent 68%),
    linear-gradient(90deg, #fff 0%, #fff 50%, #f6f7f8 100%);
}
.document-hero .breadcrumb {
  margin: 0 0 42px;
}
.document-hero-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 34px;
}
.document-hero-copy {
  width: min(100%, 790px);
}
.document-hero-copy h1 {
  position: relative;
  margin: 0 0 31px;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: 0;
}
.document-hero-copy h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  width: 68px;
  height: 3px;
  border-radius: 999px;
  background: var(--red);
}
.document-hero-copy p {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.45;
  font-weight: 650;
}
.document-shell {
  padding: 38px 0 70px;
}
.document-card {
  width: min(100%, 1040px);
  margin: 0 auto;
  padding: 48px 50px 54px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(15,23,42,.055);
}
.document-content {
  color: #454d59;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 600;
}
.document-content > *:first-child {
  margin-top: 0;
}
.document-content > *:last-child {
  margin-bottom: 0;
}
.document-content h2,
.document-content h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.25;
  font-weight: 900;
}
.document-content h2:not(:first-child),
.document-content h3:not(:first-child) {
  margin-top: 23px;
  padding-top: 22px;
  border-top: 1px solid #eceff2;
}
.document-content p {
  margin: 0 0 12px;
}
.document-content ul,
.document-content ol {
  margin: 0 0 14px;
  padding-left: 22px;
}
.document-content li {
  margin: 6px 0;
}
.document-content a {
  color: var(--red);
  font-weight: 850;
}
.footer { border-top: 1px solid var(--line); padding: 44px 0 24px; }
.footer-logo-wrap { margin-bottom: 16px; }
.footer-logo-wrap .logo {
  display: inline-block;
  font-size: 36px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.5px;
  color: var(--ink);
}
.footer-logo-wrap .logo .dot {
  color: var(--red);
  font-size: .68em;
  font-weight: 900;
  margin-left: 1px;
}
.footer.dark { background: #1f2732; color: #fff; border-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3,1fr); gap: 45px; }
.footer h4 { margin: 0 0 13px; }
.footer p, .footer a { color: #68717e; font-weight: 600; font-size: 14px; display: block; margin: 7px 0; }
.footer.dark p, .footer.dark a { color: #cbd2dc; }
.copyright { text-align: center; color: #9aa1aa; font-size: 12px; margin-top: 36px; }

.v1 .hero-grid { min-height: 388px; grid-template-columns: .9fr 1.1fr; }
.v1 .hero h1 { font-size: 46px; }
.v1 .hero p { font-size: 17px; }
.v1 .hero-media { min-height: 360px; }
.pill-row { display: flex; flex-wrap: wrap; gap: 8px; }
.pill { border: 1px solid #cfd4da; border-radius: 999px; padding: 6px 13px; color: var(--muted); font-weight: 700; font-size: 13px; background: #fff; }
.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.feature { border: 1px solid var(--line); border-radius: 8px; padding: 25px; display: flex; gap: 20px; align-items: center; min-height: 105px; }
.mini-cats { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.mini-cat { border: 1px solid var(--line); border-radius: 8px; overflow: hidden; background: #fff; }
.mini-cat img { height: 110px; width: 100%; object-fit: cover; }
.mini-cat strong { display: flex; justify-content: space-between; padding: 12px 14px; }
.cramer-band { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; border: 1px solid var(--line); border-radius: 8px; padding: 12px; }
.cramer-card { padding: 24px; background: #fff; border-radius: 8px; }
.local-band { border: 1px solid var(--line); border-radius: 8px; display: grid; grid-template-columns: repeat(3,1fr) 1.2fr; overflow: hidden; }
.local-band > div { padding: 28px; }
.local-band img { width: 100%; height: 100%; object-fit: cover; }

.breadcrumb { color: #848b96; font-size: 12.5px; font-weight: 750; margin: 18px 0 0; }
.category-hero { background: linear-gradient(90deg,#fff 0%,#fff 47%,#f4f6f7 100%); padding: 32px 0 24px; overflow: hidden; }
.category-hero-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 30px; align-items: center; min-height: 450px; }
.category-hero-grid > div:first-child { position: relative; z-index: 2; padding-left: 0; transform: translateY(7px); }
.category-hero-visual { min-height: 430px; overflow: visible; }
.category-hero .hero-slideshow { top: 0; left: 0; width: 100%; height: 100%; margin-left: 0; }
.category-hero .hero-feature-stack { top: 48px; right: -8px; }
.category-hero-media { position: relative; min-height: 430px; border-radius: 28px; display: grid; place-items: center; background: linear-gradient(#f9fafb,#f0f2f4); border: 1px solid var(--line); overflow: hidden; }
.category-hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 88px 88px;
  opacity: .8;
}
.category-hero-media img { position: relative; width: 72%; }
.float-note { position: absolute; right: 36px; background: #fff; border-radius: 14px; border: 1px solid var(--line); padding: 20px 28px; display: flex; gap: 14px; align-items: center; min-width: 240px; box-shadow: var(--shadow); font-weight: 850; }
.float-note small { display: block; color: var(--muted); margin-top: 4px; font-weight: 600; }
.float-note.n1 { top: 55px; }
.float-note.n2 { top: 190px; }
.float-note.n3 { top: 325px; }
.listing-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin: 42px 0 20px; }
.listing-head h2 { font-size: 24px; line-height: 1.12; }
.listing-head > div:last-child { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: 13px; font-weight: 800; white-space: nowrap; }
.sort { border: 1px solid var(--line); border-radius: 999px; padding: 12px 18px; font-weight: 850; background: #fff; color: var(--ink); }
.listing { display: grid; grid-template-columns: 260px 1fr; gap: 24px; align-items: start; }
.filter { overflow: hidden; position: sticky; top: 88px; }
.filter-head { display: flex; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--line); font-weight: 900; font-size: 18px; }
.filter-head span { color: var(--red); font-size: 12px; }
.filter-group { padding: 18px 20px; border-bottom: 1px solid var(--line); }
.filter-group h4 { margin: 0 0 14px; font-size: 12px; text-transform: uppercase; letter-spacing: .02em; }
.filter-search-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
}
.filter-search-row input {
  min-width: 0;
  width: 100%;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 13px;
  background: #fff;
  color: var(--ink);
  font-size: 12px;
  font-weight: 750;
  outline: 0;
}
.filter-search-row input:focus {
  border-color: #cfd4dc;
  box-shadow: 0 0 0 4px rgba(9, 11, 16, .04);
}
.filter-search-row button {
  height: 40px;
  border: 0;
  border-radius: 999px;
  padding: 0 13px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}
.check-row { display: grid; grid-template-columns: 1fr auto 22px; gap: 10px; align-items: center; margin: 12px 0; color: #343b45; font-size: 13px; font-weight: 700; }
.check-row.category-parent { margin-top: 14px; color: var(--ink); font-weight: 900; }
.check-row.category-child { margin: 8px 0 8px 14px; color: #5d6570; font-size: 12.5px; }
.check-row.category-child b::before { content: ""; display: inline-block; width: 11px; height: 1px; margin: 0 8px 4px 0; background: #cfd4dc; }
.box { width: 18px; height: 18px; border: 2px solid #c9ced5; border-radius: 5px; }
.box.on { background: var(--red); border-color: var(--red); }
.advisor { background: #111216; color: #fff; padding: 22px 20px; border-radius: 0 0 10px 10px; }
.advisor h2 { margin: 0 0 12px; font-size: 22px; line-height: 1.05; }
.advisor p { color: #e5e7eb; font-size: 13px; font-weight: 650; line-height: 1.45; }
.chip-panel { display: grid; gap: 9px; margin-bottom: 24px; }
.chips { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 0; }
.chip { border: 1px solid var(--line); border-radius: 999px; padding: 10px 15px; font-size: 13px; line-height: 1.15; font-weight: 850; background: #fff; }
.chip.active { background: #111216; color: #fff; }
.chips-sub { padding: 11px 13px; border: 1px solid var(--line); border-radius: 10px; background: #fff; }
.chip-label { display: inline-flex; align-items: center; color: var(--muted); font-size: 11px; font-weight: 900; text-transform: uppercase; }
.chip-sub { padding: 8px 12px; font-size: 12px; background: #f7f8fa; }
.product-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.product-grid .product-card { border-radius: 10px; }
.product-grid .product-img {
  position: relative;
  height: 158px;
  padding: 0;
  overflow: hidden;
}
.product-grid .product-img img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: none;
}
.product-grid .product-card:first-child .product-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 130px;
  height: 36px;
  background: #fff;
}
.product-grid .product-card:first-child .badge { z-index: 3; }
.product-grid .product-card:nth-child(1) .product-img img,
.product-grid .product-card:nth-child(6) .product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: none;
}
.product-card-cats a { color: inherit; }
.product-card-cats a:hover { color: var(--red); }
.available { color: var(--green); font-weight: 800; float: right; font-size: 13px; }
.tags { display: flex; gap: 8px; flex-wrap: wrap; margin: 18px 0; }
.tag { background: #f0f1f3; border-radius: 999px; padding: 7px 11px; color: #5f6670; font-size: 12px; font-weight: 850; }
.advice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 42px; }
.black-card { background: #111216; color: #fff; border-radius: 18px; padding: 28px; }
.black-card h3, .info-card h3 { font-size: 24px; line-height: 1.08; margin: 0 0 16px; }
.black-card p { color: #e5e7eb; font-size: 14px; line-height: 1.5; }
.info-card { padding: 28px; }
.brand-mini { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.brand-mini div { border: 1px solid var(--line); border-radius: 12px; padding: 18px; text-align: center; font-weight: 900; }
.brand-mini small { color: var(--red); display: block; }

.product-page { padding: 22px 0 0; }
.product-top { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: start; }
.gallery-main {
  aspect-ratio: 438 / 316;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background: #fff;
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.gallery-main .badge,
.gallery-main .zoom {
  display: none;
}
.zoom { position: absolute; right: 20px; top: 20px; width: 45px; height: 45px; border-radius: 50%; border: 0; background: #fff; display: grid; place-items: center; font-size: 19px; box-shadow: var(--shadow); }
.thumbs { display: grid; grid-template-columns: 36px repeat(5, 1fr) 36px; gap: 12px; align-items: center; margin-top: 14px; }
.thumbs img { width: 100%; height: 58px; object-fit: cover; border-radius: 6px; border: 2px solid transparent; }
.thumbs img.active { border-color: var(--red); }
.arrow-circle { width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; }
.brand-name { color: #737b86; font-size: 22px; letter-spacing: .05em; }
.product-title h1 { font-size: 36px; line-height: 1.08; margin: 8px 0; }
.rating { display: flex; gap: 12px; align-items: center; color: var(--muted); font-weight: 700; }
.product-title .price { font-size: 39px; margin: 22px 0 4px; }
.installments { color: var(--muted); font-size: 14px; }
.status-line { display: flex; gap: 32px; margin: 20px 0; color: var(--muted); font-weight: 700; }
.status-line b { color: var(--green); }
.variants { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin: 12px 0 28px; }
.variant { border: 1px solid var(--line); border-radius: 8px; padding: 15px; text-align: center; font-weight: 900; }
.variant.active { border-color: var(--red); box-shadow: 0 0 0 1px rgba(223,16,25,.2); }
.buy-row { display: grid; grid-template-columns: 1fr .85fr; gap: 16px; }
.trust-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; border: 1px solid var(--line); border-radius: 8px; margin-top: 26px; overflow: hidden; }
.trust-row .value { padding: 16px; }
.accessories { display: grid; grid-template-columns: repeat(6,1fr) .85fr; gap: 14px; align-items: stretch; }
.accessory { border: 1px solid var(--line); border-radius: 8px; padding: 12px; min-height: 150px; position: relative; }
.accessory img { height: 68px; margin: 0 auto 9px; object-fit: contain; }
.accessory strong { font-size: 12px; display: block; }
.accessory span { color: var(--muted); font-size: 11px; font-weight: 600; display: block; }
.accessory .price { font-size: 13px; margin-top: 12px; }
.summary-box { background: #fbfbfc; border-radius: 8px; padding: 20px; }
.tabs { display: flex; border-bottom: 1px solid var(--line); margin-top: 32px; }
.tab {
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  background: transparent;
  padding: 18px 28px;
  font-weight: 800;
  color: var(--muted);
  cursor: pointer;
}
.tab.active { color: var(--ink); border-color: var(--red); }
.detail-grid { display: grid; grid-template-columns: 1fr 1.15fr .65fr; gap: 24px; padding-top: 24px; }
.desc p { color: var(--muted); font-weight: 600; }
.red-ticks { padding: 0; list-style: none; }
.red-ticks li { margin: 12px 0; }
.red-ticks li::before { content: "✓"; color: var(--red); margin-right: 8px; font-weight: 900; }
.spec-table { border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.spec-table div { display: grid; grid-template-columns: 1fr 1fr; padding: 8px 12px; border-bottom: 1px solid var(--line); font-size: 13px; }
.spec-table div:last-child { border-bottom: 0; }
.spec-table b { font-weight: 800; }
.spec-card { padding: 20px; }
.spec-card h4 { margin-top: 0; }
.spec-card ul { padding: 0; list-style: none; color: var(--muted); font-weight: 700; line-height: 2.05; }

.logo-page { min-height: 100vh; background: #f8f8f8; display: grid; place-items: center; padding: 40px; }
.logo-page img { width: min(100%, 1100px); border: 1px solid var(--line); }

@media (min-width: 761px) and (max-width: 980px) {
  .container,
  .header .container {
    width: min(var(--max), calc(100% - 40px));
  }
  .page-hero {
    width: min(var(--max), calc(100% - 40px));
  }
  .nav {
    gap: 10px;
  }
  .logo {
    font-size: 23px;
  }
  .menu {
    gap: 12px;
    font-size: 10px;
  }
.actions {
    gap: 6px;
    margin-left: 0;
  }
  .icon-btn,
  .cart-btn {
    width: 34px;
    height: 34px;
    background-size: 18px 18px;
  }
  .header-search input {
    width: 34px;
    height: 34px;
    padding: 0;
    color: transparent;
  }
  .header-search input::placeholder {
    color: transparent;
  }
  .header-search.is-open input,
  .header-search:focus-within input {
    width: 140px;
    padding: 0 38px 0 12px;
    color: var(--ink);
  }
  .header-search.is-open input::placeholder,
  .header-search:focus-within input::placeholder {
    color: #8b929d;
  }
  .cart-btn::after {
    right: 1px;
    top: -5px;
  }
  .actions .btn {
    min-width: 96px;
    min-height: 34px;
    padding: 0 10px;
    border-radius: 10px;
    font-size: 10.5px;
  }
  .contact-quick {
    gap: 12px;
    margin-bottom: 34px;
  }
  .contact-card {
    min-height: 96px;
    padding: 16px 13px;
    gap: 10px;
  }
  .contact-card .contact-icon {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }
  .contact-card .contact-icon svg {
    width: 23px;
    height: 23px;
  }
  .contact-card strong {
    font-size: 12.5px;
  }
  .contact-card span:not(.contact-icon) {
    font-size: 11px;
    line-height: 1.4;
  }
  .contact-layout {
    gap: 34px;
    padding-bottom: 44px;
  }
  .contact-form textarea,
  .contact-form-shortcode textarea {
    min-height: 112px;
  }
  .map-panel img {
    height: 220px;
  }
  .about-kpis {
    width: 560px;
  }
  .about-mission {
    gap: 30px;
  }
  .mission-values {
    gap: 14px 16px;
  }
  .mission-values .contact-icon {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }
  .mission-values strong {
    font-size: 12.5px;
  }
  .mission-values p {
    font-size: 10.8px;
    line-height: 1.38;
  }
  .about-reasons div {
    padding: 13px 14px 16px;
  }
}

@media (max-width: 980px) {
  .container { width: min(100% - 30px, var(--max)); }
  .page-hero {
    width: min(100% - 30px, var(--max));
  }
  .value-strip.container,
  .category-hero .container { width: min(100% - 30px, var(--max)); max-width: var(--max); }
  #products.container {
    width: min(100% - 30px, var(--max));
    max-width: var(--max);
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
    overflow: visible;
  }
  .header { height: auto; position: static; }
  .nav {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 42px;
    align-items: center;
    padding: 13px 0;
    gap: 10px 14px;
  }
  .logo { grid-column: 1; grid-row: 1; }
  .menu-toggle {
    display: inline-flex !important;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    position: relative;
    z-index: 30;
    width: 44px;
    height: 44px;
    border: 1px solid var(--ink);
    background: #fff;
    cursor: pointer;
  }
  .menu-toggle > span:not(.screen-reader-text) {
    background: var(--ink);
  }
  .menu {
    display: none;
    grid-column: 1 / -1;
    grid-row: 2;
    order: initial;
    width: 100%;
    overflow: visible;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-left: 0;
    padding: 8px 0 4px;
    border-top: 1px solid var(--line);
    font-size: 14px;
  }
  .menu.is-open {
    display: flex;
  }
  .menu a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid #f0f1f3;
    white-space: normal;
  }
  .actions {
    display: none;
    grid-column: 1 / -1;
    grid-row: 3;
    flex-wrap: wrap;
    margin-left: 0;
  }
  .menu.is-open + .actions {
    display: flex;
  }
  .actions .btn {
    display: none;
  }
  .menu.is-open + .actions .btn {
    display: inline-flex;
  }
  .hero-grid, .category-hero-grid, .product-top, .listing, .detail-grid { grid-template-columns: 1fr; }
  .hero-grid, .category-hero-grid { min-height: auto; padding: 38px 0; }
  .hero-grid > div:first-child,
  .category-hero-grid > div:first-child { padding-left: 0; transform: none; }
  .hero h1,
  .category-hero h1,
  .listing-head h2 {
    max-width: 340px;
    font-size: 30px;
    line-height: 1.08;
    overflow-wrap: break-word;
  }
  .hero p,
  .category-hero p,
  .listing-head .section-lead {
    max-width: 340px;
    font-size: 15px;
    overflow-wrap: break-word;
  }
  .brand-row { max-width: 340px; flex-wrap: wrap; gap: 10px 20px; font-size: 12px; }
  .hero-media { min-height: 320px; overflow: hidden; }
  .category-hero-media { min-height: 320px; }
  .hero-slideshow { top: 0; left: 0; width: 100%; height: 100%; margin-left: 0; padding: 14px 18px; }
  .value-strip { display: none; }
  .hero-feature-stack { top: 22px; left: 50%; right: auto; width: min(220px, calc(100% - 32px)); gap: 8px; transform: translateX(-50%); }
  .hero-feature { min-height: 78px; grid-template-columns: 36px 1fr; gap: 8px; padding: 9px; }
  .hero-feature__graphic { width: 36px; height: 36px; }
  .hero-feature__icon svg { width: 29px; height: 29px; }
  .hero-feature__copy strong { font-size: 11.5px; }
  .hero-feature__copy span { font-size: 10px; }
  .hero-feature__stat { font-size: 19px !important; }
  .page-hero::before {
    width: 100%;
    opacity: .34;
  }
  .page-hero::after {
    background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.92) 56%, rgba(255,255,255,.58) 100%);
  }
  .page-hero .container,
  .about-page-hero .container {
    min-height: auto;
    padding: 24px 0 34px;
  }
  .page-hero-copy {
    width: min(100%, 330px);
    max-width: 100%;
    padding-top: 36px;
  }
  .contact-static-page .page-hero-copy p,
  .about-static-page .page-hero-copy p,
  .about-static-page .about-mission p,
  .about-static-page .mission-values p {
    max-width: 330px;
    word-break: normal;
    overflow-wrap: break-word;
  }
  .page-hero-copy h1 {
    font-size: 34px;
  }
  .document-hero {
    padding: 28px 0 30px;
  }
  .document-hero .breadcrumb {
    margin-bottom: 30px;
  }
  .document-hero-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
  .document-hero-copy h1 {
    margin-bottom: 27px;
    font-size: 34px;
  }
  .document-hero-copy p {
    font-size: 14.5px;
    line-height: 1.52;
  }
  .document-shell {
    padding: 24px 0 44px;
  }
  .document-card {
    padding: 28px 22px 32px;
    border-radius: 14px;
  }
  .document-content {
    font-size: 14.5px;
  }
  .document-content h2,
  .document-content h3 {
    font-size: 18px;
  }
  .contact-quick {
    grid-template-columns: 1fr;
    margin-top: 20px;
    margin-bottom: 30px;
  }
  .contact-layout,
  .about-mission,
  .mission-values,
  .about-reasons {
    grid-template-columns: 1fr;
  }
  .contact-layout {
    gap: 30px;
    padding-bottom: 38px;
  }
  .contact-form,
  .contact-form-shortcode form {
    grid-template-columns: 1fr;
  }
  .map-caption {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 18px;
  }
  .about-kpis {
    grid-template-columns: 1fr;
    margin-top: 26px;
  }
  .about-kpis article,
  .mission-values article,
  .about-mission > div,
  .about-reasons article {
    min-width: 0;
  }
  .about-kpis strong,
  .about-kpis b,
  .about-kpis small,
  .about-mission p,
  .mission-values p,
  .about-reasons span,
  .page-hero-copy p {
    overflow-wrap: anywhere;
  }
  .about-kpis strong,
  .about-kpis b {
    font-size: 12px;
  }
  .about-kpis small {
    font-size: 10px;
  }
  .about-mission {
    gap: 26px;
    padding: 34px 0 18px;
  }
  .about-why-section {
    padding-top: 24px;
    padding-bottom: 38px;
  }
  .float-note { position: static; margin: 8px; width: auto; min-width: 0; }
  .value-strip, .product-row, .category-row, .category-tiles, .brand-panel, .reasons, .steps, .reviews, .feature-grid, .mini-cats, .cramer-band, .local-band, .product-grid, .advice-grid, .accessories, .footer-grid { grid-template-columns: 1fr; }
  .product-row { gap: 14px; }
  .category-card, .category-tile { min-height: 260px; }
  .category-tile img { width: 70%; }
  .tile-content { max-width: 270px; }
  .breadcrumb { overflow-wrap: anywhere; }
  .product-page .breadcrumb {
    max-width: 340px;
    line-height: 1.45;
  }
  .product-top,
  .product-top > div,
  .product-title,
  .gallery-main,
  .thumbs {
    min-width: 0;
    max-width: 100%;
  }
  .product-title h1 {
    max-width: 340px;
    font-size: 30px;
    line-height: 1.08;
    overflow-wrap: break-word;
  }
  .product-title p {
    max-width: 340px;
    overflow-wrap: break-word;
  }
  .brand-name { font-size: 20px; }
  .rating,
  .status-line {
    max-width: 340px;
    flex-wrap: wrap;
    gap: 8px 14px;
  }
  .variants,
  .buy-row {
    grid-template-columns: 1fr;
  }
  .thumbs {
    grid-template-columns: 32px repeat(5, minmax(0, 1fr)) 32px;
    gap: 8px;
  }
  .thumbs img { height: 54px; }
  .filter { position: static; }
  .listing,
  .filter,
  .product-grid { min-width: 0; width: 100%; }
  #products .product-card,
  #products .product-body,
  #products .chips,
  #products .chip { min-width: 0; max-width: 100%; }
  #products .product-card h3,
  #products .product-card p {
    overflow-wrap: break-word;
  }
  #products .filter,
  .wc-filter-panel,
  .wc-filter-toggle {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0;
    margin-right: 0;
  }
  #products .check-row {
    grid-template-columns: 170px 24px 22px;
    justify-content: start;
  }
  #products .check-row b { min-width: 0; }
  #products .chip-panel,
  #products .chips,
  #products .filter,
  #products .product-grid,
  #products .product-grid .product-card {
    width: 100%;
    max-width: 360px;
  }
  #products .product-grid {
    display: block;
  }
  #products .product-grid .product-card {
    margin-bottom: 14px;
  }
  #products .available {
    float: none;
    display: inline-block;
    margin-left: 6px;
    white-space: nowrap;
  }
  #products .advisor { overflow: hidden; }
  #products .advisor p { max-width: 320px; overflow-wrap: break-word; }
  .listing-head > div:last-child { flex-wrap: wrap; white-space: normal; }
  .cta, .section-head, .listing-head { align-items: flex-start; flex-direction: column; }
  .buy-row, .trust-row, .variants { grid-template-columns: 1fr; }
  .gallery-main img { height: auto; }
  .accessories { grid-template-columns: repeat(2,1fr); }
  .v2-section,
  .v2-section--tight { padding: 30px 0; }
  .v2-section-head { align-items: flex-start; flex-direction: column; gap: 8px; }
  .trust-tech-section.container { width: calc(100vw - 30px); max-width: var(--max); }
  .trust-tech { grid-template-columns: 1fr; gap: 18px; }
  .trust-tech__content h2 { max-width: 330px; font-size: 21px; }
  .trust-tech__content p { max-width: 330px; overflow-wrap: break-word; }
  .trust-tech__cards { grid-template-columns: 1fr; gap: 12px; }
  .trust-tech__card { height: 96px; padding: 12px 18px; }
  .v2-benefits,
  .v2-process,
  .v2-why-grid,
  .v2-steps,
  .v2-tcards { grid-template-columns: 1fr; }
  .v2-process-shell { padding: 22px 18px; }
  .v2-benefit {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 18px;
  }
  .v2-benefit:first-child { border-top: 0; }
  .v2-process { gap: 22px; }
  .v2-process-step:not(:last-child)::before,
  .v2-process-step:not(:last-child)::after { display: none; }
}

@media (min-width: 761px) and (max-width: 1180px) {
  .v2-benefits { grid-template-columns: repeat(3, 1fr); }
  .v2-benefit:nth-child(4) { border-left: 0; }
  .v2-benefit:nth-child(n+4) { border-top: 1px solid var(--line); }
  .v2-process { grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
  .v2-process-step:nth-child(2)::before,
  .v2-process-step:nth-child(2)::after { display: none; }
}
