/* Shared product category pages */
.product-category {
  --pc-ink: #173229;
  --pc-muted: #5d7169;
  --pc-green: #187247;
  --pc-dark: #0d4f35;
  --pc-deep: #092f22;
  --pc-mint: #eaf4ee;
  --pc-line: #dce8e1;
  --pc-cream: #f6f7f1;
  color: var(--pc-ink);
  background: #fff;
}

.product-category main {
  overflow: hidden;
}

.product-category .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.pc-skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  padding: 10px 16px;
  color: #fff;
  background: var(--pc-dark);
  border-radius: 5px;
  transform: translateY(-150%);
}

.pc-skip-link:focus {
  transform: none;
}

.pc-eyebrow {
  margin: 0 0 12px;
  color: var(--pc-green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.pc-hero {
  position: relative;
  padding: 58px 0 64px;
  color: #fff;
  background: var(--pc-deep);
}

.pc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 84% 0, rgba(118, 209, 157, .14), transparent 34%),
    linear-gradient(120deg, rgba(255, 255, 255, .02), transparent 45%);
}

.pc-hero__inner {
  position: relative;
}

.pc-breadcrumb {
  margin-bottom: 38px;
}

.pc-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, .66);
  font-size: 13px;
  list-style: none;
}

.pc-breadcrumb li + li::before {
  content: "/";
  margin-right: 8px;
  color: rgba(255, 255, 255, .3);
}

.pc-breadcrumb a:hover {
  color: #fff;
}

.pc-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, .85fr);
  align-items: center;
  gap: 70px;
}

.pc-hero .pc-eyebrow {
  color: #9bdab7;
}

.pc-hero h1 {
  max-width: 760px;
  margin: 0 0 21px;
  color: #fff;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.06;
  letter-spacing: -.035em;
}

.pc-hero__lead {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, .8);
  font-size: 17px;
  line-height: 1.75;
}

.pc-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 29px;
}

.pc-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}

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

.pc-button--primary {
  color: var(--pc-deep);
  background: #a9dfbf;
}

.pc-button--primary:hover {
  background: #c7edd6;
}

.pc-button--outline {
  color: #fff;
  border-color: rgba(255, 255, 255, .42);
  background: rgba(255, 255, 255, .03);
}

.pc-button--outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .08);
}

.pc-hero__visual {
  position: relative;
  min-height: 340px;
}

.pc-hero__image {
  width: 100%;
  height: 340px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 25px 65px rgba(0, 0, 0, .24);
}

.pc-hero__facts {
  position: absolute;
  right: -18px;
  bottom: -18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(110px, 1fr));
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(8, 43, 30, .94);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .22);
}

.pc-hero__facts div {
  padding: 17px 18px;
}

.pc-hero__facts div + div {
  border-left: 1px solid rgba(255, 255, 255, .13);
}

.pc-hero__facts strong,
.pc-hero__facts span {
  display: block;
}

.pc-hero__facts strong {
  color: #fff;
  font-size: 22px;
}

.pc-hero__facts span {
  color: rgba(255, 255, 255, .58);
  font-size: 10px;
  text-transform: uppercase;
}

.pc-summary {
  padding: 72px 0 58px;
  background: #fff;
}

.pc-summary__grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 9%;
}

.pc-summary h2,
.pc-section-heading h2,
.pc-procurement h2,
.pc-related h2,
.pc-cta h2 {
  margin: 0;
  color: var(--pc-ink);
  font-size: clamp(29px, 3.4vw, 43px);
  line-height: 1.16;
  letter-spacing: -.025em;
}

.pc-summary__answer {
  padding-left: 26px;
  border-left: 3px solid var(--pc-green);
}

.pc-summary__answer p {
  margin: 0 0 12px;
  color: var(--pc-muted);
  line-height: 1.78;
}

.pc-summary__answer p:first-child {
  color: var(--pc-ink);
  font-size: 18px;
}

.pc-catalog {
  padding: 34px 0 94px;
  background: #fff;
}

.pc-section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(300px, .6fr);
  align-items: end;
  gap: 54px;
  margin-bottom: 29px;
}

.pc-section-heading > p {
  margin: 0;
  color: var(--pc-muted);
  line-height: 1.7;
}

.pc-tools {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  margin-bottom: 22px;
  padding: 14px;
  border: 1px solid var(--pc-line);
  border-radius: 6px;
  background: #f8faf8;
}

.pc-search {
  position: relative;
}

.pc-search i {
  position: absolute;
  top: 50%;
  left: 15px;
  color: #789087;
  transform: translateY(-50%);
}

.pc-search input {
  width: 100%;
  min-height: 46px;
  padding: 10px 15px 10px 42px;
  color: var(--pc-ink);
  border: 1px solid #cdded4;
  border-radius: 4px;
  background: #fff;
  font: inherit;
}

.pc-search input:focus {
  border-color: var(--pc-green);
  outline: 3px solid rgba(24, 114, 71, .12);
}

.pc-tools__count {
  margin: 0;
  padding-right: 6px;
  color: var(--pc-muted);
  font-size: 12px;
  white-space: nowrap;
}

.pc-family-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.pc-family-nav a {
  padding: 7px 11px;
  color: #476158;
  border: 1px solid var(--pc-line);
  border-radius: 999px;
  background: #fff;
  font-size: 11px;
  font-weight: 700;
}

.pc-family-nav a:hover {
  color: #fff;
  border-color: var(--pc-green);
  background: var(--pc-green);
}

.pc-family-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.pc-family {
  min-width: 0;
  padding: 0 23px 22px;
  border: 1px solid var(--pc-line);
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(23, 50, 41, .04);
}

.pc-family:target {
  border-color: #8bc1a3;
  box-shadow: 0 0 0 4px rgba(24, 114, 71, .08);
}

.pc-family__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 -23px 18px;
  padding: 19px 23px 15px;
  border-bottom: 1px solid var(--pc-line);
  background: linear-gradient(90deg, #f4f8f5, #fff);
}

.pc-family h3 {
  margin: 0;
  color: var(--pc-dark);
  font-size: 18px;
}

.pc-family__head span {
  color: var(--pc-green);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.pc-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 20px;
}

.pc-products li {
  position: relative;
  min-width: 0;
  padding: 9px 0 9px 14px;
  color: #415950;
  border-bottom: 1px solid #edf2ee;
  font-size: 13px;
  line-height: 1.45;
}

.pc-products li::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #78b493;
}

.pc-products a {
  color: var(--pc-dark);
  font-weight: 750;
  border-bottom: 1px solid #a8cbb8;
}

.pc-products a:hover {
  color: var(--pc-green);
}

.pc-family[hidden],
.pc-products li[hidden] {
  display: none;
}

.pc-no-results {
  margin: 20px 0 0;
  padding: 18px;
  color: var(--pc-muted);
  border: 1px dashed #b8cdc1;
  text-align: center;
}

.pc-catalog__note {
  margin: 24px 0 0;
  padding: 16px 18px;
  color: var(--pc-muted);
  border-left: 3px solid var(--pc-green);
  background: var(--pc-mint);
  font-size: 13px;
  line-height: 1.65;
}

.pc-dossiers {
  padding: 86px 0;
  color: #fff;
  background: var(--pc-deep);
}

.pc-dossiers .pc-eyebrow {
  color: #9bdab7;
}

.pc-dossiers h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(29px, 3.4vw, 43px);
  line-height: 1.16;
}

.pc-dossiers__intro {
  display: grid;
  grid-template-columns: 1fr minmax(300px, .55fr);
  align-items: end;
  gap: 50px;
  margin-bottom: 30px;
}

.pc-dossiers__intro > p {
  margin: 0;
  color: rgba(255, 255, 255, .65);
  line-height: 1.7;
}

.pc-dossier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .16);
  border-left: 1px solid rgba(255, 255, 255, .16);
}

.pc-dossier-grid a {
  position: relative;
  display: grid;
  grid-template-columns: 55px 1fr;
  grid-template-rows: auto auto;
  gap: 3px 13px;
  padding: 21px;
  border-right: 1px solid rgba(255, 255, 255, .16);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.pc-dossier-grid a:hover {
  background: rgba(255, 255, 255, .07);
}

.pc-dossier-grid span {
  grid-row: 1 / 3;
  align-self: center;
  color: #9bdab7;
  font-size: 12px;
  font-weight: 800;
}

.pc-dossier-grid strong {
  color: #fff;
  font-size: 14px;
}

.pc-dossier-grid small {
  color: rgba(255, 255, 255, .5);
  font-size: 11px;
}

.pc-procurement {
  padding: 96px 0;
  background: var(--pc-cream);
}

.pc-procurement__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 9%;
}

.pc-procurement h2 {
  margin-bottom: 21px;
}

.pc-procurement__copy > p:not(.pc-eyebrow) {
  color: var(--pc-muted);
  line-height: 1.8;
}

.pc-procurement__copy .pc-direct-answer {
  color: var(--pc-ink) !important;
  font-size: 17px;
}

.pc-checks {
  border-top: 1px solid #cbdcd2;
}

.pc-checks article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 17px;
  padding: 22px 0;
  border-bottom: 1px solid #cbdcd2;
}

.pc-checks span {
  color: var(--pc-green);
  font-size: 12px;
  font-weight: 800;
}

.pc-checks h3 {
  margin: 0 0 6px;
  color: var(--pc-ink);
  font-size: 17px;
}

.pc-checks p {
  margin: 0;
  color: var(--pc-muted);
  font-size: 14px;
  line-height: 1.65;
}

.pc-safety-note {
  margin-top: 22px;
  padding: 16px 18px;
  color: #5b4a23;
  border-left: 3px solid #c08b28;
  background: #fff8e9;
  font-size: 13px;
  line-height: 1.65;
}

.pc-documents {
  padding: 88px 0;
  background: #fff;
}

.pc-document-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.pc-document-grid article {
  padding: 24px;
  border: 1px solid var(--pc-line);
  border-top: 3px solid var(--pc-green);
  border-radius: 5px;
}

.pc-document-grid span {
  display: inline-flex;
  min-width: 48px;
  justify-content: center;
  margin-bottom: 20px;
  padding: 6px 8px;
  color: var(--pc-dark);
  border-radius: 3px;
  background: var(--pc-mint);
  font-size: 11px;
  font-weight: 900;
}

.pc-document-grid h3 {
  margin: 0 0 9px;
  color: var(--pc-ink);
  font-size: 16px;
}

.pc-document-grid p {
  margin: 0;
  color: var(--pc-muted);
  font-size: 13px;
  line-height: 1.68;
}

.pc-related {
  padding: 0 0 88px;
  background: #fff;
}

.pc-related__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 26px;
}

.pc-related__head a {
  color: var(--pc-dark);
  border-bottom: 1px solid #a8cbb8;
  font-size: 13px;
  font-weight: 800;
}

.pc-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.pc-related__grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 94px;
  gap: 20px;
  padding: 20px 22px;
  color: var(--pc-ink);
  border: 1px solid var(--pc-line);
  border-radius: 5px;
  background: #fff;
  font-weight: 800;
}

.pc-related__grid a:hover {
  color: var(--pc-green);
  border-color: #9bc6ad;
  box-shadow: 0 10px 28px rgba(23, 50, 41, .07);
}

.pc-related__grid i {
  color: var(--pc-green);
}

.pc-cta {
  padding: 0 0 92px;
  background: #fff;
}

.pc-cta__box {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 66px;
  padding: 44px 50px;
  color: #fff;
  border-radius: 8px;
  background: linear-gradient(120deg, var(--pc-dark), var(--pc-green));
  box-shadow: 0 18px 50px rgba(13, 79, 53, .18);
}

.pc-cta .pc-eyebrow {
  color: #b9e7cb;
}

.pc-cta h2 {
  color: #fff;
}

.pc-cta p:not(.pc-eyebrow) {
  max-width: 760px;
  margin: 13px 0 0;
  color: rgba(255, 255, 255, .75);
  line-height: 1.7;
}

.pc-cta__actions {
  display: grid;
  justify-items: center;
  gap: 10px;
}

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

.pc-button--white:hover {
  background: #eef8f2;
}

.pc-cta__actions > a:last-child {
  color: rgba(255, 255, 255, .8);
  font-size: 12px;
}

@media (max-width: 1050px) {
  .pc-hero__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .pc-hero__visual {
    max-width: 760px;
  }

  .pc-document-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .pc-hero {
    padding: 46px 0 58px;
  }

  .pc-breadcrumb {
    margin-bottom: 29px;
  }

  .pc-hero h1 {
    font-size: clamp(34px, 9vw, 48px);
  }

  .pc-summary,
  .pc-procurement,
  .pc-documents,
  .pc-dossiers {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .pc-summary__grid,
  .pc-section-heading,
  .pc-procurement__grid,
  .pc-dossiers__intro {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .pc-summary__answer {
    padding-left: 20px;
  }

  .pc-family-grid,
  .pc-dossier-grid {
    grid-template-columns: 1fr;
  }

  .pc-related__grid {
    grid-template-columns: 1fr;
  }

  .pc-cta__box {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 27px;
    padding: 38px;
  }

  .pc-cta__actions {
    justify-items: start;
  }
}

@media (max-width: 590px) {
  .pc-hero__lead {
    font-size: 16px;
  }

  .pc-hero__actions,
  .pc-button {
    width: 100%;
  }

  .pc-hero__visual,
  .pc-hero__image {
    min-height: 260px;
    height: 260px;
  }

  .pc-hero__facts {
    right: 10px;
    bottom: -18px;
    left: 10px;
  }

  .pc-tools {
    grid-template-columns: 1fr;
  }

  .pc-tools__count {
    padding: 0 3px 2px;
  }

  .pc-family {
    padding-right: 19px;
    padding-left: 19px;
  }

  .pc-family__head {
    margin-right: -19px;
    margin-left: -19px;
    padding-right: 19px;
    padding-left: 19px;
  }

  .pc-products {
    grid-template-columns: 1fr;
  }

  .pc-document-grid {
    grid-template-columns: 1fr;
  }

  .pc-related__head {
    display: block;
  }

  .pc-related__head a {
    display: inline-block;
    margin-top: 14px;
  }

  .pc-cta {
    padding-bottom: 68px;
  }

  .pc-cta__box {
    width: 100%;
    padding: 30px 24px;
    border-radius: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pc-button,
  .pc-card,
  .pc-card__link i {
    transition: none;
  }
}
