@font-face {
  font-family: "EDC UI";
  src: url("../fonts/bahnschrift-normal-1ca5463e1d51.woff2") format("woff2");
  font-display: swap;
  font-weight: 300 700;
}

:root {
  --edc-ink: #090909;
  --edc-white: #fff;
  --edc-paper: #f4f4f2;
  --edc-line: #d7d7d3;
  --edc-muted: #6a6a67;
  --edc-focus: #1a5fa8;
  --edc-positive: #27643c;
  --edc-danger: #a33124;
  --edc-hover: #282828;
  --edc-container: 1440px;
  --edc-gutter: clamp(16px, 3vw, 48px);
  --edc-header-height: 92px;
}

html { box-sizing: border-box; scroll-behavior: smooth; }
*, *::before, *::after { box-sizing: inherit; }
body.edc-page {
  margin: 0;
  min-width: 320px;
  color: var(--edc-ink);
  background: var(--edc-white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 0;
}
body.edc-page.edc-menu-is-open { overflow: hidden; }
body.edc-page a { color: inherit; }
body.edc-page a:hover, body.edc-page a:focus { color: inherit; text-decoration: none; }
body.edc-page button, body.edc-page input, body.edc-page select, body.edc-page textarea { font: inherit; }
body.edc-page img { max-width: 100%; height: auto; }
body.edc-page svg { fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
body.edc-page :focus-visible { outline: 2px solid var(--edc-focus); outline-offset: 3px; }
.edc-container { width: min(100%, var(--edc-container)); margin-inline: auto; padding-inline: var(--edc-gutter); }
.edc-skip-link { position: fixed; z-index: 10000; top: 10px; left: 10px; padding: 12px 16px; background: var(--edc-ink); color: var(--edc-white) !important; transform: translateY(-160%); }
.edc-skip-link:focus { transform: translateY(0); }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.edc-header { position: relative; z-index: 100; border-bottom: 1px solid var(--edc-line); background: var(--edc-white); }
.edc-utility { border-bottom: 1px solid var(--edc-line); font-size: 12px; letter-spacing: .055em; text-transform: uppercase; }
.edc-utility__inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.edc-utility__message { margin: 0; color: var(--edc-muted); }
.edc-utility__links { display: flex; align-items: center; gap: 28px; }
.edc-utility__links a { padding-block: 7px; }
.edc-utility__links a:hover { text-decoration: underline; text-underline-offset: 4px; }
.edc-header__main { min-height: var(--edc-header-height); display: grid; grid-template-columns: auto auto minmax(230px, 1fr) auto; align-items: center; gap: clamp(20px, 2.2vw, 40px); }
.edc-logo { display: block; width: 150px; flex: none; }
.edc-logo img, .edc-footer__logo img { display: block; width: 100%; }
.edc-primary-nav { display: flex; align-items: center; gap: clamp(18px, 1.8vw, 34px); font-family: "EDC UI", Arial, sans-serif; font-size: 14px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; white-space: nowrap; }
.edc-primary-nav a, .edc-primary-nav button { min-height: 44px; display: inline-flex; align-items: center; border: 0; background: transparent; padding: 0; }
.edc-primary-nav a::after, .edc-primary-nav button::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 7px; height: 1px; background: currentColor; transition: right 180ms ease; }
.edc-primary-nav a, .edc-primary-nav button { position: relative; }
.edc-primary-nav a:hover::after, .edc-primary-nav button:hover::after, .edc-primary-nav button[aria-expanded="true"]::after { right: 0; }
.edc-primary-nav__catalog { gap: 6px; }
.edc-primary-nav__catalog svg { width: 14px; height: 14px; transition: transform 180ms ease; }
.edc-primary-nav__catalog[aria-expanded="true"] svg { transform: rotate(180deg); }
.edc-header__search { min-width: 180px; max-width: 440px; justify-self: stretch; }
.edc-search { height: 48px; display: grid; grid-template-columns: 1fr 48px; border: 1px solid var(--edc-ink); background: var(--edc-white); }
.edc-search input { width: 100%; min-width: 0; border: 0; border-radius: 0; box-shadow: none; background: transparent; padding: 0 14px; font-size: 14px; }
.edc-search input:focus { outline: 0; }
.edc-search:focus-within { outline: 2px solid var(--edc-focus); outline-offset: 2px; }
.edc-search button { width: 48px; height: 46px; border: 0; border-left: 1px solid var(--edc-ink); border-radius: 0; background: var(--edc-ink); color: var(--edc-white); display: grid; place-items: center; }
.edc-search button:hover { background: #242424; }
.edc-search svg { width: 21px; height: 21px; }
.edc-header-actions { display: flex; align-items: stretch; gap: 2px; }
.edc-header-action { position: relative; min-width: 58px; min-height: 58px; padding: 7px 8px; border: 0; border-radius: 0; background: transparent; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; color: var(--edc-ink); font-size: 10px; line-height: 1; white-space: nowrap; }
.edc-header-action:hover { background: var(--edc-paper); }
.edc-header-action svg { width: 21px; height: 21px; }
.edc-menu-trigger { display: none; }
.edc-icon-button { width: 48px; height: 48px; border: 0; border-radius: 0; background: transparent; color: var(--edc-ink); place-items: center; }
.edc-icon-button:hover { background: var(--edc-paper); }
.edc-icon-button svg { width: 25px; height: 25px; }

.edc-catalog-panel { position: absolute; top: 100%; left: 0; right: 0; max-height: calc(100vh - 126px); overflow-y: auto; border-top: 1px solid var(--edc-line); border-bottom: 1px solid var(--edc-ink); background: var(--edc-white); box-shadow: 0 18px 40px rgba(0,0,0,.08); }
.edc-catalog-panel[hidden] { display: none; }
.edc-catalog-panel__head { padding-block: 28px 20px; display: flex; align-items: baseline; justify-content: space-between; border-bottom: 1px solid var(--edc-line); font-family: "EDC UI", Arial, sans-serif; }
.edc-catalog-panel__head span { font-size: 24px; font-weight: 600; }
.edc-catalog-panel__head a { color: var(--edc-muted); font-size: 13px; text-decoration: underline; text-underline-offset: 4px; }
.edc-category-grid { list-style: none; margin: 0; padding: 30px 0 42px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 32px 48px; }
.edc-category-grid ul { list-style: none; margin: 13px 0 0; padding: 0; }
.edc-category-grid li li + li { margin-top: 7px; }
.edc-category-grid__title { font-family: "EDC UI", Arial, sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.edc-category-grid ul a { color: var(--edc-muted); font-size: 14px; }
.edc-category-grid a:hover { text-decoration: underline; text-underline-offset: 3px; }

.edc-cart { position: relative; }
.edc-cart__trigger { cursor: pointer; }
.edc-cart__label { display: block; }
.edc-cart__total { position: absolute; top: 3px; right: 2px; min-width: 18px; height: 18px; overflow: hidden; padding: 0 4px; border-radius: 9px; background: var(--edc-ink); color: var(--edc-white); font-size: 10px; font-weight: 650; line-height: 18px; text-align: center; }
.edc-cart-popover { display: none; position: absolute; z-index: 120; top: calc(100% + 17px); right: 0; width: min(390px, calc(100vw - 32px)); margin: 0; padding: 0; border: 1px solid var(--edc-ink); border-radius: 0; background: var(--edc-white); list-style: none; box-shadow: 0 18px 45px rgba(0,0,0,.14); }
.edc-cart.edc-cart--open .edc-cart-popover, .edc-cart.open .edc-cart-popover { display: block; }
.edc-cart-popover__items { display: block; max-height: 360px; overflow-y: auto; padding: 16px; }
.edc-mini-product { display: grid; grid-template-columns: 64px 1fr 28px; gap: 12px; align-items: start; padding: 12px 0; border-bottom: 1px solid var(--edc-line); }
.edc-mini-product:first-child { padding-top: 0; }
.edc-mini-product img { width: 64px; aspect-ratio: 1; object-fit: contain; background: var(--edc-paper); }
.edc-mini-product div { min-width: 0; font-size: 13px; }
.edc-mini-product div > a { font-weight: 600; }
.edc-mini-product small { display: block; margin-top: 7px; color: var(--edc-muted); }
.edc-mini-product button { width: 28px; height: 28px; border: 0; background: transparent; font-size: 22px; line-height: 1; }
.edc-cart-popover__summary { display: block; padding: 16px; border-top: 1px solid var(--edc-ink); }
.edc-cart-popover__summary p { display: flex; justify-content: space-between; margin: 0 0 7px; font-size: 13px; }
.edc-cart-popover__actions { margin-top: 14px; display: grid; grid-template-columns: 1fr 1fr; }
.edc-cart-popover__actions a { min-height: 44px; display: grid; place-items: center; border: 1px solid var(--edc-ink); font-family: "EDC UI", Arial, sans-serif; font-size: 12px; font-weight: 600; text-transform: uppercase; }
.edc-cart-popover__actions a:last-child { background: var(--edc-ink); color: var(--edc-white); }
.edc-cart-popover__empty { display: block; padding: 28px; text-align: center; color: var(--edc-muted); }

.edc-mobile-menu, .edc-page-scrim { display: none; }

/* Modern base for legacy OpenCart templates while each route is being rebuilt. */
body.edc-page > .container { width: min(100%, var(--edc-container)); padding-inline: var(--edc-gutter); }
body.edc-page #content { min-height: 360px; padding-top: clamp(28px, 4vw, 64px); padding-bottom: clamp(56px, 7vw, 112px); }
body.edc-page .breadcrumb { margin: 0 0 30px; padding: 0 0 13px; border-bottom: 1px solid var(--edc-line); border-radius: 0; background: transparent; font-size: 13px; }
body.edc-page h1, body.edc-page h2, body.edc-page h3, body.edc-page h4 { font-family: "EDC UI", Arial, sans-serif; color: var(--edc-ink); }
body.edc-page h1 { margin: 0 0 32px; font-size: clamp(34px, 4.8vw, 72px); font-weight: 600; line-height: .98; letter-spacing: -.035em; }
body.edc-page h2 { font-size: clamp(25px, 2.8vw, 42px); line-height: 1.05; }
body.edc-page .btn { min-height: 44px; border-radius: 0; box-shadow: none; font-family: "EDC UI", Arial, sans-serif; font-weight: 600; letter-spacing: .035em; }
body.edc-page .btn-primary, body.edc-page .btn-inverse, body.edc-page .btn-success, body.edc-page .btn-warning { border-color: var(--edc-ink); background: var(--edc-ink); color: var(--edc-white); }
body.edc-page .btn-primary:hover, body.edc-page .btn-inverse:hover, body.edc-page .btn-success:hover, body.edc-page .btn-warning:hover { border-color: var(--edc-hover); background: var(--edc-hover); color: var(--edc-white); }
body.edc-page .btn-default { border-color: var(--edc-ink); background: var(--edc-white); color: var(--edc-ink); }
body.edc-page .btn-default:hover { background: var(--edc-paper); color: var(--edc-ink); }
body.edc-page .btn-danger { border-color: var(--edc-danger); background: var(--edc-danger); color: var(--edc-white); }
body.edc-page .form-control { min-height: 44px; border-color: var(--edc-line); border-radius: 0; box-shadow: none; }
body.edc-page .form-control:focus { border-color: var(--edc-ink); box-shadow: 0 0 0 2px var(--edc-focus); }
body.edc-page .panel, body.edc-page .well, body.edc-page .list-group-item { border-radius: 0; box-shadow: none; }
body.edc-page .product-thumb { border: 0; }
body.edc-page .product-thumb .image { background: var(--edc-paper); }
body.edc-page .product-thumb .caption { min-height: 0; padding: 18px 0; }
body.edc-page .product-thumb .button-group { border: 0; background: transparent; }
body.edc-page .product-thumb .button-group button { border: 1px solid var(--edc-line); background: var(--edc-white); color: var(--edc-ink); }

.edc-footer { margin-top: 0; border-top: 1px solid var(--edc-ink); background: var(--edc-ink); color: var(--edc-white); }
.edc-footer a { color: var(--edc-white) !important; }
.edc-footer__lead { padding-top: clamp(42px, 6vw, 84px); padding-bottom: clamp(34px, 5vw, 68px); display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; border-bottom: 1px solid #333; }
.edc-footer__logo { display: block; width: 188px; filter: invert(1); }
.edc-footer__lead p { max-width: 520px; margin: 20px 0 0; color: #aaa; }
.edc-footer__social { display: grid; grid-template-columns: 1fr auto; gap: 10px 24px; align-content: start; }
.edc-footer__social span { grid-column: 1 / -1; margin-bottom: 10px; color: #8c8c8c; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.edc-footer__social a { min-height: 44px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #444; font-family: "EDC UI", Arial, sans-serif; font-weight: 600; }
.edc-footer__grid { padding-top: clamp(38px, 5vw, 68px); padding-bottom: clamp(46px, 6vw, 80px); display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.edc-footer h2 { margin: 0 0 20px; color: var(--edc-white) !important; font-size: 14px !important; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; }
.edc-footer ul { list-style: none; margin: 0; padding: 0; }
.edc-footer li + li { margin-top: 10px; }
.edc-footer li a, .edc-footer__contact p { color: #aaa !important; font-size: 14px; }
.edc-footer li a:hover { color: var(--edc-white) !important; text-decoration: underline; text-underline-offset: 4px; }
.edc-footer__contact p { max-width: 310px; }
.edc-text-link { display: inline-flex; min-height: 44px; align-items: center; border-bottom: 1px solid #555; font-family: "EDC UI", Arial, sans-serif; font-size: 13px; font-weight: 600; }
.edc-footer__legal { min-height: 72px; padding-block: 20px; display: flex; justify-content: space-between; gap: 24px; align-items: center; border-top: 1px solid #333; color: #777; font-size: 12px; }
.edc-mobile-dock { display: none; }

@media (max-width: 1240px) {
  .edc-header__main { grid-template-columns: auto auto minmax(220px, 1fr) auto; gap: 18px; }
  .edc-logo { width: 128px; }
  .edc-primary-nav { gap: 17px; font-size: 12px; }
  .edc-header-action { min-width: 48px; padding-inline: 5px; }
  .edc-header-action--desktop span { display: none; }
}

@media (max-width: 1120px) {
  :root { --edc-header-height: 72px; }
  body.edc-page { padding-bottom: calc(65px + env(safe-area-inset-bottom)); }
  .edc-utility, .edc-primary-nav, .edc-header-action--desktop { display: none; }
  .edc-header { position: sticky; top: 0; }
  .edc-header__main { min-height: 72px; grid-template-columns: 48px auto minmax(0, 1fr) 52px; gap: 10px; padding-inline: 12px; }
  .edc-menu-trigger { display: grid; }
  .edc-logo { width: 114px; }
  .edc-header__search { max-width: none; }
  .edc-search { height: 44px; grid-template-columns: 1fr 44px; }
  .edc-search button { width: 44px; height: 42px; }
  .edc-cart__trigger { min-width: 48px; min-height: 48px; }
  .edc-cart__label { display: none; }
  .edc-cart-popover { position: fixed; top: 71px; right: 12px; }
  .edc-catalog-panel { display: none !important; }
  .edc-mobile-menu { display: block; position: fixed; z-index: 1001; inset: 0 auto 0 0; width: min(480px, 92vw); background: var(--edc-white); transform: translateX(-102%); visibility: hidden; transition: transform 240ms cubic-bezier(.2,.8,.2,1), visibility 240ms; }
  .edc-mobile-menu[aria-hidden="false"] { transform: translateX(0); visibility: visible; }
  .edc-mobile-menu__bar { height: 72px; padding: 0 12px 0 20px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--edc-line); font-family: "EDC UI", Arial, sans-serif; font-size: 20px; font-weight: 600; }
  .edc-mobile-menu__content { height: calc(100% - 72px); overflow-y: auto; overscroll-behavior: contain; padding: 12px 20px 40px; }
  .edc-mobile-menu nav > a, .edc-mobile-menu summary { min-height: 56px; display: flex; align-items: center; border-bottom: 1px solid var(--edc-line); font-family: "EDC UI", Arial, sans-serif; font-size: 21px; font-weight: 600; list-style: none; cursor: pointer; }
  .edc-mobile-menu summary::-webkit-details-marker { display: none; }
  .edc-mobile-menu summary::after { content: "+"; margin-left: auto; font-size: 26px; font-weight: 300; }
  .edc-mobile-menu details[open] summary::after { content: "−"; }
  .edc-mobile-menu ul { list-style: none; margin: 0; padding: 8px 0 18px 16px; }
  .edc-mobile-menu li a { min-height: 44px; display: flex; align-items: center; color: var(--edc-muted); }
  .edc-mobile-menu__service { margin-top: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; border-top: 1px solid var(--edc-ink); }
  .edc-mobile-menu__service a { min-height: 48px; display: flex; align-items: center; border-bottom: 1px solid var(--edc-line); font-size: 14px; }
  .edc-page-scrim { display: block; position: fixed; z-index: 1000; inset: 0; width: 100%; height: 100%; border: 0; background: rgba(0,0,0,.48); opacity: 1; }
  .edc-page-scrim[hidden] { display: none; }
  .edc-footer__grid { grid-template-columns: repeat(2, 1fr); }
  .edc-mobile-dock { position: fixed; z-index: 90; left: 0; right: 0; bottom: 0; min-height: calc(64px + env(safe-area-inset-bottom)); padding-bottom: env(safe-area-inset-bottom); border-top: 1px solid var(--edc-line); background: rgba(255,255,255,.97); display: grid; grid-template-columns: repeat(5, 1fr); backdrop-filter: blur(14px); }
  .edc-mobile-dock a, .edc-mobile-dock button { min-width: 0; min-height: 64px; border: 0; background: transparent; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; color: var(--edc-ink); font-size: 10px; }
  .edc-mobile-dock svg { width: 21px; height: 21px; }
}

@media (max-width: 640px) {
  :root { --edc-gutter: 16px; }
  .edc-header__main { grid-template-columns: 44px minmax(0, 1fr) 48px; gap: 8px; }
  .edc-logo { width: 96px; }
  .edc-header__search { display: none; }
  .edc-search { border-color: var(--edc-line); }
  .edc-search input { padding-inline: 10px; font-size: 13px; }
  .edc-search input::placeholder { color: transparent; }
  .edc-search button { border-left-color: var(--edc-line); background: var(--edc-white); color: var(--edc-ink); }
  body.edc-page h1 { font-size: clamp(34px, 12vw, 54px); }
  .edc-footer__lead, .edc-footer__grid { grid-template-columns: 1fr; }
  .edc-footer__lead { gap: 36px; }
  .edc-footer__social { grid-template-columns: 1fr; }
  .edc-footer__legal { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}


body .edc-product-card:hover .edc-product-card__media img[data-edc-swap-src], body .edc-product-card .edc-product-card__media img[data-edc-swap-src] { opacity: 0 !important; }

body .edc-product-card:hover .edc-product-card__media a:has(img[data-edc-swap-src]) > img:first-child { opacity: 1 !important; }

/* Skip rendering the off-screen home shelves; remember their measured height. */
.common-home .edc-showcase-shelf + .edc-showcase-shelf { content-visibility: auto; contain-intrinsic-size: auto 500px; }

.edc-home { padding: 0 !important; }
.edc-hero { overflow: hidden; border-bottom: 1px solid var(--edc-line); background: var(--edc-paper); }
.edc-hero__inner { min-height: clamp(590px, 72vh, 780px); display: grid; grid-template-columns: minmax(320px, .8fr) minmax(480px, 1.2fr); align-items: center; gap: clamp(28px, 5vw, 80px); }
.edc-hero__copy { position: relative; z-index: 2; padding-block: 70px; }
.edc-eyebrow { margin: 0 0 24px; color: var(--edc-muted); font-family: "EDC UI", Arial, sans-serif; font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.edc-home h1 { max-width: 770px; margin: 0; font-size: clamp(54px, 6vw, 96px); line-height: .91; letter-spacing: -.045em; }
.edc-hero__text { max-width: 490px; margin: 30px 0 0; color: var(--edc-muted); font-size: clamp(17px, 1.5vw, 22px); line-height: 1.45; }
.edc-hero__actions { margin-top: 40px; display: flex; align-items: center; gap: 28px; }
.edc-button { min-height: 50px; padding: 0 24px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--edc-ink); background: var(--edc-ink); color: var(--edc-white) !important; font-family: "EDC UI", Arial, sans-serif; font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.edc-button:hover { background: #292929; }
.edc-arrow-link { min-height: 48px; padding: 0; border: 0; border-bottom: 1px solid var(--edc-ink); background: transparent; font-family: "EDC UI", Arial, sans-serif; font-size: 13px; font-weight: 600; }
.edc-hero__objects { position: relative; align-self: stretch; min-height: 590px; }
.edc-hero__grid { position: absolute; inset: 8% -18% 8% 1%; opacity: .45; background-image: linear-gradient(var(--edc-line) 1px, transparent 1px), linear-gradient(90deg, var(--edc-line) 1px, transparent 1px); background-size: 48px 48px; }
.edc-hero-object { position: absolute; width: clamp(185px, 20vw, 310px); aspect-ratio: 1; object-fit: contain; mix-blend-mode: multiply; filter: contrast(1.04); }
.edc-hero-object--knife { z-index: 3; top: 13%; right: 2%; transform: rotate(14deg); }
.edc-hero-object--tool { z-index: 2; left: 2%; bottom: 11%; transform: rotate(-12deg); }
.edc-hero-object--cord { z-index: 1; right: 3%; bottom: 3%; width: clamp(150px, 17vw, 260px); transform: rotate(8deg); }
.edc-hero__stamp { position: absolute; z-index: 4; left: 9%; top: 18%; padding: 8px 11px; border: 1px solid var(--edc-ink); font-family: "EDC UI", Arial, sans-serif; font-size: 10px; letter-spacing: .17em; }
.edc-home__products { padding-top: clamp(68px, 8vw, 124px); padding-bottom: clamp(78px, 9vw, 140px); }
.edc-section-head { margin-bottom: 36px; padding-bottom: 22px; border-bottom: 1px solid var(--edc-ink); display: flex; align-items: end; justify-content: space-between; gap: 24px; }
.edc-section-head .edc-eyebrow { margin-bottom: 12px; }
.edc-section-head h2 { margin: 0; font-size: clamp(34px, 4.2vw, 64px); letter-spacing: -.035em; }
.edc-section-head > a { min-height: 44px; display: flex; align-items: center; font-family: "EDC UI", Arial, sans-serif; font-size: 13px; font-weight: 600; }
.edc-product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); column-gap: clamp(16px, 2vw, 30px); row-gap: 54px; }
.edc-product-card { min-width: 0; }
.edc-product-card__media { position: relative; overflow: hidden; aspect-ratio: 1; background: var(--edc-paper); }
.edc-product-card__media > a { display: block; width: 100%; height: 100%; }
.edc-product-card__media img { width: 100%; height: 100%; object-fit: contain; transition: opacity 180ms ease, transform 260ms ease; }
.edc-product-card__media .edc-product-card__swap { position: absolute; inset: 0; opacity: 0; }
.edc-product-card:hover .edc-product-card__media img { transform: scale(1.025); }
.edc-product-card:hover .edc-product-card__media img:first-child:not(:last-child) { opacity: 0; }
.edc-product-card:hover .edc-product-card__media .edc-product-card__swap { opacity: 1; }
.edc-product-card__badge { position: absolute; z-index: 3; top: 12px; left: 12px; padding: 5px 8px; background: var(--edc-ink); color: var(--edc-white); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.edc-product-card__quick { position: absolute; z-index: 4; top: 10px; right: 10px; display: grid; gap: 4px; opacity: 0; transform: translateX(8px); transition: opacity 160ms ease, transform 160ms ease; }
.edc-product-card:hover .edc-product-card__quick, .edc-product-card:focus-within .edc-product-card__quick { opacity: 1; transform: none; }
.edc-product-card__quick button { width: 44px; height: 44px; border: 0; background: transparent; color: var(--edc-ink); cursor: pointer; transition: color 160ms ease, opacity 160ms ease, transform 160ms ease; }
.edc-product-card__quick button:hover { background: transparent; color: var(--edc-ink); transform: scale(1.08); }
.edc-product-card__quick button i { position: relative; width: 28px; height: 28px; display: inline-grid; place-items: center; font-size: 26px; line-height: 1; }
.edc-product-card__quick button .fa-heart-o::before { position: relative; z-index: 1; }
.edc-product-card__quick button .fa-heart-o::after { content: "\f004"; position: absolute; z-index: 0; left: 50%; top: 50%; color: var(--edc-white); font-family: FontAwesome; font-size: .82em; transform: translate(-50%, -48%); }
.edc-product-card__body { padding-top: 17px; }
.edc-product-card__body h3 { min-height: 42px; margin: 0; font-family: Arial, sans-serif !important; font-size: 14px; font-weight: 400; line-height: 1.45; }
.edc-product-card__body h3 a:hover { text-decoration: underline; text-underline-offset: 3px; }
.edc-product-card__price { min-height: 27px; margin: 12px 0 15px; display: flex; align-items: baseline; gap: 9px; }
.edc-product-card__price del { color: var(--edc-muted); font-size: 13px; }
.edc-product-card__price strong { font-family: "EDC UI", Arial, sans-serif; font-size: 17px; }
.edc-product-card__buy { width: 100%; min-height: 46px; border: 1px solid var(--edc-ink); border-radius: 0; background: var(--edc-white); font-family: "EDC UI", Arial, sans-serif; font-size: 12px; font-weight: 600; letter-spacing: .055em; text-transform: uppercase; }
.edc-product-card__buy:hover { background: var(--edc-ink); color: var(--edc-white); }
.edc-home__legacy-modules { padding-bottom: 80px; }

@media (max-width: 1020px) {
  .edc-hero__inner { min-height: 650px; grid-template-columns: .9fr 1.1fr; }
  .edc-home h1 { font-size: clamp(48px, 7vw, 76px); }
  .edc-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .edc-hero__inner { min-height: 720px; grid-template-columns: 1fr; align-content: start; gap: 0; }
  .edc-hero__copy { padding: 54px 0 10px; }
  .edc-home h1 { font-size: clamp(46px, 14vw, 70px); }
  .edc-hero__text { margin-top: 22px; font-size: 16px; }
  .edc-hero__actions { margin-top: 28px; gap: 18px; }
  .edc-hero__objects { min-height: 310px; margin-top: -12px; }
  .edc-hero-object { width: clamp(145px, 47vw, 235px); }
  .edc-hero-object--knife { top: 5%; right: -3%; }
  .edc-hero-object--tool { left: -3%; bottom: 0; }
  .edc-hero-object--cord { right: 10%; bottom: -5%; width: 130px; }
  .edc-hero__stamp { left: 5%; top: 12%; }
  .edc-section-head { align-items: start; }
  .edc-section-head > a { font-size: 0; }
  .edc-section-head > a::after { content: "Все →"; font-size: 12px; }
  .edc-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 38px; }
  .edc-product-card__quick { opacity: 1; transform: none; }
}

@media (max-width: 430px) {
  .edc-hero__actions { align-items: stretch; flex-direction: column; }
  .edc-arrow-link { align-self: flex-start; }
  .edc-product-card__body h3 { font-size: 13px; }
  .edc-product-card__quick button { width: 44px; height: 44px; }
}

.edc-listing-page { min-height: 60vh; padding: clamp(28px, 4vw, 58px) 0 clamp(76px, 8vw, 132px); overflow: clip; }
.edc-breadcrumbs { list-style: none; margin: 0 0 clamp(28px, 4vw, 48px); padding: 0 0 14px; display: flex; align-items: center; flex-wrap: wrap; gap: 8px; border-bottom: 1px solid var(--edc-line); color: var(--edc-muted); font-size: 12px; }
.edc-breadcrumbs li { display: flex; align-items: center; gap: 8px; }
.edc-breadcrumbs li:not(:last-child)::after { content: "/"; color: var(--edc-muted); }
.edc-breadcrumbs a:hover { color: var(--edc-ink); text-decoration: underline; text-underline-offset: 3px; }
.edc-listing-head { max-width: 1040px; margin-bottom: clamp(30px, 4vw, 54px); }
.edc-listing-head h1 { max-width: 880px; margin-bottom: 0 !important; text-wrap: balance; }
.edc-listing-head__lede { max-width: 64ch; margin: 20px 0 0; color: var(--edc-muted); font-size: clamp(15px, 1.2vw, 18px); line-height: 1.55; }

.edc-brand-hero--with-mark { display: grid; grid-template-columns: minmax(0, 1fr) minmax(180px, 260px); gap: clamp(34px, 6vw, 88px); align-items: center; max-width: none; }
.edc-brand-hero__copy { max-width: 780px; }
.edc-brand-hero__route { min-height: 44px; margin-top: 20px; display: inline-flex; align-items: center; font-weight: 600; }
.edc-brand-hero__mark { min-height: 180px; margin: 0; padding: 24px; display: grid; place-items: center; border-top: 1px solid var(--edc-ink); border-bottom: 1px solid var(--edc-line); background: var(--edc-paper, #f4f4f2); }
.edc-brand-hero__mark img { width: 100%; max-width: 220px; max-height: 132px; object-fit: contain; mix-blend-mode: multiply; }

.edc-listing-story { margin-top: clamp(72px, 9vw, 132px); padding-top: clamp(28px, 4vw, 52px); display: grid; grid-template-columns: minmax(220px, .55fr) minmax(0, 1.45fr); gap: 28px clamp(40px, 7vw, 112px); border-top: 1px solid var(--edc-ink); }
.edc-listing-story h2 { max-width: 420px; margin: 0; font-size: clamp(25px, 3vw, 42px); letter-spacing: -.03em; }
.edc-listing-story__body { max-width: 72ch; color: #3d3d3a; font-size: 16px; line-height: 1.7; }
.edc-listing-story__body > :first-child { margin-top: 0; }
.edc-listing-story__body > :last-child { margin-bottom: 0; }

.edc-subcategory-nav { margin: 0 0 clamp(34px, 5vw, 58px); display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--edc-ink); border-left: 1px solid var(--edc-line); }
.edc-subcategory-nav a { min-height: 74px; padding: 16px 18px; display: flex; align-items: center; justify-content: space-between; gap: 16px; border-right: 1px solid var(--edc-line); border-bottom: 1px solid var(--edc-line); font-family: "EDC UI", Arial, sans-serif; font-size: 15px; font-weight: 600; transition: background 180ms ease, color 180ms ease; }
.edc-subcategory-nav a:hover { background: var(--edc-ink); color: var(--edc-white) !important; }
.edc-subcategory-nav a span:last-child { color: var(--edc-muted); font-weight: 400; }
.edc-subcategory-nav a:hover span:last-child { color: inherit; }
.edc-subcategory-nav svg { flex: 0 0 16px; width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.4; }

.edc-listing-shell { display: grid; grid-template-columns: minmax(0, 1fr); gap: clamp(34px, 4vw, 64px); align-items: start; }
.edc-listing-shell--facets { grid-template-columns: minmax(230px, 280px) minmax(0, 1fr); }
.edc-listing__results { min-width: 0; }
.edc-listing__facets { position: sticky; top: 24px; min-width: 0; border-top: 1px solid var(--edc-ink); }
.edc-listing__facets-bar { min-height: 60px; padding: 0 2px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--edc-line); font-family: "EDC UI", Arial, sans-serif; }
.edc-listing__facets-bar button { display: none; position: relative; width: 44px; height: 44px; border: 0; background: transparent; }
.edc-filter-close-icon::before, .edc-filter-close-icon::after { content: ""; position: absolute; top: 21px; left: 12px; width: 20px; height: 1px; background: currentColor; }
.edc-filter-close-icon::before { transform: rotate(45deg); }
.edc-filter-close-icon::after { transform: rotate(-45deg); }
.edc-listing__facets #column-left { width: auto !important; float: none !important; display: block !important; padding: 0 !important; }
.edc-listing__facets #column-left > * { width: 100%; }
.edc-listing__facets #block_filter_vier { margin: 0; border: 0; box-shadow: none; }
.edc-listing__facets #name_filter { display: none; }
.edc-listing__facets #filter_vier { display: block !important; }
.edc-filter-scrim { display: none; }

.edc-listing-toolbar { min-height: 61px; margin-bottom: 16px; padding-bottom: 14px; display: flex; align-items: center; justify-content: flex-start; gap: 12px 22px; border-bottom: 1px solid var(--edc-ink); }
.edc-listing-toolbar__results { max-width: 360px; margin: 0 auto 0 0; color: var(--edc-muted); font-size: 12px; font-variant-numeric: tabular-nums; line-height: 1.4; }
.edc-filter-trigger { display: none; min-height: 44px; padding: 0 14px; border: 1px solid var(--edc-ink); background: var(--edc-white); font-family: "EDC UI", Arial, sans-serif; font-size: 12px; font-weight: 600; gap: 9px; align-items: center; }
.edc-listing-toolbar__field { display: flex; align-items: center; gap: 9px; }
.edc-listing-toolbar__field label { margin: 0; color: var(--edc-muted); font-size: 12px; font-weight: 400; white-space: nowrap; }
.edc-listing-toolbar__field select { min-height: 44px; max-width: 250px; border: 1px solid var(--edc-line); border-radius: 0; background: var(--edc-white); padding: 0 34px 0 12px; font-size: 12px; }
.edc-listing-toolbar__field select:focus { border-color: var(--edc-ink); outline: 2px solid var(--edc-focus); outline-offset: 2px; }

.edc-active-filters { margin: 0 0 28px; display: flex; flex-wrap: wrap; gap: 8px; }
.edc-active-filters[hidden] { display: none; }
.edc-active-filter, .edc-active-filters__reset { min-height: 44px; padding: 9px 12px; display: inline-flex; align-items: center; gap: 10px; border: 1px solid var(--edc-line); background: var(--edc-paper, #f4f4f2); color: var(--edc-ink); font-size: 12px; text-align: left; }
.edc-active-filter small { color: var(--edc-muted); font-size: 11px; text-transform: uppercase; letter-spacing: .04em; }
.edc-active-filter:hover { border-color: var(--edc-ink); background: var(--edc-white); }
.edc-active-filter:focus-visible, .edc-active-filters__reset:focus-visible { outline: 2px solid var(--edc-focus); outline-offset: 2px; }
.edc-active-filters__reset { border-color: transparent; background: transparent; text-decoration: underline; text-underline-offset: 3px; }

.edc-product-grid--listing { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: clamp(42px, 5vw, 72px); }
.edc-product-grid--listing .edc-product-card { display: flex; flex-direction: column; }
.edc-product-grid--listing .edc-product-card__body { flex: 1; display: flex; flex-direction: column; }
.edc-product-grid--listing .edc-product-card__price { margin-top: auto; padding-top: 12px; }
.edc-product-card__rating { min-height: 21px; margin: 8px 0 0; color: var(--edc-muted); font-size: 12px; }
.edc-product-card__rating span { color: var(--edc-ink); }

.edc-listing-pagination { margin-top: clamp(56px, 7vw, 96px); padding-top: 20px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border-top: 1px solid var(--edc-ink); }
.edc-listing-pagination p { margin: 0; color: var(--edc-muted); font-size: 12px; font-variant-numeric: tabular-nums; }
.edc-listing-pagination .pagination { margin: 0; display: flex; gap: 4px; }
.edc-listing-pagination .pagination > li > a, .edc-listing-pagination .pagination > li > span { min-width: 42px; min-height: 42px; padding: 0 10px; display: grid; place-items: center; border: 1px solid var(--edc-line); border-radius: 0; color: var(--edc-ink); }
.edc-listing-pagination .pagination > .active > span { border-color: var(--edc-ink); background: var(--edc-ink); color: var(--edc-white); }
.edc-empty-state { grid-column: 1 / -1; max-width: 760px; padding: clamp(54px, 8vw, 112px) 0; }
.edc-empty-state h2 { margin: 0 0 18px; font-size: clamp(34px, 4vw, 42px); text-wrap: balance; }
.edc-empty-state > p { max-width: 55ch; margin-bottom: 28px; color: var(--edc-muted); }
.edc-empty-state__filter-reset { display: none; margin-right: 18px; }
.edc-facets-ready .edc-empty-state__filter-reset { display: inline-flex; }
.edc-listing__secondary { margin-top: 64px; }

.edc-search-refine { margin: 0 0 clamp(58px, 7vw, 96px); padding: 24px 0 28px; display: grid; grid-template-columns: minmax(240px, 1.4fr) minmax(210px, 1fr) auto auto auto; gap: 16px 20px; align-items: end; border-top: 1px solid var(--edc-ink); border-bottom: 1px solid var(--edc-line); }
.edc-search-refine label:not(.edc-check) { margin: 0 0 7px; display: block; color: var(--edc-muted); font-size: 12px; font-weight: 400; }
.edc-search-refine input[type="search"], .edc-search-refine select { width: 100%; min-height: 48px; border: 1px solid var(--edc-line); border-radius: 0; background: var(--edc-white); padding: 0 13px; }
.edc-search-refine input:focus, .edc-search-refine select:focus { border-color: var(--edc-ink); outline: 2px solid var(--edc-focus); outline-offset: 2px; }
.edc-check { min-height: 48px; margin: 0; display: flex; align-items: center; gap: 9px; color: var(--edc-muted); font-size: 14px; font-weight: 400; }
.edc-check input { width: 18px; height: 18px; margin: 0; accent-color: var(--edc-ink); }

@media (max-width: 1180px) {
  .edc-product-grid--listing { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .edc-subcategory-nav { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .edc-search-refine { grid-template-columns: 1fr 1fr; }
  .edc-search-refine .edc-button { justify-self: start; }
}

@media (max-width: 960px) {
  .edc-listing-shell--facets { grid-template-columns: minmax(0, 1fr); }
  .edc-filter-trigger { display: inline-flex; }
  .edc-listing__facets { position: fixed; z-index: 1200; inset: 0 auto 0 0; width: min(420px, 92vw); max-height: 100dvh; overflow-y: auto; padding: 0 20px 36px; background: var(--edc-white); visibility: hidden; transform: translateX(-102%); transition: transform 240ms cubic-bezier(.2,.8,.2,1), visibility 240ms; }
  .edc-listing__facets[data-edc-open="true"] { visibility: visible; transform: none; }
  .edc-listing__facets-bar { position: sticky; z-index: 2; top: 0; background: var(--edc-white); }
  .edc-listing__facets-bar button { display: block; }
  .edc-filter-scrim { position: fixed; z-index: 1190; inset: 0; width: 100%; height: 100%; border: 0; background: rgba(0,0,0,.48); }
  .edc-filter-scrim:not([hidden]) { display: block; }
  body.edc-filter-is-open { overflow: hidden; }
  .edc-subcategory-nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  .edc-listing-page { padding-top: 20px; }
  .edc-breadcrumbs { margin-bottom: 34px; }
  .edc-listing-head { margin-bottom: 34px; }
  .edc-listing-head__lede { margin-top: 16px; font-size: 14px; }
  .edc-brand-hero--with-mark { grid-template-columns: 1fr; gap: 28px; }
  .edc-brand-hero__mark { min-height: 132px; padding: 18px; }
  .edc-brand-hero__mark img { max-height: 96px; }
  .edc-listing-story { grid-template-columns: 1fr; }
  .edc-listing-story__body { font-size: 15px; }
  .edc-subcategory-nav { margin-bottom: 40px; grid-template-columns: 1fr 1fr; }
  .edc-subcategory-nav a { min-height: 68px; padding: 13px; font-size: 12px; }
  .edc-listing-toolbar { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: end; gap: 12px; }
  .edc-listing-toolbar__results { grid-column: 1 / -1; width: 100%; max-width: none; margin: 0; }
  .edc-filter-trigger { width: 100%; height: 44px; justify-content: center; align-self: end; }
  .edc-listing-toolbar__field { min-width: 0; display: block; }
  .edc-listing-toolbar__field label { display: block; margin-bottom: 5px; }
  .edc-listing-toolbar__field select { width: 100%; min-width: 0; max-width: none; }
  .edc-listing-toolbar__limit { display: none; }
  .edc-active-filters { margin-bottom: 22px; flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; scrollbar-width: thin; }
  .edc-active-filter, .edc-active-filters__reset { flex: 0 0 auto; }
  .edc-product-grid--listing { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 12px; row-gap: 40px; }
  .edc-product-grid--listing .edc-product-card__body h3 { min-height: 56px; font-size: 12px; }
  .edc-product-grid--listing .edc-product-card__buy { min-height: 44px; padding-inline: 4px; font-size: 11px; }
  .edc-listing-pagination { align-items: flex-start; flex-direction: column; }
  .edc-listing-pagination .pagination > li > a, .edc-listing-pagination .pagination > li > span { min-width: 38px; min-height: 38px; }
  .edc-search-refine { grid-template-columns: 1fr; }
  .edc-search-refine .edc-button { width: 100%; }
}

@media (max-width: 390px) {
  .edc-product-grid--listing .edc-product-card__price { align-items: flex-start; flex-direction: column; gap: 2px; }
}

@media (prefers-reduced-motion: reduce) {
  .edc-listing__facets, .edc-subcategory-nav a { transition: none; }
}

