:root {
  --itp-bg: #050505;
  --itp-bg-soft: #0a0a0a;
  --itp-panel: #121212;
  --itp-panel-2: #1c1c1c;
  --itp-line: #242424;
  --itp-line-soft: rgba(255, 255, 255, .07);
  --itp-cyan: #00d9ff;
  --itp-cyan-2: #00a8c8;
  --itp-green: #31d979;
  --itp-text: #ffffff;
  --itp-muted: #8a8f98;
  --itp-faint: #5f6670;
  --itp-radius: 8px;
  --itp-max: 1180px;
  --itp-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --itp-glow: 0 0 28px rgba(0, 217, 255, .18);
}

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

html {
  background: var(--itp-bg);
  overflow-x: hidden;
  overscroll-behavior: none;
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #0d0d0d;
}

::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: #00a8c8;
}

body.itp-dark {
  margin: 0;
  background:
    radial-gradient(circle at 78% 4%, rgba(0, 217, 255, .105), transparent 28rem),
    radial-gradient(circle at 12% 32%, rgba(0, 217, 255, .045), transparent 24rem),
    linear-gradient(180deg, #050505 0%, #020202 100%);
  color: var(--itp-text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}

a:hover {
  color: var(--itp-cyan);
}

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

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
}

.itp-container {
  width: min(calc(100% - 40px), var(--itp-max));
  margin-inline: auto;
}

.itp-cyan {
  color: var(--itp-cyan);
}

.itp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--itp-line-soft);
  background: rgba(2, 2, 2, .82);
  backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 rgba(0, 217, 255, .035);
}

.itp-header__inner {
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  min-height: 76px;
  gap: 32px;
}

.itp-logo {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: #fff;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.itp-logo__mark {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(0, 217, 255, .3);
  border-radius: 2px;
  color: var(--itp-cyan);
  background: rgba(0, 217, 255, .1);
  font-family: var(--itp-mono);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.itp-logo:hover {
  color: #fff;
}

.itp-logo:hover .itp-logo__mark {
  border-color: rgba(0, 217, 255, .45);
  background: rgba(0, 217, 255, .2);
  box-shadow: 0 0 18px rgba(0, 217, 255, .12);
}

.itp-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.itp-nav a,
.itp-mobile-menu a {
  color: var(--itp-muted);
  font-family: var(--itp-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.itp-nav a:hover,
.itp-mobile-menu a:hover {
  color: var(--itp-cyan);
}

.itp-header__tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  color: var(--itp-muted);
}

.itp-header__tools a {
  display: grid;
  min-width: 22px;
  place-items: center;
  color: var(--itp-muted);
}

.itp-lang {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid var(--itp-line);
  border-radius: 4px;
  font-family: var(--itp-mono);
  font-size: 11px;
  color: var(--itp-faint);
}

.itp-lang strong {
  color: var(--itp-cyan);
}

.itp-menu-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border: 1px solid var(--itp-line);
  border-radius: 6px;
  background: #070707;
  padding: 9px;
}

.itp-menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--itp-cyan);
}

.itp-mobile-menu {
  display: none;
  border-top: 1px solid var(--itp-line);
  padding: 12px 20px 18px;
  background: #050505;
}

.itp-mobile-menu.is-open {
  display: grid;
  gap: 12px;
}

.itp-main {
  min-height: 58vh;
}

.itp-hero {
  position: relative;
  min-height: 850px;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--itp-line-soft);
}

.itp-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 42%, rgba(0, 217, 255, .16), transparent 19rem),
    linear-gradient(90deg, rgba(0, 0, 0, .93) 0%, rgba(0, 0, 0, .66) 38%, rgba(0, 0, 0, .2) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .12), #050505 98%),
    url("https://images.unsplash.com/photo-1595044426077-d36d9236d44a?auto=format&fit=crop&w=2200&q=86") center right / cover;
  filter: saturate(.78) contrast(1.2) brightness(.82);
  transform: scale(1.01);
}

.itp-hero__mesh,
.itp-hero__scan {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.itp-hero__mesh {
  opacity: .32;
  background-image:
    linear-gradient(rgba(0, 217, 255, .12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 217, 255, .10) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, .75), transparent 72%);
}

.itp-hero__scan {
  opacity: .14;
  background: repeating-linear-gradient(
    180deg,
    rgba(255, 255, 255, .06) 0,
    rgba(255, 255, 255, .06) 1px,
    transparent 1px,
    transparent 7px
  );
}

.itp-hero__content {
  position: relative;
  padding: 140px 0 210px;
  z-index: 2;
}

.itp-eyebrow,
.itp-kicker {
  display: inline-block;
  color: var(--itp-cyan);
  font-family: var(--itp-mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.itp-hero h1 {
  max-width: 560px;
  margin: 28px 0 20px;
  font-size: clamp(52px, 7vw, 86px);
  line-height: .97;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 0 38px rgba(255, 255, 255, .09);
}

.itp-hero h1 span {
  display: block;
  color: var(--itp-cyan);
  text-shadow: 0 0 32px rgba(0, 217, 255, .22);
}

.itp-hero p {
  max-width: 470px;
  margin: 0 0 32px;
  color: #a5abb4;
  font-size: 19px;
}

.itp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.itp-btn,
.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 28px;
  border: 1px solid var(--itp-cyan);
  border-radius: 5px;
  background: var(--itp-cyan);
  color: #001014;
  font-family: var(--itp-mono);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 0 0 1px rgba(0, 217, 255, .08), 0 14px 36px rgba(0, 217, 255, .12);
}

.itp-btn:hover,
.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  background: var(--itp-cyan-2);
  color: #001014;
  transform: translateY(-2px);
}

.itp-btn--ghost {
  background: transparent;
  color: var(--itp-text);
  border-color: var(--itp-line);
  box-shadow: none;
}

.itp-btn--ghost:hover {
  color: var(--itp-cyan);
  background: rgba(0, 217, 255, .08);
}

.itp-stats {
  display: flex;
  gap: 34px;
  margin: 80px 0 0;
  padding: 0;
}

.itp-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.itp-hero__chips span {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(0, 217, 255, .22);
  border-radius: 4px;
  background: rgba(0, 217, 255, .06);
  color: var(--itp-cyan);
  font-family: var(--itp-mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
}

.itp-stats div,
.itp-stats dt,
.itp-stats dd {
  margin: 0;
}

.itp-stats dt {
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
}

.itp-stats dd {
  margin-top: 8px;
  color: var(--itp-muted);
  font-family: var(--itp-mono);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.itp-section {
  position: relative;
  padding: 108px 0;
}

.itp-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 0%, rgba(0, 217, 255, .045), transparent 30rem);
}

.itp-section > .itp-container {
  position: relative;
}

.itp-section--products {
  padding-top: 28px;
}

.itp-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.itp-section-head h2 {
  margin: 8px 0 0;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

.itp-section-head > a {
  color: var(--itp-muted);
  font-family: var(--itp-mono);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.itp-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.itp-category-card {
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--itp-line);
  border-radius: var(--itp-radius);
  background-position: center;
  background-size: cover;
  isolation: isolate;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, .04);
}

.itp-category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .1), rgba(0, 0, 0, .88)),
    linear-gradient(90deg, rgba(0, 217, 255, .16), transparent 55%);
}

.itp-category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: radial-gradient(circle at 22% 18%, rgba(0, 217, 255, .24), transparent 16rem);
  transition: opacity .25s ease;
}

.itp-category-card:hover {
  border-color: rgba(0, 217, 255, .65);
  transform: translateY(-4px);
  box-shadow: var(--itp-glow);
}

.itp-category-card:hover::after {
  opacity: 1;
}

.itp-category-card span {
  color: var(--itp-cyan);
  font-family: var(--itp-mono);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.itp-category-card strong {
  display: block;
  margin-top: 4px;
  font-size: 30px;
  line-height: 1;
}

.itp-product-mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: minmax(360px, auto);
  gap: 16px;
}

.itp-product-card,
.woocommerce ul.products li.product {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--itp-line);
  border-radius: var(--itp-radius);
  background: var(--itp-panel);
  color: var(--itp-text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .025);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.itp-product-card:hover,
.woocommerce ul.products li.product:hover {
  border-color: rgba(0, 217, 255, .65);
  transform: translateY(-3px);
  box-shadow: var(--itp-glow), inset 0 1px 0 rgba(255, 255, 255, .045);
}

.itp-product-card--large {
  grid-row: span 2;
}

.itp-product-card__image {
  position: relative;
  display: block;
  min-height: 250px;
  background-position: center;
  background-size: cover;
}

.itp-product-card--large .itp-product-card__image {
  min-height: 560px;
}

.itp-product-card__image::after,
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .85));
  pointer-events: none;
}

.itp-product-card__image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 65% 20%, rgba(0, 217, 255, .16), transparent 14rem);
  opacity: .55;
  transition: opacity .2s ease;
}

.itp-product-card:hover .itp-product-card__image::before {
  opacity: .95;
}

.itp-badge,
.woocommerce span.onsale {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 4px;
  background: var(--itp-cyan);
  color: #001014;
  font-family: var(--itp-mono);
  font-size: 11px;
  font-weight: 900;
  box-shadow: 0 0 22px rgba(0, 217, 255, .22);
}

.itp-badge--outline {
  left: 72px;
  background: rgba(0, 217, 255, .08);
  color: var(--itp-cyan);
  border: 1px solid var(--itp-cyan);
}

.itp-product-card__body {
  padding: 22px 18px 18px;
}

.itp-product-card h3,
.woocommerce-loop-product__title {
  margin: 6px 0 12px;
  min-height: 46px;
  color: var(--itp-text);
  font-size: 18px;
  line-height: 1.25;
  font-weight: 800;
}

.itp-price,
.woocommerce ul.products li.product .price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--itp-text);
}

.itp-price strong,
.woocommerce ul.products li.product .price ins {
  color: var(--itp-text);
  font-size: 24px;
  font-weight: 900;
  text-decoration: none;
}

.itp-price del,
.woocommerce ul.products li.product .price del {
  color: var(--itp-faint);
  opacity: 1;
}

.itp-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--itp-line-soft);
  color: var(--itp-muted);
  font-family: var(--itp-mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.itp-stock::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 6px;
  border-radius: 999px;
  background: var(--itp-green);
}

.itp-rating {
  color: var(--itp-cyan);
}

.itp-icon-btn {
  margin-left: auto;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(0, 217, 255, .45);
  border-radius: 5px;
  background: rgba(0, 217, 255, .08);
  color: var(--itp-cyan);
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.itp-icon-btn:hover {
  border-color: rgba(0, 217, 255, .8);
  background: rgba(0, 217, 255, .16);
  transform: translateY(-1px);
}

.itp-footer {
  border-top: 1px solid var(--itp-line-soft);
  background: var(--itp-bg);
}

.itp-usp-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--itp-line-soft);
}

.itp-usp-row div {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  column-gap: 14px;
}

.itp-usp-row span {
  grid-row: span 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(0, 217, 255, .4);
  border-radius: 6px;
  color: var(--itp-cyan);
  background: rgba(0, 217, 255, .06);
}

.itp-usp-row strong {
  font-weight: 900;
}

.itp-usp-row small {
  color: var(--itp-muted);
  font-family: var(--itp-mono);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.itp-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 70px;
  padding: 48px 0;
}

.itp-footer p,
.itp-footer a {
  color: #9aa0a8;
}

.itp-footer p {
  margin: 18px 0 0;
}

.itp-footer h2 {
  margin: 0 0 16px;
  color: var(--itp-faint);
  font-family: var(--itp-mono);
  font-size: 12px;
  text-transform: uppercase;
}

.itp-footer__grid a:not(.itp-logo) {
  display: block;
  margin: 8px 0;
  font-weight: 700;
}

.itp-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0 40px;
  border-top: 1px solid var(--itp-line-soft);
  color: var(--itp-faint);
  font-family: var(--itp-mono);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.itp-page {
  padding: 90px 0;
}

.itp-content-card {
  max-width: 900px;
  padding: 36px;
  border: 1px solid var(--itp-line);
  border-radius: var(--itp-radius);
  background: var(--itp-panel);
}

.itp-content-card h1 {
  margin-top: 0;
}

.itp-archive-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  padding: 90px 0 120px;
}

.itp-filter-panel {
  color: var(--itp-muted);
}

.itp-filter-reset {
  float: right;
  margin-top: -24px;
  border: 0;
  background: transparent;
  color: var(--itp-muted);
  font-family: var(--itp-mono);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.itp-filter-group {
  padding: 24px 0;
  border-top: 1px solid var(--itp-line-soft);
}

.itp-filter-group h2 {
  margin: 0 0 14px;
  color: var(--itp-faint);
  font-family: var(--itp-mono);
  font-size: 11px;
  text-transform: uppercase;
}

.itp-filter-group a {
  display: block;
  padding: 8px 12px;
  border: 1px solid transparent;
  border-radius: 5px;
  color: var(--itp-muted);
  font-family: var(--itp-mono);
  font-size: 13px;
  font-weight: 700;
}

.itp-filter-group a.is-active {
  border-color: rgba(0, 217, 255, .5);
  background: rgba(0, 217, 255, .12);
  color: var(--itp-cyan);
}

.itp-range {
  height: 6px;
  border-radius: 999px;
  background: var(--itp-cyan);
}

.itp-range span {
  display: block;
  width: 10px;
  height: 10px;
  border: 1px solid var(--itp-cyan);
  border-radius: 999px;
  background: #050505;
  transform: translateY(-2px);
}

.itp-range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-family: var(--itp-mono);
  font-size: 10px;
  font-weight: 800;
}

.itp-archive-head {
  margin-bottom: 28px;
}

.itp-archive-head h1,
.woocommerce-products-header__title {
  margin: 8px 0 0;
  font-size: 42px;
  line-height: 1;
}

.woocommerce .woocommerce-result-count,
.woocommerce-page .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  display: none;
}

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

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

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  float: none;
  width: auto;
  margin: 0;
  padding-bottom: 16px;
}

.woocommerce ul.products li.product a img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin: 0;
  filter: saturate(.85) contrast(1.08);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  padding: 20px 16px 0;
}

.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .star-rating,
.woocommerce ul.products li.product .button {
  margin-inline: 16px;
}

.woocommerce ul.products li.product .button {
  width: calc(100% - 32px);
  margin-top: 12px;
}

.woocommerce nav.woocommerce-pagination {
  margin-top: 34px;
}

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

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

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  min-width: 38px;
  border: 1px solid var(--itp-line);
  border-radius: 5px;
  background: var(--itp-panel);
  color: var(--itp-muted);
}

.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li a:hover {
  background: var(--itp-cyan);
  color: #001014;
}

.itp-single-product {
  padding: 80px 0 110px;
}

.woocommerce div.product {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  gap: 48px;
}

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

.woocommerce div.product div.images img {
  border: 1px solid var(--itp-line);
  border-radius: var(--itp-radius);
  background: #000;
}

.woocommerce div.product .product_title {
  margin: 0 0 12px;
  color: var(--itp-text);
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.05;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--itp-text);
  font-size: 34px;
  font-weight: 900;
}

.woocommerce div.product p.price del {
  color: var(--itp-faint);
  font-size: 19px;
}

.woocommerce-product-details__short-description,
.woocommerce div.product .woocommerce-tabs,
.woocommerce #reviews #comments ol.commentlist li .comment-text {
  color: #a5abb4;
}

.woocommerce div.product form.cart {
  display: flex;
  gap: 16px;
  margin: 28px 0 36px;
}

.woocommerce .quantity .qty {
  width: 86px;
  height: 48px;
  border: 1px solid var(--itp-line);
  border-radius: 5px;
  background: var(--itp-panel);
  color: var(--itp-text);
}

.woocommerce div.product .woocommerce-tabs {
  grid-column: 1 / -1;
  padding-top: 40px;
  border-top: 1px solid var(--itp-line-soft);
}

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

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

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border-color: var(--itp-line);
  background: var(--itp-panel);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  background: var(--itp-cyan);
  color: #001014;
}

.woocommerce table.shop_attributes,
.woocommerce table.shop_attributes th,
.woocommerce table.shop_attributes td {
  border-color: var(--itp-line-soft);
  color: #d9dde2;
}

.woocommerce table.shop_attributes th,
.woocommerce table.shop_attributes td {
  padding: 12px 0;
  background: transparent;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-top-color: var(--itp-cyan);
  background: var(--itp-panel);
  color: var(--itp-text);
}

.woocommerce-message::before,
.woocommerce-info::before {
  color: var(--itp-cyan);
}

.woocommerce-cart table.cart,
.woocommerce-checkout-review-order-table,
.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  border-color: var(--itp-line);
  background: var(--itp-panel);
  color: var(--itp-text);
}

.woocommerce table.shop_table {
  border-color: var(--itp-line);
  background: var(--itp-panel);
  color: var(--itp-text);
}

.woocommerce table.shop_table td,
.woocommerce table.shop_table th {
  border-top-color: var(--itp-line-soft);
}

@media (max-width: 1100px) {
  .itp-header__inner {
    grid-template-columns: 1fr auto;
  }

  .itp-nav {
    display: none;
  }

  .itp-menu-toggle {
    display: block;
  }

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

  .itp-product-card--large {
    grid-row: auto;
  }

  .itp-product-card--large .itp-product-card__image {
    min-height: 330px;
  }
}

@media (max-width: 860px) {
  .itp-container {
    width: min(calc(100% - 28px), var(--itp-max));
  }

  .itp-header__tools {
    gap: 10px;
  }

  .itp-lang,
  .itp-header__tools a:nth-of-type(2) {
    display: none;
  }

  .itp-hero {
    min-height: 720px;
  }

  .itp-hero__content {
    padding: 110px 0 140px;
  }

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

  .itp-stats {
    gap: 22px;
    margin-top: 46px;
  }

  .itp-section {
    padding: 70px 0;
  }

  .itp-section-head {
    align-items: start;
    flex-direction: column;
  }

  .itp-category-grid,
  .itp-product-mosaic,
  .woocommerce ul.products,
  .itp-footer__grid,
  .itp-usp-row,
  .itp-archive-layout,
  .woocommerce div.product {
    grid-template-columns: 1fr;
  }

  .itp-filter-panel {
    padding: 16px;
    border: 1px solid var(--itp-line);
    border-radius: var(--itp-radius);
    background: rgba(16, 17, 18, .72);
  }

  .itp-footer__grid {
    gap: 28px;
  }

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

@media (max-width: 520px) {
  .itp-logo {
    font-size: 14px;
  }

  .itp-header__inner {
    min-height: 66px;
  }

  .itp-hero h1 {
    font-size: 48px;
  }

  .itp-actions {
    display: grid;
  }

  .itp-btn {
    width: 100%;
  }

  .itp-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .itp-category-card,
  .itp-product-card__image,
  .itp-product-card--large .itp-product-card__image {
    min-height: 250px;
  }
}
