* { box-sizing: border-box; }

:root {
  --www-green: #76bd26;
  --www-green-text: #5a9419;
  --www-green-text-strong: #4a7a14;
  --www-green-soft: #eef7e0;
  --header-top-height: 36px;
  --page-max-width: 1400px;
  --page-pad: 16px;
  --page-content-pad: max(var(--page-pad), calc((100% - var(--page-max-width)) / 2 + var(--page-pad)));
}

BODY {margin:0; min-height:100vh; display:flex; flex-flow:column nowrap; justify-content:space-between; font-family:Arial, sans-serif; background:#f9f9fa; color:#16181d;}
A {color:inherit; text-decoration:none;}

BODY > HEADER { position: sticky; top: calc(-1 * var(--header-top-height)); z-index: 60; }
BODY > ARTICLE {flex:1 0 auto; padding:24px var(--page-content-pad);}
BODY > FOOTER { margin-top: 48px; border-top: 1px solid #e5e7eb; background: #fff; padding: 28px var(--page-content-pad) 16px; }

/* HEADER */

.header-top { position: relative; display: flex; gap: 20px; height: var(--header-top-height); align-items: center; padding: 0 var(--page-content-pad); border-bottom: 1px solid #e5e7eb; background: #fff; font-size: 13px; color: #4b5563; }
.www-header-phone { margin-left: auto; font-weight: 700; color: #16181d; }

.www-top-drop { position: relative; display: flex; align-items: center; height: 100%; }
.www-top-drop > A { display: flex; align-items: center; height: 100%; }
.www-top-menu {
  position: absolute; top: 100%; left: 0; z-index: 60; min-width: 200px;
  display: none; flex-direction: column; gap: 2px;
  padding: 8px; background: #fff; border: 1px solid #e5e7eb; border-radius: 10px;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.12);
}
.www-top-menu A { padding: 8px 10px; border-radius: 8px; white-space: nowrap; }
.www-top-menu A:hover { background: #f9f9fa; color: var(--www-green-text); }
.www-top-drop:hover .www-top-menu { display: flex; }

.header-main { position: relative; z-index: 50; display: flex; align-items: center; gap: 14px; min-height: 68px; padding: 0 var(--page-content-pad); background: #fff; box-shadow: 0 1px 0 rgba(16, 24, 40, 0.06); }
.www-logo { display: inline-flex; align-items: center; }
.www-logo-img { display: block; height: 24px; width: auto; }
.www-logo-img--footer { height: 20px; }

.catalog-wrap { position: relative; }
.catalog-btn { border: 0; border-radius: 10px; background: var(--www-green); color: #fff; font-weight: 700; padding: 10px 14px; cursor: pointer; }

.catalog-overlay { position: fixed; inset: 0; z-index: 40; background: rgba(22, 24, 29, 0.25); opacity: 0; transition: opacity 0.2s ease; }
.catalog-overlay.is-open { opacity: 1; }

.catalog-panel { position: absolute; left: 0; top: calc(100% + 10px); z-index: 50; width: 420px; background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; box-shadow: 0 8px 28px rgba(16, 24, 40, 0.12); overflow: hidden; opacity: 0; transform: translateY(-6px); pointer-events: none; transition: opacity 0.2s ease, transform 0.2s ease; }
.catalog-panel.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.catalog-panel-head { display: flex; justify-content: space-between; align-items: center; padding: 16px 18px; border-bottom: 1px solid #f3f4f6; font-size: 16px; }
.catalog-panel-head BUTTON { border: 0; background: transparent; cursor: pointer; color: #6b7280; font-size: 18px; line-height: 1; padding: 4px 6px; }
.catalog-tree { max-height: min(70vh, 560px); overflow: auto; padding: 10px; }

.catalog-item { border-radius: 10px; }
.catalog-item + .catalog-item { margin-top: 4px; }
.catalog-trigger { width: 100%; border: 0; background: #fff; text-align: left; padding: 12px 14px; border-radius: 10px; cursor: pointer; font-weight: 600; font-size: 15px; }
.catalog-item.is-open > .catalog-trigger { background: var(--www-green-soft); color: var(--www-green-text-strong); }
.catalog-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.25s ease; }
.catalog-item.is-open .catalog-body { grid-template-rows: 1fr; }
.catalog-body-inner { min-height: 0; overflow: hidden; display: grid; gap: 4px; }
.catalog-item.is-open .catalog-body-inner { padding: 4px 14px 10px; }
.catalog-sublink { padding: 8px 10px; border-radius: 8px; font-size: 14px; color: #4b5563; }
.catalog-sublink:hover { background: #f9f9fa; color: var(--www-green-text); }

.www-search { display: flex; flex: 1; min-width: 220px; border: 2px solid var(--www-green); border-radius: 12px; position: relative; }
.www-search .autoComplete_wrapper { flex: 1; min-width: 0; position: relative; }
.www-search .autoComplete_wrapper > UL {
  margin: 6px 0 0; left: -2px; right: auto; width: calc(100% + 4px); min-width: 280px;
  z-index: 80; padding: 6px; border: 1px solid #e5e7eb; border-radius: 12px;
  background: #fff; box-shadow: 0 12px 28px rgba(22,24,29,.12); max-height: 360px; overflow: auto;
}
.www-search .autoComplete_wrapper > UL > LI {
  margin: 0; padding: 0; list-style: none; border-radius: 8px;
  font-size: 14px; line-height: 1.35; color: #16181d; background: transparent;
  white-space: normal; overflow: hidden; cursor: pointer;
}
.www-search .autoComplete_wrapper > UL > LI > A { display: block; padding: 10px 12px; color: inherit; }
.www-search .autoComplete_wrapper > UL > LI > :not(A) { display: inline; padding: 0; }
.www-search .autoComplete_wrapper > UL > LI:hover,
.www-search .autoComplete_wrapper > UL > LI[aria-selected="true"] { background: var(--www-green-soft); color: var(--www-green-text-strong); }
.www-search .autoComplete_wrapper > UL > LI mark { background: transparent; color: var(--www-green-text-strong); font-weight: 700; }
.www-search .autoComplete_wrapper .no_result { padding: 10px 12px; font-size: 14px; color: #6b7280; }
.www-search INPUT { width: 100%; border: 0; padding: 11px 12px; outline: none; font-size: 15px; border-radius: 10px 0 0 10px; background: #fff; }
.www-search BUTTON { border: 0; background: var(--www-green); color: #fff; font-weight: 700; padding: 0 14px; cursor: pointer; border-radius: 0 10px 10px 0; }

.sr-only {position: absolute;width: 1px;height: 1px;padding: 0;margin: -1px;overflow: hidden;clip: rect(0, 0, 0, 0);border: 0;}

.www-actions { display: flex; gap: 12px; font-size: 13px; color: #4b5563; }
.www-cart-link { font-weight: 700; color: var(--www-green-text-strong); }
#cartCount { display: inline-block; margin-left: 4px; min-width: 18px; text-align: center; border-radius: 99px; background: var(--www-green); color: #fff; font-size: 11px; padding: 1px 5px; }

/* FOOTER */
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr 1fr; gap: 24px; }
.www-footer-logo { display: inline-flex; align-items: center; }
.www-footer-brand P { margin: 12px 0 10px; max-width: 360px; color: #4b5563; font-size: 14px; line-height: 1.4; }
.www-footer-phone { display: block; font-size: 20px; font-weight: 700; }
.www-footer-social { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.www-footer-col H4 { margin: 0 0 10px; font-size: 14px; }
.www-footer-col A { display: block; margin-bottom: 8px; color: #4b5563; font-size: 14px; }
.www-footer-col A:hover { color: var(--www-green-text); }
.www-footer-col--stack { display: flex; flex-direction: column; gap: 18px; }
.www-footer-col--stack H4 { margin-top: 14px; }
.www-footer-col--stack H4:first-child { margin-top: 0; }
.footer-bottom { margin-top: 18px; padding-top: 14px; border-top: 1px solid #f3f4f6; display: flex; flex-wrap: wrap; align-items: center; gap: 10px 0; color: #6b7280; font-size: 13px; line-height: 1.5; }
.www-footer-copy { margin-right: 16px; white-space: nowrap; }
.www-footer-legal { display: flex; flex-wrap: wrap; align-items: center; flex: 1 1 auto; min-width: 0; }
.www-footer-legal A { color: #6b7280; white-space: nowrap; }
.www-footer-legal A:not(:last-child)::after { content: "·"; margin: 0 12px; color: #d1d5db; pointer-events: none; }
.www-footer-legal A:hover { color: var(--www-green-text); }
.www-footer-social-link { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: #f3f4f6; color: #4b5563; }
.www-footer-social-link:hover { background: var(--www-green-soft); color: var(--www-green-text-strong); }
.www-footer-social-link SVG { width: 22px; height: 22px; fill: currentColor; }

.www-footer-meta { width: 100%; max-width: none; margin: 0; padding: 7px 16px; background: #33363a; color: #ccc; font: normal 13px/21px Arial narrow, Arial, sans-serif; }
.www-footer-meta::after { content: ""; display: block; clear: both; }
.www-footer-meta A { color: #eed; }
.www-footer-meta A:hover { color: #fc8; }

@media (max-width: 1100px) { .footer-top { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 640px) { .footer-top { grid-template-columns: 1fr; } }

/* MAIN / HOME */

.hero { margin-bottom: 40px; }
.hero-slider { position: relative; overflow: hidden; border-radius: 16px; background: #e5e7eb; }
.hero-slides { display: flex; transition: transform 0.5s ease; }
.slide { min-width: 100%; display: block; line-height: 0; }
.slide IMG { display: block; width: 100%; height: auto; aspect-ratio: 1320 / 550; object-fit: cover; }

.hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; width: 40px; height: 40px; border: 0; border-radius: 50%; background: rgba(255,255,255,0.9); color: #16181d; font-size: 22px; line-height: 1; cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,0.12); }
.hero-arrow--prev { left: 12px; }
.hero-arrow--next { right: 12px; }
.hero-arrow:hover { background: #fff; }

.trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 16px; }
.trust-item { display: flex; flex-direction: column; gap: 2px; padding: 16px; background: #fff; border-radius: 12px; box-shadow: 0 1px 2px rgba(16,24,40,0.04), 0 6px 20px rgba(16,24,40,0.06); }
.trust-item STRONG { font-size: 14px; }
.trust-item SPAN { font-size: 12px; color: #4b5563; }

.home-section { margin-top: 40px; }
.section-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 12px; margin-bottom: 20px; }
.section-head H2 { margin: 0; font-size: 24px; font-weight: 800; letter-spacing: -0.02em; }
.section-head P { margin: 4px 0 0; font-size: 14px; color: #4b5563; }
.section-head > A { font-size: 14px; font-weight: 600; color: var(--www-green-text); }
.section-head > A:hover { color: var(--www-green-text-strong); }

.cats { display: grid; grid-template-columns: repeat(8, 1fr); gap: 12px; }
.cat-card { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 12px; background: #fff; border-radius: 12px; text-align: center; font-size: 13px; font-weight: 600; box-shadow: 0 1px 2px rgba(16,24,40,0.04), 0 6px 20px rgba(16,24,40,0.06); transition: box-shadow 0.15s; }
.cat-card:hover { box-shadow: 0 8px 28px rgba(16,24,40,0.12); }
.cat-card-icon { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; background: var(--www-green-soft); color: var(--www-green-text); font-size: 20px; font-weight: 800; transition: background 0.15s, color 0.15s; }
.cat-card:hover .cat-card-icon { background: var(--www-green); color: #fff; }

.products { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.products--related { grid-template-columns: repeat(6, 1fr); }
.product-card { display: flex; flex-direction: column; overflow: hidden; background: #fff; border-radius: 14px; box-shadow: 0 1px 2px rgba(16,24,40,0.04), 0 6px 20px rgba(16,24,40,0.06); }
.product-card:hover { box-shadow: 0 8px 28px rgba(16,24,40,0.12); }
.product-card-media { position: relative; display: block; aspect-ratio: 1; background: linear-gradient(135deg, #eef7e0, #f1f5f9); }
.product-card-media IMG { display: block; width: 100%; height: 100%; object-fit: contain; padding: 14px; background: #fff; border: 6px solid #fff; border-radius: 10px; }
.product-card H3 A { color: inherit; }
.product-card H3 A:hover { color: var(--www-green-text); }
.product-card-sku { position: absolute; left: 8px; top: 8px; padding: 2px 6px; border-radius: 6px; background: rgba(255,255,255,0.9); font-size: 10px; font-weight: 700; }
.product-card-body { display: flex; flex-direction: column; gap: 8px; padding: 16px; flex: 1; }
.product-card-price { font-size: 20px; font-weight: 800; }
.product-card-old { margin-left: 8px; font-size: 12px; font-weight: 400; color: #6b7280; text-decoration: line-through; }
.product-card H3 { margin: 0; font-size: 14px; font-weight: 500; line-height: 1.35; min-height: 38px; }
.product-card-btn { margin-top: auto; display: block; width: 100%; border: 0; border-radius: 12px; padding: 10px; background: var(--www-green); color: #fff; font-size: 14px; font-weight: 700; cursor: pointer; text-align: center; }
.product-card-btn:hover { background: var(--www-green-text); color: #fff; }

.content-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.content-card { display: flex; flex-direction: column; overflow: hidden; background: #fff; border-radius: 14px; box-shadow: 0 1px 2px rgba(16,24,40,0.04), 0 6px 20px rgba(16,24,40,0.06); }
.content-card:hover { box-shadow: 0 8px 28px rgba(16,24,40,0.12); }
.content-card-media { display: block; aspect-ratio: 16 / 10; background: linear-gradient(135deg, #eef7e0, #f1f5f9); }
.content-card-media IMG { display: block; width: 100%; height: 100%; object-fit: cover; }
.content-card-body { display: flex; flex-direction: column; gap: 8px; padding: 16px; }
.content-card-date { font-size: 12px; color: #6b7280; }
.content-card H3 { margin: 0; font-size: 15px; font-weight: 600; line-height: 1.35; }
.content-card H3 A:hover { color: var(--www-green-text); }

.brands { display: grid; grid-template-columns: repeat(8, 1fr); gap: 12px; }
.brand-logo { display: grid; place-items: center; min-height: 72px; padding: 12px; background: #fff; border-radius: 12px; box-shadow: 0 1px 2px rgba(16,24,40,0.04), 0 6px 20px rgba(16,24,40,0.06); }
.brand-logo IMG { max-width: 100%; max-height: 40px; object-fit: contain; filter: grayscale(1); opacity: 0.75; transition: filter 0.15s, opacity 0.15s; }
.brand-logo:hover IMG { filter: none; opacity: 1; }

.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.review-card { display: flex; flex-direction: column; gap: 12px; padding: 18px; background: #fff; border-radius: 14px; box-shadow: 0 1px 2px rgba(16,24,40,0.04), 0 6px 20px rgba(16,24,40,0.06); }
.review-card-head { display: flex; align-items: center; gap: 10px; }
.review-card-head IMG, .review-card-avatar-letter { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; flex: 0 0 auto; }
.review-card-avatar-letter { display: grid; place-items: center; background: var(--www-green-soft); color: var(--www-green-text-strong); font-weight: 800; }
.review-card-head STRONG { font-size: 14px; }
.review-card P { margin: 0; font-size: 14px; line-height: 1.45; color: #4b5563; }

/* CATEGORY */

.category-bc { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 12px; font-size: 14px; color: #6b7280; }
.category-bc A:hover { color: var(--www-green-text); }
.category-head { margin-bottom: 16px; }
.category-head H1 { margin: 0; font-size: 28px; font-weight: 800; letter-spacing: -0.02em; }

.category-chips { display: flex; gap: 8px; overflow-x: auto; margin-bottom: 20px; padding-bottom: 4px; }
.category-chip { flex: 0 0 auto; display: inline-flex; align-items: center; min-height: 36px; padding: 0 14px; border-radius: 999px; background: #fff; font-size: 13px; font-weight: 500; color: #4b5563; }
.category-chip:hover { color: var(--www-green-text); }
.category-chip.is-active { background: #16181d; color: #fff; font-weight: 600; }

.category-layout { display: grid; grid-template-columns: 280px minmax(0, 1fr); gap: 24px; align-items: start; }
.category-aside { position: sticky; top: 88px; }
.category-panel { background: #fff; border-radius: 14px; padding: 12px; box-shadow: 0 1px 2px rgba(16,24,40,0.04), 0 6px 20px rgba(16,24,40,0.06); }
.category-panel H2 { margin: 0 0 8px; font-size: 11px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: #9ca3af; }
.category-sidebar { display: flex; flex-direction: column; gap: 0; max-height: calc(100vh - 152px); overflow: auto; }
.category-tree-item { border-radius: 8px; }
.category-tree-row { display: flex; align-items: center; gap: 1px; }
.category-tree-toggle {
  flex: 0 0 auto; width: 22px; height: 22px; border: 0; border-radius: 7px; background: transparent;
  cursor: pointer; color: #9ca3af; font-size: 12px; line-height: 1; padding: 0;
}
.category-tree-item.is-open > .category-tree-row > .category-tree-toggle { color: var(--www-green-text); transform: rotate(90deg); }
.category-tree-toggle:hover { background: #f9f9fa; color: var(--www-green-text); }
.category-tree-kids { display: none; margin-left: 10px; padding-left: 6px; border-left: 1px solid #f3f4f6; }
.category-tree-item.is-open > .category-tree-kids { display: block; }
.category-nav-link { display: block; flex: 1; min-width: 0; padding: 4px 8px; border-radius: 8px; font-size: 13px; color: #4b5563; line-height: 1.2; }
.category-nav-link:hover { background: #f9f9fa; color: var(--www-green-text); }
.category-nav-link.is-active { background: var(--www-green-soft); color: var(--www-green-text-strong); font-weight: 600; }
.category-model-count { color: #9ca3af; font-weight: 500; }

.facet-filters { margin-top: 16px; padding-top: 14px; border-top: 1px solid #f3f4f6; }
.facet-schema + .facet-schema { margin-top: 18px; padding-top: 14px; border-top: 1px solid #e5e7eb; }
.facet-schema > H2 { margin: 0 0 7px; font-size: 13px; color: #374151; }
.facet-group + .facet-group { margin-top: 8px; }
.facet-group H3 { margin: 0 0 4px; font-size: 12px; font-weight: 700; color: #374151; }
.facet-values { max-height: 80px; overflow: auto; display: flex; flex-direction: column; gap: 1px; }
.facet-opt { min-height: 22px; box-sizing: border-box; display: flex; align-items: center; gap: 7px; padding: 2px 6px; border-radius: 8px; font-size: 13px; color: #4b5563; cursor: pointer; }
.facet-opt:hover { background: #f9f9fa; }
.facet-opt INPUT { margin: 0; accent-color: var(--www-green); }
.facet-opt SPAN { flex: 1; min-width: 0; line-height: 1.25; }
.facet-opt EM { font-style: normal; color: #9ca3af; font-size: 12px; }

.category-toolbar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; padding: 12px 16px; background: #fff; border-radius: 14px; }
.category-count { margin: 0; font-size: 14px; color: #4b5563; }
.category-sort LABEL { display: flex; align-items: center; gap: 8px; font-size: 14px; color: #6b7280; }
.category-sort SELECT { min-height: 40px; border: 0; border-radius: 10px; background: #f9f9fa; padding: 0 12px; font-size: 14px; font-weight: 600; color: #16181d; }

.category-main #CommonTB2 { width: 100%; max-width: 420px; margin: 24px auto 0; font-size: 14px; }
.category-main #CommonTB2 A { color: var(--www-green-text); font-weight: 600; }
.category-main #CommonTB2 A:hover { color: var(--www-green-text-strong); }

.category-empty { padding: 48px 24px; text-align: center; background: #fff; border-radius: 14px; }
.category-empty P { margin: 0 0 12px; font-size: 16px; font-weight: 600; }
.category-empty A { color: var(--www-green-text); font-weight: 600; }

/* PRODUCT */

.product-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(420px, clamp(420px, 34vw, 500px)); gap: 48px; align-items: start; }
.product-media { min-width: 0; }
.product-gallery { --product-gallery-thumb-size: clamp(52px, 8vw, 80px); display: grid; grid-template-columns: calc(var(--product-gallery-thumb-size) + 12px) minmax(0, 1fr); gap: clamp(10px, 2vw, 20px); align-items: stretch; overflow: hidden; background: linear-gradient(135deg, #eef7e0, #f1f5f9); border-radius: 14px; padding: clamp(18px, 3vw, 28px); box-shadow: 0 1px 2px rgba(16,24,40,0.04), 0 6px 20px rgba(16,24,40,0.06); }
.product-gallery-main { display: grid; place-items: center; min-width: 0; }
.product-gallery-main:only-child { grid-column: 1 / -1; }
.product-gallery-thumbs { display: flex; flex-direction: column; gap: 10px; max-height: calc(5 * var(--product-gallery-thumb-size) + 40px - 0.4 * var(--product-gallery-thumb-size)); padding: 2px 4px 2px 2px; overflow-y: auto; overscroll-behavior: contain; }
.product-gallery-thumbs:has(.product-gallery-thumb:nth-child(6)) { -webkit-mask-image: linear-gradient(to bottom, #000 0, #000 calc(100% - 40px), transparent); mask-image: linear-gradient(to bottom, #000 0, #000 calc(100% - 40px), transparent); }
.product-gallery-thumb { width: var(--product-gallery-thumb-size); height: var(--product-gallery-thumb-size); flex: 0 0 auto; display: grid; place-items: center; padding: 6px; border: 2px solid transparent; border-radius: 12px; background: rgba(255,255,255,0.82); cursor: pointer; transition: border-color .15s ease, box-shadow .15s ease, background .15s ease; }
.product-gallery-thumb:hover, .product-gallery-thumb.is-active { border-color: var(--www-green); background: #fff; box-shadow: 0 4px 14px rgba(16,24,40,0.10); }
.product-gallery-thumb IMG { display: block; width: 100%; height: 100%; object-fit: contain; }
.product-detail-img { display: block; max-height: 420px; width: 100%; object-fit: contain; padding: 16px; background: #fff; border: 8px solid #fff; border-radius: 12px; }
.product-detail-img--placeholder { max-height: 140px; width: 140px; padding: 0; background: transparent; border: 0; border-radius: 0; opacity: 0.45; }

.product-info H1 { margin: 12px 0 0; font-size: 28px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.2; }
.product-brand { display: inline-flex; padding: 5px 10px; margin-left:-10px; border-radius: 6px; background: #f3f4f6; font-size: 13px; font-weight: 700; color: #4b5563; letter-spacing: 0.02em; }
.product-art { margin: 16px 0 0; font-size: 14px; color: #6b7280; }

.product-meta { margin: 32px 0 0; padding-top: 24px; border-top: 1px solid #f3f4f6; }
.product-meta > DIV { display: flex; justify-content: space-between; gap: 16px; font-size: 15px; }
.product-meta > DIV + DIV { margin-top: 12px; }
.product-meta DT { margin: 0; color: #6b7280; }
.product-meta DD { margin: 0; font-weight: 600; text-align: right; }
.product-meta DD A:hover { color: var(--www-green-text); }

.product-descr { margin-top: 24px; padding-top: 24px; border-top: 1px solid #f3f4f6; }
.product-descr H2 { margin: 0 0 10px; font-size: 15px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; color: #9ca3af; }
.product-descr P { margin: 0; font-size: 15px; line-height: 1.55; color: #4b5563; white-space: pre-line; }

.product-section { margin-top: 55px; }
.product-section H2 { margin: 0 0 16px; font-size: 20px; font-weight: 800; }

@media (max-width: 1100px) {
  .cats { grid-template-columns: repeat(4, 1fr); }
  .products { grid-template-columns: repeat(3, 1fr); }
  .products--related { grid-template-columns: repeat(3, 1fr); }
  .content-cards { grid-template-columns: repeat(2, 1fr); }
  .brands { grid-template-columns: repeat(4, 1fr); }
  .reviews { grid-template-columns: repeat(2, 1fr); }
  .trust { grid-template-columns: repeat(2, 1fr); }
  .header-main { flex-wrap: wrap; }
  .www-search { flex: 1 1 100%; order: 3; min-width: 0; }
  .www-actions { margin-left: auto; }
  .catalog-panel { width: min(420px, calc(100vw - 24px)); }
  .category-layout { grid-template-columns: 240px minmax(0, 1fr); gap: 16px; }
  .product-layout { grid-template-columns: minmax(0, 1fr) minmax(0, 360px); gap: 32px; }
}
@media (max-width: 640px) {
  .header-top { display: none; }
  BODY > HEADER { top: 0; }
  BODY > ARTICLE { padding-top: 16px; padding-bottom: 16px; }
  .www-actions A:not(.www-cart-link) { display: none; }
  .catalog-panel { position: fixed; left: 12px; right: 12px; width: auto; top: 72px; }
  .cats { grid-template-columns: repeat(2, 1fr); }
  .products { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .products--related { grid-template-columns: repeat(2, 1fr); }
  .content-cards { grid-template-columns: 1fr; }
  .brands { grid-template-columns: repeat(2, 1fr); }
  .reviews { grid-template-columns: 1fr; }
  .trust { grid-template-columns: 1fr 1fr; }
  .hero { margin-bottom: 24px; }
  .home-section { margin-top: 28px; }
  .section-head H2 { font-size: 20px; }
  .product-card-body { padding: 12px; }
  .product-card H3 { min-height: 0; font-size: 13px; }
  .category-layout { grid-template-columns: 1fr; }
  .category-aside { position: static; }
  .category-head H1 { font-size: 22px; }
  .product-layout { grid-template-columns: 1fr; gap: 24px; }
  .product-gallery { --product-gallery-thumb-size: 64px; grid-template-columns: 1fr; padding: 20px; }
  .product-gallery-thumbs { order: 2; flex-direction: row; max-height: none; overflow-x: auto; overflow-y: hidden; padding: 2px 2px 4px; }
  .product-gallery-thumbs:has(.product-gallery-thumb:nth-child(6)) { -webkit-mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 40px), transparent); mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 40px), transparent); }
  .product-info H1 { font-size: 22px; }
  .product-section { margin-top: 32px; }
}

.print_var {text-align:left; white-space:pre-wrap; background:#fff; font:normal 11px/12px Lucida Console, Monaco, Monospace;}
.print_var.narrow {font:normal 11px/12px Arial narrow, Arial; font-stretch:condensed;}
.print_var.small {font:normal 10px/11px Lucida Console, Monaco, Monospace;}
.print_var DIV {padding-left:12px;}
.print_var.narrow DIV {padding-left:8px;}
.print_var I {color:#119; font-style:normal;}
.print_var B {color:#604; font-style:normal; font-weight:normal;}
.print_var U {color:#910; font-style:normal; text-decoration:none;}
.print_var Q {color:#070; font-style:normal; quotes:none;}
.print_var S {color:#777; font-style:italic; text-decoration:none;}
.print_var EM{color:#000; font-style:italic;}

TABLE.Tablify {border:solid 1px #f4f4f4; margin:0 0;}
TABLE.Tablify TD, TABLE.Tablify TH {font-size:11px; line-height:11px; padding:5px 5px; word-wrap:break-word; word-break:break-word; vertical-align:top;}
TABLE.Tablify.valmid TD, TABLE.Tablify.valmid TH {vertical-align:middle;}
TABLE.Tablify.minw TD, TABLE.Tablify.minw TH {min-width:30px;}
TABLE.Tablify TH {text-align:left; background:#fff8f8; border-bottom:solid 1px #f4f4f4;}
TABLE.Tablify TH.tar {text-align:right;}
TABLE.Tablify TR:nth-child(odd)  {background-color:#f4f4f4;}
TABLE.Tablify TR:nth-child(even) {background-color:#ffffff;}