:root {
  --tp-ink: #071d2d;
  --tp-ink-2: #0b2b42;
  --tp-blue: #075aa6;
  --tp-blue-bright: #0874d1;
  --tp-lime: #b8dc50;
  --tp-lime-dark: #88aa25;
  --tp-sand: #f3f1e9;
  --tp-sand-2: #e9e6dc;
  --tp-white: #fff;
  --tp-text: #173246;
  --tp-muted: #60717e;
  --tp-line: rgba(7, 29, 45, 0.14);
  --tp-shadow: 0 28px 70px rgba(7, 29, 45, 0.13);
  --tp-radius: 26px;
  --tp-radius-sm: 16px;
  --tp-container: min(1240px, calc(100vw - 48px));
  --tp-heading: "Arial Narrow", "Roboto Condensed", "Aptos Display", Inter, ui-sans-serif, system-ui, sans-serif;
  --tp-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--tp-white);
  color: var(--tp-text);
  font-family: var(--tp-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.tp-cart-is-open,
body.tp-nav-is-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--tp-lime);
  outline-offset: 3px;
}

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

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

.tp-skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--tp-white);
  color: var(--tp-ink);
  font-weight: 800;
}

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

h1,
h2,
h3,
h4 {
  margin-top: 0;
  color: var(--tp-ink);
  font-family: var(--tp-heading);
  font-weight: 850;
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.7rem);
}

h2 {
  font-size: clamp(2.25rem, 4.7vw, 4.6rem);
}

h3 {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

p {
  margin-top: 0;
}

.tp-eyebrow,
.tp-kicker {
  margin: 0 0 18px;
  color: var(--tp-blue);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  line-height: 1.3;
  text-transform: uppercase;
}

.tp-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--tp-lime);
}

.tp-kicker span {
  width: 34px;
  height: 2px;
  background: currentColor;
}

.tp-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.tp-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.wc-block-components-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--tp-blue);
  color: var(--tp-white);
  font-size: 0.88rem;
  font-weight: 850;
  letter-spacing: 0.015em;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.tp-button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.wc-block-components-button:hover {
  transform: translateY(-2px);
  background: var(--tp-blue-bright);
  color: var(--tp-white);
}

.tp-button--lime {
  background: var(--tp-lime);
  color: var(--tp-ink);
}

.tp-button--lime:hover {
  background: #c7eb61;
  color: var(--tp-ink);
}

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

.tp-button--ink:hover {
  background: var(--tp-blue);
}

.tp-button--ghost {
  border-color: rgba(255, 255, 255, 0.48);
  background: transparent;
  color: var(--tp-white);
}

.tp-button--ghost:hover {
  border-color: var(--tp-white);
  background: var(--tp-white);
  color: var(--tp-ink);
}

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

.tp-text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--tp-ink);
  font-weight: 850;
  text-decoration: none;
}

.tp-text-link span {
  color: var(--tp-blue);
  font-size: 1.25em;
  transition: transform 180ms ease;
}

.tp-text-link:hover span {
  transform: translateX(4px);
}

/* Header */
.tp-topbar {
  position: relative;
  z-index: 80;
  padding: 8px 0;
  background: var(--tp-ink);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
}

.tp-topbar__inner,
.tp-topbar__links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.tp-topbar p {
  margin: 0;
}

.tp-topbar strong {
  color: var(--tp-white);
}

.tp-topbar a {
  font-weight: 700;
  text-decoration: none;
}

.tp-header {
  position: sticky;
  top: 0;
  z-index: 70;
  border-bottom: 1px solid var(--tp-line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

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

.tp-header__inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  gap: 28px;
}

.tp-logo {
  flex: 0 0 auto;
  color: var(--tp-ink);
  text-decoration: none;
}

.tp-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.tp-brand__mark {
  width: 40px;
  height: 40px;
  overflow: visible;
  fill: none;
  stroke: var(--tp-blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.25;
}

.tp-brand__text {
  display: grid;
  line-height: 1;
}

.tp-brand__overline {
  margin-bottom: 3px;
  color: var(--tp-muted);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.tp-brand__name {
  font-family: var(--tp-heading);
  font-size: 1.13rem;
  font-weight: 900;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.tp-nav {
  margin-left: auto;
}

.tp-nav__list,
.tp-nav .menu {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: clamp(14px, 1.8vw, 28px);
  list-style: none;
}

.tp-nav a {
  position: relative;
  padding: 29px 0 27px;
  color: var(--tp-ink);
  font-size: 0.79rem;
  font-weight: 780;
  text-decoration: none;
  white-space: nowrap;
}

.tp-nav a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  background: var(--tp-blue);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.tp-nav a:hover::after,
.tp-nav .current-menu-item > a::after {
  transform: scaleX(1);
  transform-origin: left;
}

.tp-header__actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
}

.tp-header__shop {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--tp-ink);
  color: var(--tp-white);
  font-size: 0.78rem;
  font-weight: 850;
  text-decoration: none;
}

.tp-header__shop:hover {
  background: var(--tp-blue);
}

.tp-cart-button {
  position: relative;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--tp-line);
  border-radius: 50%;
  background: var(--tp-white);
  color: var(--tp-ink);
  cursor: pointer;
}

.tp-cart-button svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.tp-cart-count {
  position: absolute;
  top: -3px;
  right: -3px;
  display: grid;
  min-width: 19px;
  height: 19px;
  padding: 0 4px;
  place-items: center;
  border: 2px solid var(--tp-white);
  border-radius: 999px;
  background: var(--tp-lime);
  color: var(--tp-ink);
  font-size: 0.64rem;
  font-weight: 900;
}

.tp-nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--tp-line);
  border-radius: 50%;
  background: var(--tp-white);
}

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

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

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

/* Hero */
.tp-hero {
  position: relative;
  min-height: min(800px, calc(100svh - 116px));
  overflow: hidden;
  background: var(--tp-ink);
  color: var(--tp-white);
}

.tp-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(to top, rgba(7, 29, 45, 0.5), transparent);
  content: "";
  pointer-events: none;
}

.tp-hero__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 29, 45, 0.98) 0%, rgba(7, 29, 45, 0.9) 46%, rgba(7, 29, 45, 0.35) 100%),
    url("../images/hero-industrial.avif") center/cover no-repeat;
  opacity: 0.92;
}

.tp-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, #000, transparent 78%);
}

.tp-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: min(800px, calc(100svh - 116px));
  padding-block: clamp(74px, 10vw, 130px);
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  align-items: center;
  gap: clamp(44px, 7vw, 110px);
}

.tp-hero h1 {
  max-width: 880px;
  margin-bottom: 30px;
  color: var(--tp-white);
}

.tp-hero__lead {
  max-width: 720px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.65;
}

.tp-hero__proof {
  display: grid;
  max-width: 720px;
  margin: clamp(50px, 8vw, 84px) 0 0;
  padding: 25px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
}

.tp-hero__proof strong,
.tp-hero__proof span {
  display: block;
}

.tp-hero__proof strong {
  margin-bottom: 4px;
  color: var(--tp-white);
  font-family: var(--tp-heading);
  font-size: 1.05rem;
  line-height: 1.1;
}

.tp-hero__proof span {
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.76rem;
}

.tp-hero__visual {
  position: relative;
  display: grid;
  min-height: 510px;
  place-items: center;
}

.tp-hero__visual::before,
.tp-hero__visual::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  content: "";
}

.tp-hero__visual::before {
  width: 430px;
  height: 430px;
}

.tp-hero__visual::after {
  width: 330px;
  height: 330px;
}

.tp-hero__orb {
  position: absolute;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background: var(--tp-lime);
  box-shadow: 0 0 120px rgba(184, 220, 80, 0.28);
}

.tp-hero__visual img {
  position: relative;
  z-index: 2;
  width: min(390px, 92%);
  filter: drop-shadow(0 36px 30px rgba(0, 0, 0, 0.36));
  transform: scale(1.16);
}

.tp-hero__label {
  position: absolute;
  z-index: 3;
  display: flex;
  min-width: 145px;
  padding: 11px 15px;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(7, 29, 45, 0.7);
  color: var(--tp-white);
  font-size: 0.76rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.tp-hero__label span {
  color: var(--tp-lime);
  font-family: var(--tp-heading);
  font-size: 1rem;
}

.tp-hero__label--one {
  top: 20%;
  left: -8%;
}

.tp-hero__label--two {
  right: -3%;
  bottom: 19%;
}

/* Shared sections */
.tp-section-heading {
  margin-bottom: clamp(38px, 6vw, 76px);
}

.tp-section-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.tp-section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 64px;
}

.tp-section-heading--split > p {
  margin: 0;
  color: var(--tp-muted);
  font-size: 1.02rem;
}

.tp-process,
.tp-products,
.tp-shop-preview,
.tp-trust {
  padding: clamp(80px, 11vw, 150px) 0;
}

.tp-process {
  background: var(--tp-sand);
}

.tp-process__steps {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  list-style: none;
  counter-reset: process;
}

.tp-process__steps li {
  position: relative;
  min-height: 290px;
  padding: 30px 28px 34px;
  border-top: 1px solid var(--tp-line);
  border-right: 1px solid var(--tp-line);
  background: rgba(255, 255, 255, 0.38);
  transition: background 180ms ease, transform 180ms ease;
}

.tp-process__steps li:first-child {
  border-left: 1px solid var(--tp-line);
  border-radius: var(--tp-radius) 0 0 var(--tp-radius);
}

.tp-process__steps li:last-child {
  border-radius: 0 var(--tp-radius) var(--tp-radius) 0;
}

.tp-process__steps li:hover {
  z-index: 1;
  background: var(--tp-white);
  transform: translateY(-8px);
}

.tp-process__steps span {
  display: inline-block;
  margin-bottom: 70px;
  color: var(--tp-blue);
  font-family: var(--tp-heading);
  font-size: 0.82rem;
  font-weight: 900;
}

.tp-process__steps h3 {
  margin-bottom: 14px;
}

.tp-process__steps p {
  margin-bottom: 0;
  color: var(--tp-muted);
  font-size: 0.9rem;
}

/* Services */
.tp-services {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 11vw, 150px) 0;
  background: var(--tp-ink);
  color: rgba(255, 255, 255, 0.72);
}

.tp-services::before {
  position: absolute;
  top: -210px;
  left: -180px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255, 255, 255, 0.018), 0 0 0 160px rgba(255, 255, 255, 0.012);
  content: "";
}

.tp-services__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(52px, 9vw, 120px);
}

.tp-services h2,
.tp-services h3,
.tp-services .tp-text-link {
  color: var(--tp-white);
}

.tp-services__intro {
  position: sticky;
  top: 145px;
  align-self: start;
}

.tp-services__intro h2 {
  margin-bottom: 28px;
}

.tp-services__intro > p:not(.tp-eyebrow) {
  margin-bottom: 32px;
}

.tp-service-cards {
  display: grid;
  gap: 14px;
}

.tp-service-card {
  display: grid;
  min-height: 235px;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--tp-radius);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.68);
  grid-template-columns: 70px 1fr;
  column-gap: 28px;
  text-decoration: none;
  transition: transform 200ms ease, background 200ms ease, border-color 200ms ease;
}

.tp-service-card:hover {
  border-color: rgba(184, 220, 80, 0.6);
  background: rgba(255, 255, 255, 0.07);
  transform: translateX(8px);
}

.tp-service-card--primary {
  background: var(--tp-blue);
}

.tp-service-card--primary:hover {
  background: var(--tp-blue-bright);
}

.tp-service-card__index {
  color: var(--tp-lime);
  font-family: var(--tp-heading);
  font-size: 0.8rem;
  font-weight: 900;
}

.tp-service-card h3 {
  margin-bottom: 18px;
}

.tp-service-card p,
.tp-service-card__arrow {
  grid-column: 2;
}

.tp-service-card p {
  max-width: 600px;
  margin-bottom: 28px;
}

.tp-service-card__arrow {
  color: var(--tp-white);
  font-size: 0.82rem;
  font-weight: 850;
}

/* Product categories */
.tp-products {
  background: var(--tp-white);
}

.tp-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.tp-category-card {
  position: relative;
  display: grid;
  min-height: 520px;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--tp-line);
  border-radius: var(--tp-radius);
  background: var(--tp-sand);
  color: var(--tp-ink);
  grid-template-rows: 1fr auto;
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.tp-category-card:hover {
  box-shadow: var(--tp-shadow);
  transform: translateY(-8px);
}

.tp-category-card--dark {
  background: var(--tp-ink);
  color: var(--tp-white);
}

.tp-category-card__image {
  display: grid;
  min-height: 300px;
  place-items: center;
}

.tp-category-card__image::before {
  position: absolute;
  top: 62px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(7, 90, 166, 0.11);
  content: "";
}

.tp-category-card--dark .tp-category-card__image::before {
  background: var(--tp-lime);
}

.tp-category-card img {
  position: relative;
  z-index: 1;
  max-width: 72%;
  max-height: 285px;
  object-fit: contain;
  filter: drop-shadow(0 25px 22px rgba(7, 29, 45, 0.2));
  transition: transform 260ms ease;
}

.tp-category-card:hover img {
  transform: scale(1.06) rotate(-1deg);
}

.tp-category-card > div:last-child {
  position: relative;
  z-index: 2;
  padding: 12px 8px 6px;
}

.tp-category-card span {
  color: var(--tp-blue);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.tp-category-card--dark span {
  color: var(--tp-lime);
}

.tp-category-card h3 {
  margin: 8px 0 10px;
  color: inherit;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
}

.tp-category-card p {
  margin: 0;
  color: var(--tp-muted);
  font-size: 0.86rem;
}

.tp-category-card--dark p {
  color: rgba(255, 255, 255, 0.62);
}

.tp-new-products-callout {
  display: grid;
  margin-top: 18px;
  padding: clamp(30px, 5vw, 52px);
  border-radius: var(--tp-radius);
  background: var(--tp-lime);
  grid-template-columns: 1fr 0.75fr auto;
  align-items: center;
  gap: clamp(30px, 5vw, 70px);
}

.tp-new-products-callout .tp-eyebrow {
  color: var(--tp-ink);
}

.tp-new-products-callout h3,
.tp-new-products-callout p {
  margin-bottom: 0;
}

.tp-new-products-callout h3 {
  max-width: 590px;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
}

.tp-new-products-callout p {
  font-size: 0.92rem;
}

/* Audiences */
.tp-audiences {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.tp-audience {
  display: grid;
  min-height: 630px;
  padding: clamp(60px, 9vw, 120px);
  place-items: center;
}

.tp-audience__inner {
  width: min(520px, 100%);
}

.tp-audience h2 {
  margin-bottom: 26px;
}

.tp-audience p:not(.tp-eyebrow) {
  margin-bottom: 32px;
  font-size: 1.04rem;
}

.tp-audience a {
  font-weight: 850;
  text-decoration: none;
}

.tp-audience--business {
  background: var(--tp-blue);
  color: rgba(255, 255, 255, 0.76);
}

.tp-audience--business h2,
.tp-audience--business a {
  color: var(--tp-white);
}

.tp-audience--business .tp-eyebrow {
  color: var(--tp-lime);
}

.tp-audience--consumer {
  background: var(--tp-sand);
}

.tp-shop-preview {
  background: var(--tp-white);
}

/* Trust */
.tp-trust {
  background: var(--tp-sand);
}

.tp-trust__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(430px, 1.2fr);
  align-items: center;
  gap: clamp(60px, 10vw, 130px);
}

.tp-trust__copy h2 {
  margin-bottom: 28px;
}

.tp-trust__copy > p:not(.tp-eyebrow) {
  margin-bottom: 32px;
  color: var(--tp-muted);
  font-size: 1.02rem;
}

.tp-trust__logos {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 14px;
}

.tp-trust__logos > div {
  display: grid;
  min-height: 220px;
  padding: 28px;
  place-items: center;
  border: 1px solid var(--tp-line);
  border-radius: var(--tp-radius);
  background: var(--tp-white);
}

.tp-trust__logos > div:last-child {
  min-height: 160px;
  grid-column: 1 / -1;
}

.tp-trust__logos img {
  max-width: 220px;
  max-height: 145px;
  object-fit: contain;
}

/* Final CTA */
.tp-final-cta {
  padding: clamp(80px, 11vw, 150px) 0;
  background: var(--tp-ink);
  color: rgba(255, 255, 255, 0.72);
}

.tp-final-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.55fr);
  align-items: end;
  gap: clamp(60px, 10vw, 140px);
}

.tp-final-cta h2 {
  margin-bottom: 0;
  color: var(--tp-white);
}

.tp-final-cta__inner > div:last-child p {
  margin-bottom: 28px;
}

/* Pages */
.tp-page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(85px, 12vw, 160px) 0 clamp(70px, 9vw, 115px);
  background: var(--tp-ink);
  color: rgba(255, 255, 255, 0.72);
}

.tp-page-hero::after {
  position: absolute;
  top: -260px;
  right: -180px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  box-shadow: 0 0 0 95px rgba(255, 255, 255, 0.025), 0 0 0 190px rgba(255, 255, 255, 0.015);
  content: "";
}

.tp-page-hero__inner {
  position: relative;
  z-index: 1;
}

.tp-page-hero h1 {
  max-width: 960px;
  margin-bottom: 0;
  color: var(--tp-white);
}

.tp-page-hero__inner > p:last-child:not(.tp-eyebrow) {
  max-width: 720px;
  margin: 28px 0 0;
  font-size: 1.15rem;
}

.tp-page-content {
  padding-top: clamp(60px, 9vw, 110px);
  padding-bottom: clamp(80px, 11vw, 150px);
}

.tp-page-content > * {
  max-width: 780px;
  margin-inline: auto;
}

.tp-page-content > .alignwide,
.tp-page-content > .wp-block-columns,
.tp-page-content > .tp-content-grid,
.tp-page-content > .tp-contact-grid {
  max-width: 1240px;
}

.tp-page-content h2 {
  margin-top: 1.35em;
  margin-bottom: 0.45em;
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.tp-page-content h3 {
  margin-top: 1.6em;
  margin-bottom: 0.55em;
}

.tp-page-content p,
.tp-page-content li {
  font-size: 1.03rem;
}

.tp-page-content a {
  color: var(--tp-blue);
  font-weight: 750;
}

.tp-page-content .wp-block-button__link {
  border-radius: 999px;
  background: var(--tp-blue);
  color: var(--tp-white);
  font-weight: 850;
}

.tp-content-lead {
  max-width: 900px !important;
  margin-bottom: 70px !important;
  color: var(--tp-ink);
  font-family: var(--tp-heading);
  font-size: clamp(1.55rem, 3vw, 2.55rem) !important;
  font-weight: 780;
  line-height: 1.22;
  letter-spacing: -0.025em;
}

.tp-content-grid {
  display: grid;
  margin-top: 45px !important;
  margin-bottom: 70px !important;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.tp-content-card {
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--tp-line);
  border-radius: var(--tp-radius);
  background: var(--tp-sand);
}

.tp-content-card h3 {
  margin-top: 0;
}

.tp-content-card p:last-child {
  margin-bottom: 0;
}

.tp-fact-list {
  display: grid;
  margin: 45px auto 70px !important;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  list-style: none;
}

.tp-fact-list li {
  padding: 28px;
  border-top: 3px solid var(--tp-lime);
  background: var(--tp-ink);
  color: rgba(255, 255, 255, 0.73);
}

.tp-fact-list strong {
  display: block;
  color: var(--tp-white);
  font-family: var(--tp-heading);
  font-size: 1.45rem;
}

.tp-notice {
  margin-block: 35px !important;
  padding: 24px 28px;
  border-left: 4px solid var(--tp-lime);
  background: var(--tp-sand);
}

.tp-contact-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(36px, 8vw, 100px);
}

.tp-contact-panel {
  padding: clamp(30px, 4vw, 48px);
  border-radius: var(--tp-radius);
  background: var(--tp-ink);
  color: rgba(255, 255, 255, 0.72);
}

.tp-contact-panel h2,
.tp-contact-panel h3,
.tp-contact-panel a {
  color: var(--tp-white);
}

.tp-contact-panel h2 {
  font-size: 2.5rem;
}

.tp-contact-panel hr {
  margin: 28px 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.wpcf7 form {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--tp-line);
  border-radius: var(--tp-radius);
  background: var(--tp-sand);
}

.wpcf7 label {
  color: var(--tp-ink);
  font-size: 0.82rem;
  font-weight: 800;
}

.wpcf7 input:not([type="submit"]),
.wpcf7 select,
.wpcf7 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 15px;
  border: 1px solid rgba(7, 29, 45, 0.2);
  border-radius: 12px;
  background: var(--tp-white);
  color: var(--tp-ink);
}

.wpcf7 textarea,
.woocommerce form .form-row textarea {
  min-height: 140px;
}

.wpcf7 input[type="submit"] {
  min-height: 52px;
  padding: 13px 24px;
  border: 0;
  border-radius: 999px;
  background: var(--tp-blue);
  color: var(--tp-white);
  font-weight: 850;
  cursor: pointer;
}

.tp-error-page {
  max-width: 760px;
  padding: clamp(100px, 15vw, 190px) 0;
  text-align: center;
}

.tp-error-page h1 {
  margin-bottom: 26px;
}

.tp-error-page .tp-button-row {
  justify-content: center;
  margin-top: 32px;
}

/* WooCommerce */
.tp-shop-main {
  padding: clamp(55px, 8vw, 100px) 0 clamp(80px, 10vw, 140px);
  background: var(--tp-sand);
}

.woocommerce .woocommerce-breadcrumb {
  margin-bottom: 32px;
  color: var(--tp-muted);
  font-size: 0.78rem;
}

.woocommerce .woocommerce-breadcrumb a {
  color: var(--tp-blue);
  font-weight: 750;
}

.woocommerce-products-header {
  margin-bottom: 46px;
}

.woocommerce-products-header__title.page-title,
.woocommerce div.product .product_title {
  font-size: clamp(2.8rem, 6vw, 5.6rem);
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  margin-bottom: 28px;
}

.woocommerce .woocommerce-ordering select {
  min-height: 46px;
  padding: 8px 38px 8px 14px;
  border: 1px solid var(--tp-line);
  border-radius: 999px;
  background: var(--tp-white);
  color: var(--tp-ink);
  font-weight: 700;
}

.woocommerce ul.products {
  display: grid;
  clear: both;
  margin: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.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 {
  position: relative;
  display: flex;
  float: none;
  width: 100%;
  min-width: 0;
  min-height: 100%;
  margin: 0;
  padding: 13px 13px 18px;
  overflow: hidden;
  border: 1px solid var(--tp-line);
  border-radius: 20px;
  background: var(--tp-white);
  flex-direction: column;
  transition: box-shadow 200ms ease, transform 200ms ease;
}

.woocommerce ul.products li.product:hover {
  box-shadow: var(--tp-shadow);
  transform: translateY(-6px);
}

.woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
  color: inherit;
  text-decoration: none;
}

.woocommerce ul.products li.product a img {
  aspect-ratio: 1 / 1;
  margin: 0 0 20px;
  border-radius: 14px;
  background: #f8f8f5;
  object-fit: contain;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  min-height: 2.55em;
  padding: 0 6px;
  font-family: var(--tp-heading);
  font-size: 1.15rem;
  font-weight: 850;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.woocommerce ul.products li.product .price {
  padding: 0 6px;
  color: var(--tp-blue);
  font-size: 1rem;
  font-weight: 900;
}

.woocommerce ul.products li.product .button {
  min-height: 46px;
  margin: auto 6px 0;
  padding: 12px 18px;
  background: var(--tp-ink);
  font-size: 0.76rem;
}

.tp-product-condition {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 3;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--tp-lime);
  color: var(--tp-ink);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.woocommerce span.onsale {
  top: 23px;
  right: 23px;
  left: auto;
  z-index: 3;
  min-width: 0;
  min-height: 0;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--tp-blue);
  font-size: 0.66rem;
  line-height: 1.2;
}

.woocommerce nav.woocommerce-pagination ul {
  display: flex;
  margin-top: 45px;
  border: 0;
  gap: 7px;
}

.woocommerce nav.woocommerce-pagination ul li {
  border: 0;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--tp-line);
  border-radius: 50%;
  background: var(--tp-white);
  color: var(--tp-ink);
}

.woocommerce nav.woocommerce-pagination ul li span.current {
  border-color: var(--tp-ink);
  background: var(--tp-ink);
  color: var(--tp-white);
}

.woocommerce div.product {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.75fr);
  gap: clamp(40px, 7vw, 90px);
}

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

.woocommerce div.product div.images img {
  border-radius: 18px;
  background: var(--tp-white);
}

.woocommerce div.product div.summary {
  padding-top: 22px;
}

.woocommerce div.product .price {
  color: var(--tp-blue);
  font-size: 1.55rem;
  font-weight: 900;
}

.woocommerce div.product .woocommerce-product-details__short-description {
  margin: 25px 0;
  color: var(--tp-muted);
  font-size: 1.02rem;
}

.woocommerce div.product form.cart {
  display: flex;
  align-items: center;
  gap: 10px;
}

.woocommerce .quantity .qty {
  width: 78px;
  min-height: 52px;
  border: 1px solid var(--tp-line);
  border-radius: 12px;
  background: var(--tp-white);
}

.woocommerce div.product .woocommerce-tabs,
.woocommerce div.product .related,
.woocommerce div.product .upsells {
  grid-column: 1 / -1;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  padding: 0;
  border-bottom: 1px solid var(--tp-line);
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
  display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  margin: 0 5px 0 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  padding: 14px 18px;
  border-bottom: 3px solid transparent;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  border-color: var(--tp-blue);
  color: var(--tp-ink);
}

.tp-product-specs {
  margin: 30px 0;
  padding: 26px;
  border: 1px solid var(--tp-line);
  border-radius: var(--tp-radius-sm);
  background: var(--tp-white);
}

.tp-product-specs h2 {
  margin-bottom: 18px;
  font-size: 1.45rem;
}

.tp-product-specs dl {
  display: grid;
  margin: 0;
  grid-template-columns: 1fr 1fr;
}

.tp-product-specs dt,
.tp-product-specs dd {
  margin: 0;
  padding: 9px 0;
  border-bottom: 1px solid var(--tp-line);
  font-size: 0.82rem;
}

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

.tp-product-specs dd {
  color: var(--tp-ink);
  font-weight: 800;
  text-align: right;
}

.tp-product-delivery {
  display: grid;
  margin: 25px 0;
  padding: 18px;
  border-radius: 14px;
  background: rgba(184, 220, 80, 0.24);
  color: var(--tp-ink);
  grid-template-columns: 36px 1fr;
  gap: 10px;
  font-size: 0.82rem;
}

.tp-product-delivery svg {
  width: 25px;
  fill: none;
  stroke: var(--tp-blue);
  stroke-width: 1.8;
}

.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-error {
  padding: 18px 22px 18px 52px;
  border-top: 0;
  border-radius: 14px;
  background: var(--tp-white);
}

.woocommerce .woocommerce-message::before,
.woocommerce .woocommerce-info::before {
  color: var(--tp-blue);
}

.woocommerce-cart-form,
.cart_totals,
.woocommerce-checkout-review-order,
.woocommerce-billing-fields,
.woocommerce-shipping-fields,
.woocommerce-additional-fields,
.woocommerce-account .woocommerce-MyAccount-content,
.woocommerce-account .woocommerce-MyAccount-navigation {
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid var(--tp-line);
  border-radius: var(--tp-radius);
  background: var(--tp-white);
}

.woocommerce table.shop_table {
  border-color: var(--tp-line);
  border-radius: 14px;
}

.woocommerce-checkout #payment {
  border-radius: 16px;
  background: var(--tp-sand);
}

.woocommerce-checkout #payment div.payment_box {
  background: var(--tp-white);
}

.woocommerce-checkout #payment div.payment_box::before {
  border-bottom-color: var(--tp-white);
}

.tp-company-fields-heading {
  clear: both;
  margin: 26px 0 14px;
  padding-top: 22px;
  border-top: 1px solid var(--tp-line);
  font-size: 1.35rem;
}

/* Cart drawer */
.tp-cart-overlay {
  position: fixed;
  z-index: 890;
  inset: 0;
  background: rgba(7, 29, 45, 0.52);
  opacity: 0;
  transition: opacity 220ms ease;
  backdrop-filter: blur(3px);
}

.tp-cart-overlay[hidden] {
  display: block;
  visibility: hidden;
}

.tp-cart-is-open .tp-cart-overlay {
  opacity: 1;
  visibility: visible;
}

.tp-cart-drawer {
  position: fixed;
  z-index: 900;
  top: 0;
  right: 0;
  display: flex;
  width: min(460px, 100vw);
  height: 100dvh;
  padding: 28px;
  background: var(--tp-white);
  box-shadow: -25px 0 80px rgba(7, 29, 45, 0.18);
  flex-direction: column;
  transform: translateX(102%);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.tp-cart-is-open .tp-cart-drawer {
  transform: none;
}

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

.tp-cart-drawer__header .tp-eyebrow {
  margin-bottom: 5px;
}

.tp-cart-drawer__header h2 {
  margin: 0;
  font-size: 2.25rem;
}

.tp-cart-drawer__close {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--tp-line);
  border-radius: 50%;
  background: transparent;
  color: var(--tp-ink);
  font-size: 1.6rem;
  cursor: pointer;
}

.tp-cart-drawer__content {
  overflow-y: auto;
  padding: 24px 3px;
  flex: 1;
}

.tp-cart-drawer .woocommerce-mini-cart {
  margin: 0;
}

.tp-cart-drawer .woocommerce-mini-cart-item {
  padding: 0 24px 16px 0;
  border-bottom: 1px solid var(--tp-line);
}

.tp-cart-drawer .woocommerce-mini-cart-item a:not(.remove) {
  color: var(--tp-ink);
  font-weight: 800;
  text-decoration: none;
}

.tp-cart-drawer .woocommerce-mini-cart-item img {
  width: 64px;
  border-radius: 10px;
}

.tp-cart-drawer .woocommerce-mini-cart__buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.tp-cart-drawer .woocommerce-mini-cart__buttons .button {
  margin: 0;
}

.tp-cart-drawer__note {
  margin: 16px 0 0;
  padding: 16px;
  border-radius: 12px;
  background: var(--tp-sand);
  color: var(--tp-muted);
  font-size: 0.75rem;
}

/* Footer */
.tp-footer {
  padding: 74px 0 0;
  background: #04141f;
  color: rgba(255, 255, 255, 0.63);
}

.tp-footer__grid {
  display: grid;
  padding-bottom: 65px;
  grid-template-columns: 1.25fr repeat(3, 0.75fr);
  gap: clamp(36px, 6vw, 80px);
}

.tp-footer__brand p {
  max-width: 350px;
  margin-top: 24px;
  font-size: 0.86rem;
}

.tp-footer .tp-brand__mark {
  stroke: var(--tp-lime);
}

.tp-footer .tp-brand__overline {
  color: rgba(255, 255, 255, 0.5);
}

.tp-footer .tp-brand__name,
.tp-footer h2,
.tp-footer a {
  color: var(--tp-white);
}

.tp-footer h2 {
  margin-bottom: 20px;
  font-family: var(--tp-body);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.tp-footer li {
  margin-bottom: 8px;
}

.tp-footer a {
  font-size: 0.84rem;
  text-decoration: none;
}

.tp-footer a:hover {
  color: var(--tp-lime);
}

.tp-footer address {
  font-size: 0.84rem;
  font-style: normal;
}

.tp-footer__bottom {
  display: flex;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  justify-content: space-between;
  gap: 30px;
  font-size: 0.7rem;
}

.tp-footer__bottom p {
  margin: 0;
}

@media (max-width: 1120px) {
  .tp-header__inner {
    min-height: 72px;
  }

  .tp-nav-toggle {
    display: grid;
    margin-left: auto;
  }

  .tp-nav {
    position: fixed;
    z-index: 100;
    top: 72px;
    right: 0;
    bottom: 0;
    display: none;
    width: min(460px, 100vw);
    padding: 28px;
    background: var(--tp-white);
    box-shadow: -20px 20px 60px rgba(7, 29, 45, 0.15);
  }

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

  .tp-nav-is-open .tp-nav {
    display: block;
  }

  .tp-nav__list,
  .tp-nav .menu {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .tp-nav a {
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid var(--tp-line);
    font-size: 1rem;
  }

  .tp-nav a::after {
    display: none;
  }

  .tp-hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.5fr);
  }

  .tp-hero__visual::before {
    width: 360px;
    height: 360px;
  }

  .tp-hero__visual::after {
    width: 270px;
    height: 270px;
  }

  .tp-new-products-callout {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .tp-new-products-callout .tp-button {
    justify-self: start;
  }
}

@media (max-width: 900px) {
  :root {
    --tp-container: min(100% - 34px, 760px);
  }

  .tp-hero__inner {
    min-height: auto;
    padding-bottom: 80px;
    grid-template-columns: 1fr;
  }

  .tp-hero__copy {
    max-width: 760px;
  }

  .tp-hero__visual {
    display: none;
  }

  .tp-section-heading--split,
  .tp-services__grid,
  .tp-trust__grid,
  .tp-final-cta__inner,
  .tp-contact-grid {
    grid-template-columns: 1fr;
  }

  .tp-section-heading--split {
    gap: 24px;
  }

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

  .tp-process__steps li:nth-child(1) {
    border-radius: var(--tp-radius) 0 0 0;
  }

  .tp-process__steps li:nth-child(2) {
    border-radius: 0 var(--tp-radius) 0 0;
  }

  .tp-process__steps li:nth-child(3) {
    border-left: 1px solid var(--tp-line);
    border-radius: 0 0 0 var(--tp-radius);
  }

  .tp-process__steps li:nth-child(4) {
    border-radius: 0 0 var(--tp-radius) 0;
  }

  .tp-services__intro {
    position: static;
  }

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

  .tp-category-card--dark {
    grid-column: 1 / -1;
  }

  .tp-new-products-callout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

  .tp-audience {
    min-height: 500px;
  }

  .tp-trust__grid,
  .tp-final-cta__inner {
    gap: 50px;
  }

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

  .tp-footer__brand {
    grid-column: 1 / -1;
  }

  .woocommerce div.product {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  :root {
    --tp-container: calc(100vw - 28px);
    --tp-radius: 20px;
  }

  .tp-topbar__inner {
    justify-content: center;
  }

  .tp-topbar p,
  .tp-topbar__links a:last-child {
    display: none;
  }

  .tp-header__inner {
    gap: 9px;
  }

  .tp-brand__mark {
    width: 34px;
    height: 34px;
  }

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

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

  .tp-header__shop {
    display: none;
  }

  .tp-nav-toggle {
    margin-left: auto;
  }

  .tp-hero__inner {
    padding-block: 70px;
  }

  .tp-hero h1 {
    margin-bottom: 24px;
    font-size: clamp(2.85rem, 13.5vw, 4.5rem);
  }

  .tp-hero__lead {
    font-size: 1rem;
  }

  .tp-button-row .tp-button {
    width: 100%;
  }

  .tp-hero__proof {
    margin-top: 52px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .tp-hero__proof li {
    display: grid;
    grid-template-columns: 110px 1fr;
    align-items: baseline;
  }

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

  .tp-process__steps li,
  .tp-process__steps li:first-child,
  .tp-process__steps li:last-child,
  .tp-process__steps li:nth-child(2),
  .tp-process__steps li:nth-child(3),
  .tp-process__steps li:nth-child(4) {
    min-height: 230px;
    border: 1px solid var(--tp-line);
    border-bottom: 0;
    border-radius: 0;
  }

  .tp-process__steps li:first-child {
    border-radius: var(--tp-radius) var(--tp-radius) 0 0;
  }

  .tp-process__steps li:last-child {
    border-bottom: 1px solid var(--tp-line);
    border-radius: 0 0 var(--tp-radius) var(--tp-radius);
  }

  .tp-process__steps span {
    margin-bottom: 35px;
  }

  .tp-service-card {
    padding: 26px;
    grid-template-columns: 42px 1fr;
    column-gap: 12px;
  }

  .tp-category-grid,
  .woocommerce ul.products,
  .tp-content-grid,
  .tp-fact-list {
    grid-template-columns: 1fr;
  }

  .tp-category-card--dark {
    grid-column: auto;
  }

  .tp-category-card {
    min-height: 460px;
  }

  .tp-audience {
    min-height: 440px;
    padding-inline: 28px;
  }

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

  .tp-trust__logos > div:last-child {
    grid-column: auto;
  }

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

  .tp-footer__brand {
    grid-column: 1 / -1;
  }

  .tp-footer__bottom {
    flex-direction: column;
  }

  .woocommerce ul.products li.product .woocommerce-loop-product__title {
    min-height: 0;
  }

  .woocommerce div.product .product_title,
  .woocommerce-products-header__title.page-title {
    font-size: 2.8rem;
  }

  .tp-cart-drawer {
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
