@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../fonts/barlow-condensed-900-latin-ext.woff2") format("woff2");
}

:root {
  --tp-v4-blue: #0753a8;
  --tp-v4-blue-dark: #052f63;
  --tp-v4-navy: #081d3b;
  --tp-v4-ink: #111827;
  --tp-v4-black: #111111;
  --tp-v4-green: #25833b;
  --tp-v4-paper: #f4f6f8;
  --tp-v4-line: #dce1e7;
  --tp-v4-white: #fff;
  --tp-v4-muted: #667085;
  --tp-container: min(1380px, calc(100% - 72px));
  --tp-v4-display: "Barlow Condensed", "Arial Narrow", sans-serif;
}

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

body {
  background: var(--tp-v4-white);
  color: var(--tp-v4-ink);
  font-family: "Plus Jakarta Sans", Inter, Arial, sans-serif;
}

.tp-container {
  width: var(--tp-container);
  max-width: none;
  margin-inline: auto;
}

.tp-skip-link {
  position: fixed;
  z-index: 999;
  top: 8px;
  left: 8px;
  padding: 11px 16px;
  background: var(--tp-v4-ink);
  color: #fff;
  transform: translateY(-160%);
}

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

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a,
button,
summary,
input,
select,
textarea {
  outline-offset: 4px;
}

:focus-visible {
  outline: 3px solid #2d79cb;
}

/* Header */
.tp-header {
  position: sticky;
  z-index: 100;
  top: 0;
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(8, 29, 59, 0.09);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.admin-bar .tp-header {
  top: 32px;
}

.tp-header__inner {
  display: grid;
  min-height: 86px;
  grid-template-columns: minmax(250px, 0.9fr) auto minmax(285px, 0.9fr);
  align-items: center;
  gap: 28px;
}

.tp-logo {
  display: inline-flex;
  width: fit-content;
  color: var(--tp-v4-navy);
  text-decoration: none;
}

.tp-brand {
  display: block;
  line-height: 0.9;
  text-transform: uppercase;
}

.tp-brand__mark {
  display: none;
}

.tp-brand__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.tp-brand__overline {
  margin: 0 0 4px 2px;
  color: var(--tp-v4-navy);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.24em;
}

.tp-brand__name {
  color: var(--tp-v4-navy);
  font-size: clamp(1.24rem, 1.65vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -0.045em;
}

.tp-nav {
  position: static;
  display: block;
  width: auto;
  padding: 0;
  background: transparent;
  box-shadow: none;
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.tp-nav__list {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.25vw, 42px);
  list-style: none;
}

.tp-nav__list > li {
  position: relative;
  margin: 0;
}

.tp-nav__list > li > a,
.tp-nav__list summary {
  display: flex;
  min-height: 44px;
  padding: 0;
  align-items: center;
  border: 0;
  background: transparent;
  color: var(--tp-v4-ink);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  gap: 7px;
  list-style: none;
  text-decoration: none;
}

.tp-nav__list summary::-webkit-details-marker {
  display: none;
}

.tp-nav__chevron {
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.tp-nav__dropdown details[open] summary .tp-nav__chevron {
  transform: translateY(2px) rotate(225deg);
}

.tp-nav__panel {
  position: absolute;
  z-index: 3;
  top: calc(100% + 13px);
  left: -24px;
  display: grid;
  width: 340px;
  padding: 13px;
  border: 1px solid var(--tp-v4-line);
  background: #fff;
  box-shadow: 0 24px 60px rgba(8, 29, 59, 0.16);
  gap: 2px;
}

.tp-nav__dropdown--products .tp-nav__panel {
  left: 50%;
  display: grid;
  width: min(720px, calc(100vw - 48px));
  grid-template-columns: repeat(2, minmax(0, 1fr));
  transform: translateX(-38%);
}

.tp-nav__dropdown--products .tp-nav__panel a:nth-child(-n + 3) {
  min-height: 68px;
  border-bottom: 1px solid var(--tp-v4-line);
}

.tp-nav__panel::before {
  position: absolute;
  top: -14px;
  right: 0;
  left: 0;
  height: 14px;
  content: "";
}

.tp-nav__panel a {
  display: flex;
  min-height: 44px;
  padding: 10px 12px;
  flex-direction: column;
  justify-content: center;
  color: var(--tp-v4-ink);
  line-height: 1.25;
  text-decoration: none;
}

.tp-nav__panel a:hover,
.tp-nav__panel a:focus-visible {
  background: var(--tp-v4-paper);
  color: var(--tp-v4-blue);
}

.tp-nav__panel strong {
  font-size: 0.78rem;
}

.tp-nav__panel small {
  margin-top: 4px;
  color: var(--tp-v4-muted);
  font-size: 0.68rem;
}

.tp-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.tp-search,
.tp-search summary,
.tp-cart-button {
  position: relative;
}

.tp-search summary,
.tp-cart-button {
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--tp-v4-navy);
  cursor: pointer;
  list-style: none;
}

.tp-search summary::-webkit-details-marker {
  display: none;
}

.tp-search svg,
.tp-cart-button svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.tp-cart-count {
  position: absolute;
  top: 3px;
  right: 1px;
  display: grid;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  place-items: center;
  border-radius: 99px;
  background: var(--tp-v4-blue);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
}

.tp-search__panel {
  position: absolute;
  z-index: 5;
  top: calc(100% + 18px);
  right: -52px;
  width: min(460px, calc(100vw - 32px));
  padding: 24px;
  border: 1px solid var(--tp-v4-line);
  background: #fff;
  box-shadow: 0 24px 60px rgba(8, 29, 59, 0.17);
}

.tp-search__panel label {
  display: block;
  margin-bottom: 9px;
  color: var(--tp-v4-ink);
  font-size: 0.78rem;
  font-weight: 800;
}

.tp-search__panel form > div {
  display: flex;
}

.tp-search__panel input[type="search"] {
  width: 100%;
  min-height: 50px;
  padding: 10px 14px;
  border: 1px solid var(--tp-v4-line);
  border-right: 0;
  border-radius: 0;
  font-size: 16px;
}

.tp-search__panel button {
  min-width: 74px;
  border: 0;
  background: var(--tp-v4-blue);
  color: #fff;
  font-weight: 800;
}

.tp-header__quote,
.tp-nav__mobile-quote {
  display: inline-flex;
  min-height: 50px;
  margin-left: 12px;
  padding: 0 21px;
  align-items: center;
  justify-content: center;
  background: var(--tp-v4-blue);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  gap: 17px;
  text-decoration: none;
  transition: background 160ms ease;
}

.tp-header__quote:hover {
  background: var(--tp-v4-blue-dark);
}

.tp-nav__mobile-quote,
.tp-nav-toggle {
  display: none;
}

/* Shared controls */
.tp-button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 21px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid transparent;
  border-radius: 2px;
  background: transparent;
  font-size: 0.82rem;
  font-weight: 800;
  gap: 28px;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.tp-button--white {
  background: #fff;
  color: var(--tp-v4-ink);
}

.tp-button--white:hover {
  background: #e9f2fb;
}

.tp-button--hero-outline {
  border-color: rgba(255, 255, 255, 0.82);
  color: #fff;
}

.tp-button--hero-outline:hover {
  border-color: #fff;
  background: #fff;
  color: var(--tp-v4-ink);
}

.tp-label,
.tp-page-kicker,
.tp-eyebrow {
  margin: 0 0 14px;
  color: var(--tp-v4-navy);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.tp-text-link {
  display: inline-flex;
  padding: 7px 0 4px;
  border-bottom: 1px solid currentColor;
  color: var(--tp-v4-ink);
  font-size: 0.8rem;
  font-weight: 800;
  gap: 10px;
  text-decoration: none;
}

/* Home: hero */
.tp-kierto-hero {
  position: relative;
  min-height: clamp(610px, calc(100svh - 86px), 760px);
  overflow: hidden;
  background: #071423;
  color: #fff;
}

.tp-kierto-hero__image,
.tp-kierto-hero__shade {
  position: absolute;
  inset: 0;
}

.tp-kierto-hero__image {
  background-image: url("../images/hero-kierto-jatkuu.jpg");
  background-position: center;
  background-size: cover;
}

.tp-kierto-hero__shade {
  background: linear-gradient(90deg, rgba(2, 10, 20, 0.91) 0%, rgba(2, 10, 20, 0.76) 25%, rgba(2, 10, 20, 0.23) 57%, rgba(2, 10, 20, 0.03) 82%);
}

.tp-kierto-hero__inner {
  position: relative;
  display: flex;
  min-height: inherit;
  padding-block: clamp(48px, 6vw, 84px) 28px;
  flex-direction: column;
  justify-content: space-between;
}

.tp-kierto-hero__copy {
  width: min(650px, 54vw);
}

.tp-kierto-hero h1 {
  margin: 0;
  color: #fff;
  font-family: var(--tp-v4-display);
  font-size: clamp(7.2rem, 11.2vw, 10.4rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.7;
  text-transform: uppercase;
}

.tp-kierto-hero h1 span {
  display: block;
}

.tp-kierto-hero h1 span + span {
  margin-top: 0.15em;
}

.tp-kierto-hero__copy > p {
  max-width: 580px;
  margin: 30px 0 23px;
  color: #fff;
  font-size: clamp(1rem, 1.32vw, 1.22rem);
  font-weight: 650;
  line-height: 1.28;
}

.tp-kierto-hero__actions {
  display: flex;
  gap: 12px;
}

.tp-kierto-hero__service-line {
  margin: 0;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.48);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tp-kierto-hero__service-line i {
  margin: 0 9px;
  color: rgba(255, 255, 255, 0.45);
  font-style: normal;
}

/* Home: routes */
.tp-home-paths {
  border-bottom: 1px solid var(--tp-v4-line);
  background: #fff;
}

.tp-home-paths__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.tp-home-paths a {
  display: grid;
  min-height: 100px;
  padding: 22px 34px;
  grid-template-columns: 35px 1fr auto;
  align-items: center;
  border-right: 1px solid var(--tp-v4-line);
  color: var(--tp-v4-ink);
  gap: 10px;
  text-decoration: none;
}

.tp-home-paths a:first-child {
  border-left: 1px solid var(--tp-v4-line);
}

.tp-home-paths a:hover strong {
  color: var(--tp-v4-blue);
}

.tp-home-paths a:nth-child(3) span {
  color: var(--tp-v4-green);
}

.tp-home-paths span {
  color: #4d5b73;
  font-size: 0.82rem;
  font-weight: 800;
}

.tp-home-paths strong {
  font-size: clamp(0.88rem, 1.2vw, 1.04rem);
  line-height: 1.25;
  transition: color 160ms ease;
}

.tp-home-paths b {
  font-size: 1.25rem;
  font-weight: 500;
}

/* Home: categories */
.tp-product-groups {
  padding: clamp(70px, 7.5vw, 112px) 0 clamp(76px, 8vw, 122px);
  background: #fff;
}

.tp-home-section-head {
  display: flex;
  margin-bottom: clamp(42px, 5vw, 70px);
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.tp-home-section-head h2,
.tp-business-services h2,
.tp-selection-guide h2,
.tp-proof-strip h2,
.tp-contact-band h2 {
  margin: 0;
  color: var(--tp-v4-ink);
  font-size: clamp(2.35rem, 4.3vw, 4.25rem);
  font-weight: 780;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.tp-product-groups__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 48px);
}

.tp-product-group {
  display: block;
  color: var(--tp-v4-ink);
  text-decoration: none;
}

.tp-product-group__visual {
  position: relative;
  display: grid;
  height: clamp(270px, 25vw, 390px);
  margin-bottom: 20px;
  place-items: end center;
  overflow: hidden;
  background: linear-gradient(180deg, #fafbfc 0%, #f2f4f7 100%);
}

.tp-product-group__visual::after {
  position: absolute;
  right: 11%;
  bottom: 3%;
  left: 11%;
  height: 12px;
  border-radius: 50%;
  background: rgba(17, 24, 39, 0.13);
  filter: blur(9px);
  content: "";
}

.tp-product-group__visual img {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: 86%;
  height: 88%;
  object-fit: contain;
  transition: transform 260ms ease;
}

.tp-product-group:hover .tp-product-group__visual img {
  transform: translateY(-6px);
}

.tp-product-group__visual--parts {
  display: flex;
  padding: 14px;
  align-items: center;
  justify-content: center;
}

.tp-product-group__visual--parts img {
  position: relative;
  z-index: 1;
  width: 92%;
  height: 82%;
  margin: 0;
  object-fit: contain;
}

.tp-product-group > strong {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: clamp(0.94rem, 1.25vw, 1.1rem);
}

.tp-product-group > strong span {
  font-size: 1.2rem;
  font-weight: 500;
  transition: transform 160ms ease;
}

.tp-product-group:hover > strong span {
  transform: translateX(5px);
}

.tp-product-group > small {
  display: block;
  margin-top: 3px;
  color: var(--tp-v4-muted);
  font-size: 0.75rem;
}

/* Home: circular economy */
.tp-circular-feature {
  display: grid;
  min-height: 570px;
  grid-template-columns: 1.15fr 0.85fr;
  background: var(--tp-v4-black);
}

.tp-circular-feature__image {
  min-height: 520px;
  background: linear-gradient(rgba(1, 15, 36, 0.08), rgba(1, 15, 36, 0.22)), url("../images/barrel-wall.jpg") center / cover no-repeat;
}

.tp-circular-feature__copy {
  display: flex;
  padding: clamp(58px, 8vw, 120px);
  align-items: center;
  color: #fff;
}

.tp-circular-feature__copy > div {
  max-width: 510px;
}

.tp-label--green {
  color: #48a45a;
}

.tp-circular-feature h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.7rem, 4.8vw, 5rem);
  font-weight: 760;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.tp-circular-feature__copy p:not(.tp-label) {
  margin: 28px 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.55;
}

.tp-text-link--light {
  color: #fff;
}

/* Home: services */
.tp-business-services {
  padding: clamp(78px, 9vw, 135px) 0;
  background: var(--tp-v4-paper);
}

.tp-home-section-head--services {
  align-items: flex-start;
}

.tp-home-section-head--services > p {
  max-width: 580px;
  margin: 13px 0 0;
  color: #526071;
  font-size: 1rem;
}

.tp-service-list {
  border-top: 1px solid #bdc7d1;
}

.tp-service-list a {
  display: grid;
  min-height: 102px;
  padding: 24px 12px;
  grid-template-columns: 55px minmax(240px, 0.75fr) 1fr auto;
  align-items: center;
  border-bottom: 1px solid #bdc7d1;
  color: var(--tp-v4-ink);
  gap: 22px;
  text-decoration: none;
}

.tp-service-list a:hover strong,
.tp-service-list a:hover b {
  color: var(--tp-v4-blue);
}

.tp-service-list span {
  color: var(--tp-v4-blue);
  font-size: 0.75rem;
  font-weight: 800;
}

.tp-service-list strong {
  font-size: clamp(1.15rem, 1.7vw, 1.55rem);
  letter-spacing: -0.025em;
}

.tp-service-list em {
  color: var(--tp-v4-muted);
  font-size: 0.87rem;
  font-style: normal;
}

.tp-service-list b {
  font-size: 1.3rem;
  font-weight: 500;
}

/* Home: guide */
.tp-selection-guide {
  padding: clamp(75px, 8vw, 120px) 0;
  background: var(--tp-v4-blue);
  color: #fff;
}

.tp-selection-guide__grid {
  display: grid;
  grid-template-columns: 0.95fr 1fr 1fr;
  gap: 0;
}

.tp-selection-guide__intro {
  padding-right: clamp(35px, 6vw, 90px);
}

.tp-selection-guide .tp-label,
.tp-contact-band .tp-label {
  color: rgba(255, 255, 255, 0.68);
}

.tp-selection-guide h2 {
  color: #fff;
}

.tp-selection-guide__intro > p:last-child {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.79);
}

.tp-selection-guide__grid > a {
  display: flex;
  min-height: 340px;
  padding: clamp(30px, 4vw, 58px);
  flex-direction: column;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  text-decoration: none;
}

.tp-selection-guide__grid > a:hover {
  background: rgba(255, 255, 255, 0.07);
}

.tp-selection-guide__grid > a > span {
  margin-bottom: auto;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.tp-selection-guide h3 {
  margin: 55px 0 16px;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.tp-selection-guide__grid > a p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.tp-selection-guide__grid > a b {
  font-size: 0.8rem;
}

/* Home: proof + contact */
.tp-proof-strip {
  padding: clamp(65px, 7vw, 100px) 0;
  border-bottom: 1px solid var(--tp-v4-line);
  background: #fff;
}

.tp-proof-strip__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(420px, 0.8fr);
  align-items: center;
  gap: 70px;
}

.tp-proof-strip h2 {
  max-width: 820px;
  font-size: clamp(2.2rem, 3.5vw, 3.6rem);
}

.tp-proof-strip__marks {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}

.tp-proof-strip__marks img {
  width: auto;
  max-width: 115px;
  height: 70px;
  object-fit: contain;
}

.tp-contact-band {
  padding: clamp(70px, 8vw, 110px) 0;
  background: var(--tp-v4-navy);
  color: #fff;
}

.tp-contact-band__inner {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: end;
  gap: clamp(50px, 9vw, 150px);
}

.tp-contact-band h2 {
  max-width: 900px;
  color: #fff;
}

.tp-contact-band__inner > div:last-child p {
  margin: 0 0 25px;
  color: rgba(255, 255, 255, 0.78);
}

/* Interior pages */
.tp-page-main {
  background: #fff;
}

.tp-page-hero {
  padding: clamp(76px, 9vw, 130px) 0;
  background: var(--tp-v4-navy);
  color: #fff;
}

.tp-page-hero__inner {
  max-width: 1040px;
  margin-inline: auto;
}

.tp-page-hero .tp-eyebrow {
  color: #6eb2f2;
}

.tp-page-hero h1 {
  margin: 0;
  color: #fff;
  font-family: var(--tp-v4-display);
  font-size: clamp(4.5rem, 9vw, 8.5rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.82;
  text-transform: uppercase;
}

.tp-page-hero__inner > p:last-child {
  max-width: 720px;
  margin: 27px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
}

.tp-page-content {
  max-width: 1120px;
  padding-block: clamp(70px, 8vw, 120px);
}

.tp-company-visual {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: #0b2039;
}

.tp-company-visual img {
  width: 100%;
  max-height: 720px;
  aspect-ratio: 1870 / 841;
  object-fit: cover;
}

.tp-company-visual figcaption {
  position: absolute;
  right: 14px;
  bottom: 10px;
  padding: 4px 7px;
  background: rgba(0, 0, 0, 0.5);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tp-page-content > h2,
.tp-page-content .wp-block-group h2 {
  margin: 60px 0 20px;
  color: var(--tp-v4-ink);
  font-size: clamp(2rem, 3.5vw, 3.3rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.tp-page-content > h2:first-of-type {
  margin-top: 0;
}

.tp-page-content h3 {
  color: var(--tp-v4-ink);
  font-size: 1.22rem;
  letter-spacing: -0.02em;
}

.tp-page-content .is-style-lead {
  max-width: 850px;
  color: #405063;
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  line-height: 1.55;
}

.tp-page-grid {
  display: grid;
  margin: 50px 0;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--tp-v4-line);
  border-left: 1px solid var(--tp-v4-line);
}

.tp-page-grid > div {
  min-height: 210px;
  padding: 35px;
  border-right: 1px solid var(--tp-v4-line);
  border-bottom: 1px solid var(--tp-v4-line);
}

.tp-page-grid p {
  color: var(--tp-v4-muted);
}

.tp-page-cta,
.tp-notice {
  margin: 55px 0 0;
  padding: clamp(35px, 5vw, 65px);
  background: var(--tp-v4-paper);
}

.tp-page-cta h2 {
  margin-top: 0;
}

.tp-button--lime,
.tp-button--ink,
.tp-button--dark {
  background: var(--tp-v4-blue);
  color: #fff;
}

.tp-button--outline {
  border-color: var(--tp-v4-ink);
  color: var(--tp-v4-ink);
}

.tp-number-list {
  margin: 35px 0;
  padding: 0;
  counter-reset: step;
  list-style: none;
}

.tp-number-list li {
  display: grid;
  padding: 25px 0;
  grid-template-columns: minmax(190px, 0.45fr) 1fr;
  border-top: 1px solid var(--tp-v4-line);
  gap: 35px;
}

.tp-contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(40px, 8vw, 100px);
}

.tp-contact-form-wrap,
.woocommerce form.checkout,
.woocommerce form.login,
.woocommerce form.register {
  padding: clamp(25px, 4vw, 45px);
  background: var(--tp-v4-paper);
}

.tp-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.tp-form-grid p {
  margin: 0;
}

.tp-form-grid p:last-child {
  grid-column: 1 / -1;
}

.tp-contact-form label,
.woocommerce form .form-row label {
  display: block;
  margin-bottom: 7px;
  color: var(--tp-v4-ink);
  font-size: 0.78rem;
  font-weight: 750;
}

.tp-contact-form input,
.tp-contact-form select,
.tp-contact-form textarea,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.select2-container--default .select2-selection--single {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid #bfc8d2;
  border-radius: 0;
  background: #fff;
  color: var(--tp-v4-ink);
  font-size: 16px;
}

.tp-contact-form textarea,
.woocommerce form .form-row textarea {
  min-height: 145px;
}

/* WooCommerce archive */
.tp-shop-main {
  padding: 0 0 clamp(80px, 9vw, 130px);
  background: var(--tp-v4-paper);
}

.tp-shop-main > .tp-container {
  width: 100%;
}

.tp-shop-content {
  width: var(--tp-container);
  margin-inline: auto;
}

.tp-shop-hero {
  margin: 0 0 clamp(50px, 6vw, 85px);
  padding: clamp(70px, 8vw, 115px) max(36px, calc((100% - 1380px) / 2));
  background: linear-gradient(90deg, #071b36, #0b3567);
  color: #fff;
}

.tp-shop-hero p {
  margin: 0 0 17px;
  color: #70b7f7;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.tp-shop-hero p span {
  color: rgba(255, 255, 255, 0.35);
}

.tp-shop-hero h1,
.woocommerce-products-header__title.page-title {
  margin: 0;
  color: #fff;
  font-family: var(--tp-v4-display);
  font-size: clamp(4.8rem, 9vw, 8.5rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.8;
  text-transform: uppercase;
}

.tp-shop-categories {
  display: flex;
  margin: 0 0 35px;
  padding: 0;
  overflow-x: auto;
  border: 0;
  border-bottom: 1px solid #cbd3dc;
  border-radius: 0;
  background: transparent;
  gap: 0;
}

.tp-shop-categories a {
  flex: 0 0 auto;
  padding: 15px 20px;
  border-bottom: 3px solid transparent;
  color: #4c5b6b;
  font-size: 0.77rem;
  font-weight: 750;
  text-decoration: none;
}

.tp-shop-categories a.is-current,
.tp-shop-categories a:hover {
  border-bottom-color: var(--tp-v4-blue);
  color: var(--tp-v4-blue);
}

.woocommerce .woocommerce-result-count {
  color: var(--tp-v4-muted);
  font-size: 0.78rem;
}

.woocommerce .woocommerce-ordering select {
  min-height: 46px;
  padding: 8px 38px 8px 13px;
  border: 1px solid #cbd3dc;
  border-radius: 0;
  background: #fff;
  color: var(--tp-v4-ink);
}

.woocommerce ul.products {
  display: grid;
  clear: both;
  margin: 45px 0 0;
  padding: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 42px 24px;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}

.woocommerce ul.products[class*="columns-"] li.product,
.woocommerce-page ul.products[class*="columns-"] li.product,
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  position: relative;
  display: flex;
  float: none;
  width: auto;
  min-width: 0;
  margin: 0;
  padding: 0 0 18px;
  flex-direction: column;
  border: 0;
  border-bottom: 1px solid #cbd3dc;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.woocommerce ul.products li.product:hover {
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

.woocommerce ul.products li.product > a.woocommerce-LoopProduct-link {
  color: var(--tp-v4-ink);
  text-decoration: none;
}

.woocommerce ul.products li.product a img {
  width: 100%;
  height: clamp(235px, 24vw, 360px);
  margin: 0 0 20px;
  padding: 18px;
  border-radius: 0;
  background: #fff;
  object-fit: contain;
}

.tp-product-condition {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  padding: 6px 8px;
  background: var(--tp-v4-ink);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.tp-product-condition i {
  display: none;
}

.tp-product-condition--new {
  background: var(--tp-v4-blue);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  min-height: 0;
  margin: 0;
  padding: 0;
  color: var(--tp-v4-ink);
  font-size: 0.96rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.tp-card-meta {
  margin: 5px 0 8px;
  color: var(--tp-v4-muted);
  font-size: 0.72rem;
}

.woocommerce ul.products li.product .price {
  margin: 0;
  color: var(--tp-v4-blue);
  font-size: 1rem;
  font-weight: 800;
}

.woocommerce ul.products li.product .button {
  display: inline-flex;
  min-height: 42px;
  margin: 14px 0 0;
  padding: 0;
  align-items: center;
  justify-content: flex-start;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--tp-v4-ink);
  font-size: 0.75rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 5px;
}

/* WooCommerce single product */
.single-product .tp-shop-main {
  padding-top: clamp(55px, 6vw, 90px);
  background: #fff;
}

.single-product .tp-shop-main > .tp-container {
  width: var(--tp-container);
}

.woocommerce div.product {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  color: var(--tp-v4-ink);
  gap: clamp(42px, 6vw, 90px);
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
  margin-bottom: 80px;
}

.woocommerce div.product div.images {
  width: 52%;
}

.woocommerce div.product div.summary {
  width: 42%;
}

.woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
  background: var(--tp-v4-paper);
}

.woocommerce div.product div.images {
  width: auto;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: var(--tp-v4-paper);
}

.woocommerce div.product div.summary {
  width: auto;
}

.woocommerce div.product div.images::after {
  display: none;
}

.woocommerce div.product div.images .woocommerce-product-gallery__image a {
  display: grid;
  width: 100%;
  aspect-ratio: 1 / 1.04;
  place-items: center;
}

.woocommerce div.product div.images img {
  width: 100% !important;
  height: 100% !important;
  max-height: none;
  padding: clamp(20px, 4vw, 55px);
  border-radius: 0;
  object-fit: contain;
}

.woocommerce div.product .product_title {
  margin: 0 0 18px;
  color: var(--tp-v4-ink);
  font-size: clamp(2.2rem, 4vw, 4rem);
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--tp-v4-blue);
  font-size: 1.45rem;
  font-weight: 800;
}

.woocommerce-product-details__short-description {
  color: #4f5e6d;
  font-size: 0.98rem;
}

.tp-specs {
  margin: 28px 0;
  padding: 24px;
  border: 1px solid var(--tp-v4-line);
  background: #fff;
}

.tp-specs h2 {
  margin: 0 0 17px;
  font-size: 1.08rem;
}

.tp-specs dl {
  display: block;
  margin: 0;
}

.tp-specs dl > div {
  display: grid;
  grid-template-columns: minmax(120px, 0.42fr) minmax(0, 1fr);
  align-items: start;
  border-top: 1px solid var(--tp-v4-line);
  gap: 20px;
}

.tp-specs dl > div:first-child {
  border-top: 0;
}

.tp-specs dt,
.tp-specs dd {
  margin: 0;
  padding: 9px 0;
  border: 0;
  font-size: 0.76rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.tp-specs dt {
  color: var(--tp-v4-muted);
}

.woocommerce div.product form.cart {
  display: grid;
  margin: 25px 0;
  grid-template-columns: 74px minmax(190px, 1fr);
  align-items: start;
  gap: 10px;
}

.woocommerce div.product form.cart .tp-product-options {
  display: grid;
  width: 100%;
  margin: 0 0 14px;
  padding: 20px 0;
  grid-column: 1 / -1;
  border-top: 1px solid var(--tp-v4-line);
  border-bottom: 1px solid var(--tp-v4-line);
  gap: 18px;
}

.tp-product-options fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.tp-product-options legend {
  margin-bottom: 9px;
  color: var(--tp-v4-ink);
  font-size: 0.76rem;
  font-weight: 800;
}

.tp-option-choices {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.tp-option-choices label {
  display: flex;
  min-width: 0;
  min-height: 48px;
  margin: 0;
  padding: 9px 11px;
  align-items: center;
  border: 1px solid #bdc7d1;
  border-radius: 2px;
  background: #fff;
  color: var(--tp-v4-ink);
  cursor: pointer;
  font-size: 0.73rem;
  font-weight: 650;
  gap: 8px;
}

.tp-option-choices label:has(input:checked) {
  border-color: var(--tp-v4-blue);
  background: #edf5ff;
}

.tp-option-choices input {
  width: 16px;
  height: 16px;
  margin: 0;
  flex: 0 0 auto;
  accent-color: var(--tp-v4-blue);
}

.tp-option-choices label span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.tp-product-options select {
  width: 100%;
  min-height: 48px;
  padding: 10px 13px;
  border: 1px solid #bdc7d1;
  border-radius: 2px;
  background: #fff;
  color: var(--tp-v4-ink);
  font-size: 16px;
}

.woocommerce div.product form.cart .quantity {
  width: 74px;
  margin: 0;
}

.woocommerce div.product form.cart .single_add_to_cart_button {
  width: 100%;
  min-height: 52px;
  height: 52px;
  margin: 0;
  align-self: start;
  justify-content: center;
  white-space: nowrap;
}

.woocommerce .quantity .qty {
  width: 74px;
  min-height: 52px;
  border: 1px solid #bdc7d1;
  border-radius: 0;
}

.woocommerce button.button.alt,
.woocommerce a.button.alt,
.woocommerce .checkout-button.button,
.woocommerce #payment #place_order,
.tp-contact-form button {
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 0;
  background: var(--tp-v4-blue);
  color: #fff;
  font-weight: 800;
}

.woocommerce button.button.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce .checkout-button.button:hover {
  background: var(--tp-v4-blue-dark);
  color: #fff;
}

.tp-product-tools {
  display: grid;
  margin-top: 17px;
  gap: 8px;
}

.tp-product-tools a,
.tp-product-tools button {
  display: flex;
  min-height: 48px;
  padding: 0 14px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #bdc7d1;
  border-radius: 0;
  background: #fff;
  color: var(--tp-v4-ink);
  font-size: 0.74rem;
  font-weight: 750;
  text-decoration: none;
}

.tp-product-tools svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
}

.tp-volume-pricing {
  display: grid;
  margin-top: 17px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #bdc7d1;
  border-left: 1px solid #bdc7d1;
}

.tp-volume-pricing > div {
  min-height: 67px;
  padding: 10px;
  border-right: 1px solid #bdc7d1;
  border-bottom: 1px solid #bdc7d1;
}

.tp-volume-pricing__head {
  grid-column: 1 / -1;
}

.tp-volume-pricing strong,
.tp-volume-pricing span,
.tp-volume-pricing small {
  display: block;
  font-size: 0.67rem;
}

.woocommerce div.product .woocommerce-tabs {
  clear: both;
  padding-top: 30px;
  border-top: 1px solid var(--tp-v4-line);
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  padding: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
  border-color: var(--tp-v4-line);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border: 0;
  border-radius: 0;
  background: transparent;
}

/* Cart and checkout */
.woocommerce table.shop_table {
  border: 1px solid var(--tp-v4-line);
  border-radius: 0;
  background: #fff;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  padding: 16px;
  border-color: var(--tp-v4-line);
}

.woocommerce-info,
.woocommerce-message,
.woocommerce-error {
  border-top-color: var(--tp-v4-blue);
  background: #fff;
}

/* Cart drawer */
.tp-cart-overlay {
  position: fixed;
  z-index: 200;
  inset: 0;
  background: rgba(5, 16, 30, 0.6);
}

.tp-cart-drawer {
  position: fixed;
  z-index: 210;
  top: 0;
  right: 0;
  display: flex;
  width: min(470px, 100%);
  height: 100dvh;
  padding: 28px;
  flex-direction: column;
  background: #fff;
  box-shadow: -30px 0 80px rgba(0, 0, 0, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: transform 220ms ease, opacity 220ms ease;
}

body.tp-cart-is-open .tp-cart-drawer {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.tp-cart-drawer__header {
  display: flex;
  padding-bottom: 20px;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid var(--tp-v4-line);
}

.tp-cart-drawer__header h2 {
  margin: 0;
  color: var(--tp-v4-ink);
  font-size: 2rem;
}

.tp-cart-drawer__close {
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--tp-v4-paper);
  color: var(--tp-v4-ink);
  font-size: 1.5rem;
}

.tp-cart-drawer__content {
  padding-top: 20px;
  overflow-y: auto;
}

.tp-cart-drawer__note {
  margin-top: auto;
  color: var(--tp-v4-muted);
  font-size: 0.7rem;
}

/* Footer */
.tp-footer {
  padding: clamp(70px, 8vw, 110px) 0 24px;
  background: #08101c;
  color: rgba(255, 255, 255, 0.7);
}

.tp-footer__grid {
  display: grid;
  padding-bottom: 65px;
  grid-template-columns: 1.5fr 0.85fr 1fr 0.9fr;
  gap: clamp(35px, 6vw, 85px);
}

.tp-footer .tp-brand__overline,
.tp-footer .tp-brand__name {
  color: #fff;
}

.tp-footer__brand > p {
  max-width: 430px;
  margin: 24px 0 0;
  font-size: 0.82rem;
}

.tp-footer h2 {
  margin: 0 0 20px;
  color: #fff;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tp-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tp-footer li {
  margin: 0 0 9px;
}

.tp-footer a {
  color: inherit;
  font-size: 0.78rem;
  text-decoration: none;
}

.tp-footer a:hover {
  color: #fff;
}

.tp-footer address,
.tp-footer p {
  font-size: 0.78rem;
  font-style: normal;
}

.tp-footer__bottom {
  display: flex;
  padding-top: 22px;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.tp-footer__bottom p {
  margin: 0;
  font-size: 0.66rem;
}

/* Responsive */
@media (max-width: 1180px) {
  :root {
    --tp-container: min(calc(100% - 48px), 1180px);
  }

  .tp-header__inner {
    grid-template-columns: minmax(220px, 0.8fr) auto minmax(220px, 0.8fr);
    gap: 14px;
  }

  .tp-nav__list {
    gap: 18px;
  }

  .tp-nav__list > li > a,
  .tp-nav__list summary {
    font-size: 0.72rem;
  }

  .tp-header__quote {
    padding-inline: 16px;
  }

  .tp-circular-feature__copy {
    padding: 65px;
  }
}

@media (max-width: 980px) {
  :root {
    --tp-container: calc(100% - 40px);
  }

  .admin-bar .tp-header {
    top: 46px;
  }

  .tp-header__inner {
    min-height: 74px;
    grid-template-columns: 1fr auto auto;
  }

  .tp-nav-toggle {
    position: relative;
    display: grid;
    width: 46px;
    height: 46px;
    padding: 0;
    grid-column: 3;
    grid-row: 1;
    place-items: center;
    border: 0;
    background: transparent;
  }

  .tp-nav-toggle__lines,
  .tp-nav-toggle__lines::before,
  .tp-nav-toggle__lines::after {
    display: block;
    width: 23px;
    height: 2px;
    background: var(--tp-v4-navy);
    content: "";
    transition: transform 180ms ease;
  }

  .tp-nav-toggle__lines::before {
    transform: translateY(-7px);
  }

  .tp-nav-toggle__lines::after {
    transform: translateY(5px);
  }

  .tp-nav-is-open .tp-nav-toggle__lines {
    background: transparent;
  }

  .tp-nav-is-open .tp-nav-toggle__lines::before {
    transform: rotate(45deg);
  }

  .tp-nav-is-open .tp-nav-toggle__lines::after {
    transform: translateY(-2px) rotate(-45deg);
  }

  .tp-nav {
    position: fixed;
    z-index: 110;
    top: 74px;
    right: 0;
    bottom: 0;
    display: block;
    width: min(420px, 100%);
    padding: 22px;
    overflow-y: auto;
    background: #fff;
    box-shadow: -20px 30px 60px rgba(8, 29, 59, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform 200ms ease, opacity 200ms ease;
  }

  .admin-bar .tp-nav {
    top: 120px;
  }

  .tp-nav-is-open .tp-nav {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .tp-nav__list {
    display: grid;
    gap: 0;
  }

  .tp-nav__list > li {
    border-bottom: 1px solid var(--tp-v4-line);
  }

  .tp-nav__list > li > a,
  .tp-nav__list summary {
    min-height: 58px;
    justify-content: space-between;
    font-size: 0.9rem;
  }

  .tp-nav__panel {
    position: static;
    width: 100%;
    padding: 0 0 14px 10px;
    border: 0;
    box-shadow: none;
    transform: none;
    grid-template-columns: 1fr;
  }

  .tp-nav__dropdown--products .tp-nav__panel {
    left: auto;
    width: 100%;
    transform: none;
    grid-template-columns: 1fr;
  }

  .tp-nav__mobile-quote {
    display: flex;
    margin: 24px 0 0;
  }

  .tp-header__actions {
    grid-column: 2;
    grid-row: 1;
  }

  .tp-header__quote {
    display: none;
  }

  .tp-kierto-hero__copy {
    width: 68%;
  }

  .tp-product-groups__grid,
  .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tp-product-group__visual {
    height: 390px;
  }

  .tp-circular-feature {
    grid-template-columns: 1fr 1fr;
  }

  .tp-home-section-head--services {
    display: grid;
  }

  .tp-selection-guide__grid {
    grid-template-columns: 1fr 1fr;
  }

  .tp-selection-guide__intro {
    grid-column: 1 / -1;
    margin-bottom: 45px;
  }

  .tp-proof-strip__inner,
  .tp-contact-band__inner {
    grid-template-columns: 1fr;
  }

  .tp-proof-strip__marks {
    justify-content: flex-start;
  }

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

@media (max-width: 700px) {
  :root {
    --tp-container: calc(100% - 32px);
  }

  .tp-header__inner {
    min-height: 68px;
  }

  .tp-brand__overline {
    font-size: 0.52rem;
  }

  .tp-brand__name {
    font-size: 1.02rem;
  }

  .tp-search summary,
  .tp-cart-button,
  .tp-nav-toggle {
    width: 42px;
    height: 44px;
  }

  .tp-header__actions .tp-search {
    display: block;
  }

  .tp-search svg,
  .tp-cart-button svg {
    width: 21px;
  }

  .tp-nav {
    top: 68px;
  }

  .admin-bar .tp-nav {
    top: 114px;
  }

  .tp-kierto-hero {
    min-height: 690px;
  }

  .tp-kierto-hero__image {
    background-position: 62% center;
  }

  .tp-kierto-hero__shade {
    background: linear-gradient(90deg, rgba(2, 10, 20, 0.92), rgba(2, 10, 20, 0.69) 68%, rgba(2, 10, 20, 0.25));
  }

  .tp-kierto-hero__inner {
    padding-top: 65px;
  }

  .tp-kierto-hero__copy {
    width: 100%;
  }

  .tp-kierto-hero h1 {
    font-size: clamp(5.25rem, 27vw, 7.1rem);
    line-height: 0.71;
  }

  .tp-kierto-hero__copy > p {
    max-width: 330px;
    margin-top: 28px;
    font-size: 0.97rem;
  }

  .tp-kierto-hero__actions {
    width: min(100%, 360px);
    flex-direction: column;
  }

  .tp-kierto-hero__actions .tp-button {
    width: 100%;
  }

  .tp-kierto-hero__service-line {
    padding-top: 14px;
    font-size: 0.54rem;
    letter-spacing: 0.09em;
    line-height: 1.8;
  }

  .tp-kierto-hero__service-line i {
    margin: 0 4px;
  }

  .tp-home-paths__grid {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .tp-home-paths a,
  .tp-home-paths a:first-child {
    min-height: 78px;
    padding: 17px 22px;
    border-right: 0;
    border-bottom: 1px solid var(--tp-v4-line);
    border-left: 0;
  }

  .tp-home-section-head {
    display: grid;
    margin-bottom: 38px;
    gap: 20px;
  }

  .tp-home-section-head h2,
  .tp-business-services h2,
  .tp-selection-guide h2,
  .tp-proof-strip h2,
  .tp-contact-band h2 {
    font-size: clamp(2.2rem, 11vw, 3.2rem);
  }

  .tp-product-groups {
    padding-block: 65px 78px;
  }

  .tp-product-groups__grid,
  .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 12px;
  }

  .tp-product-group__visual {
    height: 210px;
    margin-bottom: 14px;
  }

  .tp-product-group__visual img {
    height: 84%;
  }

  .tp-product-group > strong {
    font-size: 0.84rem;
  }

  .tp-product-group > small {
    font-size: 0.67rem;
  }

  .tp-circular-feature {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .tp-circular-feature__image {
    min-height: 370px;
  }

  .tp-circular-feature__copy {
    min-height: 420px;
    padding: 55px 24px;
  }

  .tp-service-list a {
    min-height: 0;
    padding: 24px 0;
    grid-template-columns: 34px 1fr auto;
    gap: 12px;
  }

  .tp-service-list em {
    display: none;
  }

  .tp-service-list strong {
    font-size: 1rem;
  }

  .tp-selection-guide__grid {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .tp-selection-guide__intro {
    width: var(--tp-container);
    margin-inline: auto;
    padding: 0;
  }

  .tp-selection-guide__grid > a {
    min-height: 310px;
    padding: 38px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-left: 0;
  }

  .tp-proof-strip__inner {
    gap: 38px;
  }

  .tp-proof-strip__marks {
    flex-wrap: wrap;
    gap: 18px;
  }

  .tp-proof-strip__marks img {
    max-width: 90px;
    height: 58px;
  }

  .tp-contact-band__inner {
    align-items: start;
    gap: 35px;
  }

  .tp-page-hero h1,
  .woocommerce-products-header__title.page-title {
    font-size: clamp(4.2rem, 22vw, 6.5rem);
  }

  .tp-shop-hero h1 {
    font-size: clamp(2.75rem, 13.2vw, 3.3rem);
    line-height: 0.9;
  }

  .tp-page-content {
    padding-block: 58px 75px;
  }

  .tp-company-visual img {
    min-height: 350px;
    object-position: 62% center;
  }

  .tp-page-grid,
  .tp-contact-layout,
  .tp-form-grid {
    grid-template-columns: 1fr;
  }

  .tp-page-grid > div {
    min-height: 0;
    padding: 26px;
  }

  .tp-number-list li {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .tp-shop-hero {
    padding-inline: 16px;
  }

  .tp-shop-content {
    width: var(--tp-container);
  }

  .woocommerce ul.products[class*="columns-"] li.product,
  .woocommerce-page ul.products[class*="columns-"] li.product {
    padding: 0 0 14px;
    border-radius: 0;
  }

  .woocommerce ul.products li.product a img {
    height: 210px;
    padding: 10px;
  }

  .woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 0.83rem;
  }

  .tp-card-meta {
    font-size: 0.65rem;
  }

  .woocommerce div.product div.images,
  .woocommerce div.product div.summary {
    float: none;
    width: 100%;
  }

  .woocommerce div.product {
    display: block;
  }

  .woocommerce div.product div.images {
    margin-bottom: 38px;
  }

  .woocommerce div.product div.images .woocommerce-product-gallery__image a {
    aspect-ratio: 1 / 1.05;
  }

  .woocommerce div.product .product_title {
    font-size: 2.45rem;
  }

  .tp-volume-pricing {
    grid-template-columns: 1fr;
  }

  .tp-option-choices {
    grid-template-columns: 1fr;
  }

  .tp-volume-pricing__head {
    grid-column: auto;
  }

  .tp-footer__grid {
    grid-template-columns: 1fr;
  }

  .tp-footer__bottom {
    gap: 12px;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .tp-header,
  .tp-footer,
  .tp-cart-drawer,
  .tp-cart-overlay,
  .tp-product-tools__print {
    display: none !important;
  }
}
