/* ALYANS storefront concept — compact B2B catalog system. */
:root {
  --ink: #14201b;
  --ink-soft: #173c2a;
  --paper: #ffffff;
  --canvas: #f5f5f0;
  --product-media: #f4f5f1;
  --surface: #f0f2ed;
  --muted: #667069;
  --yellow: #ffcb05;
  --yellow-hover: #ffd735;
  --green: #064b28;
  --green-deep: #003b20;
  --green-soft: #eaf4e9;
  --line: #dfe4dd;
  --radius: 14px;
  --container: 1480px;
}

body { background: #fff; color: var(--ink); }
.container { width: min(calc(100% - 64px), var(--container)); }

.topbar {
  border: 0;
  background: linear-gradient(100deg, #003d21 0%, #075c31 46%, #003b20 100%);
  color: #fff;
}
.topbar__inner { min-height: 34px; }
.topbar__facts span,
.topbar__links span,
.topbar__links a { color: #fff; }
.topbar .dashicons { width: 16px; height: 16px; margin-right: 5px; color: var(--yellow); font-size: 16px; line-height: 16px; }
.topbar__links { align-items: center; }
.topbar__links a { font-weight: 800; }
.topbar-region {
  display: none;
  align-items: center;
  gap: 4px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  cursor: pointer;
}
.topbar-region strong { font-weight: 850; }
.topbar-region:hover,
.topbar-region:focus { color: var(--yellow); }

.site-header { background: rgba(255,255,255,.97); box-shadow: 0 8px 30px rgba(12,46,29,.06); }
.site-header__main {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto auto minmax(280px,1fr) auto auto auto;
  align-items: center;
  gap: 16px;
}
.brand__mark { display: none; }
.brand__wordmark strong { color: #063f24; font-size: 27px; font-style: italic; letter-spacing: -.04em; }
.brand__wordmark small { color: #65736b; font-size: 8px; letter-spacing: .18em; }
.header-catalog-button {
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid #e8b900;
  border-radius: 9px;
  background: var(--yellow);
  color: #122019;
  box-shadow: none;
}
.header-search { height: 48px; border-radius: 9px; }
.header-search input { font-size: 14px; }
.header-search button { width: 52px; min-width: 52px; border-radius: 0 8px 8px 0; background: var(--green); }
.header-search button .dashicons { width: 21px; height: 21px; font-size: 21px; line-height: 21px; }
.header-audience-actions { display: flex; gap: 8px; }
.header-audience-button,
.header-location {
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid #d8ddd6;
  border-radius: 9px;
  background: #fff;
  color: #183427;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
}
.header-audience-button--business { border-color: var(--green); background: var(--green); color: #fff; }
.header-audience-button:hover,
.header-audience-button:focus,
.header-location:hover,
.header-location:focus { border-color: #7f9c8c; background: #f1f6f2; }
.header-audience-button--business:hover,
.header-audience-button--business:focus { background: #003c20; color: #fff; }
.header-audience-button .dashicons,
.header-location .dashicons { width: 18px; height: 18px; font-size: 18px; line-height: 18px; }
.header-location__chevron { margin-top: -4px; font-size: 16px; transition: transform .18s ease; }
.header-location[aria-expanded="true"] .header-location__chevron { transform: rotate(180deg); }
.header-request-button {
  min-width: 116px;
  min-height: 46px;
  padding: 0 11px;
  border-radius: 9px;
  gap: 7px;
}
.header-request-button > .dashicons { width: 18px; height: 18px; font-size: 18px; line-height: 18px; }
.header-request-button strong { background: var(--yellow); color: #122019; }
.header-region-menu {
  position: absolute;
  z-index: 85;
  top: calc(100% + 8px);
  right: max(24px, calc((100vw - var(--container)) / 2));
  width: min(390px, calc(100vw - 48px));
  padding: 18px;
  border: 1px solid #d8ded7;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(0,49,26,.2);
}
.header-region-menu[hidden] { display: none; }
.header-region-menu__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.header-region-menu__head > div { display: grid; gap: 5px; }
.header-region-menu__head strong { color: var(--ink); font-size: 20px; line-height: 1.15; }
.header-region-menu__head span { max-width: 290px; color: var(--muted); font-size: 12px; line-height: 1.45; }
.header-region-menu__head > button {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 22px;
  cursor: pointer;
}
.header-region-menu__options { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 7px; margin-top: 16px; }
.header-region-menu__options button {
  min-height: 43px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #f7f8f5;
  color: #294235;
  font: inherit;
  font-size: 13px;
  font-weight: 750;
  text-align: left;
  cursor: pointer;
}
.header-region-menu__options button:hover,
.header-region-menu__options button:focus { border-color: #88a394; background: #eef4ee; }
.header-region-menu__options button[aria-pressed="true"] { border-color: var(--green); background: var(--green); color: #fff; }
.header-region-menu__options .dashicons { width: 17px; height: 17px; font-size: 17px; line-height: 17px; opacity: 0; }
.header-region-menu__options button[aria-pressed="true"] .dashicons { opacity: 1; }
.header-region-menu__note { display: flex; align-items: flex-start; gap: 7px; margin: 14px 0 0; padding-top: 12px; border-top: 1px solid var(--line); color: var(--muted); font-size: 11px; line-height: 1.4; }
.header-region-menu__note .dashicons { flex: 0 0 17px; width: 17px; height: 17px; color: var(--green); font-size: 17px; line-height: 17px; }
.site-nav__region { display: none; }
.site-header__navigation { display: none; }

.catalog-hero { padding: 28px 0 24px; background: #fff; }
.catalog-hero__grid {
  min-height: 310px;
  padding: 32px 38px;
  border-radius: 14px;
  background: linear-gradient(105deg, #f4f0e9 0%, #faf9f6 55%, #ece7de 100%);
  overflow: hidden;
}
.catalog-hero h1 { font-size: clamp(38px, 3.35vw, 56px); }
.catalog-hero__copy { position: relative; z-index: 2; }
.catalog-hero__facts { position: relative; z-index: 2; }

.catalog-hero--storefront { padding: 24px 0 18px; }
.catalog-hero__storefront {
  position: relative;
  min-height: 365px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid #ece8df;
  border-radius: 14px;
  background: #f5f1ea;
}
.catalog-hero__visual {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.catalog-hero__storefront::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(250,248,244,.98) 0%, rgba(250,248,244,.94) 38%, rgba(250,248,244,.24) 65%, rgba(250,248,244,0) 100%);
}
.catalog-hero__storefront .catalog-hero__copy {
  width: min(660px, 53%);
  padding: 35px 40px;
}
.catalog-hero--storefront .eyebrow { margin-bottom: 10px; color: #3c654f; }
.catalog-hero--storefront h1 {
  max-width: 650px;
  font-size: clamp(38px, 3.4vw, 55px);
  line-height: 1.01;
  letter-spacing: -.045em;
}
.catalog-hero--storefront h1 span { color: var(--green); }
.catalog-hero--storefront .catalog-hero__copy > p:not(.eyebrow) { max-width: 570px; margin: 15px 0 0; color: #53625a; font-size: 15px; line-height: 1.45; }
.catalog-hero__audiences { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 20px; }
.catalog-hero-audience {
  min-height: 92px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 15px 16px;
  border: 1px solid transparent;
  border-radius: 10px;
  text-align: left;
  cursor: pointer;
}
.catalog-hero-audience > .dashicons { width: 27px; height: 27px; font-size: 27px; line-height: 27px; }
.catalog-hero-audience > span { min-width: 0; }
.catalog-hero-audience strong,
.catalog-hero-audience small { display: block; }
.catalog-hero-audience strong { font-size: 14px; line-height: 1.2; }
.catalog-hero-audience small { margin-top: 5px; font-size: 11px; line-height: 1.35; opacity: .78; }
.catalog-hero-audience > i { font-size: 21px; font-style: normal; }
.catalog-hero-audience--business { background: var(--green); color: #fff; }
.catalog-hero-audience--business:hover,
.catalog-hero-audience--business:focus { background: #003b20; }
.catalog-hero-audience--design { border-color: #dfb800; background: var(--yellow); color: #182018; }
.catalog-hero-audience--design:hover,
.catalog-hero-audience--design:focus { background: var(--yellow-hover); }
.catalog-hero__proof { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 13px; }
.catalog-hero__proof span { padding: 6px 9px; border: 1px solid rgba(59,86,71,.15); border-radius: 999px; background: rgba(255,255,255,.72); color: #536159; font-size: 10px; }
.catalog-hero__proof strong { color: #244834; }

/* Homepage storefront: products enter the first viewport instead of a long marketing preface. */
.catalog-page--home .catalog-section { padding: 4px 0 52px; }
.catalog-page--home .catalog-audience { display: none; }
.catalog-page--home .catalog-focus { margin: 0 0 24px; }
.catalog-page--home .catalog-focus__head { margin: 0 0 12px; }
.catalog-page--home .catalog-focus__head > div { display: flex; align-items: baseline; gap: 12px; }
.catalog-page--home .catalog-focus__head > div > span { display: none; }
.catalog-page--home .catalog-focus__head h2 { font-size: 25px; letter-spacing: -.025em; }
.catalog-page--home .catalog-focus__head > a { color: var(--green); font-size: 12px; font-weight: 850; }
.catalog-page--home .catalog-focus__grid { grid-template-columns: repeat(4, minmax(0,1fr)); gap: 12px; }
.catalog-page--home .catalog-focus-card { height: 126px; border: 1px solid #e1e5df; border-radius: 11px; background: #f4f4ef; box-shadow: none; }
.catalog-page--home .catalog-focus-card:nth-child(n+5) { display: none; }
.catalog-page--home .catalog-focus-card::after { background: linear-gradient(90deg, rgba(247,247,243,.98) 0%, rgba(247,247,243,.9) 42%, rgba(247,247,243,.05) 78%); }
.catalog-page--home .catalog-focus-card img { object-position: 76% 43%; transform: scale(1.03); }
.catalog-page--home .catalog-focus-card:hover img { transform: scale(1.06); }
.catalog-page--home .catalog-focus-card__label { inset: 15px auto 15px 17px; width: 54%; justify-content: space-between; align-items: flex-start; }
.catalog-page--home .catalog-focus-card small { display: none; }
.catalog-page--home .catalog-focus-card strong { color: #16241d; font-size: 15px; line-height: 1.25; text-shadow: none; }
.catalog-page--home .catalog-focus-card i { width: 32px; height: 32px; border-color: #9db1a5; background: rgba(255,255,255,.66); color: var(--green); }
.catalog-page--home .catalog-browser { grid-template-columns: minmax(0,1fr) 330px; gap: 22px; }
.catalog-page--home .catalog-category-nav { grid-column: 1 / -1; position: static; padding: 0; border: 0; background: transparent; box-shadow: none; }
.catalog-page--home .catalog-category-nav__head,
.catalog-page--home .catalog-order-note { display: none; }
.catalog-page--home .catalog-category-chips { flex-direction: row; flex-wrap: nowrap; gap: 8px; overflow-x: auto; padding: 2px 1px 5px; }
.catalog-page--home .catalog-category-chip { flex: 0 0 auto; width: auto; min-height: 34px; padding: 0 13px; border: 1px solid #e4e7e2; border-radius: 8px; background: #f3f4f1; color: #39453e; font-size: 11px; white-space: nowrap; }
.catalog-page--home .catalog-category-chip span { display: none; }
.catalog-page--home .catalog-category-chip.is-active { background: var(--green); color: #fff; }
.catalog-page--home .catalog-results { min-width: 0; }
.catalog-page--home .catalog-trail,
.catalog-page--home .catalog-context__kicker,
.catalog-page--home .catalog-subcategory-nav,
.catalog-page--home .catalog-toolbar,
.catalog-page--home .catalog-active-filters,
.catalog-page--home .catalog-meta,
.catalog-page--home .catalog-load { display: none !important; }
.catalog-page--home .catalog-context { align-items: center; gap: 18px; margin: 0 0 12px; }
.catalog-page--home .catalog-context h2 { font-size: 27px; }
.catalog-page--home .catalog-context p { display: block; margin: 5px 0 0; color: #727a74; font-size: 11px; }
.catalog-page--home .catalog-context__all-products {
  display: grid;
  grid-template-columns: auto auto;
  gap: 2px 14px;
  min-width: 236px;
  min-height: 58px;
  padding: 10px 47px 10px 15px;
  border: 1px solid #b9c7bd;
  border-radius: 10px;
  background: #fff;
  color: var(--green);
  position: relative;
  text-decoration: none;
}
.catalog-page--home .catalog-context__all-products span { font-size: 12px; font-weight: 850; }
.catalog-page--home .catalog-context__all-products strong { color: #747d76; font-size: 10px; font-weight: 700; }
.catalog-page--home .catalog-context__all-products i {
  position: absolute;
  top: 50%;
  right: 14px;
  font-size: 22px;
  font-style: normal;
  transform: translateY(-50%);
  transition: transform .18s ease;
}
.catalog-page--home .catalog-context__all-products:hover,
.catalog-page--home .catalog-context__all-products:focus { border-color: var(--green); background: #f1f6f2; }
.catalog-page--home .catalog-context__all-products:hover i,
.catalog-page--home .catalog-context__all-products:focus i { transform: translate(3px,-50%); }
.catalog-page--home .catalog-grid { grid-template-columns: repeat(4, minmax(0,1fr)); gap: 10px; }
.catalog-page--home .catalog-grid .product-card:nth-child(n+5) { display: none; }
.catalog-page--home .product-card { border-radius: 11px; }
.catalog-page--home .product-card__image { height: 178px; padding: 12px; }
.catalog-page--home .product-card__body { padding: 13px; }
.catalog-page--home .product-card__category { min-height: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: 9px; }
.catalog-page--home .product-card__code-row { min-height: 20px; margin-top: 4px; }
.catalog-page--home .product-card__code { font-size: 10px; }
.catalog-page--home .product-card__title { min-height: 43px; margin: 5px 0 8px; display: -webkit-box; overflow: hidden; -webkit-line-clamp: 2; -webkit-box-orient: vertical; font-size: 14px; line-height: 1.35; }
.catalog-page--home .product-card__spec { min-height: 0; margin: 0 0 8px; font-size: 10px; }
.catalog-page--home .product-card__details { display: block; }
.catalog-page--home .product-card__details span { min-height: 0; padding: 6px 0; border: 0; background: transparent; font-size: 10px; }
.catalog-page--home .product-card__details span + span { display: none; }
.catalog-page--home .product-card__footer { margin-top: 5px; padding-top: 8px; }
.catalog-page--home .product-card__footer small { font-size: 9px; }
.catalog-page--home .product-card__price { font-size: 17px; }
.catalog-page--home .product-card__request { min-height: 38px; padding: 0 10px; border-color: #e9b800; background: var(--yellow); color: #172018; font-size: 11px; }
.catalog-page--home .product-card__request:hover,
.catalog-page--home .product-card__request:focus,
.catalog-page--home .product-card__request.is-added { border-color: var(--green); background: var(--green); color: #fff; }
.home-quick-order {
  position: sticky;
  top: 132px;
  min-height: 100%;
  padding: 24px;
  border: 1px solid #e3e5df;
  border-radius: 12px;
  background: linear-gradient(145deg, #f5f3ec 0%, #faf9f6 100%);
  align-self: start;
}
.home-quick-order__kicker { color: #738077; font-size: 9px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.home-quick-order h2 { margin: 7px 0 0; color: var(--green); font-size: 22px; line-height: 1.15; letter-spacing: -.03em; }
.home-quick-order p { margin: 12px 0 0; color: #667069; font-size: 12px; line-height: 1.5; }
.home-quick-order__form { margin-top: 17px; }
.home-quick-order textarea { width: 100%; min-height: 152px; resize: vertical; padding: 13px; border: 1px solid #cfd6cf; border-radius: 8px; background: #fff; color: var(--ink); font-size: 12px; }
.home-quick-order textarea:focus { border-color: var(--green); outline: 3px solid rgba(0,75,40,.12); }
.home-quick-order .button { width: 100%; min-height: 46px; margin-top: 9px; border-color: var(--green); background: var(--green); color: #fff; box-shadow: none; }
.home-quick-order__note { display: flex; gap: 7px; align-items: flex-start; }
.home-quick-order__note .dashicons { color: var(--green); }
.catalog-page--home .catalog-brands { padding-top: 58px; }

@media (max-width: 1280px) {
  .site-header__main { grid-template-columns: auto auto minmax(250px,1fr) auto auto; }
  .header-location { display: none; }
  .topbar-region { display: inline-flex; }
  .header-audience-button:last-child { display: none; }
  .catalog-page--home .catalog-browser { grid-template-columns: minmax(0,1fr) 300px; }
  .catalog-page--home .catalog-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .catalog-page--home .catalog-grid .product-card:nth-child(4) { display: none; }
}

@media (max-width: 920px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .topbar__inner { min-height: 30px; }
  .topbar__links span, .topbar__links a { display: none; }
  .site-header__main { min-height: 110px; grid-template-columns: auto auto 1fr auto; gap: 8px; padding: 9px 0 8px; }
  .brand__wordmark strong { font-size: 22px; }
  .brand__wordmark small { font-size: 7px; }
  .header-catalog-button { min-height: 44px; padding: 0 13px; }
  .header-audience-actions, .header-location { display: none; }
  .header-request-button { min-width: 48px; min-height: 44px; padding: 0 9px; }
  .header-request-button > span:not(.dashicons) { display: none; }
  .menu-toggle { display: grid; margin: 0; place-items: center; }
  .header-search { grid-column: 1 / -1; grid-row: 2; height: 46px; }
  .site-header__navigation { display: block; }
  .site-nav__region {
    width: 100%;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0 14px;
    border: 1px solid #cbd5ce;
    border-radius: 10px;
    background: #eef4ee;
    color: var(--green);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
  }
  .site-nav__region span { display: inline-flex; align-items: center; gap: 7px; }
  .site-nav__region strong { color: var(--ink); }
  .catalog-hero__storefront { min-height: 510px; align-items: flex-start; }
  .catalog-hero__visual { object-position: 64% bottom; }
  .catalog-hero__storefront::after { background: linear-gradient(180deg, rgba(250,248,244,.98) 0%, rgba(250,248,244,.93) 52%, rgba(250,248,244,.08) 82%); }
  .catalog-hero__storefront .catalog-hero__copy { width: 100%; padding: 28px 28px; }
  .catalog-hero--storefront h1 { max-width: 650px; font-size: 42px; }
  .catalog-page--home .catalog-focus__grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 5px; }
  .catalog-page--home .catalog-focus-card { flex: 0 0 230px; scroll-snap-align: start; }
  .catalog-page--home .catalog-browser { grid-template-columns: minmax(0, 1fr); }
  .catalog-page--home .catalog-category-nav { grid-column: auto; }
  .home-quick-order { position: static; grid-row: 2; min-height: 0; }
  .catalog-page--home .catalog-results { grid-row: 3; }
  .catalog-page--home .catalog-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .catalog-page--home .catalog-grid .product-card:nth-child(4) { display: flex; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .topbar__facts { font-size: 11px; }
  .brand__wordmark small { display: none; }
  .header-catalog-button { font-size: 0; width: 44px; padding: 0; }
  .header-catalog-button span { font-size: 20px; }
  .header-region-menu { position: fixed; inset: 116px 12px auto; width: auto; max-height: calc(100dvh - 128px); overflow-y: auto; padding: 16px; }
  .header-region-menu__options { grid-template-columns: 1fr 1fr; }
  .catalog-hero__grid { min-height: 0; padding: 24px 20px; }
  .catalog-hero h1 { font-size: 34px; }
  .catalog-hero--storefront { padding-top: 12px; }
  .catalog-hero__storefront { min-height: 535px; }
  .catalog-hero__storefront .catalog-hero__copy { padding: 22px 18px; }
  .catalog-hero--storefront h1 { font-size: 34px; }
  .catalog-hero--storefront .catalog-hero__copy > p:not(.eyebrow) { font-size: 13px; }
  .catalog-hero__audiences { grid-template-columns: 1fr; gap: 8px; }
  .catalog-hero-audience { min-height: 72px; padding: 11px 13px; }
  .catalog-hero-audience--design small { display: none; }
  .catalog-hero__proof { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 2px; }
  .catalog-hero__proof span { flex: 0 0 auto; }
  .catalog-page--home .catalog-section { padding-top: 0; }
  .catalog-page--home .catalog-focus__head h2 { font-size: 21px; }
  .catalog-page--home .catalog-focus-card { flex-basis: 180px; height: 110px; }
  .catalog-page--home .catalog-context h2 { font-size: 23px; }
  .catalog-page--home .catalog-context { align-items: stretch; flex-direction: column; }
  .catalog-page--home .catalog-context__all-products { width: 100%; min-width: 0; }
  .catalog-page--home .catalog-grid { grid-template-columns: 1fr; }
  .catalog-page--home .catalog-grid .product-card { display: grid; grid-template-columns: 122px minmax(0,1fr); }
  .catalog-page--home .product-card__image { height: 100%; min-height: 190px; border-bottom: 0; border-right: 1px solid var(--line); }
  .catalog-page--home .product-card__stock { left: 7px; top: 7px; min-height: 24px; padding: 0 7px; font-size: 9px; }
  .catalog-page--home .product-card__body { min-width: 0; }
  .catalog-page--home .product-card__category { display: none; }
  .catalog-page--home .product-card__title { min-height: 0; }
  .catalog-page--home .product-card__footer { align-items: flex-end; }
  .home-quick-order { padding: 18px; }
  .home-quick-order textarea { min-height: 108px; }
}

/* Shared storefront language: every screen follows the same restrained B2B system. */
.button {
  min-height: 46px;
  border-radius: 9px;
  box-shadow: none;
}
.button:hover,
.button:focus { transform: none; }
.button--dark { border-color: var(--green); background: var(--green); }
.button--dark:hover,
.button--dark:focus { border-color: var(--green-deep); background: var(--green-deep); }
.eyebrow { color: #47705a; letter-spacing: .1em; }

/* Catalogue overlay and filtered catalogue. */
.header-catalog-panel {
  border-color: var(--line);
  border-radius: 0 0 14px 14px;
  background: rgba(255,255,255,.99);
  box-shadow: 0 24px 55px rgba(0,59,32,.14);
}
.header-catalog-panel__layout { border-radius: 12px; background: #fff; }
.header-catalog-panel__categories button { border-radius: 8px; }
.header-catalog-panel__categories button:hover,
.header-catalog-panel__categories button:focus { background: #f3f5f1; color: var(--green); }
.header-catalog-panel__categories button[aria-selected="true"] { background: var(--green-soft); color: var(--green); }
.header-catalog-panel__head-actions > a { border-radius: 8px; }

.catalog-page:not(.catalog-page--home) .catalog-focus { display: none; }
.catalog-page:not(.catalog-page--home) .catalog-hero { padding: 22px 0; background: #f6f5f0; }
.catalog-page:not(.catalog-page--home) .catalog-hero__grid {
  min-height: 205px;
  padding: 27px 32px;
  grid-template-columns: minmax(0,1fr) 430px;
  gap: 34px;
  border: 1px solid #e7e5dc;
  background: linear-gradient(112deg,#faf9f5 0%,#f1eee6 100%);
}
.catalog-page:not(.catalog-page--home) .catalog-hero h1 { max-width: 760px; font-size: clamp(34px,3.4vw,48px); }
.catalog-page:not(.catalog-page--home) .catalog-hero p:not(.eyebrow) { margin-top: 11px; font-size: 14px; }
.catalog-page:not(.catalog-page--home) .catalog-hero__actions { margin-top: 18px; }
.catalog-page:not(.catalog-page--home) .catalog-hero__facts { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.catalog-page:not(.catalog-page--home) .catalog-hero__facts > div,
.catalog-page:not(.catalog-page--home) .catalog-hero__facts > a {
  min-height: 74px;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid #dde3dd;
  border-radius: 10px;
  background: rgba(255,255,255,.78);
  box-shadow: none;
}
.catalog-page:not(.catalog-page--home) .catalog-hero__facts > div strong { color: var(--green); font-size: 18px; }
.catalog-page:not(.catalog-page--home) .catalog-hero__facts > div span { font-size: 10px; }
.catalog-page:not(.catalog-page--home) .catalog-exclusive { max-width: none; }
.catalog-page:not(.catalog-page--home) .catalog-section { padding: 26px 0 68px; }
.catalog-page:not(.catalog-page--home) .catalog-context h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(34px,3.6vw,50px);
  line-height: 1.02;
  letter-spacing: -.045em;
}
.catalog-page:not(.catalog-page--home) .catalog-category-nav { top: 104px; border-radius: 12px; box-shadow: none; }
.catalog-page:not(.catalog-page--home) .catalog-toolbar {
  position: static;
  grid-template-columns: repeat(3,minmax(0,1fr));
  padding: 13px;
  border-radius: 11px;
  box-shadow: none;
}
.catalog-page:not(.catalog-page--home) .catalog-subcategory-nav { border-radius: 11px; }
.catalog-page:not(.catalog-page--home) .catalog-subcategory-link--group { min-height: 154px; border: 1px solid #edf0ec; }
.catalog-page:not(.catalog-page--home) .catalog-subcategory-link__media { height: 96px; }
.catalog-page:not(.catalog-page--home) .catalog-grid { gap: 12px; }

/* Product details. */
.product-page { background: #fff; }
.product-detail { padding: 25px 0 70px; }
.product-breadcrumbs { margin-bottom: 20px; }
.product-detail__layout { grid-template-columns: minmax(0,1.04fr) minmax(360px,.96fr); gap: clamp(28px,4vw,58px); }
.product-gallery__stage {
  padding: clamp(22px,3vw,40px);
  border-color: #e1e5df;
  border-radius: 14px;
  background: var(--product-media);
}
.product-gallery__stage.is-cover-image { border-color: #e1e5df; border-radius: 14px; background: var(--product-media); }
.product-gallery__arrow,
.product-gallery__close { border-color: #d6ddd6; box-shadow: 0 6px 18px rgba(0,59,32,.09); }
.product-gallery__thumb { border-radius: 9px; background: #f7f8f5; }
.product-gallery__thumb.is-active { border-color: var(--green); }
.product-summary { padding-top: 3px; }
.product-summary h1 { max-width: 610px; font-size: clamp(31px,3.3vw,46px); line-height: 1.04; }
.product-summary__labels span { border-radius: 7px; background: var(--green-soft); color: var(--green); }
.product-summary__price { margin-top: 24px; padding: 18px 0; }
.product-summary__price strong { color: var(--green); font-size: clamp(30px,3.2vw,40px); }
.product-summary__facts { gap: 8px; margin-top: 14px; }
.product-summary__facts div { padding: 12px 13px; border: 1px solid #e8ebe6; border-radius: 9px; background: #f5f6f2; }
.product-summary__service { margin-top: 15px; }
.product-summary__service li { padding-block: 9px; }
.product-summary__service li::before { top: 10px; color: var(--green); }
.product-summary__order { margin-top: 19px; }
.product-summary__order .button:first-child { border-color: #e6b600; background: var(--yellow); color: #162019; }
.product-summary__order .button:first-child:hover,
.product-summary__order .button:first-child:focus { background: var(--yellow-hover); }
.product-information { margin-top: 54px; padding-top: 36px; }
.related-products { margin-top: 56px; padding-top: 36px; }
.related-products__grid { gap: 12px; }

/* Company, commercial and editorial pages. */
.about-page .hero { padding: 28px 0 34px; border: 0; background: #fff; }
.about-page .hero::before,
.about-page .hero-catalog::after { display: none; }
.about-page .hero__grid {
  min-height: 400px;
  padding: 34px;
  gap: 34px;
  border: 1px solid #e8e5dc;
  border-radius: 14px;
  background: linear-gradient(110deg,#f8f6f0 0%,#f1eee5 100%);
}
.about-page .hero h1 { max-width: 680px; font-size: clamp(38px,4vw,52px); }
.about-page .hero__lead { margin-top: 18px; font-size: 16px; }
.about-page .hero__actions { margin-top: 22px; }
.about-page .hero-catalog { padding: 24px; border: 1px solid #dfe5de; border-radius: 12px; background: #fff; box-shadow: none; }
.about-page .hero-catalog h2 { font-size: clamp(27px,2.8vw,38px); }
.about-page .hero-catalog__grid a { min-height: 56px; border-radius: 8px; background: #f4f5f1; }
.about-page .hero-catalog__grid a:hover,
.about-page .hero-catalog__grid a:focus { background: var(--green-soft); }
.about-page .stats { padding: 0 0 46px; }
.about-page .stats__grid { border-radius: 12px; box-shadow: none; }
.about-page .section,
.commercial-page .section,
.content-page .section { padding: 64px 0; }
.about-page .section-heading,
.commercial-page .section-heading { grid-template-columns: .54fr 1.46fr; gap: 44px; margin-bottom: 34px; }
.about-page .section-heading h2,
.commercial-page .section-heading h2 { font-size: clamp(32px,3.7vw,47px); }
.about-page .section-heading p,
.commercial-page .section-heading p { font-size: 15px; }
.about-page .about-story,
.commercial-page .about-story {
  min-height: 340px;
  padding: 31px;
  border-color: var(--green);
  border-radius: 13px;
  background: var(--green);
  color: #fff;
}
.about-page .about-story h3,
.commercial-page .about-story h3 { margin-top: 52px; font-size: clamp(29px,3.3vw,42px); }
.about-page .about-story p,
.commercial-page .about-story p { color: #dce8e1; font-size: 15px; }
.about-page .about-story .button,
.commercial-page .about-story .button { border-color: #e6b600; background: var(--yellow); color: #172018; }
.about-page .about-visual,
.commercial-page .about-visual { min-height: 340px; padding: 31px; border-radius: 13px; box-shadow: none; }
.about-page .network-grid { gap: 16px; }
.about-page .warehouse-gallery,
.about-page .network-panel { border-radius: 13px; }
.about-page .network-panel { padding: 32px; }
.about-page .network-panel h3 { font-size: 34px; }
.about-page .advantage { min-height: 180px; border-radius: 11px; }
.about-page .partner,
.commercial-page .partner { min-height: 88px; border-radius: 10px; }
.about-page .brand-card { border-radius: 11px; box-shadow: none; }
.about-page .contact-wrap { border-radius: 14px; background: var(--green-deep); }
.about-page .contact-form { border-radius: 11px; }

.commercial-page:not(.catalog-page--home) .catalog-hero__grid { min-height: 270px; }
.commercial-page .catalog-hero__copy .product-breadcrumbs { margin-bottom: 15px; }
.commercial-page .services-grid { gap: 12px; }
.commercial-page .service-card { min-height: 205px; padding: 23px; border-radius: 11px; background: #f5f6f2; }
.commercial-page .service-card:hover { transform: none; border-color: #9db0a4; box-shadow: none; }
.commercial-page .service-card h3 { font-size: 22px; }
.commercial-page .service-card__number { border-radius: 8px; background: var(--yellow); }
.content-page article { max-width: 920px; margin: 0 auto; }
.content-page article > h1 { margin: 0 0 24px; font-size: clamp(36px,4.4vw,54px); letter-spacing: -.045em; }
.content-page .entry-content { color: #58635c; font-size: 16px; line-height: 1.75; }

/* The enquiry is the site's order model, so its UI gets a deliberate checkout-like finish. */
.request-drawer { width: min(590px,100%); box-shadow: -22px 0 55px rgba(0,59,32,.18); }
.request-drawer::backdrop { background: rgba(5,27,16,.54); }
.request-drawer__panel { padding: 25px; }
.request-drawer__head h2 { color: var(--ink); font-size: 31px; }
.request-drawer__head span { color: var(--green); }
.request-drawer__head button { border-color: #d9dfd8; background: #f6f7f3; color: var(--green); }
.request-drawer__selection,
.request-item { border-radius: 10px; background: #f6f7f3; }
.request-form__field input,
.request-form__field select,
.request-form__field textarea { border-radius: 8px; background: #fff; }
.request-form__submit { border-color: #e7b800; background: var(--yellow); color: #172018; }
.request-form__submit:hover,
.request-form__submit:focus { background: var(--yellow-hover); }
.request-drawer__footer .button--telegram { border-color: var(--green); background: var(--green); color: #fff; }
.request-drawer__footer .button--telegram:hover,
.request-drawer__footer .button--telegram:focus { border-color: var(--green-deep); background: var(--green-deep); color: #fff; }
.request-success { border-color: #9cc0a9; border-radius: 11px; background: #edf7ef; }

/* Footer. */
.site-footer { background: var(--green-deep); color: #c5d2ca; }
.site-footer__grid { gap: 42px; padding-top: 42px; padding-bottom: 34px; }
.site-footer__brand p { color: #b6c5bc; }
.site-footer__column a,
.site-footer__column span { color: #c0cec5; }
.site-footer__column a:hover,
.site-footer__column a:focus { color: var(--yellow); }
.site-footer__bottom { color: #9db0a4; }

@media (max-width: 1120px) {
  .catalog-page:not(.catalog-page--home) .catalog-hero__grid { grid-template-columns: 1fr 360px; }
  .catalog-page:not(.catalog-page--home) .catalog-toolbar { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .about-page .hero__grid { grid-template-columns: 1fr; }
  .about-page .hero-catalog { display: none; }
}

@media (max-width: 920px) {
  .site-header__main { min-height: 104px; grid-template-columns: auto 1fr auto; padding-block: 6px; }
  .header-request-button { justify-self: end; }
  .header-search { height: 42px; }
  .catalog-page:not(.catalog-page--home) .catalog-hero__grid { min-height: 0; grid-template-columns: 1fr; padding: 24px; }
  .catalog-page:not(.catalog-page--home) .catalog-hero__facts { grid-template-columns: repeat(4,minmax(145px,1fr)); overflow-x: auto; }
  .catalog-page:not(.catalog-page--home) .catalog-hero__facts > div,
  .catalog-page:not(.catalog-page--home) .catalog-hero__facts > a { min-height: 66px; }
  .catalog-page:not(.catalog-page--home) .catalog-browser { grid-template-columns: minmax(0, 1fr); }
  .catalog-category-nav,
  .catalog-results { min-width: 0; max-width: 100%; }
  .catalog-page:not(.catalog-page--home) .catalog-category-nav { position: static; }
  .product-detail__layout { grid-template-columns: 1fr; gap: 25px; }
  .product-summary { position: static; }
  .about-page .hero__grid { min-height: 0; padding: 27px; }
  .about-page .section,
  .commercial-page .section,
  .content-page .section { padding: 50px 0; }
  .about-page .section-heading,
  .commercial-page .section-heading { grid-template-columns: 1fr; gap: 10px; }
}

@media (max-width: 640px) {
  .catalog-page:not(.catalog-page--home) .catalog-hero { padding: 12px 0; }
  .catalog-page:not(.catalog-page--home) .catalog-hero__grid { padding: 20px; border-radius: 11px; }
  .catalog-page:not(.catalog-page--home) .catalog-hero h1 { font-size: 32px; }
  .catalog-page:not(.catalog-page--home) .catalog-context h1 { font-size: 32px; }
  .catalog-page:not(.catalog-page--home) .catalog-hero__actions { display: grid; }
  .catalog-page:not(.catalog-page--home) .catalog-toolbar { grid-template-columns: 1fr; }
  .product-detail { padding-top: 16px; }
  .product-breadcrumbs { margin-bottom: 14px; }
  .product-gallery__stage { border-radius: 11px; }
  .product-summary h1 { font-size: 31px; }
  .product-summary__facts { grid-template-columns: 1fr 1fr; }
  .product-information { grid-template-columns: 1fr; gap: 20px; margin-top: 42px; }
  .related-products__head { align-items: flex-start; flex-direction: column; gap: 8px; }
  .about-page .hero { padding-top: 14px; }
  .about-page .hero__grid { padding: 22px 18px; border-radius: 11px; }
  .about-page .hero h1 { font-size: 34px; }
  .about-page .about-grid,
  .commercial-page .about-grid,
  .about-page .contact-wrap { grid-template-columns: 1fr; }
  .about-page .about-story,
  .commercial-page .about-story,
  .about-page .about-visual,
  .commercial-page .about-visual { min-height: 0; padding: 23px; }
  .about-page .about-story h3,
  .commercial-page .about-story h3 { margin-top: 32px; }
  .request-drawer__panel { padding: 19px 16px calc(16px + env(safe-area-inset-bottom)); }
  .site-footer__grid { gap: 28px; padding-top: 34px; }
}
