.wd-wrap,
.cat-hero, .trust-strip, .filter-bar,
.cat-body, .compare-block, .crosssell-block, .cta-block {
  --yellow:    #F5C200;
  --yellow-dk: #D9AB00;
  --black:     #0A0A0A;
  --charcoal:  #1A1A1A;
  --mid:       #2D2D2D;
  --grey-lt:   #F4F4F4;
  --grey-md:   #EBEBEB;
  --border:    #E2E2E2;
  --white:     #FFFFFF;
  --text:      #222222;
  --muted:     #666666;
  --green:     #22c55e;
  --fd: 'Barlow Condensed', sans-serif;
  --fb: 'Barlow', sans-serif;
  --r: 3px;
  --t: 0.22s ease;
  --shadow: 0 8px 32px rgba(0,0,0,.10);
}

.wd-wrap *, .wd-wrap *::before, .wd-wrap *::after,
.cat-hero *, .trust-strip *, .filter-bar *,
.cat-body *, .compare-block *, .crosssell-block *, .cta-block * {
  box-sizing: border-box;
}

body { background: var(--grey-lt, #F4F4F4); overflow-x: hidden; }

.container { max-width: 1440px; margin: 0 auto; padding: 0; }

.eyebrow {
  font-family: var(--fd); font-size: 11px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--yellow);
  display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
}
.eyebrow::before { content:''; width:22px; height:2px; background:var(--yellow); flex-shrink:0; }
.eyebrow.dark { color: var(--charcoal); }
.eyebrow.dark::before { background: var(--charcoal); }

h2.section-title {
  font-family: var(--fd); font-size: clamp(30px,4vw,50px);
  font-weight: 900; line-height: .95; text-transform: uppercase;
  letter-spacing: -.02em; margin-bottom: 14px;
}
h2.section-title em { color: var(--yellow); font-style: normal; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--fd); font-size: 14px; font-weight: 800;
  letter-spacing: .07em; text-transform: uppercase;
  padding: 13px 26px; border-radius: var(--r);
  border: 2px solid transparent; cursor: pointer;
  transition: background var(--t), color var(--t), transform var(--t), box-shadow var(--t);
  white-space: nowrap; text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { flex-shrink:0; transition: transform .2s; }
.btn:hover svg { transform: translateX(3px); }
.btn-yellow { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
.btn-yellow:hover { background: var(--yellow-dk); color: var(--white); border-color: var(--yellow-dk); box-shadow: 0 6px 22px rgba(245,194,0,.38); transform: translateY(-2px); }
.btn-dark { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-dark:hover { background: var(--mid); box-shadow: 0 6px 20px rgba(0,0,0,.25); }
.btn-outline { background: transparent; color: var(--black); border-color: var(--black); }
.btn-outline:hover { background: var(--black); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn-outline-white:hover { background: var(--white); color: var(--black); border-color: var(--white); }

.breadcrumb {
  background: var(--white); border-bottom: 1px solid var(--border); padding: 11px 0;
}
.breadcrumb-inner {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: #999;
}
.breadcrumb-inner a { color: #999; text-decoration: none; }
.breadcrumb-inner a:hover { color: var(--black); }
.breadcrumb-inner .sep { color: #ddd; }
.breadcrumb-inner .current { color: var(--black); font-weight: 600; }

.cat-hero {
  background: var(--black); position: relative; overflow: hidden;
  padding: 64px 0;
}
.cat-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -55deg, transparent, transparent 40px,
    rgba(245,194,0,.04) 40px, rgba(245,194,0,.04) 42px
  );
  pointer-events: none;
}
.cat-hero-accent { position: absolute; left: 0; top: 0; bottom: 0; width: 6px; background: var(--yellow); }
.cat-hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center;
}
.cat-hero-body h1 {
  white-space: nowrap;
  font-family: var(--fd); font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 900; line-height: .92; letter-spacing: -.03em;
  color: var(--white); text-transform: uppercase; margin-bottom: 16px;
}
.cat-hero-body h1 em { color: var(--yellow); font-style: normal; }
.cat-hero-body > p {
  font-size: 15px; line-height: 1.7; color: rgba(255,255,255,.6);
  max-width: 560px; margin-bottom: 28px;
}
.cat-hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.hero-stat strong {
  font-family: var(--fd); font-size: 32px; font-weight: 900;
  color: var(--yellow); letter-spacing: -.02em; display: block; line-height: 1;
}
.hero-stat span { font-size: 12px; color: rgba(255,255,255,.45); letter-spacing: .04em; text-transform: uppercase; font-weight: 500; }
.cat-hero-visual { display: flex; flex-direction: column; gap: 8px; align-items: flex-end; }

.hero-product-chip {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-left: 3px solid var(--yellow);
  padding: 12px 18px; border-radius: var(--r);
  display: flex; align-items: center; gap: 14px;
  white-space: nowrap;
}
.hero-product-chip .chip-label {
  font-family: var(--fd); font-size: 16px; font-weight: 900;
  text-transform: uppercase; color: var(--white); letter-spacing: .03em;
}
.hero-product-chip .chip-price {
  font-family: var(--fd); font-size: 22px; font-weight: 900;
  color: var(--yellow); letter-spacing: -.01em;
}
.chip-price ins, .chip-price bdi { text-decoration: none; }
.hero-product-chip .chip-tag {
  font-family: var(--fd); font-size: 10px; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  background: var(--yellow); color: var(--black);
  padding: 3px 9px; border-radius: 2px;
}
.wd-scroll-link {
  font-family: var(--fd); font-size: 12px; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.4); display: inline-flex; align-items: center;
  gap: 6px; transition: color .22s; text-decoration: none;
}
.wd-scroll-link:hover { color: var(--yellow); }

.trust-strip { background: var(--yellow); padding: 14px 0; }
.trust-strip-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.trust-item {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--fd); font-size: 13px; font-weight: 800;
  letter-spacing: .05em; text-transform: uppercase; color: var(--black);
}
.trust-item svg { flex-shrink: 0; }

.filter-bar {
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 14px 0; position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.filter-bar-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.filter-group { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.filter-label {
  font-family: var(--fd); font-size: 12px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
  flex-shrink: 0;
}
.filter-chip {
  font-family: var(--fd); font-size: 12px; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 7px 16px; border-radius: var(--r);
  border: 1.5px solid var(--border); background: var(--white);
  color: var(--muted); cursor: pointer; transition: var(--t);
}
.filter-chip:hover { border-color: var(--black); color: var(--black); }
.filter-chip.active { background: var(--black); color: var(--white); border-color: var(--black); }
.filter-chip.active-yellow { background: var(--yellow); color: var(--black); border-color: var(--yellow); }

.sort-select {
  font-family: var(--fd); font-size: 13px; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase; color: var(--black);
  background: var(--grey-lt); border: 1.5px solid var(--border);
  border-radius: var(--r); padding: 7px 32px 7px 12px; outline: none;
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23999' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 10px center;
  transition: border-color var(--t);
}
.sort-select:focus { border-color: var(--yellow); }
.result-count { font-size: 13px; color: var(--muted); }
.result-count strong { color: var(--black); font-weight: 600; }

.cat-body { padding: 40px 0 80px; }
.cat-layout { display: grid; grid-template-columns: 240px 1fr; gap: 28px; align-items: start; }

.sidebar { position: sticky; top: 70px; }
.sidebar-card {
  background: var(--white); border-radius: var(--r);
  border: 1.5px solid var(--border); overflow: hidden; margin-bottom: 16px;
}
.sidebar-card:last-child { margin-bottom: 0; }
.sidebar-heading {
  padding: 14px 18px; border-bottom: 1px solid var(--border);
  font-family: var(--fd); font-size: 13px; font-weight: 900;
  text-transform: uppercase; letter-spacing: .09em; color: var(--black);
  display: flex; align-items: center; justify-content: space-between;
}
.sidebar-heading button {
  font-family: var(--fd); font-size: 10px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--muted);
  background: none; border: none; cursor: pointer; transition: color var(--t);
}
.sidebar-heading button:hover { color: var(--black); }
.sidebar-body { padding: 14px 18px; }
.sidebar-filter-list { display: flex; flex-direction: column; gap: 8px; }
.sidebar-filter-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--muted); cursor: pointer;
  transition: color var(--t);
}
.sidebar-filter-item:hover { color: var(--black); }
.sidebar-filter-item input[type="checkbox"] { width: 15px; height: 15px; accent-color: var(--yellow); cursor: pointer; }
.sidebar-filter-item .filter-count {
  margin-left: auto;
  font-family: var(--fd); font-size: 11px; font-weight: 700;
  color: #bbb; letter-spacing: .04em;
}
.price-range-track {
  height: 4px; background: var(--grey-md); border-radius: 2px;
  position: relative; margin: 16px 0 8px;
}
.price-range-fill {
  position: absolute; left: 10%; right: 20%;
  height: 100%; background: var(--yellow); border-radius: 2px;
}
.price-range-labels { display: flex; justify-content: space-between; font-size: 12px; color: var(--muted); }
.price-range-labels strong { color: var(--black); font-weight: 600; }
.sidebar-help {
  background: var(--black); border-radius: var(--r); padding: 20px 18px;
}
.sidebar-help h4 {
  font-family: var(--fd); font-size: 18px; font-weight: 900;
  text-transform: uppercase; letter-spacing: .03em; color: var(--white); margin-bottom: 6px;
}
.sidebar-help p { font-size: 12px; line-height: 1.6; color: rgba(255,255,255,.5); margin-bottom: 14px; }
.sidebar-help a {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--fd); font-size: 13px; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--yellow); transition: gap var(--t); text-decoration: none;
}
.sidebar-help a:hover { gap: 10px; }

.product-grid { display: flex; flex-direction: column; gap: 20px; }

.product-card {
  background: var(--white); border-radius: var(--r);
  border: 1.5px solid var(--border);
  overflow: hidden;
  display: grid; grid-template-columns: 300px 1fr;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.product-card:hover {
  border-color: var(--yellow); box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.card-img-panel {
  background: var(--charcoal); position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 260px; overflow: hidden;
}
.card-img-panel .card-real-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.card-img-panel .img-placeholder {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: var(--fd); font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.2);
}
.card-img-panel::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: var(--yellow);
}
.card-badge-wrap { position: absolute; top: 16px; left: 16px; display: flex; flex-direction: column; gap: 6px; }
.card-badge {
  font-family: var(--fd); font-size: 11px; font-weight: 900;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 2px;
}
.badge-new       { background: var(--yellow); color: var(--black); }
.badge-bestseller { background: var(--black); color: var(--white); }
.badge-trade     { background: var(--mid); color: rgba(255,255,255,.8); }
.length-badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--yellow); color: var(--black);
  font-family: var(--fd); font-size: 22px; font-weight: 900;
  padding: 6px 14px; border-radius: 2px; letter-spacing: -.01em; line-height: 1.1;
}
.length-badge small { font-size: 12px; font-weight: 700; }

.card-body {
  padding: 28px 28px 28px 32px;
  display: flex; flex-direction: column; justify-content: space-between;
  border-left: 4px solid transparent; transition: border-color var(--t);
}
.product-card:hover .card-body { border-left-color: var(--yellow); }

.card-category {
  font-family: var(--fd); font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 6px;
}
.card-title {
  font-family: var(--fd); font-size: 28px; font-weight: 900;
  text-transform: uppercase; letter-spacing: -.01em; line-height: .95;
  margin-bottom: 10px; color: var(--black);
}
.card-title em { color: var(--yellow); font-style: normal; }
.card-desc { font-size: 13px; line-height: 1.65; color: var(--muted); margin-bottom: 16px; }

.card-specs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 18px; }
.spec-chip {
  background: var(--grey-lt); color: var(--text);
  font-family: var(--fd); font-size: 12px; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 2px; border: 1px solid var(--grey-md);
}
.spec-chip strong { color: var(--black); }

.card-features { margin-bottom: 20px; display: flex; flex-direction: column; gap: 5px; list-style: none; padding: 0; }
.card-features li {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 12px; color: var(--muted); line-height: 1.5;
}
.card-features li::before {
  content: '';
  width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px;
  background: var(--yellow); border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='6' viewBox='0 0 8 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3L3 5L7 1' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}

.card-size-row { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; flex-wrap: wrap; }
.size-label {
  font-family: var(--fd); font-size: 12px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--muted);
  flex-shrink: 0;
}
.size-select {
  font-family: var(--fb); font-size: 13px; color: var(--black);
  background: var(--grey-lt); border: 1.5px solid var(--border);
  border-radius: var(--r); padding: 8px 32px 8px 12px; outline: none;
  appearance: none; cursor: pointer; flex: 1; min-width: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23999' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 10px center;
  transition: border-color var(--t), box-shadow var(--t);
}
.size-select:focus { border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(245,194,0,.12); }

.card-price-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 16px; }
.card-price-label {
  font-family: var(--fd); font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
}
.card-price {
  font-family: var(--fd); font-size: 36px; font-weight: 900;
  color: var(--black); letter-spacing: -.02em; line-height: 1;
}
.card-price ins { text-decoration: none; }
.card-price bdi { font-style: normal; }
.card-price-sub { font-size: 12px; color: var(--muted); }

.stock-badge { display: inline-flex; align-items: center; gap: 5px; font-family: var(--fd); font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; margin-bottom: 14px; }
.stock-dot { width: 7px; height: 7px; border-radius: 50%; }
.in-stock-dot  { background: var(--green); }
.low-stock-dot { background: #f59e0b; }
.out-stock-dot { background: #ef4444; }
.in-stock-badge  { color: var(--green); }
.low-stock-badge { color: #d97706; }
.out-stock-badge { color: #ef4444; }

.card-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-add-cart {
  flex: 1; padding: 13px 20px;
  font-family: var(--fd); font-size: 14px; font-weight: 800;
  letter-spacing: .07em; text-transform: uppercase;
  background: var(--yellow); color: var(--black);
  border: 2px solid var(--yellow); border-radius: var(--r);
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background var(--t), border-color var(--t), transform var(--t), box-shadow var(--t);
}
.btn-add-cart:hover { background: var(--yellow-dk); border-color: var(--yellow-dk); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,194,0,.35); }
.btn-add-cart.added { background: var(--green) !important; border-color: var(--green) !important; }
.btn-view {
  padding: 13px 20px;
  font-family: var(--fd); font-size: 14px; font-weight: 800;
  letter-spacing: .07em; text-transform: uppercase;
  background: transparent; color: var(--black);
  border: 2px solid var(--black); border-radius: var(--r);
  cursor: pointer; display: flex; align-items: center; gap: 7px;
  transition: background var(--t), color var(--t); text-decoration: none;
}
.btn-view:hover { background: var(--black); color: var(--white); }
.btn-wishlist {
  width: 44px; height: 44px;
  background: var(--grey-lt); border: 1.5px solid var(--border);
  border-radius: var(--r); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--t), background var(--t);
  flex-shrink: 0;
}
.btn-wishlist:hover { border-color: var(--yellow); background: rgba(245,194,0,.08); }
.btn-wishlist svg { color: var(--muted); }
.btn-wishlist.active svg { color: #ef4444; fill: #ef4444; }

.product-card.featured {
  grid-template-columns: 1fr;
  background: var(--charcoal);
  border-color: transparent;
  border-top: 4px solid var(--yellow);
  position: relative; overflow: hidden;
}
.product-card.featured::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(-55deg, transparent, transparent 40px, rgba(245,194,0,.03) 40px, rgba(245,194,0,.03) 42px);
  pointer-events: none;
}
.product-card.featured .featured-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 320px 1fr; gap: 0; align-items: center;
}
.product-card.featured .card-img-panel { min-height: 300px; background: var(--mid); }
.product-card.featured .card-img-panel::after { display: none; }
.product-card.featured .card-body { padding: 32px 36px; border-left: none; }
.product-card.featured .card-category { color: rgba(255,255,255,.35); }
.product-card.featured .card-title { color: var(--white); }
.product-card.featured .card-desc  { color: rgba(255,255,255,.55); }
.product-card.featured .card-price { color: var(--yellow); }
.product-card.featured .card-price-label { color: rgba(255,255,255,.4); }
.product-card.featured .card-price-sub { color: rgba(255,255,255,.4); }
.product-card.featured .spec-chip { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.1); color: rgba(255,255,255,.75); }
.product-card.featured .spec-chip strong { color: var(--yellow); }
.product-card.featured .card-features li { color: rgba(255,255,255,.6); }
.product-card.featured .card-body { border-left: 4px solid transparent; }
.product-card.featured:hover .card-body { border-left-color: var(--yellow); }
.product-card.featured .size-select { background-color: rgba(255,255,255,.08); border-color: rgba(255,255,255,.15); color: var(--white); }
.product-card.featured .size-label { color: rgba(255,255,255,.4); }
.product-card.featured .btn-view { color: var(--white); border-color: rgba(255,255,255,.3); }
.product-card.featured .btn-view:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.product-card.featured .btn-wishlist { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.15); }
.product-card.featured .btn-wishlist svg { color: rgba(255,255,255,.5); }

.featured-ribbon {
  position: absolute; top: 20px; right: 0; z-index: 2;
  background: var(--yellow); color: var(--black);
  font-family: var(--fd); font-size: 11px; font-weight: 900;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 16px 5px 12px;
  clip-path: polygon(8px 0%, 100% 0%, 100% 100%, 0% 100%);
}

.choose-banner {
  background: var(--yellow); border-radius: var(--r);
  padding: 28px 32px;
  display: grid; grid-template-columns: 1fr auto;
  gap: 24px; align-items: center; margin-bottom: 20px;
}
.choose-banner h3 {
  font-family: var(--fd); font-size: 22px; font-weight: 900;
  text-transform: uppercase; letter-spacing: .03em; margin-bottom: 4px;
}
.choose-banner p { font-size: 13px; color: rgba(0,0,0,.65); line-height: 1.5; }
.choose-banner .btn-dark { flex-shrink: 0; }

.wd-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
.wd-pagination .page-numbers {
  font-family: var(--fd); font-size: 14px; font-weight: 800;
  padding: 9px 16px; border-radius: var(--r); text-decoration: none;
  border: 1.5px solid var(--border); color: var(--muted);
  transition: var(--t);
}
.wd-pagination .page-numbers:hover,
.wd-pagination .page-numbers.current { background: var(--yellow); border-color: var(--yellow); color: var(--black); }

.compare-block { padding: 72px 0; background: var(--white); }
.compare-head { text-align: center; margin-bottom: 48px; }
.compare-head .section-sub { font-size: 15px; color: var(--muted); max-width: 520px; margin: 0 auto; }
.compare-table {
  width: 100%; border-collapse: collapse; border-radius: var(--r); overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
}
.compare-table thead tr { background: var(--black); }
.compare-table thead th {
  padding: 20px 24px; text-align: left;
  font-family: var(--fd); font-size: 16px; font-weight: 900;
  text-transform: uppercase; letter-spacing: .04em; color: var(--white);
}
.compare-table thead th:first-child { color: rgba(255,255,255,.4); font-size: 12px; font-weight: 700; letter-spacing: .1em; }
.compare-table thead th.highlight { color: var(--yellow); }
.compare-table tbody tr { border-bottom: 1px solid var(--border); }
.compare-table tbody tr:last-child { border-bottom: none; }
.compare-table tbody tr:nth-child(even) { background: var(--grey-lt); }
.compare-table td { padding: 14px 24px; font-size: 14px; color: var(--muted); }
.compare-table td:first-child {
  font-family: var(--fd); font-size: 13px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; color: var(--black);
}
.compare-table td.val { font-weight: 600; color: var(--text); }
.compare-table td.check { color: var(--green); font-size: 18px; text-align: center; }
.compare-table td.cross { color: #e5e5e5; font-size: 18px; text-align: center; }

.crosssell-block { padding: 64px 0; background: var(--grey-lt); }
.crosssell-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 32px; }
.crosssell-head h2.section-title em { color: inherit; font-style: normal; }
.crosssell-head a {
  font-family: var(--fd); font-size: 13px; font-weight: 800;
  letter-spacing: .07em; text-transform: uppercase; color: var(--muted);
  display: flex; align-items: center; gap: 6px; transition: color var(--t); text-decoration: none;
}
.crosssell-head a:hover { color: var(--black); }
.crosssell-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.crosssell-card {
  background: var(--white); border-radius: var(--r);
  border: 1.5px solid var(--border); overflow: hidden;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}
.crosssell-card:hover { border-color: var(--yellow); transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,.09); }
.crosssell-img {
  height: 120px; background: var(--charcoal);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.crosssell-img svg { color: rgba(255,255,255,.15); }
.crosssell-img img { width: 100%; height: 100%; object-fit: contain; padding: 12px; }
.crosssell-body { padding: 14px 14px 18px; }
.crosssell-body h4 {
  font-family: var(--fd); font-size: 16px; font-weight: 900;
  text-transform: uppercase; letter-spacing: .03em; margin-bottom: 4px; line-height: 1.1;
}
.crosssell-body h4 a { color: inherit; text-decoration: none; }
.crosssell-body .cc-price { font-family: var(--fd); font-size: 20px; font-weight: 900; color: var(--black); margin-bottom: 12px; }
.crosssell-body .cc-price ins { text-decoration: none; }
.btn-add-sm {
  width: 100%; padding: 9px;
  font-family: var(--fd); font-size: 12px; font-weight: 800;
  letter-spacing: .07em; text-transform: uppercase;
  background: var(--grey-lt); color: var(--black);
  border: 1.5px solid var(--border); border-radius: var(--r);
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 5px;
  transition: var(--t);
}
.btn-add-sm:hover { background: var(--yellow); border-color: var(--yellow); }
.btn-add-sm.added { background: var(--green) !important; border-color: var(--green) !important; color: var(--white) !important; }

.cta-block {
  background: var(--black); padding: 80px 0;
  text-align: center; position: relative; overflow: hidden;
}
.cta-block::before {
  content: 'WD';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-family: var(--fd); font-size: 400px; font-weight: 900;
  color: rgba(255,255,255,.025); pointer-events: none; line-height: 1; letter-spacing: -.06em;
}
.cta-block .eyebrow { justify-content: center; }
.cta-block .eyebrow::before { display: none; }
.cta-block h2.section-title { color: var(--white); position: relative; }
.cta-block p { font-size: 15px; color: rgba(255,255,255,.5); margin: 0 auto 36px; max-width: 500px; position: relative; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate { opacity: 0; }
.animate.in-view { animation: fadeUp .5s ease both; }
.animate[data-d="1"] { animation-delay: .06s; }
.animate[data-d="2"] { animation-delay: .14s; }
.animate[data-d="3"] { animation-delay: .22s; }
.animate[data-d="4"] { animation-delay: .30s; }

.cat-hero h1, .cat-hero .eyebrow, .cat-hero p,
.cat-hero .cat-hero-stats, .cat-hero .cat-hero-visual { animation-fill-mode: both; }

@media ( max-width: 1024px ) {
  .cat-layout { grid-template-columns: 200px 1fr; }
  .product-card { grid-template-columns: 240px 1fr; }
  .product-card.featured .featured-inner { grid-template-columns: 240px 1fr; }
  .crosssell-grid { grid-template-columns: repeat(2,1fr); }
}

@media ( max-width: 768px ) {
  .cat-hero-inner { grid-template-columns: 1fr; }
  .cat-hero-visual { display: none; }
  .cat-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; display: none; } 
  .product-card { grid-template-columns: 1fr; }
  .card-img-panel { min-height: 200px; }
  .product-card.featured .featured-inner { grid-template-columns: 1fr; }
  .crosssell-grid { grid-template-columns: repeat(2,1fr); }
  .choose-banner { grid-template-columns: 1fr; }
}

@media ( max-width: 480px ) {
  .trust-strip-inner { gap: 8px; }
  .trust-item { font-size: 11px; }
  .crosssell-grid { grid-template-columns: 1fr; }
}

.cat-hero-inner--simple {
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
}
.cat-hero-inner--simple .cat-hero-body h1 {
  white-space: nowrap;
  font-size: clamp(28px, 3.5vw, 52px);
}

.cat-hero-stats,
.trust-strip,
.filter-bar,
#wd-filter-bar,
.sidebar {
  display: none !important;
}

.cat-body .cat-layout {
  display: block;
}

.product-grid--cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.product-tile {
  background: var(--white);
  border-radius: var(--r);
  border: 1.5px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.product-tile:hover {
  border-color: var(--yellow);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.tile-img-wrap {
  display: block;
  position: relative;
  background: var(--white);
  aspect-ratio: 1000 / 650;
  overflow: hidden;
  text-decoration: none;
}
.tile-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--yellow);
}
.tile-img-wrap .tile-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform .4s ease;
}
.product-tile:hover .tile-img {
  transform: scale(1.03);
}
.tile-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.2);
}

.tile-badge-wrap {
  position: absolute;
  top: 14px; left: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}

.tile-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px;
}
.tile-top { flex: 1; }

.tile-title {
  font-family: var(--fd);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.01em;
  line-height: 1.05;
  margin-bottom: 10px;
  color: var(--black);
}
.tile-title a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t);
}
.tile-title a:hover { color: var(--yellow); }

.tile-bottom {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.tile-price-row {
  margin-bottom: 12px;
}
.tile-price {
  font-family: var(--fd);
  font-size: 34px;
  font-weight: 900;
  color: var(--black);
  letter-spacing: -.02em;
  line-height: 1;
}
.tile-price ins { text-decoration: none; }
.tile-price bdi { font-style: normal; }

.tile-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.tile-actions .btn-add-cart {
  flex: 1;
  min-width: 0;
}
.tile-actions .btn-view {
  flex: 1;
  min-width: 0;
  justify-content: center;
}

@media ( max-width: 900px ) {
  .product-grid--cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .tile-price { font-size: 28px; }
  .tile-title { font-size: 18px; }
}

@media ( max-width: 600px ) {
  .product-grid--cards {
    grid-template-columns: 1fr;
  }
  .tile-actions {
    flex-direction: column;
  }
  .tile-actions .btn-add-cart,
  .tile-actions .btn-view {
    width: 100%;
    justify-content: center;
  }
}

.cat-hero-trustpilot {
  flex-shrink: 0;
  width: 240px;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.cat-hero-trustpilot .trustpilot-widget {
  min-height: 80px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.cat-hero-trustpilot iframe {
  margin-left: auto !important;
}
@media (max-width: 768px) {
  .cat-hero-inner--simple { grid-template-columns: 1fr; }
  .cat-hero-trustpilot { width: 100%; max-width: 220px; }
}

.cta-block h2.section-title em { color: var(--white); font-style: normal; }
