:root {
  --bg: #ffffff;
  --ink: #101512;
  --muted: #66726d;
  --soft: #f3f6f5;
  --soft-2: #e8efec;
  --line: #dde5e1;
  --dark: #121a16;
  --dark-2: #1e2b25;
  --accent: #e21d14;
  --accent-2: #ff3b30;
  --blue: #2a6df5;
  --amber: #f4b04e;
  --danger: #a33a24;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(17, 24, 20, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, Arial, Helvetica, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.topline {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 8px clamp(18px, 4vw, 64px);
  color: #151515;
  background: #f2f3f4;
  font-size: 14px;
  font-weight: 650;
}

.topline nav,
.top-contacts {
  display: flex;
  align-items: center;
  gap: 22px;
}

.top-contacts {
  gap: 16px;
  font-weight: 800;
}

.top-contacts span {
  color: #0a8f55;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 120px minmax(320px, 1fr) auto;
  align-items: center;
  gap: 20px;
  padding: 18px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid rgba(221, 229, 225, .9);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(16px);
}

.brand,
.main-nav,
.hero-actions,
.section-head,
.product-meta,
.price-row,
.cart-line,
.summary div,
.footer-links,
.manager-head,
.quick-actions,
.delivery-manager-title {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0;
}

.lambox-brand {
  display: block;
}

.integra-brand {
  width: 218px;
  height: 56px;
  padding: 0;
  border-radius: 0;
  background: #fff;
  overflow: hidden;
}

.integra-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-mark {
  width: 31px;
  height: 31px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.88), rgba(255,255,255,0) 42%),
    linear-gradient(135deg, var(--accent), #72e1ac);
  box-shadow: 0 10px 24px rgba(10, 143, 85, .25), inset 0 0 0 1px rgba(255,255,255,.55);
}

.catalog-button {
  position: relative;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-left: 34px;
  border-radius: 7px;
  color: #fff;
  background: var(--accent);
  font-size: 17px;
  font-weight: 850;
}

.catalog-button span {
  position: absolute;
  left: 18px;
  width: 22px;
  height: 3px;
  display: block;
  border-radius: 999px;
  background: #fff;
}

.catalog-button span + span {
  transform: translateY(-8px);
}

.catalog-button span + span + span {
  transform: translateY(8px);
}

.main-nav {
  gap: 22px;
  color: #26332e;
  font-weight: 800;
}

.icon-nav {
  justify-content: end;
}

.icon-nav a {
  position: relative;
  min-width: 56px;
  display: grid;
  justify-items: center;
  gap: 3px;
  color: #070707;
  font-size: 12px;
  line-height: 1.1;
}

.icon-nav strong {
  font-size: 27px;
  line-height: 1;
  font-weight: 500;
}

.icon-nav em {
  position: absolute;
  top: -2px;
  right: 2px;
  min-width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--accent);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.main-nav a:hover,
.footer-links a:hover {
  color: var(--accent);
}

.header-search {
  display: flex;
  min-width: 0;
  width: 100%;
  height: 50px;
  border: 2px solid var(--accent);
  border-radius: 7px;
  background: #fff;
  overflow: hidden;
}

.header-search input {
  flex: 1 1 0;
  width: auto;
  min-width: 0;
  padding: 0 18px;
  border: 0;
  outline: 0;
  background: transparent;
}

.header-search button {
  min-width: 82px;
  flex: 0 0 auto;
  border: 0;
  border-left: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.cart-chip {
  min-width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 5px;
  border-radius: 999px;
  color: #fff;
  background: var(--accent);
  font-size: 12px;
}

.messages {
  padding: 14px clamp(18px, 4vw, 56px) 0;
}

.message {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 14px;
  border: 1px solid #bddccf;
  border-radius: var(--radius);
  color: #10492e;
  background: #eaf8f1;
  font-weight: 750;
}

.home-hero,
.catalog-hero,
.calculator-hero,
.partner-hero {
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(34px, 6vw, 76px) clamp(18px, 4vw, 56px);
}

.home-hero {
  min-height: min(760px, calc(100vh - 102px));
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(420px, .84fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}

.lambox-hero {
  position: relative;
  max-width: none;
  min-height: 590px;
  display: block;
  padding: 0;
  overflow: hidden;
  background: #090909;
}

.lambox-hero > img {
  width: 100%;
  height: 590px;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.76) 0%, rgba(0,0,0,.36) 42%, rgba(0,0,0,.2) 100%),
    linear-gradient(180deg, rgba(0,0,0,.05) 35%, rgba(0,0,0,.74) 100%);
}

.lambox-hero .hero-copy {
  position: absolute;
  left: clamp(26px, 4.5vw, 66px);
  bottom: 56px;
  z-index: 2;
  max-width: 690px;
  color: #fff;
}

.lambox-hero .hero-copy h1 {
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1;
}

.lambox-hero .hero-copy p {
  max-width: 650px;
  color: rgba(255,255,255,.82);
  font-size: 19px;
}

.lambox-hero .button.primary {
  border-color: var(--accent);
  background: var(--accent);
}

.button.outline-light {
  border-color: rgba(255,255,255,.58);
  color: #fff;
  background: rgba(0,0,0,.18);
  backdrop-filter: blur(8px);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 44px;
  height: 62px;
  border: 0;
  color: #fff;
  background: rgba(0,0,0,.34);
  font-size: 44px;
  line-height: 1;
  cursor: pointer;
}

.hero-arrow-left {
  left: 0;
}

.hero-arrow-right {
  right: 0;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 20px;
  z-index: 3;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.hero-dots span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255,255,255,.48);
}

.hero-dots span:first-child {
  width: 28px;
  background: var(--accent);
}

.quick-calc-panel {
  position: absolute;
  right: clamp(26px, 4vw, 64px);
  bottom: 58px;
  z-index: 3;
  width: min(360px, calc(100% - 52px));
  display: grid;
  gap: 10px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 10px;
  color: #fff;
  background: rgba(12, 12, 12, .72);
  box-shadow: 0 24px 70px rgba(0,0,0,.34);
  backdrop-filter: blur(16px);
}

.quick-calc-panel h2 {
  margin: 0;
  font-size: 27px;
}

.quick-calc-panel p,
.quick-calc-panel small {
  margin: 0;
  color: rgba(255,255,255,.72);
}

.quick-calc-panel select,
.quick-calc-panel input {
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 7px;
  color: #fff;
  background: rgba(255,255,255,.1);
}

.quick-calc-panel button {
  min-height: 46px;
  border: 0;
  border-radius: 7px;
  color: #fff;
  background: var(--accent);
  font-weight: 900;
  cursor: pointer;
}

.hero-copy h1,
.catalog-hero h1,
.calculator-hero h1,
.partner-hero h1,
.page-title h1,
.complete h1,
.article h1 {
  margin: 0;
  font-size: clamp(36px, 5.2vw, 68px);
  line-height: .98;
  letter-spacing: 0;
}

.hero-copy p,
.catalog-hero p,
.calculator-hero p,
.partner-hero p,
.page-title p,
.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 19px;
}

.hero-actions {
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 24px rgba(10, 143, 85, .18);
}

.button.dark {
  border-color: var(--dark);
  background: var(--dark);
  color: #fff;
}

.button.ghost {
  background: var(--soft);
}

.button.light {
  border-color: #fff;
  background: #fff;
  color: var(--dark);
}

.button.wide {
  width: 100%;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 36px;
}

.hero-proof div,
.partner-benefits div,
.promo-cards a,
.filter-promo,
.calc-mini-table div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.hero-proof div {
  padding: 14px;
}

.hero-proof strong {
  display: block;
  font-size: 26px;
  line-height: 1;
}

.hero-proof span,
.trust-strip span,
.section-head p,
.workflow-list small,
.category-card small,
.product-card p,
.blog-card span,
.cart-line span,
.summary-note,
.article-body {
  color: var(--muted);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.trust-strip span {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #31423b;
  font-size: 14px;
  font-weight: 900;
}

.hero-photo-panel {
  position: relative;
  min-height: 560px;
  border-radius: 26px;
  overflow: hidden;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.hero-photo-panel img,
.catalog-hero img,
.visual-hero img,
.showcase-photo img,
.partner-summary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 46%, rgba(0,0,0,.48));
}

.floating-quote {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  width: min(330px, calc(100% - 44px));
  padding: 18px;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 18px;
  color: #fff;
  background: rgba(18, 26, 22, .72);
  backdrop-filter: blur(14px);
}

.floating-quote span,
.form-kicker {
  color: #9be7c0;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.floating-quote strong {
  display: block;
  margin: 5px 0;
  font-size: 22px;
}

.section,
.page-title,
.catalog-layout,
.cart-layout,
.checkout-layout,
.product-detail,
.complete,
.article {
  max-width: 1360px;
  margin: 0 auto;
  padding: clamp(42px, 6vw, 76px) clamp(18px, 4vw, 56px);
}

.section-soft {
  max-width: none;
  background: var(--soft);
}

.section-soft .section-head,
.section-soft .product-grid {
  max-width: 1248px;
  margin-left: auto;
  margin-right: auto;
}

.section h2,
.summary h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.02;
}

.section-head {
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.section-head a,
.back-link,
.filter-promo a {
  color: var(--accent);
  font-weight: 900;
}

.category-grid,
.product-grid,
.blog-grid,
.blog-teasers {
  display: grid;
  gap: 18px;
}

.category-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category-card {
  position: relative;
  min-height: 250px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  border-radius: 18px;
  overflow: hidden;
  color: #fff;
  background: var(--dark);
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .82;
  transition: transform .35s ease;
}

.category-card:hover img {
  transform: scale(1.05);
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 26, 22, .05), rgba(18, 26, 22, .82));
}

.category-card span,
.category-card small {
  position: relative;
  z-index: 1;
}

.category-card span {
  font-size: 22px;
  font-weight: 900;
  line-height: 1.05;
}

.category-card small {
  margin-top: 8px;
  color: rgba(255,255,255,.78);
}

.promo-band {
  display: grid;
  grid-template-columns: minmax(0, .65fr) minmax(420px, 1fr);
  gap: 28px;
  align-items: center;
  margin: 16px clamp(18px, 4vw, 56px);
  padding: clamp(28px, 4vw, 46px);
  border-radius: 24px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(18, 26, 22, .95), rgba(18, 36, 30, .92)),
    url("../img/blue-wrap-workshop.jpg") center/cover;
}

.promo-band span {
  color: #9be7c0;
  font-weight: 900;
}

.promo-band h2 {
  max-width: 760px;
  margin: 8px 0 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1;
}

.promo-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.promo-cards a {
  min-height: 150px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 16px;
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}

.promo-cards strong {
  font-size: 22px;
}

.promo-cards span {
  color: rgba(255,255,255,.76);
  font-weight: 650;
}

.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: #c9d7d1;
  box-shadow: 0 18px 42px rgba(17, 24, 20, .10);
}

.product-media {
  position: relative;
  height: 210px;
  display: block;
  overflow: hidden;
  background: var(--soft);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.product-media img.catalog-page-image {
  padding: 10px;
  background: #fff;
  object-fit: contain;
}

.product-media img.contained {
  width: 74%;
  height: 74%;
  margin: 26px auto;
  object-fit: contain;
}

.product-card:hover .product-media img {
  transform: scale(1.04);
}

.media-shade {
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.42));
}

.product-badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #fff;
  background: rgba(18, 26, 22, .78);
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(8px);
}

.product-card-body {
  padding: 16px;
}

.product-title {
  display: block;
  min-height: 48px;
  margin-top: 8px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.22;
}

.product-meta,
.price-row {
  justify-content: space-between;
  gap: 12px;
}

.sku,
.stock {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.stock.ok {
  color: var(--accent);
}

.price-row {
  align-items: baseline;
  margin-top: 14px;
}

.price-row strong,
.detail-price strong {
  font-size: 23px;
  white-space: nowrap;
}

.price-row span,
.detail-price span {
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.wholesale-note {
  margin-top: 10px;
  padding: 9px 10px;
  border-radius: 8px;
  color: #704610;
  background: #fff4df;
  font-size: 13px;
  font-weight: 850;
}

.mini-buy {
  margin-top: 14px;
}

.mini-buy button {
  width: 100%;
  min-height: 43px;
  border: 0;
  border-radius: 999px;
  background: var(--dark);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.mini-buy button:hover {
  background: var(--accent);
}

.lambox-head h2 {
  font-size: clamp(30px, 4vw, 44px);
}

.lambox-head a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #111;
  background: #f0f1f2;
  font-size: 0;
}

.lambox-head a::after {
  content: "›";
  font-size: 28px;
  line-height: 1;
}

.lambox-categories .category-card {
  min-height: 260px;
  border-radius: 8px;
}

.integra-strips {
  display: grid;
  grid-template-columns: 1.1fr .95fr .95fr;
  gap: 16px;
  padding-top: 0;
  padding-bottom: 18px;
}

.strip-card {
  min-height: 178px;
  display: grid;
  align-content: end;
  gap: 7px;
  padding: 22px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  color: #fff;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .12);
  transition: transform .2s ease, box-shadow .2s ease;
}

.strip-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 58px rgba(0, 0, 0, .18);
}

.strip-card span {
  color: rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.strip-card strong {
  font-size: 28px;
  line-height: 1;
}

.strip-card small {
  max-width: 390px;
  color: rgba(255,255,255,.78);
  font-size: 15px;
}

.strip-red {
  background:
    linear-gradient(135deg, rgba(226, 29, 20, .95), rgba(78, 7, 4, .88)),
    url("../img/film-full-car.jpg") center/cover;
}

.strip-dark {
  background:
    linear-gradient(135deg, rgba(8, 8, 8, .96), rgba(50, 50, 56, .82)),
    url("../img/blue-wrap-workshop.jpg") center/cover;
}

.strip-silver {
  color: #101010;
  background:
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(211,216,220,.76)),
    url("../img/vinyl-rolls-wall.jpg") center/cover;
}

.strip-silver span,
.strip-silver small {
  color: rgba(0,0,0,.62);
}

.deals-section {
  padding-top: 22px;
}

.deals-grid .product-card {
  border-radius: 8px;
}

.deals-grid .product-media {
  height: 235px;
}

.lambox-promo {
  border-radius: 0;
  margin-left: 0;
  margin-right: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.88), rgba(0,0,0,.62)),
    url("../img/blue-wrap-workshop.jpg") center/cover;
}

.split-showcase,
.content-split,
.product-detail,
.checkout-layout,
.cart-layout,
.catalog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .42fr);
  gap: clamp(22px, 4vw, 46px);
}

.split-showcase {
  grid-template-columns: minmax(360px, .82fr) minmax(0, 1fr);
  align-items: center;
}

.showcase-photo {
  min-height: 520px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.showcase-copy p,
.ops-preview p {
  color: var(--muted);
  font-size: 18px;
}

.workflow-list {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.workflow-list div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 4px 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.workflow-list span {
  grid-row: span 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--accent);
  font-weight: 900;
}

.workflow-list small {
  grid-column: 2;
}

.blog-card,
.summary,
.filters,
.checkout-form,
.cart-line,
.calculator-card,
.calculator-result,
.ops-board,
.manager-card,
.manager-stats div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.blog-card {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.blog-card strong {
  font-size: 20px;
}

.blog-card.compact {
  min-height: 112px;
}

.page-title {
  padding-bottom: 28px;
}

.catalog-hero,
.visual-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .6fr);
  gap: 28px;
  align-items: stretch;
  border-bottom: 1px solid var(--line);
}

.catalog-hero img,
.visual-hero img {
  min-height: 330px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.catalog-layout {
  grid-template-columns: 280px minmax(0, 1fr);
  align-items: start;
  padding-top: 34px;
}

.filters,
.summary,
.checkout-form {
  padding: 18px;
}

.filters {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 18px;
}

.search-form,
.checkout-form,
.calculator-card,
.delivery-manager {
  display: grid;
  gap: 12px;
}

.search-form input,
.search-form select,
.checkout-form input,
.checkout-form select,
.checkout-form textarea,
.buy-form input,
.qty-form input,
.calculator-card input,
.calculator-card select,
.buy-calculator input,
.buy-calculator select,
.manager-form input,
.manager-form textarea,
.delivery-manager-grid input,
.delivery-manager-grid textarea {
  width: 100%;
  min-height: 44px;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  outline-color: var(--accent);
}

.search-form label,
.checkout-form label span,
.calculator-card label span,
.buy-calculator label span,
.manager-form label,
.delivery-manager-grid label {
  color: #34463f;
  font-weight: 900;
  font-size: 14px;
}

.category-list {
  display: grid;
  gap: 8px;
}

.category-list a {
  padding: 10px 12px;
  border-radius: 10px;
  color: #34463f;
  font-weight: 850;
}

.category-list a.active,
.category-list a:hover {
  background: var(--soft-2);
  color: var(--accent);
}

.filter-promo {
  display: grid;
  gap: 7px;
  padding: 14px;
  background: var(--dark);
  color: #fff;
}

.filter-promo span {
  color: #bbcac4;
}

.catalog-results {
  display: grid;
  gap: 16px;
}

.catalog-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--soft);
  color: var(--muted);
  font-weight: 850;
}

.catalog-toolbar a {
  color: var(--accent);
}

.product-detail {
  grid-template-columns: minmax(340px, .9fr) minmax(0, 1fr);
  align-items: center;
}

.detail-media {
  min-height: 540px;
  border-radius: 26px;
  overflow: hidden;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.detail-media img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

.detail-media img.catalog-page-image {
  padding: 18px;
  background: #fff;
  object-fit: contain;
}

.detail-media img.contained {
  width: 70%;
  height: auto;
  min-height: 0;
  margin: 120px auto;
  object-fit: contain;
}

.detail-copy h1 {
  margin: 12px 0;
  font-size: clamp(34px, 5vw, 60px);
  line-height: .96;
}

.pricing-matrix {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0;
}

.pricing-matrix div {
  display: grid;
  gap: 5px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.pricing-matrix span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.pricing-matrix strong {
  font-size: 24px;
}

.pricing-matrix .wholesale-price {
  border-color: #efc997;
  background: #fff8ed;
}

.buy-calculator {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 22px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--soft);
}

.buy-calculator label,
.checkout-form label,
.calculator-card label,
.manager-form label,
.delivery-manager-grid label {
  display: grid;
  gap: 6px;
}

.buy-calculator small,
.checkout-form small,
.calculator-card small {
  color: var(--danger);
}

.buy-calculator .button {
  grid-column: 1 / -1;
}

.product-info {
  display: grid;
  gap: 8px;
  margin: 0;
}

.product-info div,
.summary div {
  justify-content: space-between;
  gap: 16px;
}

.product-info dt {
  color: var(--muted);
}

.product-info dd {
  margin: 0;
  font-weight: 900;
}

.spec-list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.calculator-layout {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .45fr);
  gap: 28px;
  padding: clamp(36px, 6vw, 70px) clamp(18px, 4vw, 56px);
}

.calculator-card,
.calculator-result {
  gap: 12px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.calculator-card h2 {
  margin: 0 0 8px;
  font-size: 32px;
}

.calculator-result {
  align-self: start;
  display: grid;
  color: #fff;
  background: var(--dark);
}

.calculator-result > span {
  color: #9be7c0;
  font-weight: 900;
}

.calculator-result h2 {
  margin: 0;
  font-size: clamp(44px, 5vw, 64px);
}

.calculator-result p {
  color: #c7d3cf;
}

.calc-mini-table {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.calc-mini-table div {
  display: grid;
  gap: 3px;
  padding: 10px;
  border-color: rgba(255,255,255,.12);
  background: rgba(255,255,255,.08);
}

.calc-mini-table small {
  color: #9be7c0;
}

.partner-benefits {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  display: grid;
  gap: 14px;
}

.partner-benefits div {
  padding: 18px;
}

.partner-benefits strong {
  display: block;
  color: var(--accent);
  font-size: 34px;
  line-height: 1;
}

.partner-benefits span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 750;
}

.partner-section {
  padding-top: 10px;
}

.partner-form .form-section {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.partner-summary {
  overflow: hidden;
  padding: 0 0 18px;
}

.partner-summary img {
  height: 210px;
}

.partner-summary h2,
.partner-summary div,
.partner-summary p {
  margin-left: 18px;
  margin-right: 18px;
}

.cart-lines {
  display: grid;
  gap: 12px;
}

.cart-line {
  grid-template-columns: minmax(0, 1fr) 135px 120px 80px;
  gap: 14px;
  padding: 14px;
}

.cart-line > div {
  display: grid;
  gap: 3px;
}

.qty-form {
  display: flex;
  gap: 8px;
}

.qty-form input {
  width: 64px;
}

.qty-form button,
.link-button {
  border: 0;
  background: transparent;
  color: var(--accent);
  font-weight: 900;
  cursor: pointer;
}

.summary {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 12px;
  align-self: start;
}

.summary-total {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.summary-total strong {
  font-size: 25px;
}

.discount-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.discount-form input {
  min-height: 42px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.discount-form button {
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 900;
}

.checkout-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.checkout-title {
  padding-top: 38px;
  padding-bottom: 8px;
}

.checkout-title + .checkout-layout {
  padding-top: 18px;
}

.checkout-form-pro {
  grid-template-columns: 1fr;
  padding: 0;
  border: 0;
  background: transparent;
}

.form-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.form-section h2,
.manager-card h2 {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 24px;
}

.delivery-options {
  grid-column: 1 / -1;
  display: grid;
  gap: 10px;
}

.delivery-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--soft);
  cursor: pointer;
}

.delivery-option:has(input:checked) {
  border-color: var(--accent);
  background: #edf9f3;
}

.delivery-option input {
  width: 18px;
  height: 18px;
  min-height: auto;
}

.delivery-option small {
  display: block;
  color: var(--muted);
}

.summary-note {
  margin: 0;
  font-size: 14px;
}

.complete {
  min-height: 54vh;
  display: grid;
  align-content: center;
  gap: 18px;
}

.article {
  max-width: 880px;
}

.article-cover {
  width: 100%;
  height: 330px;
  object-fit: cover;
  margin: 28px 0;
  border-radius: var(--radius);
  background: var(--soft);
}

.article-body {
  font-size: 18px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 36px clamp(18px, 4vw, 56px);
  border-top: 1px solid #25352e;
  background: var(--dark);
  color: #fff;
}

.site-footer p {
  max-width: 560px;
  color: #b9c5c0;
}

.footer-links {
  gap: 14px;
  align-self: start;
  flex-wrap: wrap;
}

.manager-shell {
  max-width: 1380px;
  margin: 0 auto;
  padding: clamp(30px, 5vw, 58px) clamp(18px, 4vw, 56px);
}

.manager-head {
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 22px;
}

.manager-head h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.manager-head p {
  margin: 8px 0 0;
  color: var(--muted);
}

.manager-total {
  font-size: 30px;
}

.manager-head-actions,
.status-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.manager-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.manager-stats div,
.manager-card {
  padding: 16px;
}

.manager-stats span {
  display: block;
  color: var(--muted);
  font-weight: 900;
  font-size: 13px;
}

.manager-stats strong {
  font-size: 30px;
}

.status-tabs {
  margin: 0 0 16px;
}

.status-tabs a {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-weight: 900;
}

.status-tabs a.active {
  border-color: var(--accent);
  color: #fff;
  background: var(--accent);
}

.delivery-control-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.delivery-control-strip a {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--soft);
}

.delivery-control-strip span {
  color: var(--muted);
  font-size: 13px;
}

.order-table {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}

.order-table-head,
.order-row {
  display: grid;
  grid-template-columns: 130px minmax(170px, .7fr) minmax(220px, 1fr) 120px 300px;
  gap: 14px;
  align-items: center;
  padding: 13px 16px;
}

.order-table-head {
  color: var(--muted);
  background: var(--soft);
  font-size: 13px;
  font-weight: 900;
}

.order-row {
  border-top: 1px solid var(--line);
}

.order-row small {
  display: block;
  color: var(--muted);
}

.quick-actions {
  flex-wrap: wrap;
  gap: 7px;
}

.quick-actions button {
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid #b9d9cb;
  border-radius: 999px;
  background: #edf9f3;
  color: var(--accent);
  font-weight: 900;
  cursor: pointer;
}

.quick-actions button.danger {
  border-color: #f0c7bd;
  background: #fff1ed;
  color: var(--danger);
}

.manager-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.manager-card-wide {
  grid-column: 1 / -1;
}

.line-item {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.line-item:last-child {
  border-bottom: 0;
}

.manager-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.manager-form label:has(textarea),
.manager-form .button {
  grid-column: 1 / -1;
}

.empty-state {
  padding: 24px;
  color: var(--muted);
}

.delivery-manager-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}

.delivery-manager-title {
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  background: var(--soft);
}

.delivery-manager-title span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.status-dot {
  align-self: start;
  padding: 5px 9px;
  border-radius: 999px;
  background: #fff1ed;
  color: var(--danger);
  font-weight: 900;
}

.status-dot.on {
  background: #edf9f3;
  color: var(--accent);
}

.delivery-manager-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 16px;
}

.delivery-manager-grid label:nth-child(2) {
  grid-column: span 2;
}

.delivery-manager-grid .check-label {
  align-content: end;
}

.delivery-manager-grid .check-label input {
  width: 22px;
  min-height: 22px;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .main-nav {
    flex-wrap: wrap;
  }

  .home-hero,
  .catalog-hero,
  .visual-hero,
  .calculator-layout,
  .split-showcase,
  .content-split,
  .product-detail,
  .checkout-layout,
  .cart-layout,
  .catalog-layout,
  .manager-detail-grid {
    grid-template-columns: 1fr;
  }

  .hero-photo-panel,
  .showcase-photo,
  .detail-media,
  .detail-media img {
    min-height: 420px;
  }

  .filters,
  .summary {
    position: static;
  }

  .product-grid,
  .category-grid,
  .partner-benefits,
  .integra-strips {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lambox-hero,
  .lambox-hero > img {
    min-height: 720px;
    height: 720px;
  }

  .quick-calc-panel {
    left: clamp(26px, 4.5vw, 66px);
    right: auto;
    bottom: 36px;
  }

  .lambox-hero .hero-copy {
    bottom: 330px;
  }

  .promo-band {
    grid-template-columns: 1fr;
  }

  .delivery-control-strip,
  .delivery-manager-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .order-table {
    overflow-x: auto;
  }

  .order-table-head,
  .order-row {
    min-width: 960px;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding-left: 20px;
    padding-right: 20px;
    overflow: hidden;
  }

  .header-search button {
    display: none;
  }

  .header-search input {
    padding-left: 12px;
    padding-right: 10px;
    font-size: 14px;
  }

  .home-hero,
  .catalog-hero,
  .visual-hero,
  .section,
  .catalog-layout,
  .checkout-layout,
  .cart-layout,
  .product-detail {
    width: 100%;
    max-width: 100vw;
    padding-left: 20px;
    padding-right: 24px;
  }

  .hero-copy p,
  .catalog-hero p,
  .calculator-hero p,
  .partner-hero p,
  .page-title p,
  .lead {
    font-size: 17px;
  }

  .topline,
  .site-footer,
  .main-nav,
  .hero-actions,
  .buy-form {
    align-items: stretch;
    flex-direction: column;
  }

  .topline {
    gap: 4px;
    text-align: center;
  }

  .topline nav,
  .top-contacts {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 14px;
  }

  .topline nav a:nth-child(n+4),
  .top-contacts a {
    display: none;
  }

  .lambox-brand {
    font-size: 26px;
  }

  .integra-brand {
    width: 188px;
    height: 50px;
  }

  .catalog-button {
    width: 100%;
  }

  .icon-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .icon-nav a {
    min-width: 0;
    padding: 8px 6px;
    border: 1px solid var(--line);
    border-radius: 8px;
    font-size: 12px;
  }

  .home-hero {
    min-height: auto;
  }

  .lambox-hero,
  .lambox-hero > img {
    min-height: 740px;
    height: 740px;
  }

  .lambox-hero .hero-copy {
    left: 20px;
    right: 20px;
    bottom: 330px;
  }

  .lambox-hero .hero-copy h1 {
    font-size: 37px;
  }

  .lambox-hero .hero-copy p {
    font-size: 17px;
    overflow-wrap: anywhere;
  }

  .quick-calc-panel {
    left: 20px;
    right: 20px;
    bottom: 48px;
    width: auto;
  }

  .hero-arrow {
    display: none;
  }

  .hero-copy h1,
  .catalog-hero h1,
  .calculator-hero h1,
  .partner-hero h1,
  .page-title h1,
  .complete h1,
  .article h1 {
    font-size: 32px;
    line-height: 1.05;
    overflow-wrap: anywhere;
  }

  .hero-proof,
  .promo-cards,
  .product-grid,
  .category-grid,
  .partner-benefits,
  .integra-strips,
  .checkout-form,
  .form-section,
  .partner-form .form-section,
  .manager-form,
  .pricing-matrix,
  .buy-calculator,
  .delivery-control-strip,
  .delivery-manager-grid,
  .manager-stats,
  .calc-mini-table {
    grid-template-columns: 1fr;
  }

  .hero-photo-panel,
  .showcase-photo,
  .detail-media,
  .detail-media img,
  .catalog-hero img,
  .visual-hero img {
    min-height: 300px;
  }

  .promo-band {
    margin-left: 12px;
    margin-right: 12px;
    border-radius: 18px;
  }

  .cart-line {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .discount-form {
    grid-template-columns: 1fr;
  }
}

/* 2026-06 homepage polish for the consumables catalog */
body {
  font-size: 15px;
}

.topline {
  padding-top: 7px;
  padding-bottom: 7px;
  font-size: 13px;
}

.site-header {
  grid-template-columns: auto 172px minmax(280px, 1fr) auto;
  gap: 18px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.catalog-button,
.header-search {
  height: 48px;
}

.catalog-button {
  font-size: 15px;
  line-height: 1.05;
  white-space: nowrap;
  padding-left: 48px;
  padding-right: 16px;
  justify-content: flex-start;
}

.catalog-button span {
  left: 16px;
  width: 18px;
  height: 2.5px;
}

.header-search input {
  font-size: 15px;
}

.icon-nav {
  gap: 18px;
}

.icon-nav a {
  min-width: 58px;
  gap: 4px;
  font-size: 11px;
  font-weight: 850;
}

.nav-icon,
.button-icon,
.benefit-icon {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-icon {
  width: 21px;
  height: 21px;
}

.icon-nav strong {
  display: none;
}

.icon-nav em {
  top: -5px;
  right: 6px;
  min-width: 18px;
  height: 18px;
  font-size: 10px;
}

.button {
  min-height: 42px;
  gap: 8px;
  padding: 0 16px;
  font-size: 14px;
  letter-spacing: 0;
}

.button-icon {
  width: 18px;
  height: 18px;
}

.tool-hero {
  max-width: 1440px;
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(460px, .9fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  padding: clamp(42px, 6vw, 78px) clamp(20px, 4vw, 64px) clamp(36px, 5vw, 64px);
  background:
    linear-gradient(180deg, #fff 0%, #fff 72%, #f4f7f6 100%);
}

.tool-hero .hero-copy {
  position: static;
  max-width: 650px;
  color: var(--ink);
}

.tool-hero .hero-copy h1 {
  max-width: 600px;
  margin: 0;
  font-size: clamp(38px, 5vw, 64px);
  line-height: .98;
  overflow-wrap: anywhere;
}

.tool-hero .hero-copy p {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
}

.tool-hero .button.outline-light {
  border-color: #cfd9d5;
  color: var(--ink);
  background: #fff;
  backdrop-filter: none;
}

.tool-hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.tool-hero-proof div {
  min-height: 76px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.tool-hero-proof strong {
  display: block;
  color: var(--accent);
  font-size: 28px;
  line-height: 1;
}

.tool-hero-proof span {
  display: block;
  margin-top: 6px;
  color: #3d4d47;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.hero-tool-board {
  position: relative;
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 178px;
  grid-template-rows: 184px 152px 144px;
  gap: 14px;
}

.tool-photo-main,
.tool-photo-card,
.tool-hero .quick-calc-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(17, 24, 20, .10);
  overflow: hidden;
}

.tool-photo-main {
  grid-row: 1 / 3;
}

.tool-photo-main img,
.tool-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}

.tool-photo-main img {
  padding: 16px;
}

.tool-photo-card {
  position: relative;
}

.tool-photo-card img {
  padding: 12px;
}

.tool-photo-card span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 5px 8px;
  border-radius: 999px;
  color: #fff;
  background: rgba(18, 26, 22, .78);
  font-size: 12px;
  font-weight: 900;
}

.card-a {
  grid-column: 2;
  grid-row: 1;
}

.card-b {
  grid-column: 2;
  grid-row: 2;
}

.tool-hero .quick-calc-panel {
  position: static;
  grid-column: 1 / 3;
  grid-row: 3;
  width: 100%;
  min-width: 0;
  align-self: stretch;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px 128px;
  align-items: center;
  gap: 10px 12px;
  padding: 16px;
  color: var(--ink);
  backdrop-filter: none;
}

.tool-hero .quick-calc-panel h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.05;
}

.tool-hero .quick-calc-panel p,
.tool-hero .quick-calc-panel small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.25;
}

.tool-hero .quick-calc-panel p {
  margin-top: 4px;
}

.tool-hero .quick-calc-panel small {
  grid-column: 1 / -1;
}

.tool-hero .quick-calc-panel input {
  min-height: 42px;
  color: var(--ink);
  border-color: var(--line);
  background: var(--soft);
}

.tool-hero .quick-calc-panel button {
  min-height: 42px;
  border-radius: 8px;
  font-size: 14px;
}

.home-benefits {
  max-width: 1360px;
  margin: 0 auto;
  padding: 18px clamp(20px, 4vw, 64px) 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.home-benefits div {
  min-height: 92px;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 4px 12px;
  align-content: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.benefit-icon {
  grid-row: span 2;
  width: 30px;
  height: 30px;
  color: var(--accent);
}

.home-benefits strong {
  font-size: 15px;
  line-height: 1.1;
}

.home-benefits span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.25;
}

.lambox-head h2,
.section h2,
.summary h2 {
  font-size: clamp(28px, 3.2vw, 40px);
}

.section-head p {
  margin: 6px 0 0;
  font-size: 15px;
}

.tool-category-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.tool-category-card {
  min-height: 148px;
  display: grid;
  grid-template-rows: 92px auto;
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.tool-category-card:hover {
  transform: translateY(-2px);
  border-color: #c9d7d1;
  box-shadow: 0 14px 34px rgba(17, 24, 20, .08);
}

.tool-category-card img {
  width: 100%;
  height: 92px;
  object-fit: contain;
  border-radius: 6px;
  background: #fff;
}

.tool-category-card span {
  min-height: 34px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.15;
}

.strip-card {
  min-height: 154px;
  border-radius: 8px;
}

.strip-card strong {
  font-size: 24px;
}

.strip-card small {
  font-size: 14px;
}

.product-title {
  font-size: 17px;
}

.product-card p {
  font-size: 14px;
}

.price-row strong,
.detail-price strong {
  font-size: 21px;
}

.promo-band h2 {
  font-size: clamp(28px, 3.2vw, 44px);
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .tool-hero {
    grid-template-columns: 1fr;
  }

  .hero-tool-board {
    min-height: 470px;
  }

  .home-benefits,
  .tool-category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .topline {
    gap: 4px;
    padding: 7px 14px;
    font-size: 12px;
  }

  .site-header {
    padding: 14px 20px 16px;
    gap: 12px;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
  }

  .integra-brand {
    width: 178px;
    height: 48px;
  }

  .catalog-button,
  .header-search {
    height: 48px;
  }

  .icon-nav a {
    min-height: 58px;
    padding: 8px 6px;
    font-size: 12px;
  }

  .tool-hero {
    padding: 34px 20px 28px;
    overflow: hidden;
  }

  .tool-hero .hero-copy {
    max-width: 100%;
    width: 100%;
  }

  .tool-hero .hero-copy h1 {
    max-width: 100%;
    font-size: 30px;
    line-height: 1.02;
  }

  .tool-hero .hero-copy p {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 20px;
  }

  .hero-actions .button {
    width: 100%;
    min-width: 0;
    justify-content: center;
  }

  .tool-hero-proof,
  .home-benefits,
  .tool-category-grid,
  .integra-strips {
    grid-template-columns: 1fr;
  }

  .tool-hero-proof {
    width: 100%;
  }

  .hero-tool-board {
    min-height: auto;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 250px 132px auto;
  }

  .tool-photo-main {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .card-a {
    grid-column: 1;
    grid-row: 2;
  }

  .card-b {
    grid-column: 2;
    grid-row: 2;
  }

  .tool-hero .quick-calc-panel {
    grid-column: 1 / 3;
    grid-row: 3;
    grid-template-columns: 1fr;
  }

  .home-benefits {
    padding-top: 12px;
  }

  .tool-category-card {
    grid-template-columns: 96px 1fr;
    grid-template-rows: auto;
    align-items: center;
    min-height: 94px;
  }

  .tool-category-card img {
    height: 76px;
  }

  .section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .lambox-head h2,
  .section h2 {
    font-size: 30px;
  }
}

/* 2026-06 dark premium theme */
:root {
  --bg: #070b0d;
  --ink: #f5f7f6;
  --muted: #a7b3af;
  --soft: #101719;
  --soft-2: #172123;
  --line: rgba(225, 235, 232, .14);
  --dark: #050708;
  --dark-2: #121b1d;
  --shadow: 0 24px 70px rgba(0, 0, 0, .42);
}

body {
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 0%, rgba(226, 29, 20, .14), transparent 34%),
    linear-gradient(180deg, #070b0d 0%, #0b1113 42%, #070b0d 100%);
}

.topline {
  color: #e9eeee;
  background: #050708;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.top-contacts span {
  color: #53e29c;
}

.site-header {
  border-bottom-color: rgba(255, 255, 255, .10);
  background: rgba(8, 12, 14, .94);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .22);
}

.integra-brand {
  background: transparent;
}

.header-search {
  border-color: rgba(255, 255, 255, .16);
  background: #0e1517;
}

.header-search input,
.header-search select {
  color: #f5f7f6;
  background: transparent;
}

.header-search input::placeholder,
input::placeholder,
textarea::placeholder {
  color: #82908b;
}

.icon-nav a {
  color: #f5f7f6;
}

.message {
  border-color: rgba(83, 226, 156, .28);
  color: #c9f7df;
  background: rgba(23, 74, 49, .28);
}

.button {
  border-color: rgba(255, 255, 255, .16);
  color: #f5f7f6;
  background: #11191b;
}

.button.primary,
.catalog-button,
.header-search button,
.quick-calc-panel button,
.film-quick-calc button {
  color: #fff;
  background: linear-gradient(180deg, #f22920, #d71910);
  box-shadow: 0 15px 32px rgba(226, 29, 20, .22);
}

.button.outline-light,
.film-hero .button.outline-light,
.tool-hero .button.outline-light {
  border-color: rgba(255, 255, 255, .18);
  color: #f5f7f6;
  background: rgba(255, 255, 255, .06);
}

.button.ghost,
.button.dark,
.mini-buy button {
  color: #f5f7f6;
  background: #11191b;
}

.film-hero,
.tool-hero {
  background:
    radial-gradient(circle at 76% 10%, rgba(226, 29, 20, .18), transparent 32%),
    linear-gradient(180deg, #0b1113 0%, #0c1214 70%, #070b0d 100%);
}

.film-hero .hero-copy,
.tool-hero .hero-copy,
.film-hero .hero-copy h1,
.tool-hero .hero-copy h1,
.hero-copy h1,
.catalog-hero h1,
.calculator-hero h1,
.partner-hero h1,
.page-title h1,
.complete h1,
.article h1,
.section h2,
.summary h2 {
  color: #f8fbfa;
}

.film-hero .hero-copy p,
.tool-hero .hero-copy p,
.hero-copy p,
.catalog-hero p,
.calculator-hero p,
.partner-hero p,
.page-title p,
.lead,
.section-head p,
.product-card p,
.blog-card span,
.cart-line span,
.summary-note,
.article-body,
.showcase-copy p,
.ops-preview p {
  color: var(--muted);
}

.film-hero-visual,
.tool-photo-main,
.tool-photo-card,
.tool-hero .quick-calc-panel,
.film-quick-calc,
.home-benefits div,
.film-category-card,
.tool-category-card,
.product-card,
.blog-card,
.summary,
.filters,
.checkout-form,
.cart-line,
.calculator-card,
.calculator-result,
.ops-board,
.manager-card,
.manager-stats div,
.delivery-manager-card,
.workflow-list div,
.hero-proof div,
.partner-benefits div,
.promo-cards a,
.filter-promo,
.calc-mini-table div,
.pricing-matrix div,
.product-info div {
  border-color: rgba(255, 255, 255, .12);
  color: #f5f7f6;
  background: linear-gradient(180deg, rgba(20, 30, 33, .98), rgba(13, 20, 22, .98));
  box-shadow: 0 18px 44px rgba(0, 0, 0, .28);
}

.film-hero-visual,
.hero-tool-board > *,
.film-category-card,
.product-card,
.filters,
.summary,
.checkout-form,
.cart-line,
.product-detail .detail-media,
.buy-calculator {
  box-shadow: 0 24px 62px rgba(0, 0, 0, .38);
}

.film-hero-visual > img,
.tool-photo-main img,
.tool-photo-card img,
.product-media img.catalog-page-image,
.catalog-page-image,
.film-category-card img,
.tool-category-card img {
  background: #101719;
}

.film-quick-calc,
.tool-hero .quick-calc-panel {
  background: rgba(14, 21, 23, .94);
  backdrop-filter: blur(14px);
}

.film-quick-calc input,
.tool-hero .quick-calc-panel input,
.quick-calc-panel input,
.quick-calc-panel select,
.search-form input,
.search-form select,
.buy-calculator input,
.buy-calculator select,
.manager-form input,
.manager-form textarea,
.delivery-manager-grid input,
.delivery-manager-grid textarea,
.checkout-form input,
.checkout-form select,
.checkout-form textarea,
.discount-row input {
  border-color: rgba(255, 255, 255, .14);
  color: #f5f7f6;
  background: #0c1214;
}

.tool-hero-proof div,
.film-proof div {
  background: linear-gradient(180deg, rgba(22, 32, 35, .96), rgba(13, 20, 22, .96));
}

.tool-hero-proof span,
.film-category-card small,
.home-benefits span,
.tool-category-card small,
.price-row span,
.detail-price span,
.sku,
.stock,
.buy-calculator small,
.manager-head p,
.manager-stats span,
.product-info dt {
  color: var(--muted);
}

.film-category-card span,
.tool-category-card span,
.home-benefits strong,
.product-title,
.blog-card strong,
.manager-stats strong,
.price-row strong,
.detail-price strong,
.pricing-matrix strong,
.product-info dd {
  color: #f8fbfa;
}

.film-category-card:hover,
.tool-category-card:hover,
.product-card:hover {
  border-color: rgba(226, 29, 20, .42);
  box-shadow: 0 26px 64px rgba(0, 0, 0, .46);
}

.product-media {
  background: #0e1517;
}

.product-card-body {
  background: transparent;
}

.wholesale-note {
  color: #ffd9a5;
  background: rgba(244, 176, 78, .14);
  border: 1px solid rgba(244, 176, 78, .18);
}

.lambox-head a {
  color: #f8fbfa;
  background: #151f22;
}

.section-soft,
.tool-rail {
  background: #0b1113;
}

.catalog-hero,
.visual-hero {
  color: #f8fbfa;
  background:
    linear-gradient(110deg, rgba(9, 14, 16, .96), rgba(9, 14, 16, .74)),
    url("../img/film-market-hero.png") center/cover;
}

.catalog-hero img,
.visual-hero img {
  border: 1px solid rgba(255, 255, 255, .12);
  background: #101719;
}

.category-list a {
  border-color: rgba(255, 255, 255, .10);
  color: #dce5e2;
}

.category-list a.active,
.category-list a:hover {
  color: #fff;
  background: rgba(226, 29, 20, .18);
  border-color: rgba(226, 29, 20, .42);
}

.catalog-toolbar,
.cart-total,
.summary-total,
.manager-total,
.delivery-manager-title {
  color: #f8fbfa;
}

.promo-band,
.film-promo,
.lambox-promo {
  background:
    linear-gradient(110deg, rgba(5, 7, 8, .96), rgba(35, 10, 8, .78)),
    url("../img/film-market-hero.png") center/cover;
}

.strip-silver {
  color: #f8fbfa;
  background:
    linear-gradient(135deg, rgba(20, 30, 33, .92), rgba(80, 85, 88, .52)),
    url("../img/vinyl-rolls-wall.jpg") center/cover;
}

.strip-silver span,
.strip-silver small {
  color: rgba(255, 255, 255, .72);
}

.product-detail,
.checkout-layout,
.cart-layout,
.catalog-layout,
.manager-shell {
  color: #f5f7f6;
}

.detail-media,
.hero-photo-panel,
.showcase-photo {
  background: #101719;
  box-shadow: var(--shadow);
}

.pricing-matrix div.wholesale-price {
  border-color: rgba(226, 29, 20, .32);
  background: rgba(226, 29, 20, .12);
}

.buy-calculator,
.manager-form,
.delivery-manager-grid {
  border-color: rgba(255, 255, 255, .12);
  background: #101719;
}

.buy-calculator label,
.checkout-form label,
.manager-form label,
.delivery-manager-grid label {
  color: #edf3f1;
}

.site-footer {
  color: #dbe4e1;
  background: #050708;
  border-top: 1px solid rgba(255, 255, 255, .10);
}

.footer-links a {
  color: #f8fbfa;
}

.complete,
.article,
.page-title {
  color: #f5f7f6;
}

table,
.manager-table {
  color: #f5f7f6;
}

tr,
td,
th {
  border-color: rgba(255, 255, 255, .10);
}

@media (max-width: 760px) {
  .site-header {
    background: rgba(8, 12, 14, .98);
  }

  .icon-nav a {
    border-color: rgba(255, 255, 255, .12);
    background: #101719;
  }
}

/* 2026-06 film marketplace expansion */
.film-hero {
  max-width: 1440px;
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(520px, .95fr);
  gap: clamp(28px, 4vw, 68px);
  align-items: center;
  padding: clamp(48px, 6vw, 82px) clamp(20px, 4vw, 64px) clamp(40px, 5vw, 70px);
  background:
    radial-gradient(circle at 75% 18%, rgba(237, 28, 20, .08), transparent 34%),
    linear-gradient(180deg, #fff 0%, #fff 74%, #f4f7f6 100%);
}

.film-hero .hero-copy {
  position: static;
  max-width: 690px;
  color: var(--ink);
}

.film-hero .hero-copy h1 {
  max-width: 680px;
  margin: 0;
  color: #0d1512;
  font-size: clamp(38px, 5vw, 66px);
  line-height: .98;
  letter-spacing: 0;
}

.film-hero .hero-copy p {
  max-width: 610px;
  margin: 18px 0 0;
  color: #52615c;
  font-size: 18px;
  line-height: 1.45;
}

.film-hero .button.outline-light {
  border-color: #ccd8d3;
  color: #0d1512;
  background: #fff;
}

.film-proof div {
  background: rgba(255, 255, 255, .92);
}

.film-hero-visual {
  position: relative;
  min-height: 530px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(17, 24, 20, .12);
  overflow: hidden;
}

.film-hero-visual > img {
  width: 100%;
  height: 100%;
  min-height: 530px;
  object-fit: cover;
  display: block;
}

.film-float {
  position: absolute;
  display: grid;
  gap: 2px;
  min-width: 128px;
  max-width: 150px;
  padding: 12px 14px;
  border-radius: 8px;
  color: #fff;
  box-shadow: 0 16px 36px rgba(17, 24, 20, .18);
}

.film-float strong {
  font-size: 18px;
  line-height: 1;
}

.film-float span {
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.film-float-red {
  top: 22px;
  left: 22px;
  background: var(--accent);
}

.film-float-dark {
  right: 22px;
  top: 112px;
  background: #101815;
}

.film-quick-calc {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  width: auto;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 110px 132px;
  align-items: center;
  gap: 10px 12px;
  padding: 16px;
  border: 1px solid rgba(207, 217, 213, .95);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 16px 40px rgba(17, 24, 20, .12);
  backdrop-filter: blur(12px);
}

.film-quick-calc h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.05;
}

.film-quick-calc p,
.film-quick-calc small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.25;
}

.film-quick-calc p {
  margin-top: 4px;
}

.film-quick-calc small {
  grid-column: 1 / -1;
}

.film-quick-calc input {
  min-height: 42px;
  color: var(--ink);
  border-color: var(--line);
  background: #f6f8f7;
}

.film-quick-calc button {
  min-height: 42px;
  border-radius: 8px;
  font-size: 14px;
}

.film-benefits {
  padding-top: 20px;
}

.film-category-section {
  padding-top: 56px;
}

.film-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.film-category-card {
  min-height: 258px;
  display: grid;
  grid-template-rows: 138px auto 1fr;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.film-category-card:hover {
  transform: translateY(-2px);
  border-color: #c4d3ce;
  box-shadow: 0 18px 42px rgba(17, 24, 20, .10);
}

.film-category-card img {
  width: 100%;
  height: 138px;
  object-fit: cover;
  border-radius: 6px;
  background: #f4f7f6;
}

.film-category-card span {
  display: block;
  font-size: 18px;
  font-weight: 950;
  line-height: 1.08;
}

.film-category-card small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.3;
}

.film-strips {
  padding-top: 24px;
}

.tool-rail {
  background: #f7faf9;
}

.film-promo {
  background:
    linear-gradient(120deg, rgba(13, 21, 18, .94), rgba(25, 36, 32, .94)),
    url("../img/film-market-hero.png") center/cover;
}

.catalog-page-image {
  background: #fff;
}

@media (max-width: 1120px) {
  .film-hero {
    grid-template-columns: 1fr;
  }

  .film-hero-visual {
    min-height: 500px;
  }

  .film-hero-visual > img {
    min-height: 500px;
  }

  .film-category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .film-hero {
    padding: 34px 20px 28px;
    overflow: hidden;
  }

  .film-hero .hero-copy,
  .film-hero .hero-actions,
  .film-proof {
    width: 100%;
  }

  .film-hero .hero-copy h1 {
    max-width: 100%;
    font-size: 30px;
    line-height: 1.04;
  }

  .film-hero .hero-copy p {
    font-size: 16px;
  }

  .film-hero-visual {
    min-height: 430px;
  }

  .film-hero-visual > img {
    min-height: 430px;
  }

  .film-float {
    min-width: 96px;
    max-width: 116px;
    padding: 10px 12px;
  }

  .film-float strong {
    font-size: 16px;
  }

  .film-float span {
    font-size: 11px;
  }

  .film-float-dark {
    top: 78px;
    right: 14px;
  }

  .film-float-red {
    top: 14px;
    left: 14px;
  }

  .film-quick-calc {
    left: 14px;
    right: 14px;
    bottom: 14px;
    grid-template-columns: 1fr;
  }

  .film-category-grid {
    grid-template-columns: 1fr;
  }

  .film-category-card {
    min-height: 128px;
    grid-template-columns: 112px 1fr;
    grid-template-rows: auto auto;
    align-items: center;
  }

  .film-category-card img {
    grid-row: 1 / 3;
    height: 104px;
  }

  .film-category-card span {
    font-size: 16px;
  }
}

/* final dark overrides after film marketplace layer */
.film-hero {
  background:
    radial-gradient(circle at 75% 8%, rgba(226, 29, 20, .18), transparent 30%),
    linear-gradient(180deg, #0b1113 0%, #0b1113 72%, #070b0d 100%);
}

.film-hero .hero-copy h1,
.film-hero .hero-copy,
.film-category-card,
.film-category-card span,
.film-quick-calc,
.film-quick-calc h2 {
  color: #f8fbfa;
}

.film-hero .hero-copy p,
.film-category-card small,
.film-quick-calc p,
.film-quick-calc small {
  color: #a7b3af;
}

.film-hero-visual,
.film-category-card,
.film-quick-calc,
.home-benefits div,
.tool-category-card,
.tool-hero-proof div {
  border-color: rgba(255, 255, 255, .12);
  background: linear-gradient(180deg, rgba(20, 30, 33, .98), rgba(13, 20, 22, .98));
  box-shadow: 0 24px 62px rgba(0, 0, 0, .38);
}

.film-hero-visual > img {
  filter: brightness(.78) contrast(1.08) saturate(1.04);
}

.film-quick-calc {
  background: rgba(12, 18, 20, .92);
  backdrop-filter: blur(14px);
}

.film-quick-calc input {
  border-color: rgba(255, 255, 255, .14);
  color: #f8fbfa;
  background: #0c1214;
}

.film-category-card img,
.catalog-page-image {
  background: #101719;
}

.tool-rail,
.section-soft {
  background: #0b1113;
}

.film-hero .button.outline-light {
  border-color: rgba(255, 255, 255, .2);
  color: #f8fbfa;
  background: rgba(255, 255, 255, .06);
}

/* final readability + compact typography pass */
body {
  font-size: 12px;
}

.topline {
  font-size: 10.5px;
}

.brand {
  font-size: 16px;
}

.catalog-button,
.header-search input,
.header-search button,
.button,
.mini-buy button,
.quick-calc-panel button,
.film-quick-calc button,
.discount-form button,
.qty-form button,
.link-button {
  font-size: 12px;
}

.icon-nav a {
  font-size: 9px;
}

.nav-icon {
  width: 18px;
  height: 18px;
}

.hero-copy h1,
.film-hero .hero-copy h1,
.tool-hero .hero-copy h1,
.catalog-hero h1,
.calculator-hero h1,
.partner-hero h1,
.page-title h1,
.complete h1,
.article h1 {
  font-size: clamp(27px, 3.9vw, 51px);
  line-height: 1.02;
}

.hero-copy p,
.film-hero .hero-copy p,
.tool-hero .hero-copy p,
.catalog-hero p,
.calculator-hero p,
.partner-hero p,
.page-title p,
.lead,
.showcase-copy p,
.ops-preview p {
  font-size: 14px;
  line-height: 1.45;
}

.section h2,
.summary h2,
.lambox-head h2,
.calculator-card h2,
.form-section h2,
.manager-card h2 {
  font-size: clamp(21px, 3vw, 34px);
}

.product-title,
.film-category-card span,
.tool-category-card span,
.home-benefits strong,
.blog-card strong {
  font-size: 13.5px;
}

.price-row strong,
.detail-price strong,
.pricing-matrix strong {
  font-size: 18px;
}

.product-card p,
.film-category-card small,
.tool-category-card small,
.home-benefits span,
.section-head p,
.price-row span,
.sku,
.stock,
.wholesale-note,
.summary-note,
.article-body,
.spec-list {
  font-size: 10.5px;
}

.tool-hero-proof strong,
.film-proof strong,
.partner-benefits strong,
.manager-stats strong {
  font-size: 21px;
}

.tool-hero-proof span,
.film-proof span,
.partner-benefits span,
.manager-stats span {
  font-size: 10.5px;
}

.promo-band h2 {
  font-size: clamp(22px, 3vw, 36px);
}

.strip-card strong {
  font-size: 18px;
}

.strip-card small,
.promo-cards span {
  font-size: 11px;
}

.calculator-result h2 {
  font-size: clamp(32px, 3.75vw, 48px);
}

.detail-copy h1 {
  font-size: clamp(25px, 3.75vw, 45px);
}

main input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
main select,
main textarea,
.discount-form input,
.qty-form input,
.calculator-card input,
.calculator-card select,
.checkout-form input,
.checkout-form select,
.checkout-form textarea,
.partner-form input,
.partner-form textarea,
.search-form input,
.search-form select,
.buy-calculator input,
.buy-calculator select,
.manager-form input,
.manager-form textarea,
.delivery-manager-grid input,
.delivery-manager-grid textarea {
  border-color: rgba(255, 255, 255, .16);
  color: #f8fbfa;
  background: #0b1113;
  font-size: 12px;
}

main option {
  color: #f8fbfa;
  background: #0b1113;
}

.search-form label,
.checkout-form label span,
.calculator-card label span,
.buy-calculator label span,
.manager-form label,
.delivery-manager-grid label,
.partner-form label span {
  color: #dce7e3;
  font-size: 11px;
}

.form-section,
.checkout-form,
.partner-form,
.calculator-card,
.calculator-result,
.summary,
.filters,
.cart-line,
.manager-card,
.delivery-manager-card {
  border-color: rgba(255, 255, 255, .12);
  color: #f8fbfa;
  background: linear-gradient(180deg, rgba(20, 30, 33, .98), rgba(13, 20, 22, .98));
}

.partner-summary,
.partner-summary div {
  border-color: rgba(255, 255, 255, .12);
  color: #f8fbfa;
  background: #101719;
}

.partner-summary h2,
.partner-summary p,
.partner-summary span,
.partner-summary strong {
  color: #f8fbfa;
}

.partner-summary .summary-note,
.partner-summary span {
  color: #a7b3af;
}

.blog-card img,
.article-cover {
  border-radius: 8px;
  background: #101719;
}

.blog-card img[src$=".svg"],
.article-cover[src$=".svg"] {
  filter: invert(1) grayscale(1) brightness(.42);
  background: #101719;
}

.blog-card {
  color: #f8fbfa;
}

.cart-lines > p,
.cart-lines a {
  color: #f8fbfa;
}

@media (max-width: 760px) {
  .hero-copy h1,
  .film-hero .hero-copy h1,
  .tool-hero .hero-copy h1,
  .catalog-hero h1,
  .calculator-hero h1,
  .partner-hero h1,
  .page-title h1 {
    font-size: 23px;
  }

  .hero-copy p,
  .film-hero .hero-copy p,
  .tool-hero .hero-copy p,
  .catalog-hero p,
  .calculator-hero p,
  .partner-hero p,
  .page-title p {
    font-size: 12px;
  }

  .section h2,
  .lambox-head h2 {
    font-size: 23px;
  }
}

/* final dark audit pass */
body {
  font-size: 10.5px;
}

.topline,
.footer-links,
.site-footer,
.summary,
.filters,
.checkout-form,
.cart-line,
.calculator-card,
.calculator-result,
.partner-form,
.manager-card,
.delivery-manager-card,
.order-row,
.line-item,
.delivery-option {
  font-size: 10.5px;
}

.brand {
  font-size: 14px;
}

.catalog-button,
.header-search input,
.header-search button,
.button,
.button.light,
.mini-buy button,
.quick-calc-panel button,
.film-quick-calc button,
.discount-form button,
.qty-form button,
.link-button,
.manager-actions button,
.order-actions button,
.delivery-manager button {
  font-size: 10.5px;
}

.hero-copy h1,
.film-hero .hero-copy h1,
.tool-hero .hero-copy h1,
.catalog-hero h1,
.calculator-hero h1,
.partner-hero h1,
.page-title h1,
.complete h1,
.article h1 {
  font-size: clamp(24px, 3.1vw, 44px);
}

.hero-copy p,
.film-hero .hero-copy p,
.tool-hero .hero-copy p,
.catalog-hero p,
.calculator-hero p,
.partner-hero p,
.page-title p,
.lead,
.showcase-copy p,
.ops-preview p {
  font-size: 12px;
}

.section h2,
.summary h2,
.lambox-head h2,
.calculator-card h2,
.form-section h2,
.manager-card h2 {
  font-size: clamp(18px, 2.35vw, 28px);
}

.product-title,
.film-category-card span,
.tool-category-card span,
.home-benefits strong,
.blog-card strong {
  font-size: 12px;
}

.price-row strong,
.detail-price strong,
.pricing-matrix strong,
.strip-card strong {
  font-size: 15px;
}

.calculator-result h2 {
  font-size: clamp(27px, 3vw, 39px);
}

.detail-copy h1 {
  font-size: clamp(23px, 3vw, 38px);
}

.button.light,
.discount-form button,
.qty-form button,
.link-button,
.manager-actions button,
.order-actions button,
.delivery-manager button,
.checkout-form button:not(.button),
.cart-line button:not(.button),
.manager-card button:not(.button) {
  border: 1px solid rgba(255, 255, 255, .14);
  color: #f8fbfa;
  background: #121b1d;
}

.button.light:hover,
.discount-form button:hover,
.qty-form button:hover,
.link-button:hover,
.manager-actions button:hover,
.order-actions button:hover,
.delivery-manager button:hover,
.checkout-form button:not(.button):hover,
.cart-line button:not(.button):hover,
.manager-card button:not(.button):hover {
  border-color: rgba(226, 29, 20, .45);
  color: #fff;
  background: #e21d14;
}

.checkout-form .form-section,
.partner-form .form-section,
.delivery-option,
.order-row,
.line-item,
.product-info div,
.pricing-matrix div,
.calc-mini-table div,
.promo-cards a {
  border-color: rgba(255, 255, 255, .12);
  color: #f8fbfa;
  background: linear-gradient(180deg, rgba(20, 30, 33, .98), rgba(13, 20, 22, .98));
}

.checkout-form .form-section p,
.partner-form .form-section p,
.delivery-option span,
.delivery-option small,
.order-row span,
.line-item span,
.product-info dt,
.promo-cards span {
  color: #a7b3af;
}

.delivery-option:has(input:checked) {
  border-color: rgba(226, 29, 20, .72);
  color: #f8fbfa;
  background: linear-gradient(180deg, rgba(70, 19, 16, .98), rgba(20, 30, 33, .98));
  box-shadow: 0 16px 42px rgba(226, 29, 20, .16);
}

.delivery-option:has(input:checked) span,
.delivery-option:has(input:checked) small,
.delivery-option:has(input:checked) b {
  color: #f8fbfa;
}

.checkout-form small,
.calculator-card small,
.manager-form small,
.delivery-manager-grid small,
.form-section small {
  color: #ffb5ac;
}

main input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
main select,
main textarea,
.discount-form input,
.qty-form input,
.calculator-card input,
.calculator-card select,
.checkout-form input,
.checkout-form select,
.checkout-form textarea,
.partner-form input,
.partner-form textarea,
.search-form input,
.search-form select,
.buy-calculator input,
.buy-calculator select,
.manager-form input,
.manager-form textarea,
.delivery-manager-grid input,
.delivery-manager-grid textarea {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .04);
}

@media (max-width: 760px) {
  body {
    font-size: 10.5px;
  }

  .hero-copy h1,
  .film-hero .hero-copy h1,
  .tool-hero .hero-copy h1,
  .catalog-hero h1,
  .calculator-hero h1,
  .partner-hero h1,
  .page-title h1 {
    font-size: 20px;
  }

  .section h2,
  .lambox-head h2 {
    font-size: 20px;
  }
}
