:root {
  --black: #08090b;
  --ink: #11151b;
  --muted: #68717f;
  --line: #dfe4ea;
  --soft: #f5f7f9;
  --blue: #075ee8;
  --blue-dark: #034fc8;
  --gold: #f2ad26;
  --gold-button: #c99821;
  --gold-button-hover: #b98818;
  --gold-line: #d9bd72;
  --green: #21a85b;
  --content: 1540px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  color: #fff;
  background: var(--black);
  border-bottom: 1px solid #25282e;
}
.header-inner {
  width: min(calc(100% - 40px), var(--content));
  min-height: 60px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr minmax(230px, 275px) auto;
  align-items: center;
  gap: 22px;
}
.brand { display: inline-flex; align-items: center; gap: 27px; min-width: max-content; }
.brand-name {
  position: relative;
  display: inline-block;
  color: #f4ad22;
  font-size: 30px;
  line-height: 1;
  font-weight: 590;
  text-shadow: none;
  animation: none;
}
.site-header .brand-name::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 18px;
  height: 1px;
  background: #ffc64e;
  box-shadow: 0 0 6px rgba(255,198,78,.9), 0 0 13px rgba(244,173,34,.4);
  opacity: 0;
  animation: header-logo-scan 5.2s ease-in-out infinite;
}
.site-header .brand-name {
  color: #ffc247;
  text-shadow:
    0 0 7px rgba(255, 194, 71, 0.58),
    0 0 18px rgba(244, 173, 34, 0.3),
    0 0 34px rgba(244, 173, 34, 0.14);
}
@keyframes header-logo-scan {
  0%, 58%, 100% { transform: translateX(0); opacity: 0; }
  66% { opacity: .9; }
  82% { transform: translateX(79px); opacity: .9; }
  90% { transform: translateX(79px); opacity: 0; }
}
.brand-tagline { color: #fff; font-size: 12px; line-height: 1.25; font-weight: 450; text-transform: lowercase; }
.main-nav { display: flex; justify-content: center; align-items: center; gap: clamp(18px, 2.2vw, 36px); }
.main-nav a { position: relative; padding: 20px 0; font-size: 14px; color: #f5f5f5; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 13px; height: 2px; background: var(--gold); transition: right .2s ease; }
.main-nav a:hover::after { right: 0; }
.main-nav a.active::after { right: 0; }
.theme-toggle { position: relative; flex: 0 0 auto; width: 25px; height: 46px; padding: 3px 0; display: grid; place-items: center; color: #c8cbd1; background: #17191d; border: 1px solid #3a3d43; border-radius: 13px; cursor: pointer; }
.theme-toggle svg { position: relative; z-index: 2; width: 12px; height: 12px; stroke-width: 1.7; transition: color .2s ease; }
.theme-toggle-thumb { position: absolute; z-index: 1; top: 2px; left: 2px; width: 19px; height: 19px; background: #f1b83f; border-radius: 50%; box-shadow: 0 0 8px rgba(241,184,63,.35); transition: transform .22s ease, background-color .22s ease; }
.theme-toggle .theme-sun { color: #17191d; }
.theme-toggle[aria-pressed="true"] .theme-toggle-thumb { transform: translateY(21px); background: #d9e5f7; box-shadow: 0 0 8px rgba(183,207,242,.35); }
.theme-toggle[aria-pressed="true"] .theme-sun { color: #888e98; }
.theme-toggle[aria-pressed="true"] .theme-moon { color: #17191d; }
.header-search {
  position: relative;
  height: 32px;
  display: block;
  overflow: hidden;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 4px;
}
.header-search:focus-within { border-color: var(--gold-line); }
.header-search input {
  width: 100%;
  height: 100%;
  min-width: 0;
  padding: 0 46px 0 16px;
  color: #17191d;
  background: transparent;
  border: 0;
  outline: 0;
  text-align: left;
  font-size: 14px;
  line-height: 30px;
  -webkit-appearance: none;
  appearance: none;
}
.header-search input::-webkit-search-decoration,
.header-search input::-webkit-search-cancel-button,
.header-search input::-webkit-search-results-button,
.header-search input::-webkit-search-results-decoration { display: none; }
.header-search input::placeholder { color: #777d86; }
.header-search button {
  position: absolute;
  top: 0;
  right: 0;
  width: 46px;
  height: 100%;
  padding: 0;
  display: grid;
  place-items: center;
  color: #17191d;
  background: transparent;
  border: 0;
  font-size: 25px;
  cursor: pointer;
}
.header-search svg { width: 19px; height: 19px; stroke-width: 1.7; }
.header-actions { display: flex; align-items: center; gap: 8px; }
.search-toggle { display: none; }
.icon-button, .cart-button, .menu-button {
  color: #fff;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.icon-button { width: 40px; height: 40px; font-size: 25px; }
.header-action-button, .cart-button {
  position: relative;
  min-height: 38px;
  padding: 0 7px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.header-action-button svg, .cart-button svg, .language-control svg { width: 19px; height: 19px; stroke-width: 1.65; }
.header-action-button span, .cart-button > span:not(.cart-count) { font-size: 13px; }
.cart-count { display: grid; place-items: center; position: absolute; top: -1px; left: 19px; width: 16px; height: 16px; color: #111; background: var(--gold); border-radius: 50%; font-size: 9px; font-weight: 700; }
.language-control {
  height: 34px;
  padding: 0 6px 0 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #fff;
  border-left: 1px solid #30333a;
}
.language-control select {
  width: 50px;
  color: #fff;
  background: var(--black);
  border: 0;
  outline: 0;
  cursor: pointer;
  font-size: 12px;
}
.menu-button { display: none; width: 42px; height: 42px; padding: 9px; }
.menu-button span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: #fff; }

html[data-theme="dark"] { color-scheme: dark; --ink: #edf0f4; --muted: #a5adb9; --line: #343a43; --soft: #181c22; }
html[data-theme="dark"] body { color: var(--ink); background: #101318; }
html[data-theme="dark"] .page-section,
html[data-theme="dark"] .catalog-page,
html[data-theme="dark"] .product-page,
html[data-theme="dark"] .about-page,
html[data-theme="dark"] .contacts-page,
html[data-theme="dark"] .delivery-page,
html[data-theme="dark"] .news-page,
html[data-theme="dark"] .support-page { background: #101318; }
html[data-theme="dark"] .direction,
html[data-theme="dark"] .benefits,
html[data-theme="dark"] .catalog-category-card,
html[data-theme="dark"] .product-card,
html[data-theme="dark"] .product-price-panel,
html[data-theme="dark"] .product-trust-row,
html[data-theme="dark"] .price-tier,
html[data-theme="dark"] .location-card,
html[data-theme="dark"] .delivery-carriers article,
html[data-theme="dark"] .delivery-note,
html[data-theme="dark"] .news-feature,
html[data-theme="dark"] .support-form-panel,
html[data-theme="dark"] .support-files article,
html[data-theme="dark"] .about-principles article { color: var(--ink); background: #181c22; border-color: var(--line); }
html[data-theme="dark"] .product-main-image,
html[data-theme="dark"] .product-thumb,
html[data-theme="dark"] .category-photo { background: #f7f8fa; }
html[data-theme="dark"] .product-specs div,
html[data-theme="dark"] .product-specs dd,
html[data-theme="dark"] .price-tier > span { color: #d2d7de; }
html[data-theme="dark"] .product-specs dt,
html[data-theme="dark"] .product-stock span,
html[data-theme="dark"] .catalog-category-copy p,
html[data-theme="dark"] .location-copy p { color: #aab2bd; }
html[data-theme="dark"] input,
html[data-theme="dark"] textarea { color: #eef1f5; background: #11151a; border-color: #414853; }
.search-panel {
  display: none;
  width: min(calc(100% - 56px), 680px);
  margin: 0 auto;
  padding: 12px 0 18px;
  gap: 8px;
}
.search-panel.open { display: flex; }
.search-panel input { flex: 1; min-width: 0; padding: 12px 14px; color: #fff; background: #15181d; border: 1px solid #3b4049; border-radius: 4px; outline: none; }
.search-panel input:focus { border-color: var(--gold); }
.search-panel button { padding: 0 22px; color: #111; background: var(--gold); border: 0; border-radius: 4px; cursor: pointer; }

.hero {
  position: relative;
  min-height: clamp(540px, 56vw, 720px);
  overflow: hidden;
  background: #f9fafb;
}
.hero-image { position: absolute; inset: 0; background: url("/assets/fecor-hero-products.png") right center / 68% auto no-repeat; }
.hero-content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 80px), var(--content));
  margin: 0 auto;
  padding-top: clamp(86px, 9vw, 138px);
}
.hero h1 { max-width: 790px; margin: 0 0 30px; font-size: clamp(42px, 4.2vw, 70px); line-height: 1.14; font-weight: 540; }
.hero p { max-width: 590px; margin: 0 0 38px; font-size: clamp(17px, 1.4vw, 21px); line-height: 1.55; color: #353b44; }
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; }
.button { min-height: 54px; padding: 0 28px; display: inline-flex; align-items: center; justify-content: center; gap: 28px; border-radius: 4px; border: 1px solid transparent; font-weight: 600; cursor: pointer; transition: transform .16s ease, background .16s ease, box-shadow .16s ease; }
.button:hover { transform: translateY(-1px); }
.button-primary { color: #fff; background: var(--gold-button); box-shadow: 0 8px 20px rgba(170,124,21,.16); }
.button-primary:hover { background: var(--gold-button-hover); }
.button-secondary { color: #252525; background: rgba(255,255,255,.88); border-color: var(--gold-line); }
.button-secondary:hover { color: #7a570c; border-color: var(--gold-button); background: #fffdf8; }
.slider-dots { display: flex; gap: 10px; margin-top: 64px; }
.slider-dots span { width: 34px; height: 3px; background: #d0d4da; border-radius: 2px; }
.slider-dots .active { background: var(--blue); }

.benefits {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 40px), var(--content));
  min-height: 108px;
  margin: 28px auto 0;
  padding: 18px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  background: #fafafa;
  border: 1px solid #ece9e2;
  border-radius: 0;
  box-shadow: 0 8px 24px rgba(31,35,40,.04);
}
.benefits article { min-height: 58px; padding: 0 42px; display: flex; align-items: center; gap: 22px; border-right: 1px solid #dedede; }
.benefits article:last-child { border-right: 0; }
.benefit-icon {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  color: #c79a27;
  stroke-width: 1.25;
  stroke-linecap: square;
  stroke-linejoin: miter;
  shape-rendering: geometricPrecision;
}
.benefits strong, .benefits small { display: block; }
.benefits strong { margin-bottom: 6px; color: #24272b; font-size: 14px; font-weight: 650; line-height: 1.2; }
.benefits small { color: #858585; font-size: 12px; line-height: 1.3; }

.page-section { width: min(calc(100% - 80px), var(--content)); margin: 0 auto; padding: 88px 0 0; }
.catalog-featured { padding-top: 64px; }
.catalog-featured .section-heading h1 {
  max-width: none;
  margin: 0;
  font-size: clamp(34px, 2.6vw, 44px);
  line-height: 1.08;
  font-weight: 560;
  white-space: nowrap;
}
.heading-accent { color: #ad8121; font-weight: 390; }
.featured-actions { margin-top: 26px; display: flex; gap: 14px; flex-wrap: wrap; }
.featured-actions .button { min-height: 48px; }
.section-heading { margin-bottom: 30px; display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.section-heading h2 { margin: 8px 0 0; font-size: clamp(28px, 3vw, 44px); font-weight: 560; }
.section-heading > a { color: var(--blue); font-weight: 600; }
.eyebrow { color: var(--green); font-size: 12px; font-weight: 700; text-transform: uppercase; }
.direction-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.direction { min-height: 360px; display: grid; grid-template-columns: 44% 56%; overflow: hidden; border: 1px solid var(--line); border-radius: 6px; background: var(--soft); }
.direction-copy { padding: 38px 12px 34px 36px; }
.direction-index { color: var(--blue); font-size: 12px; font-weight: 700; }
.direction h2, .direction h3 { margin: 48px 0 14px; font-size: 29px; font-weight: 590; }
.direction p { min-height: 72px; color: var(--muted); line-height: 1.5; }
.direction a, .product-card-action { color: var(--blue); font-weight: 650; }
.direction-preview, .product-visual { background-image: url("/assets/fecor-hero-products.png"); background-repeat: no-repeat; }
.preview-electronics { background-size: 880px auto; background-position: 38% 78%; }
.preview-energy {
  background-image: url("/assets/fecor-energy-source.png");
  background-size: auto 740px;
  background-position: 75% -59px;
}

.product-section { padding-bottom: 30px; }
.product-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.product-card { position: relative; min-width: 0; padding: 20px; color: var(--ink); border: 1px solid var(--line); border-radius: 6px; background: #fff; transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.product-card:hover { border-color: #c9a447; box-shadow: 0 14px 32px rgba(25,30,38,.09); transform: translateY(-2px); }
.product-card:focus-visible { outline: 2px solid #c9a447; outline-offset: 3px; }
.product-number {
  border-left: 2px solid #c99a2e;
  color: #a77a18;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  padding-left: 8px;
  position: absolute;
  right: 20px;
  top: 15px;
}
.product-visual { height: 170px; margin: 28px -8px 18px; background-size: 910px auto; }
.visual-supply { background-position: 25% 74%; }
.visual-measure { background-position: 57% 73%; }
.visual-connectors { background-position: 48% 86%; }
.visual-charge { background-position: 77% 64%; }
.visual-storage { background-position: 98% 65%; }
.category-visual {
  align-items: center;
  background-color: #f5f7f9;
  background-image:
    linear-gradient(rgba(28, 37, 48, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 37, 48, 0.045) 1px, transparent 1px);
  background-position: center;
  background-size: 22px 22px;
  border: 1px solid #e3e7eb;
  display: flex;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.category-visual::after {
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
  height: 112px;
  opacity: 0.12;
  position: absolute;
  width: 112px;
}
.category-visual svg {
  height: 58px;
  position: relative;
  stroke-width: 1.25;
  transition: transform 180ms ease;
  width: 58px;
  z-index: 1;
}
.product-card:hover .category-visual svg { transform: scale(1.06); }
.category-power { color: #b4841e; }
.category-testers { color: #2769a5; }
.category-connectors { color: #3a7881; }
.category-network { color: #347551; }
.category-microphones { color: #865a82; }
.category-storage { color: #505b68; }
.category-photo {
  background: #f7f8fa;
  border: 1px solid #e3e7eb;
  overflow: hidden;
}
.category-photo img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
  width: 100%;
}
.product-card:hover .category-photo img { transform: scale(1.025); }
.product-card h3 { margin: 0 0 8px; font-size: 18px; }
.product-card p { min-height: 40px; margin: 0 0 22px; color: var(--muted); font-size: 14px; line-height: 1.4; }
.request-section { margin-top: 88px; margin-bottom: 88px; padding: 44px 48px; display: flex; justify-content: space-between; align-items: center; gap: 36px; background: #f3f6fa; border: 1px solid var(--line); border-radius: 6px; }
.request-section h2 { margin: 8px 0; font-size: 32px; }
.request-section p { margin: 0; color: var(--muted); }

footer { padding: 30px max(40px, calc((100vw - var(--content)) / 2)) 24px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 20px 30px; color: #d7d9de; background: var(--black); }
.footer-brand .brand-name { font-size: 30px; }
footer p { color: #979ca5; }
.footer-signature {
  position: relative;
  width: max-content;
  max-width: 100%;
  padding-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer-signature .footer-brand .brand-name {
  animation: none;
  text-shadow: 0 0 6px rgba(244,173,34,.32), 0 0 14px rgba(244,173,34,.12);
}
.footer-signature .footer-brand .brand-name::after { display: none; }
.footer-motto { margin: 0; padding: 0; }
.footer-signature::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 1px;
  background: #ffc64e;
  box-shadow: 0 0 6px rgba(255,198,78,.9), 0 0 14px rgba(244,173,34,.38);
  opacity: 0;
  animation: footer-signature-scan 6.2s ease-in-out infinite;
}
@keyframes footer-signature-scan {
  0%, 18%, 100% { left: 0; opacity: 0; }
  28% { opacity: 1; }
  78% { left: calc(100% - 28px); opacity: 1; }
  88% { left: calc(100% - 28px); opacity: 0; }
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 8px 44px;
  min-width: 360px;
}
.footer-link-column { display: grid; align-content: start; gap: 7px; }
.footer-link-column > a:first-child { color: #f2f3f5; font-weight: 800; }
.footer-links a {
  width: max-content;
  color: #b8bbc1;
  font-size: 13px;
  line-height: 1.35;
  transition: color .2s ease;
}
.footer-links a:hover { color: #f4ad22; }
.footer-legal {
  grid-column: 1 / -1;
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  color: #a4a8af;
  border-top: 1px solid #292c31;
  font-size: 13px;
}
.footer-legal strong { color: #d7d9de; font-weight: 500; }
.footer-legal a { color: #c9a447; }
.footer-legal a:hover { color: #f4ad22; }
.footer-legal a span { color: #676c75; }

.request-dialog { width: min(520px, calc(100% - 28px)); padding: 0; border: 0; border-radius: 6px; box-shadow: 0 25px 70px rgba(0,0,0,.3); }
.request-dialog::backdrop { background: rgba(4,7,12,.68); backdrop-filter: blur(3px); }
.dialog-card { position: relative; padding: 38px; display: grid; gap: 14px; }
.dialog-card h2 { margin: 0; font-size: 32px; }
.dialog-card p { margin: 0 0 8px; color: var(--muted); }
.dialog-card input, .dialog-card textarea { width: 100%; padding: 14px 15px; border: 1px solid #ccd3dc; border-radius: 4px; outline: none; resize: vertical; }
.dialog-card input:focus, .dialog-card textarea:focus { border-color: var(--blue); }
.dialog-close { position: absolute; top: 14px; right: 16px; width: 38px; height: 38px; color: #505761; background: transparent; border: 0; font-size: 30px; cursor: pointer; }
.form-note { color: var(--muted); font-size: 12px; text-align: center; }
.toast { position: fixed; z-index: 40; left: 50%; bottom: 24px; padding: 13px 18px; color: #fff; background: #17231c; border: 1px solid #2d8150; border-radius: 4px; transform: translate(-50%, 100px); opacity: 0; transition: .25s ease; }
.toast.show { transform: translate(-50%, 0); opacity: 1; }
.product-card.search-match {
  border-color: var(--gold-button);
  box-shadow: 0 0 0 2px rgba(201,152,33,.18), 0 14px 35px rgba(39,31,12,.1);
}

.catalog-page { width: min(calc(100% - 80px), var(--content)); min-height: calc(100vh - 260px); margin: 0 auto; padding: 58px 0 82px; }
.catalog-page-heading { padding-bottom: 30px; display: flex; align-items: end; justify-content: space-between; gap: 32px; border-bottom: 1px solid var(--line); }
.catalog-page-heading h1 { margin: 0; font-size: clamp(34px, 4vw, 54px); line-height: 1; font-weight: 560; }
.catalog-page-heading p { max-width: 500px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.5; text-align: right; }
.catalog-category-grid { padding-top: 34px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.catalog-category-card { position: relative; min-width: 0; overflow: hidden; color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: 5px; transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.catalog-category-card:hover { border-color: #c9a447; box-shadow: 0 16px 36px rgba(25,30,38,.09); transform: translateY(-2px); }
.catalog-category-card figure { height: 230px; margin: 0; overflow: hidden; background: #f5f6f7; border-bottom: 1px solid var(--line); }
.catalog-category-card img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .3s ease; }
.catalog-category-card:hover img { transform: scale(1.025); }
.catalog-category-number { position: absolute; z-index: 1; top: 14px; right: 15px; color: #9a7625; font-size: 12px; font-weight: 650; }
.catalog-category-copy { min-height: 128px; padding: 22px 24px 20px; display: grid; grid-template-columns: 1fr auto; align-content: start; gap: 8px 16px; }
.catalog-category-copy h2 { margin: 0; font-size: 21px; font-weight: 590; }
.catalog-category-copy p { grid-column: 1; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.45; }
.catalog-category-copy i { grid-column: 2; grid-row: 1 / span 2; align-self: center; width: 21px; height: 21px; color: #b18420; stroke-width: 1.6; }

.product-page { width: min(calc(100% - 56px), var(--content)); margin: 0 auto; padding: 24px 0 62px; }
.breadcrumbs { margin-bottom: 22px; display: flex; flex-wrap: wrap; align-items: center; gap: 9px; color: #7b838e; font-size: 12px; }
.breadcrumbs a:hover { color: #a67b1e; }
.breadcrumbs i { width: 13px; height: 13px; stroke-width: 1.5; }
.product-layout { display: grid; grid-template-columns: minmax(360px, 1.05fr) minmax(330px, .78fr) minmax(390px, .92fr); gap: 26px; align-items: start; }
.product-gallery, .product-price-panel { border: 1px solid var(--line); border-radius: 5px; background: #fff; }
.product-main-image { height: 548px; display: grid; place-items: center; overflow: hidden; background: #fafbfc; border-bottom: 1px solid var(--line); }
.product-main-image img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.product-thumbnails { padding: 10px 12px; display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.product-thumb { height: 76px; padding: 0; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 4px; cursor: pointer; }
.product-thumb.active { border-color: #c79a2d; box-shadow: 0 0 0 1px #c79a2d; }
.product-thumb img { width: 100%; height: 100%; object-fit: contain; }
.product-info { min-width: 0; padding: 4px 4px 0; }
.product-info h1 { margin: 0 0 13px; font-size: clamp(25px, 1.8vw, 31px); line-height: 1.15; font-weight: 590; }
.product-sku { width: max-content; margin: 0 0 18px; padding: 7px 11px; color: #765817; background: #fbf5e6; border: 1px solid #dbc27e; border-radius: 4px; font-size: 13px; font-weight: 650; }
.product-stock { margin-bottom: 18px; padding: 11px 13px; display: flex; align-items: center; gap: 11px; color: #217a42; background: #f0faf3; border: 1px solid #a8d8b5; border-radius: 5px; }
.product-stock i { flex: 0 0 auto; width: 24px; height: 24px; fill: #55b873; color: #55b873; }
.product-stock div { display: grid; gap: 2px; }
.product-stock strong { font-size: 15px; line-height: 1.2; font-weight: 680; }
.product-stock span { color: #496657; font-size: 12px; line-height: 1.3; font-weight: 540; }
.product-stock.out-of-stock { color: #a43f3f; background: #fff3f3; border-color: #e1b4b4; }
.product-stock.out-of-stock i { color: #c85c5c; fill: none; }
.product-stock.out-of-stock span { color: #805c5c; }
.product-specs-title { margin: 0 0 15px; font-size: 18px; line-height: 1.2; font-weight: 620; }
.product-specs { margin: 0; display: grid; gap: 12px; }
.product-specs div { display: grid; grid-template-columns: minmax(130px, 1fr) minmax(145px, 1fr); gap: 16px; color: #343a42; font-size: 13px; line-height: 1.35; }
.product-specs dt { color: #777f89; }
.product-specs dd { margin: 0; }
.product-description-toggle { width: 100%; margin-top: 20px; padding: 12px 0; display: flex; align-items: center; justify-content: space-between; color: #20252c; background: transparent; border: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); cursor: pointer; font-size: 18px; line-height: 1.2; font-weight: 620; }
.product-description-toggle i { width: 18px; height: 18px; color: #9b741c; stroke-width: 1.7; transition: transform .2s ease; }
.product-description-toggle[aria-expanded="true"] i { transform: rotate(180deg); }
.product-document { margin-top: 0; padding-top: 14px; display: flex; align-items: center; gap: 12px; color: #4e5660; font-size: 13px; }
.product-document > i { width: 24px; height: 24px; stroke-width: 1.4; }
.product-document .download-icon { margin-left: auto; width: 19px; height: 19px; color: #a47a1d; }
.product-documents { display: grid; }
.product-documents .product-document + .product-document { margin-top: 0; border-top: 1px solid var(--line); }
.product-price-panel { overflow: hidden; }
.product-price-panel > h2 { margin: 0; padding: 20px 22px; font-size: 22px; font-weight: 590; border-bottom: 1px solid var(--line); }
.price-tier { min-height: 78px; display: grid; grid-template-columns: 112px 1fr auto; align-items: center; gap: 14px; padding: 13px 18px; border-bottom: 1px solid var(--line); }
.price-tier.retail-tier { grid-template-columns: 72px minmax(0, 1fr); gap: 10px; }
.price-tier strong { font-size: 15px; }
.price-tier > span { color: #3e454d; font-size: 13px; }
.marketplace-list { display: flex; align-items: center; justify-content: flex-end; gap: 4px; }
.marketplace { min-width: 44px; height: 36px; padding: 0 6px; display: inline-grid; place-items: center; background: #fff; border: 1px solid var(--line); border-radius: 4px; font-size: 11px; font-weight: 800; transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.marketplace:is(button) { font-family: inherit; cursor: pointer; }
.marketplace:hover { border-color: #c9a24e; box-shadow: 0 5px 14px rgba(76,57,15,.12); transform: translateY(-1px); }
.marketplace:focus-visible { outline: 2px solid #c9a24e; outline-offset: 2px; }
.marketplace.ozon { color: #075ee8; background: #f3f7ff; letter-spacing: .2px; }
.marketplace.wb { color: #a617ad; background: #fff4ff; font-size: 12px; }
.marketplace.yandex { color: #111; background: #fff8f7; line-height: 1; }
.marketplace.yandex b { color: #e1261c; }
.marketplace.aliexpress { color: #e62e2e; background: #fff6f3; font-size: 10px; }
.marketplace.magnit { color: #d71920; background: #fff6f6; line-height: 1.05; font-size: 10px; }
.marketplace.unavailable { opacity: .72; }
.marketplace.unavailable:hover { opacity: 1; }
.tier-button { min-width: 116px; height: 38px; padding: 0 13px; color: #725315; background: #fff; border: 1px solid #c9a24e; border-radius: 4px; cursor: pointer; font-size: 12px; }
.tier-button:hover { background: #fbf7ed; }
.product-buy { padding: 22px 18px; display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 14px; }
.product-price strong { display: block; font-size: 28px; font-weight: 620; }
.product-price span { color: #7e858e; font-size: 12px; }
.quantity-control { height: 42px; display: grid; grid-template-columns: 34px 36px 34px; border: 1px solid var(--line); border-radius: 4px; overflow: hidden; }
.quantity-control button, .quantity-control output { display: grid; place-items: center; background: #fff; border: 0; font-size: 14px; }
.quantity-control button { cursor: pointer; color: #6a717b; }
.quantity-control button:hover { background: #f5f6f7; }
.add-to-cart { height: 44px; padding: 0 22px; color: #fff; background: var(--gold-button); border: 0; border-radius: 4px; cursor: pointer; }
.add-to-cart:hover { background: var(--gold-button-hover); }
.product-service-row { padding: 17px 18px; display: grid; grid-template-columns: 1fr 1fr; gap: 15px; border-top: 1px solid var(--line); }
.product-service-row > div, .product-service-row > a { display: flex; align-items: center; gap: 10px; }
.product-delivery-link { color: inherit; text-decoration: none; border-radius: 4px; transition: color .18s ease, background-color .18s ease; }
.product-delivery-link:hover { color: #ad7c12; }
.product-delivery-link:hover i { transform: translateX(2px); }
.product-service-row p { margin: 0; }
.product-service-row i { width: 24px; height: 24px; stroke-width: 1.4; transition: transform .18s ease; }
.product-service-row strong { display: block; font-size: 12px; }
.product-service-row span { color: #858b94; font-size: 11px; }
.product-guarantee .guarantee-icon { flex: 0 0 auto; width: 36px; height: 36px; display: grid; place-items: center; color: #9a6a00; background: #fff6dc; border: 1px solid #e2bd61; border-radius: 50%; }
.product-guarantee .guarantee-icon i { width: 25px; height: 25px; stroke-width: 1.8; }
.product-trust-row { margin-top: 28px; padding: 20px 24px; display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: 5px; }
.product-trust-row article { padding: 0 28px; display: flex; align-items: center; gap: 14px; border-right: 1px solid var(--line); }
.product-trust-row article:first-child { padding-left: 0; }
.product-trust-row article:last-child { padding-right: 0; border-right: 0; }
.product-trust-row i { flex: 0 0 auto; width: 30px; height: 30px; stroke-width: 1.35; }
.product-description[hidden] { display: none; }
.product-description { margin-top: 18px; padding: 30px 32px; display: grid; grid-template-columns: minmax(270px, .65fr) minmax(0, 1.35fr); gap: 48px; background: #fff; border: 1px solid var(--line); border-radius: 5px; }
.product-description-heading span { color: #9b741c; font-size: 12px; font-weight: 650; text-transform: uppercase; }
.product-description-heading h2 { margin: 9px 0 0; font-size: 24px; line-height: 1.22; font-weight: 590; }
.product-description-copy { display: grid; gap: 14px; }
.product-description-copy p { margin: 0; color: #555e69; font-size: 14px; line-height: 1.65; }
.product-video { margin-top: 22px; }
.product-video[hidden] { display: none; }
.product-video video { width: 100%; max-height: 440px; display: block; background: #090b0e; border-radius: 4px; }
html[data-theme="dark"] .product-description { background: #181c22; border-color: var(--line); }
html[data-theme="dark"] .product-description-toggle { color: #edf0f4; }
html[data-theme="dark"] .product-description-copy p { color: #aab2bd; }
.product-trust-row strong { display: block; font-size: 12px; }
.product-trust-row span { color: #818892; font-size: 11px; }

.delivery-page { width: min(calc(100% - 80px), 1180px); min-height: calc(100vh - 260px); margin: 0 auto; padding: 58px 0 74px; }
.delivery-heading { padding-bottom: 28px; display: grid; grid-template-columns: 1fr minmax(300px, 460px); align-items: end; gap: 54px; border-bottom: 1px solid var(--line); }
.delivery-heading span { color: #a67b1e; font-size: 12px; font-weight: 700; text-transform: uppercase; }
.delivery-heading h1 { margin: 9px 0 0; font-size: clamp(36px, 4vw, 54px); line-height: 1; font-weight: 560; }
.delivery-heading p { margin: 0; color: #59626d; font-size: 16px; line-height: 1.55; }
.delivery-carriers { padding: 32px 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; border-bottom: 1px solid var(--line); }
.delivery-carriers a { --carrier-accent: #a67b1e; position: relative; min-height: 88px; padding: 14px 18px 14px 21px; display: flex; align-items: center; gap: 14px; overflow: hidden; background: #fff; border: 1px solid #d9dee5; border-radius: 5px; box-shadow: 0 2px 8px rgba(24,29,36,.035); transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.delivery-carriers a::before { content: ""; position: absolute; top: 0; bottom: 0; left: 0; width: 3px; background: var(--carrier-accent); }
.delivery-carriers a:hover { border-color: #b8c0ca; box-shadow: 0 10px 24px rgba(24,29,36,.1); transform: translateY(-2px); }
.delivery-carriers a > i { flex: 0 0 auto; width: 38px; height: 38px; padding: 9px; color: var(--carrier-accent); background: #f5f6f8; border: 1px solid #e1e5ea; border-radius: 4px; stroke-width: 1.65; }
.delivery-carriers a:nth-child(1) { --carrier-accent: #e5aa16; }
.delivery-carriers a:nth-child(2) { --carrier-accent: #149b94; }
.delivery-carriers a:nth-child(3) { --carrier-accent: #db8b13; }
.delivery-carriers a:nth-child(4) { --carrier-accent: #185a9d; }
.delivery-carriers a:nth-child(5) { --carrier-accent: #cc3b30; }
.delivery-carriers a:nth-child(6) { --carrier-accent: #2278a7; }
.delivery-carriers a:nth-child(7) { --carrier-accent: #dc5224; }
.delivery-carriers a:nth-child(8) { --carrier-accent: #7b438f; }
.delivery-carriers a:nth-child(9) { --carrier-accent: #1669b2; }
.delivery-carriers strong { font-size: 15px; font-weight: 590; }
.delivery-note { padding-top: 28px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.delivery-note article { padding: 20px 22px; background: #f7f8fa; border: 1px solid var(--line); border-radius: 4px; }
.delivery-note strong { display: block; margin-bottom: 7px; font-size: 14px; }
.delivery-note p { margin: 0; color: #68717d; font-size: 13px; line-height: 1.5; }
html[data-theme="dark"] .delivery-heading p { color: #b5bdc8; }
html[data-theme="dark"] .delivery-carriers a { color: #edf0f4; background: #181c22; border-color: #3a424d; box-shadow: none; }
html[data-theme="dark"] .delivery-carriers a:hover { background: #1d2229; border-color: #596370; box-shadow: 0 10px 24px rgba(0,0,0,.22); }
html[data-theme="dark"] .delivery-carriers a > i { color: var(--carrier-accent); background: #222831; border-color: #414a56; }
html[data-theme="dark"] .delivery-carriers strong { color: #f4f6f8; }
html[data-theme="dark"] .delivery-note { background: transparent; }
html[data-theme="dark"] .delivery-note article { color: #edf0f4; background: #181c22; border-color: #3a424d; }
html[data-theme="dark"] .delivery-note strong { color: #f4f6f8; }
html[data-theme="dark"] .delivery-note p { color: #b5bdc8; }

.about-page { background: #fff; }
.about-intro {
  width: min(calc(100% - 80px), var(--content));
  min-height: 540px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(420px, 42%) 1fr;
  align-items: center;
  overflow: hidden;
}
.about-intro-copy { position: relative; z-index: 1; padding: 82px 0; }
.about-kicker {
  display: inline-block;
  margin-bottom: 26px;
  color: #ad8121;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}
.about-intro h1 { margin: 0 0 28px; font-size: clamp(42px, 4vw, 64px); line-height: 1.08; font-weight: 560; }
.about-intro p { max-width: 650px; margin: 0; color: #555e69; font-size: 19px; line-height: 1.6; }
.about-intro-visual {
  align-self: stretch;
  min-width: 0;
  background: url("/assets/fecor-hero-products.png") 62% center / 1130px auto no-repeat;
}
.about-facts {
  width: min(calc(100% - 80px), var(--content));
  margin: 0 auto;
  padding: 24px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-facts article { min-height: 76px; padding: 0 38px; display: flex; align-items: center; gap: 20px; border-right: 1px solid var(--line); }
.about-facts article:first-child { padding-left: 0; }
.about-facts article:last-child { border-right: 0; }
.about-facts strong { color: #ad8121; font-size: 28px; font-weight: 570; white-space: nowrap; }
.about-facts span { max-width: 220px; color: #777f89; font-size: 13px; line-height: 1.4; }
.about-story {
  width: min(calc(100% - 80px), var(--content));
  margin: 0 auto;
  padding: 100px 0;
  display: grid;
  grid-template-columns: 38% 1fr;
  gap: 8%;
}
.about-story-heading > span { color: #ad8121; font-size: 13px; font-weight: 700; }
.about-story h2 { margin: 18px 0 0; font-size: clamp(32px, 3vw, 48px); line-height: 1.15; font-weight: 540; }
.about-story-text { padding-top: 28px; }
.about-story-text p { margin: 0 0 22px; color: #4e5660; font-size: 18px; line-height: 1.7; }
.about-principles {
  width: min(calc(100% - 80px), var(--content));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #f5f7f9;
  border: 1px solid var(--line);
}
.about-principles article { position: relative; min-height: 290px; padding: 42px 46px; border-right: 1px solid var(--line); }
.about-principles article:first-child { border-left: 0; }
.about-principles article:last-child { border-right: 0; }
.about-principles article > span { position: absolute; top: 28px; right: 30px; color: #a5abb3; font-size: 12px; }
.about-principles svg { width: 34px; height: 34px; margin-bottom: 32px; color: #76a66a; stroke-width: 1.5; }
.about-principles h3 { margin: 0 0 13px; font-size: 22px; font-weight: 590; }
.about-principles p { margin: 0; color: #68717d; line-height: 1.55; }
.about-mission {
  width: min(calc(100% - 80px), var(--content));
  margin: 0 auto;
  padding: 96px 0;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
}
.about-mission > div { max-width: 1050px; }
.about-mission > div > span { color: #ad8121; font-size: 13px; font-weight: 700; text-transform: uppercase; }
.about-mission h2 { margin: 20px 0 0; font-size: clamp(30px, 3vw, 45px); line-height: 1.25; font-weight: 430; }

.contacts-page {
  width: min(calc(100% - 80px), var(--content));
  min-height: calc(100vh - 277px);
  margin: 0 auto;
  padding: 34px 0 30px;
}
.contacts-heading { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 8px 32px; margin-bottom: 24px; }
.contacts-heading > span { grid-column: 1 / -1; color: #ad8121; font-size: 12px; font-weight: 700; text-transform: uppercase; }
.contacts-heading h1 { margin: 0; font-size: clamp(30px, 2.8vw, 44px); line-height: 1.05; font-weight: 560; }
.contacts-heading p { max-width: 590px; margin: 0; color: #68717d; line-height: 1.45; }
.contact-locations { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.location-card {
  min-width: 0;
  min-height: 264px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42%;
  overflow: hidden;
  background: #f6f7f8;
  border: 1px solid var(--line);
}
.location-copy { min-width: 0; padding: 30px; display: flex; flex-direction: column; align-items: flex-start; }
.location-label { display: flex; align-items: center; gap: 10px; color: #ad8121; font-size: 12px; font-weight: 700; text-transform: uppercase; }
.location-label svg { width: 18px; height: 18px; stroke-width: 1.4; }
.location-card h2 { margin: 28px 0 7px; font-size: 21px; line-height: 1.35; font-weight: 580; }
.location-card p { margin: 0; color: #707985; }
.location-card a { margin-top: auto; color: #9a7119; display: inline-flex; align-items: center; gap: 12px; font-size: 13px; font-weight: 650; }
.location-card img { width: 100%; min-width: 0; height: 264px; min-height: 0; display: block; object-fit: cover; filter: saturate(.82) contrast(.96) brightness(1.04); }
.location-card:first-child img { object-position: 51% 55%; }
.location-card:last-child img { object-position: 48% center; }
.contact-details { margin-top: 18px; display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); }
.contact-details article { min-width: 0; min-height: 92px; padding: 20px 24px; display: flex; align-items: center; gap: 16px; border-right: 1px solid var(--line); }
.contact-details article:last-child { border-right: 0; }
.contact-details svg { flex: 0 0 24px; width: 24px; height: 24px; color: #ad8121; stroke-width: 1.3; }
.contact-details div { min-width: 0; }
.contact-details span { display: block; margin-bottom: 6px; color: #858d97; font-size: 12px; }
.contact-details a, .contact-details strong { color: #252a30; font-size: 15px; font-weight: 600; white-space: nowrap; }

.support-page {
  width: min(calc(100% - 80px), var(--content));
  min-height: calc(100vh - 277px);
  margin: 0 auto;
  padding: 34px 0 30px;
}
.support-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 24px; }
.support-heading > div > span { color: #ad8121; font-size: 12px; font-weight: 700; text-transform: uppercase; }
.support-heading h1 { margin: 10px 0 0; font-size: clamp(30px, 2.8vw, 44px); line-height: 1.05; font-weight: 560; }
.support-heading > p { max-width: 540px; margin: 0; color: #68717d; line-height: 1.45; }
.support-workspace { display: grid; grid-template-columns: minmax(360px, .82fr) minmax(560px, 1.18fr); gap: 18px; }
.support-form-panel, .support-files article { border: 1px solid var(--line); background: #f7f8f9; }
.support-form-panel { min-height: 432px; padding: 28px; }
.support-panel-heading { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 22px; }
.support-panel-heading > svg { flex: 0 0 28px; width: 28px; height: 28px; color: #ad8121; stroke-width: 1.3; }
.support-panel-heading h2, .support-files h2 { margin: 0; font-size: 18px; font-weight: 600; }
.support-panel-heading p, .support-files p { margin: 5px 0 0; color: #7b838d; font-size: 13px; line-height: 1.4; }
.support-form { display: grid; gap: 12px; }
.support-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.support-form label { display: block; }
.support-form input, .support-form select, .support-form textarea {
  width: 100%;
  color: #242a31;
  background: #fff;
  border: 1px solid #d8dde3;
  border-radius: 3px;
  outline: 0;
}
.support-form input, .support-form select { height: 46px; padding: 0 14px; }
.support-form textarea { min-height: 112px; padding: 13px 14px; resize: vertical; }
.support-form input:focus, .support-form select:focus, .support-form textarea:focus { border-color: #b78a25; box-shadow: 0 0 0 2px rgba(183,138,37,.09); }
.support-submit { justify-self: start; min-height: 46px; padding: 0 22px; gap: 14px; }
.support-submit svg { width: 17px; height: 17px; stroke-width: 1.5; }
.support-files { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.support-files article { min-height: 210px; padding: 26px; display: grid; grid-template-columns: 38px 1fr; grid-template-rows: 1fr auto; gap: 0 16px; }
.support-files article > svg { grid-row: 1 / 3; width: 32px; height: 32px; color: #ad8121; stroke-width: 1.25; }
.support-file-button {
  justify-self: start;
  min-height: 34px;
  margin-top: 20px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #8c939d;
  background: transparent;
  border: 0;
  font-size: 12px;
}
.support-file-button svg { width: 16px; height: 16px; stroke-width: 1.3; }
.support-file-list {
  align-self: end;
  display: grid;
  gap: 8px;
  grid-column: 2;
  max-height: 112px;
  overflow: auto;
}
.support-file-list .support-file-button {
  color: #5d6670;
  margin: 0;
  max-width: 100%;
  text-decoration: none;
}
.support-file-list .support-file-button span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.support-file-list .support-file-button:hover { color: #ad8121; }

.news-page {
  width: min(calc(100% - 80px), var(--content));
  min-height: calc(100vh - 277px);
  margin: 0 auto;
  padding: 30px 0;
}
.news-list { display: grid; gap: 18px; }
.news-meta span[data-label="Поступление"] { color: #247b4b; background: #e8f5ed; }
.news-meta span[data-label="Новости"] { color: #245fa8; background: #eaf2fc; }
.news-meta span[data-label="Выставки"] { color: #7958a6; background: #f2ecfa; }
.news-meta span[data-label="Распродажа"] { color: #a64040; background: #fdecec; }
.news-heading { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 7px 32px; margin-bottom: 20px; }
.news-heading > span { grid-column: 1 / -1; color: #ad8121; font-size: 12px; font-weight: 700; text-transform: uppercase; }
.news-heading h1 { margin: 0; font-size: clamp(30px, 2.8vw, 42px); line-height: 1.05; font-weight: 560; }
.news-heading p { margin: 0; color: #68717d; }
.news-feature {
  height: 480px;
  display: grid;
  grid-template-columns: 42% 1fr;
  grid-template-rows: minmax(0, 1fr);
  overflow: hidden;
  background: #f6f7f8;
  border: 1px solid var(--line);
}
.news-feature figure { min-width: 0; height: 100%; margin: 0; background: #f3f5f7; }
.news-feature figure.news-media { isolation: isolate; overflow: hidden; position: relative; }
.news-feature figure.news-media::before {
  background-image: var(--news-image);
  background-position: center;
  background-size: cover;
  content: "";
  filter: blur(24px);
  inset: -32px;
  opacity: 0.34;
  position: absolute;
  transform: scale(1.08);
  z-index: -1;
}
.news-feature figure.news-media::after {
  background: rgba(245, 247, 249, 0.3);
  content: "";
  inset: 0;
  position: absolute;
  z-index: -1;
}
.news-feature figure img {
  display: block;
  height: 100%;
  object-fit: contain;
  position: relative;
  width: 100%;
  z-index: 1;
}
.news-feature figure.news-placeholder {
  display: grid;
  place-content: center;
  gap: 8px;
  min-height: 280px;
  color: #d4a326;
  background: #101114;
  text-align: center;
}
.news-placeholder strong { font-size: 44px; font-weight: 560; letter-spacing: 0; }
.news-placeholder span { color: #f4f4f4; font-size: 14px; text-transform: uppercase; }
.news-copy { min-width: 0; min-height: 0; padding: 38px 48px; display: flex; flex-direction: column; }
.news-meta { display: flex; align-items: center; gap: 14px; color: #818994; font-size: 12px; }
.news-meta span { padding: 5px 9px; color: #8a6517; background: #f2e8cc; font-weight: 700; text-transform: uppercase; }
.news-copy h2 { max-width: 760px; margin: 24px 0 12px; font-size: clamp(28px, 2.5vw, 40px); line-height: 1.12; font-weight: 590; }
.news-lead { max-width: 760px; margin: 0; color: #5e6772; font-size: 17px; line-height: 1.55; }
.news-specs { margin: 26px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 28px; list-style: none; }
.news-specs li { display: flex; align-items: center; gap: 10px; color: #2f353c; font-size: 14px; }
.news-specs svg { flex: 0 0 17px; width: 17px; height: 17px; color: #ad8121; stroke-width: 1.5; }
.news-audience { margin-top: auto; padding-top: 20px; display: flex; align-items: center; gap: 13px; border-top: 1px solid var(--line); }
.news-audience svg { width: 22px; height: 22px; color: #ad8121; stroke-width: 1.3; }
.news-audience p { margin: 0; color: #626b76; font-size: 13px; }

@media (max-width: 1200px) {
  .catalog-category-grid { grid-template-columns: repeat(2, 1fr); }
  .product-layout { grid-template-columns: minmax(360px, 1fr) minmax(340px, 1fr); }
  .product-price-panel { grid-column: 1 / -1; }
  .product-trust-row { grid-template-columns: repeat(2, 1fr); gap: 22px 0; }
  .product-trust-row article:nth-child(2) { border-right: 0; }
  .header-inner { gap: 20px; }
  .brand-tagline { display: none; }
  .main-nav { gap: 18px; }
  .header-search { min-width: 220px; }
  .header-action-button span, .cart-button > span:not(.cart-count) { display: none; }
  .hero-image { left: 24%; background-size: auto 82%; opacity: .78; }
  .hero-content { text-shadow: 0 1px 0 #fff; }
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .benefits article:nth-child(2) { border-right: 0; }
  .benefits article:nth-child(-n+2) { border-bottom: 1px solid var(--line); padding-bottom: 14px; margin-bottom: 14px; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1500px) {
  .header-inner { gap: 18px; }
  .site-header .brand-tagline { display: none; }
  .main-nav { gap: 18px; }
  .header-action-button span, .cart-button > span:not(.cart-count) { display: none; }
}

@media (max-width: 820px) {
  .catalog-page { width: calc(100% - 32px); padding: 42px 0 58px; }
  .catalog-page-heading { align-items: start; flex-direction: column; gap: 14px; }
  .catalog-page-heading p { text-align: left; }
  .product-page { width: calc(100% - 32px); padding-top: 18px; }
  .product-layout { grid-template-columns: 1fr; }
  .product-price-panel { grid-column: auto; }
  .product-main-image { height: min(520px, 115vw); }
  .product-info { padding: 4px 0; }
  .product-trust-row { grid-template-columns: 1fr; }
  .product-trust-row article, .product-trust-row article:first-child { padding: 0 0 18px; border-right: 0; border-bottom: 1px solid var(--line); }
  .product-trust-row article:last-child { padding-bottom: 0; border-bottom: 0; }
  .product-description { padding: 24px 22px; grid-template-columns: 1fr; gap: 22px; }
  .product-description-heading h2 { font-size: 21px; }
  .delivery-page { width: calc(100% - 32px); padding: 42px 0 58px; }
  .delivery-heading { grid-template-columns: 1fr; align-items: start; gap: 18px; }
  .delivery-carriers { grid-template-columns: repeat(2, 1fr); }
  .delivery-note { grid-template-columns: 1fr; }
  .header-inner { width: min(calc(100% - 32px), var(--content)); grid-template-columns: 1fr auto auto; min-height: 64px; }
  .brand-name { font-size: 30px; }
  .menu-button { display: block; order: 2; }
  .header-actions { order: 3; }
  .account-button, .cart-button span:not(.cart-count) { display: none; }
  .language-control { padding: 0; border-left: 0; }
  .language-control svg { display: none; }
  .language-control select { width: 43px; }
  .cart-button { width: 36px; }
  .main-nav { position: absolute; top: 64px; left: 0; right: 0; display: none; padding: 12px 24px 24px; background: var(--black); border-top: 1px solid #292c31; }
  .main-nav.open { display: grid; }
  .main-nav a { padding: 12px 0; }
  .header-search { display: none; }
  .search-toggle { display: inline-block; }
  .search-panel { width: calc(100% - 32px); }
  .hero { min-height: 680px; }
  .hero-image { inset: auto -17% 18px 3%; height: 48%; background-size: cover; background-position: 73% center; opacity: 1; }
  .hero-content { width: calc(100% - 40px); padding-top: 58px; }
  .hero h1 { font-size: clamp(36px, 9vw, 54px); }
  .hero p { max-width: 94%; font-size: 16px; }
  .slider-dots { margin-top: 34px; }
  .benefits, .page-section { width: calc(100% - 32px); }
  .benefits { margin-top: 0; grid-template-columns: 1fr; }
  .catalog-featured { padding-top: 42px; }
  .catalog-featured .section-heading h1 { white-space: normal; }
  .benefits article { border-right: 0; border-bottom: 1px solid var(--line); padding: 14px 0; margin: 0; }
  .benefits article:nth-child(-n+2) { margin: 0; }
  .direction-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .request-section { align-items: flex-start; flex-direction: column; }
  .about-intro { width: calc(100% - 32px); min-height: 0; grid-template-columns: 1fr; }
  .about-intro-copy { padding: 58px 4px 30px; }
  .about-intro h1 { font-size: clamp(38px, 10vw, 52px); }
  .about-intro p { font-size: 16px; }
  .about-intro-visual { min-height: 270px; background-size: 760px auto; background-position: 56% center; }
  .about-facts { width: calc(100% - 32px); grid-template-columns: 1fr; }
  .about-facts article, .about-facts article:first-child { padding: 18px 4px; border-right: 0; border-bottom: 1px solid var(--line); }
  .about-facts article:last-child { border-bottom: 0; }
  .about-story { width: calc(100% - 32px); padding: 70px 0; grid-template-columns: 1fr; gap: 20px; }
  .about-story-text { padding-top: 0; }
  .about-story-text p { font-size: 16px; }
  .about-principles { width: calc(100% - 32px); padding: 0; grid-template-columns: 1fr; }
  .about-principles article, .about-principles article:first-child { min-height: 0; padding: 34px 20px; border-left: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .about-principles article:last-child { border-bottom: 0; }
  .about-mission { width: calc(100% - 32px); padding: 70px 0; align-items: flex-start; flex-direction: column; gap: 34px; }
  .contacts-page { width: calc(100% - 32px); min-height: 0; padding: 42px 0; }
  .contacts-heading { grid-template-columns: 1fr; align-items: start; }
  .contacts-heading p { font-size: 14px; }
  .contact-locations { grid-template-columns: 1fr; }
  .location-card { grid-template-columns: 1fr 40%; min-height: 230px; }
  .location-copy { padding: 24px 20px; }
  .location-card h2 { margin-top: 20px; font-size: 18px; }
  .location-card img { height: 230px; min-height: 0; }
  .contact-details { grid-template-columns: 1fr 1fr; }
  .contact-details article:nth-child(2) { border-right: 0; }
  .contact-details article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .support-page { width: calc(100% - 32px); min-height: 0; padding: 42px 0; }
  .support-workspace { grid-template-columns: 1fr; }
  .support-form-panel { min-height: 0; }
  .news-page { width: calc(100% - 32px); min-height: 0; padding: 42px 0; }
  .news-feature { height: auto; grid-template-columns: minmax(300px, 40%) 1fr; }
  .news-feature figure { min-height: 520px; }
  footer { grid-template-columns: 1fr; padding: 28px 24px 22px; }
  .footer-signature { align-items: flex-start; flex-direction: column; gap: 10px; }
  .footer-links { min-width: 0; width: 100%; }
  .footer-legal { align-items: flex-start; flex-direction: column; gap: 7px; }
}

@media (prefers-reduced-motion: reduce) {
  .site-header .brand-name::after { display: none; }
  .footer-signature::after { display: none; }
}

.category-list-page { width: min(1440px, calc(100% - 64px)); min-height: 68vh; margin: 0 auto; padding: 34px 0 72px; }
.category-breadcrumbs { display: flex; align-items: center; gap: 7px; margin-bottom: 34px; color: #7b8492; font-size: 13px; }
.category-breadcrumbs a { color: inherit; text-decoration: none; }
.category-breadcrumbs svg { width: 14px; height: 14px; }
.category-list-heading { display: flex; align-items: end; justify-content: space-between; gap: 32px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.category-list-heading > div { display: flex; align-items: baseline; gap: 16px; }
.category-list-heading span { color: #c79a2b; font-size: 14px; font-weight: 700; }
.category-list-heading h1 { margin: 0; font-size: clamp(34px, 4vw, 56px); letter-spacing: 0; }
.category-list-heading p { max-width: 480px; margin: 0 0 6px; color: #6f7887; font-size: 15px; line-height: 1.55; }
.category-products-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; padding-top: 28px; }
.category-product-card { min-width: 0; overflow: hidden; color: #11151c; border: 1px solid #dce1e8; border-radius: 6px; background: #fff; text-decoration: none; transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease; }
.category-product-card:hover { transform: translateY(-2px); border-color: #c9a34d; box-shadow: 0 12px 28px rgba(24, 31, 42, 0.08); }
.category-product-link { display: block; color: inherit; text-decoration: none; }
.category-product-card figure { height: 210px; margin: 0; padding: 12px; background: #f7f8fa; border-bottom: 1px solid #e5e8ed; }
.category-product-card img { width: 100%; height: 100%; display: block; object-fit: contain; }
.category-product-copy { padding: 14px 14px 10px; }
.category-product-article { color: #7a8391; font-size: 12px; }
.category-product-card h2 { min-height: 46px; margin: 7px 0 13px; font-size: 15px; line-height: 1.4; letter-spacing: 0; }
.category-product-meta { display: grid; grid-template-columns: 1fr auto 38px; align-items: center; gap: 10px; padding-top: 14px; border-top: 1px solid #e5e8ed; }
.category-product-meta strong { font-size: 16px; }
.category-product-meta span { font-size: 12px; font-weight: 700; }
.category-product-meta .in-stock { color: #2b9a52; }
.category-product-meta .out-stock { color: #b64b4b; }
.category-products-empty { padding: 50px 0; color: #7b8492; text-align: center; }
.quick-order-button { min-height: 36px; padding: 0 14px; color: #765817; background: #fff; border: 1px solid #c9a24e; border-radius: 4px; cursor: pointer; font-weight: 650; }
.quick-order-button:hover { color: #fff; background: #bd902c; }
.category-quick-order { width: 36px; min-width: 36px; height: 36px; min-height: 36px; padding: 0; display: inline-grid; place-items: center; color: #fff; background: #d3a01e; border-color: #d3a01e; }
.category-quick-order svg { width: 17px; height: 17px; stroke-width: 1.8; }
.product-buy { grid-template-columns: 1fr auto auto auto; }
.product-quick-order { width: 44px; min-width: 44px; height: 44px; min-height: 44px; padding: 0; display: inline-grid; place-items: center; color: #fff; background: #d3a01e; border-color: #d3a01e; }
.product-quick-order:hover { color: #fff; background: #b98715; border-color: #b98715; }
.product-quick-order svg { width: 20px; height: 20px; stroke-width: 1.8; }
.quick-order-dialog { width: min(470px, calc(100% - 28px)); padding: 0; border: 0; border-radius: 6px; box-shadow: 0 25px 70px rgba(0,0,0,.32); }
.quick-order-dialog::backdrop { background: rgba(10, 13, 17, .68); }
.quick-order-form { position: relative; padding: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; background: #fff; }
.quick-order-form header { grid-column: 1 / -1; padding-right: 34px; }
.quick-order-form header span { color: #a47a1d; font-size: 12px; font-weight: 750; text-transform: uppercase; }
.quick-order-form h2 { margin: 5px 0 10px; font-size: 18px; letter-spacing: 0; }
.quick-order-product { grid-column: 1 / -1; min-height: 88px; padding: 10px; display: grid; grid-template-columns: 76px 1fr; align-items: center; gap: 14px; background: #f6f7f9; border: 1px solid #e0e4e9; }
.quick-order-product img { width: 76px; height: 68px; object-fit: contain; background: #fff; }
.quick-order-product strong { font-size: 20px; }
.quick-order-form input, .quick-order-form textarea { width: 100%; padding: 10px 11px; border: 1px solid #ccd3dc; border-radius: 4px; font: inherit; }
.quick-order-form textarea { grid-column: 1 / -1; resize: vertical; }
.quick-order-close { position: absolute; z-index: 2; top: 12px; right: 14px; width: 30px; height: 30px; padding: 0; color: #ef4444; background: transparent; border: 0; font-size: 27px; cursor: pointer; }
.quick-order-actions { grid-column: 1 / -1; margin: 8px -24px -24px; padding: 12px 24px; display: grid; grid-template-columns: 1fr 1.5fr; gap: 10px; border-top: 1px solid #e0e4e9; }
.quick-order-actions button { min-height: 40px; border: 0; border-radius: 4px; cursor: pointer; }
.quick-order-submit { color: #fff; background: #bd902c; }

@media (max-width: 1050px) { .category-products-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } .product-buy { grid-template-columns: 1fr auto; } }
@media (max-width: 760px) {
  .category-list-page { width: calc(100% - 32px); }
  .category-list-heading { align-items: flex-start; flex-direction: column; }
  .category-products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) { .category-products-grid { grid-template-columns: 1fr; } }

@media (max-width: 520px) {
  .catalog-category-grid { grid-template-columns: 1fr; }
  .product-thumbnails { grid-template-columns: repeat(3, 1fr); }
  .product-thumb { height: 72px; }
  .price-tier { grid-template-columns: 88px 1fr; }
  .price-tier .tier-button { grid-column: 1 / -1; width: 100%; }
  .product-buy { grid-template-columns: 1fr auto; }
  .add-to-cart { grid-column: 1 / -1; width: 100%; }
  .delivery-carriers { grid-template-columns: 1fr; }
  .delivery-carriers a { min-height: 72px; padding: 10px 12px; }
  .header-actions { gap: 0; }
  .hero { min-height: 720px; }
  .hero-actions { display: grid; }
  .button { width: 100%; padding: 0 18px; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 8px 24px; }
  .hero-image { right: -55%; left: -10%; height: 43%; background-position: 70% center; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .page-section { padding-top: 64px; }
  .direction { grid-template-columns: 1fr; }
  .direction-copy { padding: 28px; }
  .direction h3 { margin-top: 28px; }
  .direction-preview { min-height: 210px; }
  .preview-energy { background-size: auto 430px; background-position: 68% -35px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-visual { height: 210px; }
  .request-section { margin-top: 64px; margin-bottom: 64px; padding: 30px 24px; }
  .location-card { grid-template-columns: 1fr; }
  .location-card img { height: 180px; min-height: 180px; order: -1; }
  .contact-details { grid-template-columns: 1fr; }
  .contact-details article, .contact-details article:nth-child(2) { min-height: 78px; border-right: 0; border-bottom: 1px solid var(--line); }
  .contact-details article:last-child { border-bottom: 0; }
  .support-heading { align-items: flex-start; flex-direction: column; gap: 12px; }
  .support-form-row, .support-files { grid-template-columns: 1fr; }
  .support-form-panel { padding: 22px 18px; }
  .support-files article { min-height: 170px; }
  .news-heading { grid-template-columns: 1fr; align-items: start; }
  .news-feature { grid-template-columns: 1fr; }
  .news-feature figure { height: 520px; min-height: 0; }
  .news-copy { padding: 28px 22px; }
  .news-specs { grid-template-columns: 1fr; }
  .news-audience { margin-top: 28px; }
}
